/* Global Styles */
:root {
    --primary-color: #11191F;
    --secondary-color: #11191F;
    --accent-color: #ffeb3b;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --theme-yellow: #ffeb3b;
    --theme-dark: #11191F;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #11191F;
    color: #11191F;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 50px 0;
    position: relative;
    padding-bottom: 15px;
}



h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Certification Highlight Section */
.certification-highlight {
    padding: 40px 0;
    background-color: var(--white);
    text-align: center;
}

.certification-image {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.certification-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.certification-image:hover img {
    transform: scale(1.02);
}

/* Navigation - Moved to index.css */

/* Hero Section */
.about-hero {
    height: 400px;
    background: url('images/04.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 64px; /* Height of navbar */
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        padding: 0 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-hero > * {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

/* About Section */
.about-section {
    padding: 50px 0;
    background-color: #ffffff; 
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 0;
    }
    
    .about-content {
        padding: 0 20px;
    }
    
    .about-content h3 {
        font-size: 1.4rem;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.about-content h3 {
    color: var(--primary-color);
    margin: 30px 0 20px;
}

/* Section title accent (yellow underline similar to h2) */
.about-content h3.section-title {
    position: relative;
    padding-bottom: 10px;
}

.about-content h3.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Services Section */
.services-section {
    padding: 50px 0;
    background-color: #ffffff; 
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        margin: 0 10px;
    }
}

/* Icon bullet list styling */
.about-content ul.icon-list {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 24px;
}

.about-content ul.icon-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.about-content ul.icon-list li::before {
    content: "\f058"; /* check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--theme-yellow);
    font-size: 0.95rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #11191F;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--theme-yellow);
    margin-bottom: 20px;
    background: var(--theme-dark);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #11191F
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .accordion-item {
        margin: 0 10px 15px;
    }
    
    .accordion-header {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 20px 15px;
    }
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 235, 59, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--theme-yellow);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--theme-yellow);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #ffe100;
}

.accordion-header i {
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.accordion-item.active .accordion-header {
    background-color: #ffe100;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: rgba(26, 32, 44, 0.9);
}

.accordion-content p {
    padding: 25px;
    margin: 0;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Animation for accordion content */
.accordion-content[style*="max-height:"] {
    transition: max-height 0.4s ease-in-out;
}

/* Footer */
/* .footer {
    background-color: rgba(17, 25, 31, 0.95);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

h2, h3, h4, h5, h6 {
    color: var(--white);
}

/* p, li {
    color: #e0e0e0;
} */

/* .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
} */

/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        color: #11191F;
        position: relative;
        z-index: 1001;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }
    
    .navbar {
        padding: 15px 20px;
        background-color: #ffff00;
    }
    
    /* Reset desktop menu styles for mobile */
    .menu {
        display: none !important;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #ffff00;
        padding: 15px 0;
        margin: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        z-index: 1000;
    }
    
    .menu.active {
        display: flex !important;
    }
    
    /* Reset all menu item styles */
    .menu > * {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        float: none !important;
        display: block !important;
        text-align: left !important;
    }
    
    .menu a {
        display: block !important;
        padding: 12px 25px !important;
        color: #11191F !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(17, 25, 31, 0.1);
        background: none !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        width: 100% !important;
    }
    
    .menu a:hover {
        background-color: rgba(255, 255, 255, 0.5) !important;
    }
    
    .menu a.contact {
        background: none !important;
        color: #11191F !important;
    }
    
    /* Reset dropdown styles for mobile */
    .dropdown {
        position: static !important;
        width: 100% !important;
    }
    
    .dropdown-content {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }
    
    .dropdown-content a {
        padding-left: 40px !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
