  /* Global Variables */
        :root {
            --primary-color: #214e31;
            --secondary-color: #900606;
            --accent-color: #ff5400;
            --text-color: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --bg-dark: #1a1a1a;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Yantramanav', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* Top Bar */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 2px 0;
            font-size: 14px;
            z-index: 1001;
            transition: transform 0.3s ease;
        }
        
        .top-bar.hide {
            transform: translateY(-100%);
        }
        
        .top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
            transition: opacity 0.3s ease;
        }
        
        .top-bar a:hover {
            opacity: 0.8;
        }
        
        .top-bar i {
            margin-right: 5px;
            color: var(--accent-color);
        }
        
        .employee-corner-link {
            background: rgba(255,255,255,0.1);
            padding: 5px 15px;
            border-radius: 20px;
            transition: var(--transition);
        }
        
        .employee-corner-link:hover {
            background: var(--accent-color);
        }
        
        
        
        /* Header */
        .header {
            position: fixed;
            top: 30px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: var(--transition);
        }
        
        .header.header-shrink {
            top: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .header.header-shrink .navbar {
            padding: 0px 0;
        }
        
        .header.header-shrink .navbar-brand img {
            max-height: 50px;
        }
        
        .navbar {
            padding: 0px 0;
            transition: var(--transition);
        }
        
        .navbar-brand img {
            max-height: 70px;
            width: auto;
            transition: var(--transition);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-color);
            padding: 10px 15px !important;
            position: relative;
            transition: var(--transition);
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transition: transform 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            transform: translateX(-50%) scaleX(1);
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        body {
            padding-top: 110px;
        }
        
        body.header-shrink-padding {
            padding-top: 70px;
        }
        
        /* Header - Mobile Responsive */
       
        
        .header.header-shrink {
            top: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .header.header-shrink .navbar {
            padding: 8px 0;
        }
        
        .header.header-shrink .navbar-brand img {
            max-height: 50px;
        }
        
        .navbar {
            padding: 0px 0;
            transition: var(--transition);
        }
        
        .navbar-brand img {
            max-height: 70px;
            width: auto;
            transition: var(--transition);
        }
        
        /* Desktop Navigation */
        .navbar-nav .nav-link {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-color);
            padding: 10px 15px !important;
            position: relative;
            transition: var(--transition);
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transition: transform 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            transform: translateX(-50%) scaleX(1);
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        /* Mobile Navigation Styles */
        @media (max-width: 991px) {
            
             .header {
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: var(--transition);
        }
        
        
            .navbar {
                padding: 10px 0;
            }
            
            .navbar-brand img {
                max-height: 50px;
            }
            
            .navbar-toggler {
                border: none;
                padding: 8px 12px;
                border-radius: 8px;
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                transition: var(--transition);
            }
            
            .navbar-toggler:focus {
                box-shadow: none;
                outline: none;
            }
            
            .navbar-toggler .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }
            
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.15);
                margin-top: 15px;
                max-height: 80vh;
                overflow-y: auto;
                border: 1px solid rgba(13,46,113,0.1);
            }
            
            .navbar-nav {
                margin: 0;
                padding: 0;
            }
            
            .navbar-nav .nav-item {
                margin: 5px 0;
                border-bottom: 1px solid rgba(13,46,113,0.1);
            }
            
            .navbar-nav .nav-item:last-child {
                border-bottom: none;
            }
            
            .navbar-nav .nav-link {
                padding: 15px 20px !important;
                font-size: 16px;
                font-weight: 500;
                color: var(--text-color);
                border-radius: 10px;
                transition: var(--transition);
                position: relative;
                overflow: hidden;
            }
            
            .navbar-nav .nav-link:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 4px;
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                transform: scaleY(0);
                transition: transform 0.3s ease;
            }
            
            .navbar-nav .nav-link:hover:before,
            .navbar-nav .nav-link.active:before {
                transform: scaleY(1);
            }
            
            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.active {
                background: rgba(13,46,113,0.05);
                color: var(--primary-color);
                padding-left: 30px !important;
            }
            
            .navbar-nav .nav-link:after {
                display: none;
            }
            
            /* Animation for menu items */
            .navbar-nav .nav-item {
                opacity: 0;
                transform: translateX(-20px);
                animation: slideInRight 0.4s ease forwards;
            }
            
            .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
            .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
            .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
            .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
            .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
            .navbar-nav .nav-item:nth-child(6) { animation-delay: 0.6s; }
            
            @keyframes slideInRight {
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
        }
        
        /* Small Mobile Devices */
        @media (max-width: 576px) {
            .navbar-brand img {
                max-height: 45px;
            }
            
            .navbar-collapse {
                padding: 15px;
                max-height: 70vh;
            }
            
            .navbar-nav .nav-link {
                padding: 12px 15px !important;
                font-size: 15px;
            }
            
            .navbar-toggler {
                padding: 6px 10px;
            }
        }
        
        body {
            padding-top: 110px;
        }
        
        body.header-shrink-padding {
            padding-top: 70px;
        }
        
        /* Mobile body padding adjustment */
        @media (max-width: 991px) {
            body {
                padding-top: 90px;
            }
            
            body.header-shrink-padding {
                padding-top: 60px;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding-top: 80px;
            }
            
            body.header-shrink-padding {
                padding-top: 55px;
            }
        }
                
        /* Hero Carousel Section */
        .hero-carousel-section {
            position: relative;
            height: calc(100vh - 110px);
            min-height: 700px;
            overflow: hidden;
            margin-top: -40px;
        }
        
        #heroCarousel {
            height: 100%;
        }
        
        #heroCarousel .carousel-inner,
        #heroCarousel .carousel-item {
            height: 100%;
        }
        
        .carousel-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary-color);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .carousel-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform 8s ease;
        }
        
        #heroCarousel .carousel-item.active .carousel-background img {
            transform: scale(1.1);
        }
        
        .carousel-overlay {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: linear-gradient(90deg, rgb(13 46 113 / 34%) 0%, rgb(144 6 6 / 33%) 50%, rgba(0, 0, 0, 0.4) 100%);
           z-index: 1;
        }
        
        .carousel-caption {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            text-align: left;
            z-index: 2;
            padding: 0;
        }
        
        .slide-subtitle {
            color: var(--accent-color);
            font-size: 20px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .slide-title {
            font-size: 72px;
            font-weight: 800;
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .slide-description {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 35px;
            max-width: 600px;
            line-height: 1.8;
        }
        
        .carousel-indicators {
            bottom: 40px;
            z-index: 3;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
            background: rgba(255,255,255,0.5);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators button.active {
            width: 30px;
            border-radius: 30px;
            background: var(--accent-color);
            border-color: white;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(0,0,0,0.3);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 3;
        }
        
        .carousel-control-prev {
            left: 30px;
        }
        
        .carousel-control-next {
            right: 30px;
        }
        
        .hero-carousel-section:hover .carousel-control-prev,
        .hero-carousel-section:hover .carousel-control-next {
            opacity: 1;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .carousel-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.2);
            z-index: 3;
        }
        
        .carousel-progress .progress-bar {
            width: 0%;
            height: 100%;
            background: var(--accent-color);
            animation: progress 5s linear infinite;
        }
        
        @keyframes progress {
            0% { width: 0%; }
            100% { width: 100%; }
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            text-align: center;
        }
        
        .scroll-link {
            display: inline-block;
            text-decoration: none;
            color: white;
        }
        
        .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 20px;
            display: block;
            margin: 0 auto 10px;
            position: relative;
            animation: bounce 2s infinite;
        }
        
        .wheel {
            width: 4px;
            height: 10px;
            background: white;
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }
        
        .scroll-text {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
            opacity: 0.8;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        @keyframes scroll {
            0% { opacity: 1; top: 8px; }
            100% { opacity: 0; top: 32px; }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-subtitle {
            color: var(--secondary-color);
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Buttons */
        .btn {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            padding: 12px 30px;
            border-radius: 30px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover:before {
            left: 0;
        }
        
        .btn-primary {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background: transparent;
            border-color: var(--secondary-color);
            color: white;
        }
        
        .btn-outline-light {
            border: 2px solid white;
            color: white;
        }
        
        .btn-outline-light:hover {
            background: transparent;
            color: white;
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
        }
        
        /* About Section */
                .company-story-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .story-image {
            position: relative;
            height: 100%;
            min-height: 500px;
            background-color: var(--primary-color); /* Fallback color */
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
        }


        .intro-image .placeholder-text {
            font-size: 24px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--secondary-color);
            color: white;
            padding: 20px;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: var(--shadow);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .experience-badge .years {
            font-size: 32px;
            font-weight: 700;
            line-height: 1;
        }
        
        .experience-badge .text {
            font-size: 12px;
            text-transform: uppercase;
        }
        
        .company-tagline {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-item i {
            color: var(--secondary-color);
            font-size: 18px;
        }
        
        /* Mission Cards */
        .mission-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .mission-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transition: height 0.4s ease;
            z-index: -1;
        }
        
        .mission-card:hover:before {
            height: 100%;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            color: white;
        }
        
        .mission-card:hover .mission-icon i,
        .mission-card:hover .mission-title,
        .mission-card:hover .mission-description {
            color: white;
        }
        
        .mission-icon {
            width: 80px;
            height: 80px;
            background: rgba(13,46,113,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
        }
        
        .mission-icon i {
            font-size: 36px;
            color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .mission-title {
            font-size: 22px;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .mission-description {
            color: var(--text-light);
            margin-bottom: 0;
            transition: var(--transition);
        }
        
        /* Project Cards */
        /*.project-card {*/
        /*    background: white;*/
        /*    border-radius: 15px;*/
        /*    overflow: hidden;*/
        /*    box-shadow: var(--shadow);*/
        /*    transition: var(--transition);*/
        /*    height: 100%;*/
        /*}*/
        
        /*.project-card:hover {*/
        /*    transform: translateY(-10px);*/
        /*    box-shadow: var(--shadow-hover);*/
        /*}*/
        
        /*.project-image {*/
        /*    position: relative;*/
        /*    overflow: hidden;*/
        /*    height: 250px;*/
        /*    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    color: white;*/
        /*}*/
        
        /*.project-image .placeholder-icon {*/
        /*    font-size: 48px;*/
        /*    margin-bottom: 10px;*/
        /*}*/
        
        /*.project-image .placeholder-text {*/
        /*    font-size: 16px;*/
        /*    font-weight: 600;*/
        /*    text-transform: uppercase;*/
        /*    letter-spacing: 1px;*/
        /*}*/
        
        /*.project-card:hover .project-image .placeholder-icon {*/
        /*    transform: scale(1.1);*/
        /*}*/
        
        /*.project-status {*/
        /*    position: absolute;*/
        /*    top: 15px;*/
        /*    right: 15px;*/
        /*    padding: 5px 15px;*/
        /*    border-radius: 20px;*/
        /*    font-size: 12px;*/
        /*    font-weight: 600;*/
        /*    text-transform: uppercase;*/
        /*    z-index: 1;*/
        /*}*/
        
        /*.project-status.ongoing {*/
        /*    background: var(--secondary-color);*/
        /*    color: white;*/
        /*}*/
        
        /*.project-status.completed {*/
        /*    background: #28a745;*/
        /*    color: white;*/
        /*}*/
        
        /*.project-content {*/
        /*    padding: 20px;*/
        /*}*/
        
        /*.project-title {*/
        /*    font-size: 18px;*/
        /*    margin-bottom: 15px;*/
        /*    line-height: 1.4;*/
        /*}*/
        
        /*.project-title a {*/
        /*    color: var(--primary-color);*/
        /*    text-decoration: none;*/
        /*    transition: var(--transition);*/
        /*}*/
        
        /*.project-title a:hover {*/
        /*    color: var(--secondary-color);*/
        /*}*/
        
        /*.project-client,*/
        /*.project-value,*/
        /*.project-location {*/
        /*    font-size: 14px;*/
        /*    color: var(--text-light);*/
        /*    margin-bottom: 8px;*/
        /*}*/
        
        /*.project-client i,*/
        /*.project-value i,*/
        /*.project-location i {*/
        /*    color: var(--secondary-color);*/
        /*    margin-right: 8px;*/
        /*    width: 16px;*/
        /*}*/
          
          /* Updated Project Cards */
    .project-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        height: 100%;
    }
    
    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }
    
    .project-image {
        position: relative;
        overflow: hidden;
        height: 250px;
        background-color: var(--primary-color); /* Fallback color */
        background-size: cover !important;
        background-position: center !important;
        transition: transform 0.5s ease;
    }
    
    .project-card:hover .project-image {
        transform: scale(1.05);
    }
    
    .project-status {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        z-index: 2;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .project-status.ongoing {
        background: var(--secondary-color);
        color: white;
    }
    
    .project-status.completed {
        background: #28a745;
        color: white;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .project-title a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .project-title a:hover {
        color: var(--secondary-color);
    }
    
    .project-client,
    .project-value,
    .project-location {
        font-size: 14px;
        color: var(--text-light);
        margin-bottom: 8px;
    }
    
    .project-client i,
    .project-value i,
    .project-location i {
        color: var(--secondary-color);
        margin-right: 8px;
        width: 16px;
}
          
        /* Statistics Section */
        .statistics-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .statistics-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255,255,255,0.05) 0px,
                rgba(255,255,255,0.05) 20px,
                transparent 20px,
                transparent 40px
            );
            animation: moveBg 20s linear infinite;
        }
        
        @keyframes moveBg {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .stat-card {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }
        
        .stat-icon {
            color: rgba(255,255,255,0.8);
            margin-bottom: 15px;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: white;
        }
        
        .stat-label {
            font-size: 16px;
            opacity: 0.9;
        }
        
        /* Director Cards */
        .director-card {
            background: white;
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .director-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .director-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .director-image {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid rgba(13,46,113,0.1);
            transition: var(--transition);
            background-color: var(--primary-color); /* Fallback color */
            background-size: cover !important;
            background-position: center !important;
        }
        
        .director-card:hover .director-image {
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }
        
        .director-name {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .director-designation {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .director-qualification {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .director-social a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: rgba(13,46,113,0.1);
            color: var(--primary-color);
            border-radius: 50%;
            line-height: 35px;
            margin: 0 5px;
            transition: var(--transition);
        }
        
        .director-social a:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        
               /* Clients Grid */
        .clients-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-top: 30px;
        }
        
        .client-item {
            flex: 0 0 calc(16.666% - 21px); /* 6 items per row on large screens */
            min-width: 160px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .client-item {
                flex: 0 0 calc(20% - 20px); /* 5 items per row */
            }
        }
        
        @media (max-width: 992px) {
            .client-item {
                flex: 0 0 calc(25% - 19px); /* 4 items per row */
            }
        }
        
        @media (max-width: 768px) {
            .client-item {
                flex: 0 0 calc(33.333% - 17px); /* 3 items per row */
            }
        }
        
        @media (max-width: 576px) {
            .client-item {
                flex: 0 0 calc(50% - 13px); /* 2 items per row */
                min-width: 140px;
            }
        }
        
        .client-box {
            position: relative;
            background: white;
            border-radius: 7px;
            padding: 8px;
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            background-image: linear-gradient(white, white), 
                          linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            background-origin: border-box;
            background-clip: content-box, border-box;
        }
        
        .client-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(13,46,113,0.15);
        }
        
        .client-logo-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        
        .client-logo {
            width: 90px;
            height: 60px;
            background-color: var(--bg-light); /* Fallback color */
            background-size: contain !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            margin-bottom: 10px;
            transition: var(--transition);
            margin-top: 5px;
        }
        
        .client-box:hover .client-logo {
            transform: scale(1.1);
        }
        
        .client-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-color);
            text-align: center;
        }
        
        .client-box:hover .client-name {
            color: var(--primary-color);
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgb(167 175 193 / 90%), rgb(196 160 160 / 90%)), linear-gradient(135deg, #799c86, #7f7373);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .cta-section .btn-secondary {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
            padding: 15px 40px;
            font-size: 18px;
        }
        
        .cta-section .btn-secondary:hover {
            background: transparent;
            border-color: white;
        }
        
        /* Office Cards */
        .office-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
            border-left: 5px solid var(--secondary-color);
        }
        
        .office-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .office-icon {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .office-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            position: relative;
        }
        
        .footer-top {
            padding: 60px 0 40px;
        }
        
        .widget-title {
            color: white;
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .widget-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .company-desc {
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .specialization {
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .contact-info p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 10px;
        }
        
        .contact-info i {
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        .contact-info a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-info a:hover {
            color: var(--accent-color);
        }
        
        .social-links a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            margin-right: 5px;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .copyright {
            color: rgba(255,255,255,0.7);
            margin: 0;
        }
        
        .developer-credit a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .developer-credit a:hover {
            text-decoration: underline;
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            text-decoration: none;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .slide-title {
                font-size: 56px;
            }
            
            .client-item {
                flex: 0 0 calc(20% - 20px);
            }
        }
        
        @media (max-width: 992px) {
            .hero-carousel-section {
                height: calc(100vh - 90px);
                min-height: 600px;
            }
            
            .slide-title {
                font-size: 48px;
            }
            
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: var(--shadow);
                margin-top: 15px;
                max-height: 80vh;
                overflow-y: auto;
            }
            
            .navbar-nav .nav-link:after {
                display: none;
            }
            
            body {
                padding-top: 90px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .client-item {
                flex: 0 0 calc(25% - 19px);
            }
        }
        
        @media (max-width: 768px) {
            .hero-carousel-section {
                height: 500px;
                min-height: 500px;
            }
            
            .slide-subtitle {
                font-size: 16px;
            }
            
            .slide-title {
                font-size: 36px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .client-item {
                flex: 0 0 calc(33.333% - 17px);
            }
            
            .client-box {
                height: 100px;
                padding: 10px;
            }
            
            .experience-badge {
                width: 100px;
                height: 100px;
            }
            
            .experience-badge .years {
                font-size: 24px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-carousel-section {
                height: 450px;
                min-height: 450px;
            }
            
            .slide-title {
                font-size: 28px;
            }
            
            .slide-description {
                font-size: 14px;
            }
            
            .slide-buttons .btn {
                display: block;
                width: 100%;
                margin: 10px 0 !important;
            }
            
            .client-item {
                flex: 0 0 calc(50% - 13px);
                min-width: 140px;
            }
            
            .mouse {
                display: none;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }
        }
        
        /* =============================================
   REDESIGNED ABOUT SECTION STYLES
   ============================================= */

/* Company Story Card */
.company-story-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.story-image {
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.story-image-overlay {
    position: relative;
    width: 100%;
}

.founded-badge {
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.founded-year {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.founded-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-content {
    padding: 50px;
}

.story-title {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.story-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.story-text {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.milestone-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.milestone-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(33,78,49,0.1), rgba(144,6,6,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
}

.milestone-details {
    display: flex;
    flex-direction: column;
}

.milestone-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.milestone-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Flip Cards */
.flip-card {
    background-color: transparent;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-front {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.flip-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.3);
}

.flip-card-front h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 22px;
}

.flip-card-front p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.flip-card-back {
    background: white;
    color: var(--text-color);
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--secondary-color);
}

.flip-card-back p {
    line-height: 1.8;
    color: var(--text-light);
}

/* =============================================
   REDESIGNED MISSION VISION SECTION STYLES
   ============================================= */

.mission-vision-wrapper {
    position: relative;
    padding: 30px 0;
}

.mv-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.5s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.mission-card-reveal {
    background: linear-gradient(135deg, rgba(33,78,49,0.05) 0%, rgba(144,6,6,0.05) 100%);
}

.vision-card-reveal {
    background: linear-gradient(225deg, rgba(33,78,49,0.05) 0%, rgba(144,6,6,0.05) 100%);
}

.values-card-reveal {
    background: linear-gradient(180deg, rgba(33,78,49,0.03) 0%, rgba(144,6,6,0.03) 100%);
}

.mv-icon-box {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon-box i,
.vision-icon-box i {
    font-size: 60px;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.mv-card:hover .mv-icon-box i {
    transform: scale(1.1) rotate(360deg);
}

.mv-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px dashed var(--secondary-color);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mv-content {
    padding: 20px;
}

.mv-label {
    font-size: 48px;
    font-weight: 800;
    color: rgba(144,6,6,0.1);
    line-height: 1;
    display: block;
    margin-bottom: 26px;
}

.mv-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.mv-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.text-lg-end .mv-title:after {
    left: auto;
    right: 0;
}

.mv-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mv-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.mv-list li {
    background: rgba(144,6,6,0.1);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mv-list li i {
    color: var(--secondary-color);
}

/* Values Header */
.values-header {
    margin-bottom: 30px;
}

.values-header .mv-label {
    font-size: 48px;
    
}

.values-header .mv-title {
    font-size: 36px;
    margin-top: -20px;
}

/* 3D Value Cards */
.value-3d-card {
    background-color: transparent;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.value-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.value-3d-card:hover .value-3d-inner {
    transform: rotateY(180deg);
}

.value-3d-front, .value-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-3d-front {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.value-3d-front i {
    font-size: 48px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.value-3d-front h5 {
    color: white;
    font-size: 20px;
    margin: 0;
}

.value-3d-back {
    background: white;
    color: var(--text-color);
    transform: rotateY(180deg);
    border: 2px solid var(--secondary-color);
}

.value-3d-back p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    padding: 0 15px;
}

/* Animation Classes */
.mission-card-reveal,
.vision-card-reveal,
.values-card-reveal {
    animation: slideInUp 1s ease both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .story-image {
        min-height: 300px;
    }
    
    .story-content {
        padding: 30px;
    }
    
    .milestone-grid {
        flex-wrap: wrap;
    }
    
    .mv-card {
        padding: 30px;
    }
    
    .mv-content {
        text-align: center !important;
    }
    
    .mv-title:after {
        left: 50% !important;
        transform: translateX(-50%);
    }
    
    .mv-list {
        justify-content: center;
    }
    
    .mv-icon-box {
        margin-bottom: 20px;
    }
    
    .flip-card {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .founded-year {
        font-size: 32px;
    }
    
    .founded-badge {
        padding: 15px 20px;
    }
    
    .milestone-number {
        font-size: 20px;
    }
    
    .value-3d-card {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .flip-card {
        height: 200px;
    }
    
    .flip-card-front h4 {
        font-size: 18px;
    }
    
    .flip-card-front p {
        font-size: 12px;
    }
    
    .value-3d-front i {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .value-3d-front h5 {
        font-size: 16px;
    }
}