:root {
    --primary-color: #003366;
    --secondary-color: #ff6600;
    --text-color: #333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #fff;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
     height: 70px; /* Reduced height */
    padding: 0;

}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 1rem 2rem; */
    display: flex;
    justify-content: space-between;
    align-items: center;
     padding: 0.5rem 2rem; /* Reduced vertical padding */
    height: 100%;
}

.logo {
    height: 100%; /* Take full height of navbar */
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo img {
    height: 80px; /* Optimal size */
    width: auto;
    /* max-height: 100%; */
    object-fit: contain;
    transition: var(--transition);
}

.logo span {
    font-size: 0.8 rem;
    font-weight: 660;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    position: relative;
    top: 2px; /* Fine-tune vertical alignment */
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    list-style: none; /* Add this line */
    padding-left: 0; /* Add this line */
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.7rem 1.5rem;
    transition: var(--transition);
}

.dropdown-menu li:hover {
    background: #f8f8f8;
    padding-left: 2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Slider Section */
.slider {
    position: relative;
    height: 85vh;
    margin-top: 70px;
    overflow: hidden;
}

.slides-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 0.8rem;
    border-radius: 30%;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow i {
    font-size: 1.5rem;
    color: white;
}

.prev { left: 3%; }
.next { right: 3%; }

.pagination-dots {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Intro Section */
.intro {
    padding: 5rem 0;
    background: #f9f9f9;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.cta-button:hover {
    background: #e55d00;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        list-style: none; /* Add this line */
        padding-left: 0; /* Add this line */
        position: static;
        box-shadow: none;
        background: #f8f8f8;
        margin-top: 0.5rem;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu li:hover {
        padding-left: 1.5rem;
    }

    .logo span {
        font-size: 0.8rem;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-image img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slider-arrow {
        padding: 1rem;
    }

    .slider-arrow i {
        font-size: 1.2rem;
    }
}

/* Intro Section */
        .intro {
            padding: 5rem 0;
            background: #fff;
        }

        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .intro-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .intro-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: var(--transition);
        }

        .intro-text h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .intro-text p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            background: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(255, 102, 0, 0.05) 100%);
            z-index: 0;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: #fff;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            transform: translateY(30px);
            opacity: 0;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary-color);
            z-index: -1;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 51, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);
            position: relative;
        }

        .feature-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: rgba(255, 255, 255, 0.15);
        }

        .feature-card:hover .feature-icon i {
            color: #fff;
            transform: scale(1.1);
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .feature-desc {
            color: #666;
            transition: var(--transition);
            margin-bottom: 1.5rem;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .feature-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-title,
        .feature-card:hover .feature-desc,
        .feature-card:hover .feature-link {
            color: #fff;
        }

        .feature-card:hover .feature-link i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .intro-container {
                gap: 3rem;
            }
            
            .intro-image img {
                height: 400px;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .intro-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .intro-image img {
                height: 350px;
            }
            
            .section-title {
                font-size: 2.4rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-card {
                padding: 1.8rem;
            }
        }

/* Products Section */
.products {
    padding: 4rem 2rem;
    background: #fff;
    position: relative;
    z-index: 1;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
     position: relative;
    z-index: 2;
}

.header {
    z-index: 1000; /* Should be lower than products section */
}


.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.8s ease;
    /* opacity: 0; */
    transform: translateY(10px);
} 

.product-card.active {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}



.product-info p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .products h2 {
        font-size: 2rem;
    }
}




.contact-buttons {
    z-index: 9999; 
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .call-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

.call-btn {
    background: var(--primary-color);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


/* About us section */

/* Page Header */
.page-header {
    height: 50vh;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    padding: 2rem;
}

.page-header-content {
    max-width: 800px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.page-header p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease;
}

/* About Sections */
.about-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.text-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.text-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-content ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
    list-style-type: circle;
    color: #555;
}

.image-content {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.image-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.image-content img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.image-content:hover img {
    transform: scale(1.05);
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    transform: translateY(30px);
    opacity: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    z-index: -1;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.value-card:hover::before {
    height: 100%;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.15);
}

.value-card:hover .value-icon i {
    color: #fff;
    transform: scale(1.1);
}

.value-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-desc {
    color: #666;
    transition: var(--transition);
}

.value-card:hover .value-title,
.value-card:hover .value-desc {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .content-wrapper.reverse {
        flex-direction: column;
    }
    
    .text-content, .image-content {
        width: 100%;
    }
    
    .image-content img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .image-content img {
        height: 350px;
    }
    
    .text-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 40vh;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Commitment Page */
/* Page Header */
.page-header {
    height: 50vh;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    padding: 2rem;
}

.page-header-content {
    max-width: 800px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.page-header p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease;
}

/* Commitments Section */
.commitments-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Commitment Cards */
.commitment-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.commitment-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.commitment-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 80px;
    height: 80px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.commitment-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.commitment-content {
    padding: 4rem 2rem 2rem;
}

.commitment-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-left: 100px;
}

.content-wrapper {
    display: flex;
    gap: 3rem;
}

.text-content {
    flex: 1;
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-content ul {
    padding-left: 20px;
    margin-bottom: 2rem;
    list-style-type: none;
}

.text-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    color: #555;
}

.text-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.image-content {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-content:hover img {
    transform: scale(1.05);
}

/* Certificates Grid */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.certificate-item {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certificate-item img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.certificate-item p {
    font-weight: 600;
    color: var(--primary-color);
}




/* Eco Stats */
.eco-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(0, 51, 102, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(0, 51, 102, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .content-wrapper.reverse {
        flex-direction: column;
    }
    
    .commitment-content h3 {
        padding-left: 0;
        text-align: center;
    }
    
    .commitment-icon {
        position: static;
        margin: 0 auto 2rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .eco-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .commitment-icon {
        width: 70px;
        height: 70px;
    }
    
    .commitment-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 40vh;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .commitment-content {
        padding: 3rem 1.5rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Projects Page */
/* Page Header */
.page-header {
    height: 50vh;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    padding: 2rem;
}

.page-header-content {
    max-width: 800px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.page-header p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Project Tabs */
.project-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-button {
    padding: 0.8rem 1.8rem;
    background: #f0f0f0;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button:hover {
    background: #e0e0e0;
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
}

.tab-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Project Item */
.project-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.project-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.slider-prev, .slider-next {
    background: rgba(255,255,255,0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255,255,255,0.7);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.project-details {
    padding: 2rem;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-meta span {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.project-type {
    background: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
}

.project-duration {
    background: rgba(255, 102, 0, 0.1);
    color: var(--secondary-color);
}

.project-value {
    background: rgba(0, 128, 0, 0.1);
    color: #008000;
}

.project-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Language Tabs */
.lang-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: #e0e0e0;
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

.project-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.project-scope {
    margin-top: 1.5rem;
}

.project-scope h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.project-scope ul {
    padding-left: 20px;
    list-style-type: none;
}

.project-scope ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
}

.project-scope ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Arabic Content */
[dir="rtl"] .project-scope ul li {
    padding-left: 0;
    padding-right: 25px;
}

[dir="rtl"] .project-scope ul li::before {
    left: auto;
    right: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-slider {
        height: 350px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .project-slider {
        height: 300px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .project-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 40vh;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .project-slider {
        height: 250px;
    }
    
    .tab-buttons {
        justify-content: flex-start;
    }
    
    .project-details {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Footer Styles */
        .footer-container {
            background: linear-gradient(135deg, #003366 0%, #001a33 100%);
            color: #fff;
            padding: 60px 20px 30px;
            position: relative;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .footer-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.1) 0px, transparent 50px),
                radial-gradient(circle at 90% 60%, rgba(255, 102, 0, 0.1) 0px, transparent 50px);
            z-index: 1;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-logo-col {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
        }
        
        .footer-logo.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .footer-logo img {
            height: 60px;
            margin-right: 15px;
        }
        
        .footer-logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
        }
        
        .footer-logo-text span {
            display: block;
            font-size: 0.9rem;
            font-weight: 400;
            margin-top: 5px;
        }
        
        .footer-description {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.8);
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.8s ease 0.1s, opacity 0.8s ease 0.1s;
        }
        
        .footer-description.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
        }
        
        .social-links.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
        }
        
        .footer-col h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
        }
        
        .footer-col h3.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
        }
        
        .footer-links li.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .footer-links li:nth-child(1) { transition-delay: 0.1s; }
        .footer-links li:nth-child(2) { transition-delay: 0.2s; }
        .footer-links li:nth-child(3) { transition-delay: 0.3s; }
        .footer-links li:nth-child(4) { transition-delay: 0.4s; }
        .footer-links li:nth-child(5) { transition-delay: 0.5s; }
        .footer-links li:nth-child(6) { transition-delay: 0.6s; }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-links i {
            margin-right: 10px;
            font-size: 0.9rem;
            color: var(--secondary-color);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
        }
        
        .contact-info li.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .contact-info li:nth-child(1) { transition-delay: 0.1s; }
        .contact-info li:nth-child(2) { transition-delay: 0.2s; }
        .contact-info li:nth-child(3) { transition-delay: 0.3s; }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            color: var(--secondary-color);
            font-size: 1.1rem;
        }
        
        .contact-details {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .contact-details a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }
        
        .contact-details a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 50px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .copyright {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
        }
        
        .copyright.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .footer-nav {
            display: flex;
            gap: 25px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
        }
        
        .footer-nav.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .footer-nav a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .footer-nav a:hover {
            color: var(--secondary-color);
        }
        
        .back-to-top {
            position: absolute;
            right: 30px;
            top: 10px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary-color);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 10;
            transform: translateY(20px);
            opacity: 0;
        }
        
        .back-to-top.visible {
            transform: translateY(0);
            opacity: 1;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
        }
        
        /* Animation for the construction line */
        .construction-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary-color);
            transform: translateX(-100%);
            z-index: 3;
        }
        
        .animate-line {
            animation: constructionLine 3s ease-in-out forwards;
        }
        
        @keyframes constructionLine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(0); }
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .footer-content {
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .footer-nav {
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-col h3::after {
                width: 40px;
            }
            
            .back-to-top {
                right: 20px;
                top: 10px;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .footer-logo {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-logo img {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }



        /* Contact Page Styles */
.contact-header {
    height: 60vh;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.9)), 
                url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.contact-header .header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
}

.info-card.animate-on-scroll {
    transform: translateY(0);
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-content p, .info-content a {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--secondary-color);
}

/* Contact Form & Map */
.contact-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-form.animate-on-scroll {
    transform: translateY(0);
    opacity: 1;
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 25px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23003366' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat;
    background-position: right 5px center;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #777;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline,
.form-group select:focus ~ .underline {
    width: 100%;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 0;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.submit-btn span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.submit-btn i {
    margin-left: 10px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: all 0.4s ease;
}

.submit-btn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover span {
    transform: translateX(-10px);
}

.submit-btn:hover i {
    transform: translateX(0);
    opacity: 1;
}

.submit-btn:hover::before {
    left: 0;
}

/* Map Container */
.map-container {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.map-container.animate-on-scroll {
    transform: translateY(0);
    opacity: 1;
}

#googleMap {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-overlay:hover {
    background: white;
    transform: translateY(-5px);
}

.map-overlay i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.map-overlay h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.map-overlay p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

/* Branches Section */
.branches-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.branch-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
}

.branch-card.animate-on-scroll {
    transform: translateY(0);
    opacity: 1;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.branch-img {
    height: 200px;
    overflow: hidden;
}

.branch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.branch-card:hover .branch-img img {
    transform: scale(1.05);
}

.branch-info {
    padding: 1.5rem;
}

.branch-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.branch-info p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.branch-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-map {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.8rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-header {
        height: 50vh;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}










/* Company Profile Download Section */
.profile-download-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.profile-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.download-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.download-card {
    padding: 40px;
}

.download-icon {
    font-size: 4rem;
    color: #003366;
    margin-bottom: 20px;
    display: inline-block;
    animation: downloadFloat 3s ease-in-out infinite;
}

@keyframes downloadFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.download-title {
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.download-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.file-info {
    background: rgba(0, 51, 102, 0.05);
    border-left: 4px solid #ff6600;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.file-info span {
    display: block;
    color: #003366;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.file-info span:last-child {
    margin-bottom: 0;
    color: #666;
    font-weight: 400;
}

.file-info i {
    margin-right: 10px;
    color: #ff6600;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #003366 0%, #00264d 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    font-family: inherit;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.3);
}

.download-btn:active {
    transform: translateY(-1px);
}

.download-btn i {
    font-size: 1.4rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: translateY(3px);
}

.download-note {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.download-note i {
    margin-right: 8px;
    color: #ff6600;
}

.visual-container {
    height: 400px;
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)), 
                url('https://images.unsplash.com/photo-1503387769-00a112127ca0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-overlay {
    text-align: center;
    color: white;
    padding: 20px;
}

.visual-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.visual-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Download Notification */
.download-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.4s ease;
}

.download-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content i {
    font-size: 1.5rem;
    margin-right: 12px;
}

.notification-content span {
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .download-container {
        grid-template-columns: 1fr;
    }
    
    .visual-container {
        height: 250px;
        min-height: 250px;
    }
    
    .download-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .profile-download-section {
        padding: 4rem 1.5rem;
        margin: 3rem 0;
    }
    
    .download-card {
        padding: 30px 25px;
    }
    
    .download-title {
        font-size: 1.8rem;
    }
    
    .download-desc {
        font-size: 1rem;
    }
    
    .visual-overlay h3 {
        font-size: 1.6rem;
    }
    
    .visual-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-download-section {
        padding: 3rem 1rem;
        margin: 2rem 0;
    }
    
    .download-card {
        padding: 25px 20px;
    }
    
    .download-title {
        font-size: 1.6rem;
    }
    
    .download-desc {
        font-size: 0.95rem;
    }
    
    .download-btn {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
    
    .download-icon {
        font-size: 3rem;
    }

/* Force styles to work */
.profile-download-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
}
