/* styles.css */
:root {
    --primary: #00A651;
    --primary-dark: #00A651;
    --secondary: #000000;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header styles */
        .site-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo img {
            height: 60px;
            width: auto;
        }
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 2px 0;
            transition: 0.3s;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-list li {
            position: relative;
        }
        
        .nav-list a {
            color: #333;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            font-weight: 500;
        }
        
        .nav-list a:hover, .nav-list a.active {
            color: #00A651;
        }
        
        .dropdown-menu {
            position: absolute;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            min-width: 260px;
            display: none;
            z-index: 100;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/tunnel_images.png') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 120px 0;
    text-align: left;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Content Sections */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.content-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.content-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-view {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-view:hover {
    background-color: var(--primary-dark);
}

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

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

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 5rem;
    color: var(--light-gray);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

/* Metrics Section */
.metrics-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.metrics-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.metric-box {
    padding: 0 20px;
}

.metric-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.vertical-line {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-about img {
    height: 144px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 20px;
}

.footer-links h3, 
.footer-contact h3, 
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

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

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

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

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

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-family: sans-serif !important;
}

.footer-contact i {
    margin-right: 10px;
    color: white;
    margin-top: 3px;
  
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    right: 35px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

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

.newsletter input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
}

.newsletter button {
    width: 100%;
    padding: 10px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: #e05d00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.legal-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position:absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
       overflow-x: auto;
        transition: var(--transition);
        z-index: 999;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list > li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .metrics-container {
        flex-direction: column;
        gap: 30px;
    }

    .vertical-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
address {
  font-style: normal;
}

/* CSS END */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/tunnel_images.png') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 120px 0;
    text-align: left;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Content Sections */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.content-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.content-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-view {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-view:hover {
    background-color: var(--primary-dark);
}

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

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

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 5rem;
    color: var(--light-gray);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

/* Metrics Section */
.metrics-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.metrics-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.metric-box {
    padding: 0 20px;
}

.metric-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.vertical-line {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-about img {
    height: 144px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 20px;
}

.footer-links h3, 
.footer-contact h3, 
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

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

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

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

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

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-family: sans-serif !important;
}

.footer-contact i {
    margin-right: 10px;
    color: white;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

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

.newsletter input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
}

.newsletter button {
    width: 100%;
    padding: 10px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: #e05d00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.legal-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list > li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .metrics-container {
        flex-direction: column;
        gap: 30px;
    }

    .vertical-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
/* Leadership Section Styles */
.leadership-section {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 600px;
    margin: 40px auto;
}

.leader-card {
    background: var(--light);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.leader-info p {
    color: var(--gray);
    font-weight: 500;
}

.contact-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--dark);
}

.contact-info i {
    color: var(--primary);
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
address {
  font-style: normal;
}
/* ================ 
   VARIABLES
   ================ */
:root {
    /* Colors */
    --primary: #00A651;
    --primary-dark: #008a45;
    --secondary: #000000;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #000000;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    /* Typography */
    --text-base: 1rem;
    --text-sm: 0.875rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-xxl: 1.5rem;
    --text-xxxl: 2rem;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 0.25rem;
    --border-radius-lg: 0.5rem;
}

/* ================ 
   BASE STYLES
   ================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ================ 
   HEADER & NAVIGATION
   ================ */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

/* Main Navigation */
.main-nav {
    flex: 1;
    margin-left: var(--space-xl);
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    gap: var(--space-md);
}

.nav-link {
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    transition: var(--transition);
    color: var(--dark);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link i {
    margin-left: var(--space-xs);
    font-size: 0.8em;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    padding: var(--space-sm) 0;
    list-style: none;
    transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light);
    color: var(--primary);
    padding-left: var(--space-lg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* ================ 
   COMING SOON SECTION
   ================ */
.coming-soon-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xxl) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/tunnel_images.png') no-repeat center center/cover;
    color: var(--white);
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    min-width: 100px;
    backdrop-filter: blur(5px);
}

.countdown-number {
    font-size: var(--text-xxxl);
    font-weight: 700;
    color: var(--white);
}

.countdown-label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
    color: var(--white);
    opacity: 0.8;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: var(--space-md);
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: var(--text-base);
    outline: none;
}

.subscribe-form button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
}

.subscribe-form button:hover {
    background-color: var(--primary-dark);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* ================ 
   FOOTER
   ================ */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-about img {
    height: 60px;
    margin-bottom: var(--space-md);
}

.footer-about p {
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.footer-links h3,
.footer-contact h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

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

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--space-sm);
}

.footer-contact p {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: flex-start;
    color: var(--gray);
}

.footer-contact i {
    margin-right: var(--space-sm);
    color: var(--white);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    margin-bottom: var(--space-sm);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.legal-links a {
    color: var(--gray);
    font-size: var(--text-sm);
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* ================ 
   ANIMATIONS
   ================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ================ 
   RESPONSIVE DESIGN
   ================ */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 1000;
    }

    .main-nav.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 80%;
        max-width: 300px;
    }
    
    .nav-item {
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: var(--space-md);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    .coming-soon-section {
        padding: var(--space-xl) 0;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: var(--space-sm);
    }
    
    .countdown-number {
        font-size: var(--text-xxl);
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: var(--border-radius);
        margin-bottom: var(--space-sm);
    }
    
    .subscribe-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ================ 
   ACCESSIBILITY
   ================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* ================ 
   DROPDOWN MENU IMPROVEMENTS
   ================ */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    padding: var(--space-sm) 0;
    list-style: none;
    transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light);
    color: var(--primary);
    padding-left: var(--space-lg);
}

/* Mobile dropdown styles */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: var(--space-md);
        transform: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
}

/* ================ 
   NAVIGATION IMPROVEMENTS
   ================ */
.nav-list {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    gap: var(--space-sm);
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    transition: var(--transition);
    color: var(--dark);
}

.nav-list > li > a:hover {
    color: var(--primary);
}

.nav-list > li > a i {
    margin-left: var(--space-xs);
    font-size: 0.8em;
}

/* Active state for current page */
.nav-list > li > a.active {
    color: var(--primary);
    font-weight: 600;
}
.newsletter input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
}

.newsletter button {
    width: 100%;
    padding: 10px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: #e05d00;
}
address {
  font-style: normal;
}
.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}
.why-join-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.why-join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/pattern-bg.png') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.why-join-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #00A651;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-join-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00A651, #008B45);
    border-radius: 2px;
}

.why-join-subtitle {
    text-align: center;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.why-join-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 166, 81, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 166, 81, 0.1);
}

.why-join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00A651, #008B45);
    transition: height 0.3s ease;
}

.why-join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 166, 81, 0.15);
}

.why-join-card:hover::before {
    height: 6px;
}

.why-join-icon {
    font-size: 2.8rem;
    color: #00A651;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.why-join-card:hover .why-join-icon {
    transform: scale(1.1);
}

.why-join-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    position: relative;
    display: inline-block;
}

.why-join-card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #00A651;
    transition: width 0.3s ease;
}

.why-join-card:hover .why-join-card-title::after {
    width: 60px;
}

.why-join-card-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-join-section {
        padding: 3rem 0;
    }
    
    .why-join-title {
        font-size: 2rem;
    }
    
    .why-join-grid {
        grid-template-columns: 1fr;
    }
    
    .why-join-card {
        padding: 2rem;
    }
}
