/* Global Styles */
:root {
    --primary-color: #463d74; /* Dark purple */
    --secondary-color: #d93b3c; /* Red */
    --accent-color: #cba864; /* Gold */
    --light-color: #f4f4f4;
    --dark-color: #333;
    --white: #fff;
    --gray: #ccc;
    --dark-gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}









body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    height: 40px;
}

.logo-container h1 {
    font-size: 1.5rem;
    color: var(--primary-color);

}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-weight: 600;
    padding: 5px 10px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    color: var(--primary-color);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #c03536;
    color: var(--white);
    transform: translateY(-3px);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #b89a5a;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Page Banner */
.page-banner {
    background: #434343;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: var(--accent-color);
}

.page-banner p {
    font-size: 1.5rem;
}

/* Why Choose Us Section */
.why-choose-us {
    margin: 20px 0px;
    padding: 60px 100px;
    text-align: center;
    background-color: var(--light-color);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 10px 20px;
}

.feature {
    flex: 1 1 250px;
    max-width: 280px;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Services Section */
.services-preview {
    padding: 60px 0;
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--dark-gray);
}

.service-card a {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: bold;
}

.view-all {
    margin-top: 30px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.testimonial {
    display: none;
    padding: 30px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial h4 {
    color: var(--secondary-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-controls button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
}

/* About Content */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px 200px;
    gap: 40px;
}

.about-image {
    max-width: 400px;
    object-fit: cover;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1 1 400px;
    text-align: justify;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
}

/* Mission Vision */
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 100px;
    background-color: var(--light-color);
}

.mission, .vision {
    flex: 1 1 400px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission h3, .vision h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.mission h3 i, .vision h3 i {
    margin-right: 15px;
    color: var(--secondary-color);
}

/* Certifications */
.certifications {
    padding: 60px 0;
    text-align: center;
}

.certifications h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.certificates {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.certificate {
    flex: 1 1 200px;
    max-width: 250px;
}

.certificate img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    border: 1px solid var(--gray);
    padding: 10px;
    border-radius: 5px;
}

/* Services Main */
.services-main {
    padding: 60px 100px;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}




.service-details {
    flex: 1 1 300px;
    padding: 30px;
}

.service-details h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-details p {
    margin-bottom: 20px;
}

.service-details ul {
    margin-bottom: 20px;
}

.service-details ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-details ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Service Process */
.service-process {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.service-process h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1 1 200px;
    max-width: 220px;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Main */
.contact-main {
    display: flex;
    padding: 60px 200px;
    gap: 40px;
}

.contact-info {
    flex: 1 1 400px;
    padding: 10px;
    background-color: var(--light-color);
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.contact-form {
    flex: 1 1 400px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #c03536;
}

/* Map Section */
.map-section {
    padding: 20px 30px;
}

.map-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Emergency Contact */
.emergency-contact {
    padding: 30px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.emergency-content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-content i {
    font-size: 3rem;
}

.emergency-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 8px 20px;
    background-color: white;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
    background-color: var(--accent-color);
    color: white;
}



.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
    display: none;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Training Section */
.training-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/training-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-top: 80px;
}

.training-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.training-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.program-card p {
    color: #666;
    margin-bottom: 20px;
}

.program-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.program-card ul li {
    margin-bottom: 8px;
    color: #555;
}

.training-methodology {
    background: #f9f9f9;
    padding: 80px 0;
}

.methodology-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.methodology-text {
    flex: 1;
}

.methodology-image {
    flex: 1;
}

.methodology-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.methodology-features {
    display: flex;
    grid-template-columns: repeat(2, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.certification {
    padding: 80px 0;
}

.certification-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.certification-text {
    flex: 1;
}

.certification-badge {
    flex: 1;
    text-align: center;
}

.certification-badge img {
    max-width: 300px;
    margin-bottom: 20px;
}

.training-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.training-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.training-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 20px 50px;
        }
        
        footer a {
            color:white;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        
/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--white);
        position: absolute;
        left: 0;
        top: 100%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--gray);
    }
    
    .hero {
        height: 60vh;
        margin-top: 120px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .page-banner h2 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
            .social-links {
            display: block;
        }
        
    header{
        padding: 7px 0;
    }
        
    .logo-container {
        width: 100%;
        text-align: center;
        justify-content: space-between;
    }
    
    .logo-container h1{
        display: none;
    }
    
    .logo-container img {
        margin-right: 0;
        height: 30px;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .feature {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .about-content, .contact-main {
        flex-direction: column;
        padding: 60px 25px;
    }
    
    .mission, .vision {
        flex: 1 1 100%;
    }
    
    .service-item {
        flex-direction: column;
    }
    

    
    .methodology-content, .certification-content {
        flex-direction: column;
    }
    
    .mission-vision{
            padding: 40px 20px;

    }
    
    .services-main {
    padding: 60px 20px;
}

.methodology-features {
    flex-direction: column;
}

.why-choose-us {
    padding: 60px 0px;
}

}
.services-main {
    padding: 60px 100px;
    background: #f9f9f9;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}


.service-details {
    padding: 20px;
    text-align: left;
}

.service-details h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-details p {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.service-details ul {
    padding-left: 20px;
    color: #555;
}

.service-details ul li {
    margin-bottom: 6px;
}

/* Responsive text sizes */
@media (max-width: 768px) {
    .service-category h3 {
        font-size: 1.6rem;
    }

    .service-details h4 {
        font-size: 1.2rem;
    }

    .service-details p {
        font-size: 0.95rem;
    }

    .service-details ul {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .service-details {
        padding: 15px;
    }

    .service-category h3 {
        font-size: 1.5rem;
    }
    
    .services-main{
        padding: 20px;
    }
}

