    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body{
            font-family: 'Poppins',Arial, Helvetica, sans-serif ;
        }

        :root{
            --primary-text-color : white;
            --secondary-text-color : #1D5494;
        }
    :root {
                --primary-blue: #1a4b8e;
                --secondary-blue: #2a6fd6;
                --accent-yellow: #ffc107;
                --light-blue: #e9f0fa;
                --dark-blue: #0d2b4e;
            }
            
            body {
                font-family: 'Poppins', sans-serif;
            }
            
        /* --------------------------------------------------------------- Header -------------------------------------------------------------*/

            :root {
                --primary-blue: #1a4b8e;
                --secondary-blue: #2a6fd6;
                --accent-yellow: #ffc107;
                --light-blue: #e9f0fa;
                --dark-blue: #0d2b4e;
            }
            
            body {
                font-family: 'Poppins', sans-serif;
            }
            
            /* Top Contact Bar */
            .top-contact-bar {
                background-color: #0b5ed7;;
                color: white;
                padding: 8px 0;
                font-size: 14px;    
            }
            
            .contact-info-header a {
                color: white;
                text-decoration: none;
                margin-right: 20px;
                transition: all 0.3s;
                display: inline-flex;
                text-align: start !important;
            }

            
            .contact-info-header a:hover {
                color: var(--accent-yellow);
            }
            
            .contact-info-header i {
                margin-right: 8px;
                font-size: 16px;
            }

            .fas{
                padding-top: 3px;
            }
            
            /* Main Header */
            .main-header {
                background-color: white;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                padding: 12px 0;
                position: sticky;
                top: 0;
                z-index: 1000;
            }
            
            .logo-container {
                display: flex;
                align-items: center;
            }
            
            .logo {
                height: 55px;
                margin-right: 15px;
                transition: transform 0.3s;
            }
            
            .logo:hover {
                transform: scale(1.05);
            }
            
            .company-name {
                font-family: 'Poppins', sans-serif;
            }
            
            .company-name h2 {
                font-size: 18px;
                font-weight: 600;
                color: var(--primary-blue);
                margin-bottom: 0;
                line-height: 1.2;
                letter-spacing: -0.5px;
            }
            
            .company-name p {
                font-size: 14px;
                color: #666;
                margin-bottom: 0;
                font-weight: 400;
            }
            
            /* Navigation */
            .navbar-nav .nav-link {
                color: #333;
                font-weight: 500;
                padding: 10px 18px !important;
                position: relative;
                transition: all 0.3s;
                border-radius: 4px;
                margin: 0 2px;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-blue);
            }
            
            .navbar-nav .nav-item.active .nav-link {
                color: var(--primary-blue);
                font-weight: 600;
            }
    /*         
            .navbar-nav .nav-link:hover::after {
                width: 100%;
            } */
            
            /* .navbar-nav .nav-link::after {
                content: '';
                position: absolute;
                bottom: 6px;
                left: 0px;
                width: 0;
                height: 2px;
                background-color: var(--accent-yellow);
                transition: width 0.3s;
            } */
            
        /* Dropdown Menu */
    .dropdown-menu {
        border: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-radius: 8px;
        padding: 10px 0;
        border-top: 3px solid var(--accent-yellow);
        min-width: 250px; /* Increased width */
    }

    /* Products dropdown specific styling */
    #productsDropdown + .dropdown-menu {
        min-width: 280px; /* Even wider for products */
    }

    .dropdown-item {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: all 0.2s;
        font-weight: 500;
        color: #444;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-item:hover {
        background-color: var(--light-blue);
        color: var(--primary-blue);
        padding-left: 25px;
    }

    .dropdown-item i {
        font-size: 12px;
        opacity: 0.7;
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu .dropdown-menu {
        top: -10px;
        left: 100%;
        margin-left: 0;
        display: none;
        min-width: 230px; /* Submenu width */
    }

    

    /* Desktop View */
    @media (min-width: 992px) {
        .dropdown:hover > .dropdown-menu {
            display: block;
            animation: fadeInUp 0.3s;
        }
        
        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
            animation: fadeInRight 0.3s;
        }
        
        /* Ensure proper positioning of submenus */
        .dropdown-submenu .dropdown-menu {
            position: absolute;
            top: 0;
            left: 100%;
            margin-top: -10px;
            margin-left: -1px;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
    }

        /* ---------------------------------------------------------------Hero -------------------------------------------------------------*/

        .hero-cont{
            background-color: black;
            background-image: url(/assests/Photos/Front_Image.jpg);
            height: 100dvh;
            background-size: cover;
            display: flex;
        

        }

        .hero-content-cont{
            text-align: center;
            align-content: center;
            width: 50%;
            color: white;
        }

        .hero-content-cont2{
            visibility: hidden;
        }

        .view-prod-button{
            padding: 10px;
            border-radius: 10px;
            border: 3px solid var(--secondary-text-color);
            background-color: var(--secondary-text-color);
            color: white;
        }

        /*------------------- Brand -------------------------------*/

        .brand-slider-container {
                width: 100%;
                height: 300px;
                overflow: hidden;
                position: relative;
                background: #f8f9fa;
                padding: 20px 0;
                margin: 40px 0;
            }
            
            .brand-slider-title {
                text-align: center;
                margin-bottom: 20px;
                font-size: 24px;
                color: #333;
                font-weight: 600;
            }
            
            .brand-slider-track {
                display: flex;
                width: calc(250px * 12); /* Adjust based on total images */
                height: 140px;
                animation: slide 28s linear infinite; /* 7s per 4 logos */
            }
            
            .brand-slide {
                width: 250px;
                height: 140px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0 20px;
            }
            
            .brand-slide img {
                max-width: 100%;
                max-height: 100%;
                /* filter: grayscale(100%);
                opacity: 0.7; */
                transition: all 0.3s ease;
            }
            
            .brand-slide img:hover {
                filter: grayscale(0);
                opacity: 1;
                transform: scale(1.05);
            }
            
            @keyframes slide {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-250px * 8)); /* Move by 8 slides (2 sets of 4) */
                }
            }


    /* Products */

            .products-section {
            padding: 80px 0;
            background-color: #f9f9f9;
            position: relative;
        }
        
        .products-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: black;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            text-align: center;
            background: #e74c3c;
            border-radius: 2px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.1s ease;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .product-img-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img {
            transform: scale(1.1);
        }
        
        .product-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
                        align-self: center;

        }
        
        .product-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .product-description {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .explore-btn {
            display: inline-block;
            padding: 10px 20px;
            background: #e74c3c;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            width: fit-content;
            align-self: center;
            position: relative;
            overflow: hidden;
        }
        
        .explore-btn::before {
            content: 'Explore More';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0b5ed7;;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .explore-btn::before {
            transform: translateY(0);
        }
        
        .product-label {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #e74c3c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .products-section {
                padding: 60px 0;
            }
            
            .product-name {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
        }

        /* quote-section */

        .quote-section {
        text-align: center;
        padding: 30px;
        font-family: Arial, sans-serif;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .quote-section h2 {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .quote-section p {
        font-size: 16px;
        margin-bottom: 20px;
        color: #555;
    }
    
    .quote-button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 25px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .quote-button:hover {
        background-color: #0056b3;
    }


    /* Faetures  */

    .features-section {
        padding: 60px 20px;
        background-color: #f9f9f9;
        text-align: center;
        font-family: 'Arial', sans-serif;
    }
    
    .features-header h2 {
        font-size: 36px;
        margin-bottom: 15px;
        color: black;
        font-weight: 600;
    }
    
    .features-header p {
        font-size: 18px;
        color: black;
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .features-container {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .feature-box {
        background: white;
        border-radius: 10px;
        padding: 30px 20px;
        flex: 1;
        min-width: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
        font-size: 40px;
        color: #4e6bff;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
    
    .feature-box:hover .feature-icon {
        transform: scale(1.2);
        color: #2a4aff;
    }
    
    .feature-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #333;
    }
    
    .feature-box p {
        font-size: 15px;
        color: #666;
        line-height: 1.5;
    }
    
    @media (max-width: 992px) {
        .features-container {
            flex-wrap: wrap;
        }
        
        .feature-box {
            flex: 0 0 calc(50% - 20px);
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .feature-box {
            flex: 0 0 100%;
        }
    }


    /* Preferred Section */

    .preferred-section {
        padding: 80px 20px;
        background-color: #fff;
        text-align: center;
        font-family: 'Arial', sans-serif;
    }
    
    .preferred-header h2 {
        font-size: 36px;
        margin-bottom: 15px;
        color: #222;
        font-weight: 700;
    }
    
    .preferred-header p {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto 60px;
        font-style: italic;
    }
    
    .leaders-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .leader-box {
        width: 250px;
        height: 300px;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
    }
    
    .leader-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px #1a4b8e;
    }
    
    .leader-image {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .leader-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }
    
    .leader-name {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: #1a4b8e;
        color: white;
        padding: 20px 10px;
        transform: translateY(100%);
        transition: all 0.4s ease;
        font-size: 16px;
        line-height: 1.4;
    }
    
    .leader-name span {
        font-size: 14px;
        display: block;
        color: #aaa;
        font-weight: normal;
    }
    
    .leader-box:hover .leader-name {
        transform: translateY(0);
    }
    
    .leader-box:hover img {
        transform: scale(1.1);
    }
    
    @media (max-width: 900px) {
        .leader-box {
            width: 160px;
            height: 160px;
        }
    }
    
    @media (max-width: 600px) {
        .leader-box {
            width: 130px;
            height: 130px;
        }
        
        .leader-name {
            font-size: 14px;
            padding: 10px 5px;
        }
        
        .leader-name span {
            font-size: 12px;
        }
    }

        /* SlideShow */

             /* Custom styles */
        .slideshow-container {
            height: 80vh;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.1);
            transition: all 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
            animation: zoomIn 8s ease-in-out forwards;
        }
        
        .slide img, .slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @keyframes zoomIn {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.1);
            }
        }
        
        /* Content overlay */
        .content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 10;
            color: white;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
        }
        
        .content-wrapper {
            max-width: 600px;
            padding: 2rem;
            margin-left: 5%;
        }
        
        .main-heading {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.2;
        }
        
        .main-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .btn-custom {
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            margin-right: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom {
            background-color: #0b5ed7;
            border: 2px solid #0d6efd;
        }
        
        .btn-outline-custom {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .btn-primary-custom:hover {
            background-color: #0b5ed7;
            border-color: #0a58ca;
            transform: translateY(-2px);
        }
        
        .btn-outline-custom:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .main-heading {
                font-size: 2.8rem;
            }
            
            .content-wrapper {
                margin-left: 2%;
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.2rem;
            }
            
            .main-description {
                font-size: 1rem;
            }
            
            .content-overlay {
                background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
                justify-content: center;
            }
            
            .content-wrapper {
                margin-left: 0;
                text-align: center;
                max-width: 90%;
            }
            
            .btn-group {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .main-heading {
                font-size: 1.8rem;
            }
            
            .btn-custom {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        
        /* Preload technique for smoother transitions */
        body::after {
            position: absolute; 
            width: 0; 
            height: 0; 
            overflow: hidden; 
            z-index: -1;
            content: url('./assests/Photos/Front_Image.jpg') url('/assests/Photos/WhatsApp Image 2020-06-23 at 4.24.51 PM (1).jpeg');
        }

        /*-------------------------------------------------- About us and Founder ------------------------------------------------------------------------*/

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            }

        .highlight {
            font-weight: bold;
            color: #0056b3;
            }

        .content-box{
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 2rem;
            margin-bottom: 2rem;
            width: 90%; /* Adjust the width percentage as needed */
            margin: 0 auto; /* Center the box */
            padding: 20px; /* Optional: adjust padding for spacing */
        }


        /* ----------------------------------------------------------------Contact ----------------------------------------------------------------------*/

            :root {
                    --primary-blue: #1a4b8e;
                    --secondary-blue: #2a6fd6;
                    --light-blue: #e8f1fd;
                    --dark-gray: #2d3748;
                    --medium-gray: #4a5568;
                    --light-gray: #f7fafc;
                }
                
                body {
                    background-color: var(--light-gray);
                    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                }
                
                .contact-container {
                    max-width: 1000px;
                    margin: 2rem auto;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                    border-radius: 12px;
                    overflow: hidden;
                                        background-color: #0056b3;

                }
                
                .contact-info {
                    color: white;
                    height: 100%;
                    padding: 10px;
                    background-color: #0056b3;
                    margin-top: 10px;
                }
                
                .contact-info h3 {
                    font-weight: 600;
                    margin-bottom: 1.5rem;
                    position: relative;
                    padding-bottom: 15px;
                }
                
                .contact-info h3::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 50px;
                    height: 3px;
                    background: rgba(255, 255, 255, 0.5);
                }
                
                .contact-info-item {
                    margin-bottom: 1.5rem;
                    display: flex;
                    align-items: flex-start;
                }
                
                .contact-info-icon {
                    font-size: 1.2rem;
                    margin-right: 1rem;
                    margin-top: 3px;
                    color: rgba(255, 255, 255, 0.8);
                }
                
                .contact-form-section {
                    background: white;
                    padding: 3rem;
                }
                
                
                .form-header {
                    color: var(--primary-blue);
                    font-weight: 700;
                    margin-bottom: 2rem;
                    position: relative;
                    padding-bottom: 15px;
                }
                
                .form-header::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 50px;
                    height: 3px;
                }
                
                .form-control {
                    border: 1px solid #e2e8f0;
                    padding: 12px 15px;
                    border-radius: 6px;
                    margin-bottom: 1.5rem;
                    transition: all 0.3s;
                }

                .form-control:focus, .form-select:focus,
                .form-control:active, .form-select:active,
                .form-control:focus-visible, .form-select:focus-visible {
                border-color: rgb(89, 172, 220) !important;
                box-shadow: none !important;
                outline: none !important;
                }
                
                .form-label {
                    color: var(--medium-gray);
                    font-weight: 500;
                    margin-bottom: 8px;
                }
                
                .btn-submit {
                    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
                    border: none;
                    padding: 12px 30px;
                    font-weight: 500;
                    letter-spacing: 0.5px;
                    border-radius: 6px;
                    transition: all 0.3s;
                }
                
                .btn-submit:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 5px 15px rgba(42, 111, 214, 0.3);
                }
                
                .social-links {
                    margin-top: 2rem;
                }
                
                .social-links a {
                    display: inline-block;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: rgba(255, 255, 255, 0.1);
                    color: white;
                    text-align: center;
                    line-height: 40px;
                    margin-right: 10px;
                    transition: all 0.3s;
                }
                
                .social-links a:hover {
                    background: rgba(255, 255, 255, 0.2);
                    transform: translateY(-3px);
                }

                /*  */
                
                .contact-info-item a{
                    text-decoration: none;
                    color: white;
                }

                @media (max-width: 768px) {
                    .contact-container {
                        margin: 2rem auto;
                    }
                    
                    .contact-info, .contact-form-section {
                        padding: 2rem;
                    }
                }


                /* ----------------------------------------------------------------Footer -----------------------------------------------------------------*/

                :root {
                    --primary-blue: #1a4b8e;
                    --secondary-blue: #2a6fd6;
                    --light-blue: #e8f1fd;
                    --white: #ffffff;
                    --dark-gray: #2d3748;
                    --medium-gray: #4a5568;
                }

                main {
                    flex: 1;
                }
                
                footer {
                    background-color: var(--primary-blue);
                    color: var(--white);
                    padding: 50px 0 20px;
                    margin-top: auto;
                    display: flex;
                    flex-direction: column;
                }
                
                .footer-container {
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 0 20px;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 30px;
                }
                
                .footer-logo {
                    margin-bottom: 20px;
                }
                
                .footer-logo h2 {
                    font-size: 24px;
                    font-weight: 700;
                    color: var(--white);
                    margin-bottom: 10px;
                }
                
                .footer-logo p {
                    color: rgba(255, 255, 255, 0.8);
                    line-height: 1.6;
                }
                
                .footer-section h3 {
                    font-size: 18px;
                    font-weight: 600;
                    margin-bottom: 20px;
                    position: relative;
                    padding-bottom: 10px;
                }
                
                .footer-section h3::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 40px;
                    height: 2px;
                    background-color: var(--secondary-blue);
                }

                .footer-section a{
                    color: white;
                    text-decoration: none;
                }
                
                .footer-links {
                    list-style: none;
                }
                
                .footer-links li {
                    margin-bottom: 12px;
                }
                
                .footer-links a {
                    color: rgba(255, 255, 255, 0.8);
                    text-decoration: none;
                    transition: all 0.3s ease;
                    display: block;
                }
                
                .footer-links a:hover {
                    color: var(--white);
                    transform: translateX(5px);
                }
                
                .contact-info-footer {
                    margin-top: 5px;
                    color: rgba(255, 255, 255, 0.8);
                }
                
                .contact-info-footer i {
                    margin-right: 10px;
                    color: var(--secondary-blue);
                }
                
                .footer-bottom {
                    background-color: rgba(0, 0, 0, 0.1);
                    padding: 20px 0;
                    margin-top: 40px;
                    text-align: center;
                }
                
                .footer-bottom p {
                    color: rgba(255, 255, 255, 0.7);
                    font-size: 14px;
                }
                
                .footer-bottom a {
                    color: var(--white);
                    text-decoration: none;
                }
                
                .footer-bottom a:hover {
                    text-decoration: underline;
                }
                
                footer ul{
                    padding-left: 0rem;
                }

                
                .contact-info-footer {
                background: none;
                color: white;
                padding: 0rem;
                }
            
                
                @media (max-width: 768px) {
                    .footer-container {
                        grid-template-columns: 1fr;
                    }
                    
                    .footer-section {
                        margin-bottom: 30px;
                    }
                }