        :root {
            --primary-yellow: #FFC107;
            --primary-dark: #1a1a1a;
            --text-dark: #333;
            --footer-bg: #f5f5f0;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text-dark);
            background-color: black;
        }

        /* Home page font rules (mirrored from source) */
        #home {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        #home h1,
        #home h2,
        #home h3,
        #home h4,
        #home h5,
        #home h6,
        #home .section-title,
        #home .hero-title,
        #home .expertise-title {
            font-family: "Playfair Display", serif;
        }

        #home .btn,
        #home .btn-hero-primary,
        #home .btn-hero-secondary,
        #home .project-nav-btn {
            font-family: 'Roboto', Inter, sans-serif !important;
        }

        .projects-carousel .owl-dot.active,
        .projects-carousel .owl-dot.active span {
            background: #E5BA4F !important;
            transform: scaleY(1) !important;
            width: 35px !important;
            height: 6px !important;
            transition: background 0.5s ease !important;
            border-radius: 30px !important;

        }

        .projects-carousel .owl-dot span {
            width: 35px !important;
            height: 6px !important;
            background: #D9D9D9 !important;
            border-radius: 30px !important;
            display: block !important;
            margin: 0 !important;
            transition: background 0.5s ease !important;
        }

        .projects-carousel .owl-dots {
            text-align: left !important;
            display: flex;
            gap: 5px;
        }

        .project-nav-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
            position: absolute;
            right: 0;
            top: -40px;
        }

        .project-navigation-wrapper {
            position: relative;
        }

        /* Header */
        .navbar-wrapper {
            position: relative;
            background: url(../image//banner-image.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 711px;
            display: flex;
            flex-direction: column;
        }

        .navbar {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(221, 221, 221, 0.3);
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
            position: relative;
            z-index: 10;
        }


        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }

        .logo-icon {
            width: 58px;
            height: 65px;
            background: linear-gradient(135deg, #FFC107 0%, #9C27B0 100%);
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .navbar-brand:hover .logo-icon::before {
            width: 200%;
            height: 200%;
        }

        .logo-text {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .company-tagline {
            font-size: 11px;
            color: var(--text-dark);
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 5px;
            padding: 0.5rem 1rem;
            font-size: 16px;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
            margin-left: 30px;
        }

        /* span.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") !important;
        } */


        nav.navbar.navbar-expand-lg {
            border-bottom: 1px solid #ffffff47;
            background: rgb(0 0 0 / 30%);
            backdrop-filter: blur(1.5px);
        }

        .navbar-nav .nav-link {
            position: relative;
            z-index: 1;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-yellow), #FFD54F);
            transform: translateX(-50%);
            transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 2px 2px 0 0;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 193, 7, 0.1));
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: -1;
        }

        /* Hover + Active */
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-yellow) !important;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::before,
        .navbar-nav .nav-link.active::before {
            width: 80%;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            transform: translateX(0);
        }


        /* Hero Section - Now part of navbar wrapper */
        .hero-section {
            position: relative;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 785px;
            z-index: 5;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .navbar-toggler {
            border-color: rgba(0, 0, 0, 0.1);
        }

        /* .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%2833, 33, 33, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        } */

        h1.hero-title {
            color: #FFF;
            text-align: center;
            font-family: "Playfair Display";
            font-size: 48px;
            font-style: normal;
            font-weight: 500;
            line-height: 63px;
            letter-spacing: 0.1px;
        }

        p.hero-subtitle {
            color: #FFF;
            text-align: center;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;
            letter-spacing: 0.1px;
            margin-top: 20px;
        }

        .btn-hero-primary {
            background-color: #E5BA4F !important;
            color: #222222 !important;
            border: none !important;
            padding: 12px 40px 12px !important;
            font-weight: 600 !important;
            border-radius: 0px !important;
            height: 45px;
            transition: all 0.3s ease !important;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            font-family: Roboto !important;
            font-size: 14px !important;
            letter-spacing: 0.1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-hero-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #FFB300;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            /* box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5); */
            color: #222222 !important;
        }

        .btn-hero-primary:hover::before {
            left: 0;
        }

        .btn-hero-secondary {
            background-color: transparent !important;
            color: white !important;
            border: 1px solid white !important;
            border-left: none;
            padding: 12px 40px 12px !important;
            font-weight: 500 !important;
            border-radius: 0px !important;
            height: 45px;
            transition: all 0.3s ease !important;
            cursor: pointer;
            font-family: Roboto !important;
            font-size: 14px !important;
            letter-spacing: 0.1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-hero-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.2);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-hero-secondary:hover {
            border-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            /* box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3); */
            color: white !important;
        }

        .btn-hero-secondary:hover::before {
            left: 0;
        }

        .btn-group-hero {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 1rem;
            gap: 25px;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            /* justify-content: center; */
            height: 100%;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .about-content h2 {
            color: #333;
            font-family: "Playfair Display", serif;
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: 49px;
            letter-spacing: 0.1px;
            width: auto;
            max-width: 100%;
        }


        .about-content p {
            color: black;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px;
            letter-spacing: 0.1px;
            width: auto;
            max-width: 720px;
            margin-top: 15px;
            text-align: justify;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 0;
        }

        /* Ensure stats stack on very small screens */
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        .stat-card {
            background: #BEA15914;
            padding: 35px 20px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 140px;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 193, 7, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .stat-card:hover::before {
            width: 340px;
            height: 325px;
        }

        .stat-card:hover {
            transform: translateY(-3px) scale(1.01);
            /* box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2); */
            background: #fff8d6;
            border-color: var(--primary-yellow);
        }

        /* .about-section:hover .stat-card {
            animation: cardFloat 0.6s ease forwards;
        }

        @keyframes cardFloat {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-3px);
            }

            100% {
                transform: translateY(0);
            }
        } */

        .stat-number {
            color: #E5BA4F;
            text-align: center;
            font-family: Inter;
            font-size: 28px;
            font-style: normal;
            font-weight: 600;
            transition: all 0.4s ease;
            letter-spacing: 0.1px;
            line-height: 34px;
            margin-bottom: 10px;
        }

        .stat-number[data-count] {
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-number {
            transform: scale(1.1);
            color: var(--primary-yellow);
        }

        .stat-label {
            transition: all 0.4s ease;
            color: black;
            text-align: center;
            font-family: 'Inter';
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px;
            letter-spacing: 0.1px;
        }

        .stat-card:hover .stat-label {
            color: black;
            transform: translateY(-2px);
        }

        /* Projects Section */
        /* .projects-section {
            padding: 80px 0;
            background: #f8f9fa;
            transition: background-color 0.3s ease;
        }

        .projects-section:hover {
            background-color: #f0f1f3;
        } */

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            color: #333;
            text-align: center;
            font-family: "Playfair Display", serif;
            font-size: 36px;
            font-style: normal;
            font-weight: 600;
            line-height: 49px;
            letter-spacing: 0.1px;
        }

        .section-subtitle {
            color: #000;
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            letter-spacing: 0.1px;
        }

        /* Projects Carousel */
        .projects-carousel {
            margin-top: 40px;
        }

        .projects-carousel .owl-stage-outer {
            padding: 10px 0;
            overflow: hidden;
            position: relative;
        }

        .projects-carousel .owl-stage {
            display: flex;
            align-items: center;
            will-change: transform;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

        /* Force smooth transitions for Owl Carousel */
        .projects-carousel.owl-carousel .owl-stage {
            -webkit-transition: -webkit-transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            -moz-transition: -moz-transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            -ms-transition: -ms-transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            -o-transition: -o-transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .projects-carousel .owl-item {
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transition: opacity 0.3s ease;
        }

        .projects-carousel .owl-item.active {
            transform: scale(1);
        }

        .projects-carousel .owl-item.active.center {
            transform: scale(1.05);
            z-index: 2;
        }

        .project-card {
            position: relative;
            height: 440px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            transform-style: preserve-3d;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(229, 186, 79, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
            transform: translate(-50%, -50%) scale(0);
            z-index: 1;
            pointer-events: none;
        }

        .project-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(229, 186, 79, 0.15) 50%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.8s ease;
            transform: translateX(-100%) skewX(-20deg);
            z-index: 1;
            pointer-events: none;
        }

        .project-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        }

        .project-card:hover::before {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .project-card:hover::after {
            opacity: 1;
            transform: translateX(100%) skewX(-20deg);
        }

        .project-card img {
            width: 386px !important;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-origin: center center;
            filter: brightness(1);
        }

        .project-card:hover img {
            transform: scale(1.2) translateY(-10px);
            filter: brightness(1.1);
        }

        .project-card:hover .project-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
            animation: overlayReveal 0.6s ease forwards;
        }

        @keyframes overlayReveal {
            0% {
                clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
                opacity: 0;
            }

            50% {
                opacity: 0.8;
            }

            100% {
                clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
                opacity: 1;
            }
        }

        /* Responsive fixes for home page (mirrored) */
        @media (max-width: 991px) {
            #home h1.hero-title {
                font-size: 40px;
                line-height: 52px;
            }

            #home p.hero-subtitle {
                font-size: 18px;
                line-height: 24px;
                text-align: center;
            }

            #home .about-content h2 {
                width: 100%;
                font-size: 26px;
                line-height: 36px;
            }

            #home .about-content p {
                width: 100%;
                font-size: 15px;
                line-height: 28px;
            }

            #home .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .project-card {
                height: 360px;
            }

            .project-card img {
                width: 100% !important;
                height: 100%;
                object-fit: cover;
            }
        }

        @media (max-width: 767px) {

            .navbar-nav .nav-link::after,
            .navbar-nav .nav-link::before {
                display: none;
            }

            .navbar-wrapper {
                min-height: 520px;
                background-attachment: scroll;
            }

            #home .hero-content {
                padding: 0 16px;
            }

            #home h1.hero-title {
                font-size: 32px;
                line-height: 40px;
                word-break: break-word;
            }

            #home p.hero-subtitle {
                font-size: 16px;
                line-height: 22px;
                text-align: center;
            }

            #home .btn-group-hero {
                gap: 12px;
                flex-wrap: wrap;
            }

            #home .btn-hero-primary,
            #home .btn-hero-secondary {
                padding: 10px 18px !important;
                font-size: 13px !important;
                height: auto;
            }

            #home .about-content h2 {
                font-size: 22px;
                line-height: 32px;
                width: 100%;
            }

            #home .about-content p {
                font-size: 15px;
                line-height: 26px;
                width: 100%;
            }

            #home .stats-grid {
                grid-template-columns: 1fr;
            }

            .project-card {
                height: 260px;
            }

            .project-card img {
                width: 100% !important;
                height: 100%;
                object-fit: cover;
            }

            .section-header {
                margin-bottom: 32px;
                padding: 0 12px;
            }
        }

        @media (max-width: 480px) {
            #home h1.hero-title {
                font-size: 28px;
                line-height: 34px;
            }

            #home p.hero-subtitle {
                font-size: 14px;
                line-height: 20px;
                text-align: center;
            }

            .project-card {
                height: 220px;
            }

            .projects-carousel .owl-stage-outer {
                padding: 6px 0;
            }
        }

        /* Mobile: justify paragraph-like content inside the home section */
        @media (max-width: 767px) {

            #home p,
            #home .section-subtitle,
            #home .expertise-desc,
            #home .leader-title,
            #home .stat-label,
            #home .project-overlay p {
                text-align: justify;
                text-justify: inter-word;
            }
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 30px;
            color: white;
            z-index: 2;
            transition: all 0.5s ease;
        }

        .project-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Project Navigation Wrapper */
        .project-navigation-wrapper {
            width: 100%;
            padding: 0 15px;
        }

        .project-nav-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        /* Owl Carousel Dots Customization - Figma Style */
        .owl-dots-container {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: flex-start;
        }

        .project-navigation-wrapper .owl-dots {
            display: flex !important;
            gap: 12px !important;
            align-items: center !important;
            justify-content: flex-start !important;
        }

        .project-navigation-wrapper .owl-dot {
            width: 35px !important;
            height: 6px !important;
            background: #D9D9D9 !important;
            border-radius: 30px !important;
            cursor: pointer !important;
            transition: background 0.5s ease, transform 0.3s ease !important;
            margin: 0 !important;
            border: none !important;
            position: relative !important;
            outline: none !important;
            padding: 0 !important;
        }

        .project-navigation-wrapper .owl-dot:hover {
            background: #E5BA4F !important;
            /* transform: scaleY(1.3) !important; */
        }

        .project-navigation-wrapper .owl-dot.active,
        .project-navigation-wrapper .owl-dot.active span {
            background: #E5BA4F !important;
            transform: scaleY(1) !important;
            width: 35px !important;
            height: 6px !important;
            transition: background 0.5s ease !important;
        }

        .project-navigation-wrapper .owl-dot span {
            width: 35px !important;
            height: 6px !important;
            background: #D9D9D9 !important;
            border-radius: 30px !important;
            display: block !important;
            margin: 0 !important;
            transition: background 0.5s ease !important;
        }



        /* Engineering Excellence */
        .excellence-section {
            padding: 60px 0;
            background: rgba(136, 50, 94, 0.08);
            margin-top: 50px;
        }


        .excellence-content {
            text-align: center;
            max-width: 862px;
            margin: 0 auto 60px;
        }

        .excellence-content h2 {
            text-align: center;
            font-family: "Playfair Display", serif;
            font-size: 36px;
            font-style: normal;
            font-weight: 600;
            line-height: 49px;
            letter-spacing: 0.1px;
        }

        .excellence-content p {
            color: black;
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px;
            letter-spacing: 0.1px;
            margin-top: 20px;
        }

        .feature-card {
            background: #FAF7F2;
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.09);
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(51, 51, 51, 0.15), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            background: #e5ba4f;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            color: #666;
            position: relative;
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: grayscale(0) brightness(1.5) contrast(1.1);

        }

        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .feature-card:hover .feature-icon img {
            transform: scale(1.2) rotate(-5deg);
            filter: brightness(0) invert(1);
        }

        .feature-icon i {
            font-weight: 300;
            opacity: 0.8;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .feature-card:hover .feature-icon i {
            transform: scale(1.2) rotate(5deg);
            opacity: 1;
            color: #ffffff;
        }

        .feature-card h3 {
            text-align: center;
            color: #E5BA4F;
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 45px;
            letter-spacing: 0.1px;
            text-transform: capitalize;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            margin-bottom: 5px;
        }

        .feature-card:hover h3 {
            transform: translateY(-3px);
            color: #ffffff;
        }

        .feature-card p {
            width: 100%;
            color: black;
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px;
            letter-spacing: 0.1px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .feature-card:hover p {
            transform: translateY(-2px);
            color: white;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            width: 100%;
        }

        .feature-list li {
            color: #333;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 0.1px;
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }

        .feature-list li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #333;
            font-size: 20px;
            line-height: 24px;
        }

        .feature-list li:last-child {
            margin-bottom: 0;
        }

        /* Vision Mission Values */
        .vmv-section {
            position: relative;
            height: 636px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/vm.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 60px 0;
            transition: background-size 0.5s ease;
        }

        .vmv-container {
            max-width: 1022px;
            margin: 0 auto;
        }

        .vmv-container .row {
            display: flex;
            align-items: stretch;
        }

        .vmv-container .col-md-4 {
            display: flex;
            flex-direction: column;
        }

        .vmv-item {
            padding: 20px 25px;
            margin-bottom: 20px;
            border-left: 4px solid #E5BA4F;
            color: white;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .vmv-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(229, 186, 79, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .vmv-item:hover::before {
            left: 100%;
        }

        .vmv-item:hover {
            /* transform: translateX(15px) translateY(-5px) scale(1.02); */
            background: rgba(229, 186, 79, 0.15);
            border-left-width: 6px;
            border-left-color: #FFC107;
            box-shadow: 0 15px 35px rgba(229, 186, 79, 0.3);
        }

        .vmv-item h3 {
            color: #FFF;
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 32px;
            letter-spacing: 0.1px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 1;
        }

        .vmv-item:hover h3 {
            color: #FFC107;
            transform: translateX(5px);
        }

        .vmv-item p {
            color: #FFF;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 27px;
            letter-spacing: 0.1px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 1;
            margin-bottom: 0px;
        }

        .vmv-item:hover p {
            color: #ffffff;
            transform: translateX(5px);
        }

        /* Leadership Section */
        .leadership-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .leadership-section .row {
            display: flex;
            align-items: stretch;
        }

        .leadership-section .col-md-6 {
            display: flex;
            flex-direction: column;
        }

        .leader-card {
            background: #ffffff;
            border-radius: 0px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
        }

        .leader-image {
            width: 100%;
            height: 396px;
            object-fit: cover;
            transition: transform 0.6s ease;
            display: block;
        }

        .leader-card:hover .leader-image {
            transform: scale(1.1);
        }

        .leader-name {
            color: #ffffff;
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px;
            letter-spacing: 0.1px;
            margin: 0 0 8px 0;
            padding: 0;
            text-align: left;
            position: absolute;
            bottom: 38px;
            left: 30px;
            right: 24px;
            z-index: 2;
        }

        .leader-card:hover .leader-name {
            color: #E5BA4F;
        }

        .leader-title {
            color: #ffffff;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 300;
            line-height: 24px;
            letter-spacing: 0.1px;
            padding: 0;
            text-align: left;
            margin: 0;
            position: absolute;
            bottom: 20px;
            left: 30px;
            right: 24px;
            z-index: 2;
        }

        .leader-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 95px;
            background: linear-gradient(72deg, rgba(15, 11, 1, 0.70) 34.71%, rgba(15, 11, 1, 0.00) 68.68%);
            pointer-events: none;
            z-index: 1;
        }

        /* Leader card responsive adjustments */
        @media (max-width: 991px) {
            .leader-image {
                height: 300px;
            }
        }

        @media (max-width: 767px) {
            .leader-image {
                height: 220px;
            }

            .leader-name,
            .leader-title {
                position: static;
                color: #222222;
                text-align: center;
                background: transparent;
                margin: 12px 0 4px;
                left: auto;
                right: auto;
                bottom: auto;
                padding: 0 12px;
                z-index: 2;
            }

            .leader-card {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                margin-bottom: 25px;
            }

            .leadership-section {
                padding: 80px 0 0px;
            }

            .leader-card::after {
                height: 0;
                background: none;
            }
        }

        /* Core Expertise */
        /* .expertise-section {
            padding: 80px 0;
            background: #f8f9fa;
            transition: background-color 0.3s ease;
        } */

        /* .expertise-section:hover {
            background-color: #f0f1f3;
        } */

        .expertise-section {
            padding: 20px 0;
            background: #ffffff;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .expertise-card {
            position: relative;
            height: 336px;
            border-radius: 0px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
        }

        /* .expertise-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        } */

        .expertise-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: blur(0);
        }

        .expertise-card:hover img {
            filter: blur(4px);
            transform: scale(1.05);
        }

        .expertise-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
            padding: 30px;
            color: white;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .expertise-card:hover .expertise-overlay {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.85) 100%);
            justify-content: space-between;
            padding: 30px;
        }

        .expertise-title {
            color: #ffffff;
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px;
            letter-spacing: 0.1px;
            margin: 0 0 8px 0;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            z-index: 2;
            transform: translateY(0);
            width: 200px;
        }

        .expertise-card:hover .expertise-title {
            transform: translateY(-210px);
        }

        .expertise-desc {
            color: #ffffff;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 30px;
            letter-spacing: 0.1px;
            margin: 0;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(20px);
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            z-index: 2;
            width: 70%;
        }

        .expertise-card:hover .expertise-desc {
            opacity: 1;
            max-height: 100px;
            transform: translateY(0);
            margin-top: 0;
        }

        /* Certifications */
        .certifications-section {
            padding: 80px 0;
            transition: background-color 0.3s ease;
        }

        .certifications-section:hover {
            background-color: rgba(255, 249, 230, 0.05);
        }

        .cert-card {
            text-align: center;
            padding: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cert-card:hover {
            transform: translateY(-10px);
        }

        .cert-card:hover .cert-logo {
            transform: scale(1.1);
            background: #e0e0e0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .cert-card:hover .cert-icon {
            transform: scale(1.2);
            color: var(--primary-yellow);
        }

        .cert-logo {
            width: 99px;
            height: 95px;
            margin: 0 auto 20px;
            background: #f0f0f0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .cert-text {
            color: #000;
            text-align: center;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px;
            letter-spacing: 0.1px;
        }

        .cert-icon {
            font-size: 3rem;
            color: #666;
            transition: all 0.3s ease;
        }

        /* Footer / Header logo sizing (use fixed sensible widths rather than percent) */
        img.header-logo-img {
            width: 65%;
        }

        /* Header: responsive tweaks */
        @media (max-width: 1199px) {
            img.header-logo-img {
                max-width: 300px;
            }
        }

        @media (max-width: 991px) {
            img.header-logo-img {
                max-width: 300px;
            }
        }

        @media (max-width: 767px) {
            img.header-logo-img {
                max-width: 250px;
            }

            /* make navbar less tall on mobile and avoid fixed background issues */
            .navbar-wrapper {
                min-height: auto;
                background-attachment: scroll;
            }

            .navbar {
                padding: 0.5rem 0;
            }

            /* When collapsed, show the nav as a full-width stacked menu */
            .navbar-collapse.collapse.show {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.92);
                padding: 12px 16px;
                z-index: 50;
            }

            .navbar-collapse .navbar-nav {
                flex-direction: column;
                gap: 8px;
            }

            .navbar-nav .nav-link {
                padding: 0.6rem 0;
                font-size: 16px;
                color: #fff !important;
            }

            .navbar-toggler {
                z-index: 60;
            }
        }

        .footer {
            background: #3f4148;
            padding: 60px 0 30px;
        }

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

        .footer-section h5 {
            font-weight: bold;
            margin-bottom: 20px;
            color: white;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

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

        .footer-section ul li a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter';
            /* font-size: 15px; */
        }

        .footer-section ul li a:hover {
            color: var(--primary-yellow);
            transform: translateX(5px);
        }

        .social-links a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-links a:hover {
            color: var(--primary-yellow);
            transform: translateY(-5px) scale(1.2);
        }

        .footer-contact p {
            color: white;
            margin-bottom: 10px;
            font-size: 0.9rem;
            font-family: 'Inter';
        }

        .footer-map {
            width: 100%;
            height: 159px;
            background: #ddd;
            border-radius: 4px;
        }

        .footer-map iframe {
            border: 0;
            border-radius: 4px;
            width: 100%;
            height: 159px;
        }

        .footer hr {
            color: white;
        }

        .footer-logo-icon {
            width: 96px;
            height: 109px;
        }

        .footer-company-tagline {
            font-size: 0.85rem;
            color: #666;
        }

        .footer-credit {
            font-size: 0.85rem;
            color: white;
            font-family: 'Inter';
            font-weight: 500;
        }

        p.footer-credit a {
            color: var(--primary-yellow);
        }

        .footer-bottom {
            border-top: 1px solid #ddd;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }

        /* Footer responsive tweaks */
        @media (max-width: 991px) {
            .footer {
                padding: 40px 0 20px;
            }

            .footer-logo img {
                width: 200px;
                margin: 0 auto;
                display: block;
            }
        }

        @media (max-width: 767px) {
            .footer {
                padding: 30px 12px 16px;
            }

            .footer .row {
                display: block;
            }

            .footer-section {
                margin-bottom: 18px;
                /* text-align: center; */
            }

            .footer-section ul {
                display: inline-block;
                text-align: left;
            }

            .footer-map iframe {
                height: 180px;
            }

            .footer-bottom {
                text-align: center;
                margin-top: 20px;
            }
        }

        .project-nav-btn {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .project-nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-yellow);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .project-nav-btn:hover::before {
            left: 0;
        }

        .project-nav-btn:hover {
            transform: scale(1.1);
            border-color: #E5BA4F;
            color: white !important;
        }

        .project-nav-btn {
            border: 2px solid #E5BA4F !important;
            color: #E5BA4F !important;
            /* font-size: 17px; */
            transition: 0.5s;
        }

        .project-nav-btn i {
            transition: transform 0.3s ease;
        }

        .project-prev:hover i {
            transform: translateX(-3px);
        }

        .project-next:hover i {
            transform: translateX(3px);
        }


        .navbar-brand:hover .logo-icon {
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 8px 16px rgba(255, 193, 7, 0.3);
        }

        .navbar-brand:hover .logo-text {
            color: var(--primary-yellow);
        }

        .footer-logo img {
            width: 230px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

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

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

            .navbar-nav {
                background: rgba(0, 0, 0, 0.9);
                padding: 20px;
                border-radius: 8px;
            }

            span.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") !important;
            }

            .about-section {
                padding: 50px 0;
            }

            .section-title {
                font-size: 30px;
                line-height: 40px;
            }

            .projects-carousel .owl-dots {
                display: none;
            }

            .vmv-section {
                height: 750px;
                padding: 60px 0;
            }

            .certifications-section {
                padding: 0px 0;
            }

            .footer-credit {
                text-align: center;
            }

            .about-content h2 {
                font-size: 25px;
                line-height: 40px;
            }

            .about-content p {
                text-align: justify;
            }

            .excellence-content h2 {
                font-size: 30px;
                line-height: 40px;
            }

            p.leader-title {
                margin-top: 0px;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 1024px) {
            span.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") !important;
            }
        }

        .about-features {
            list-style: none;
            padding: 0;
            margin-top: 25px;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 18px 30px;
        }

        /* Mobile view – 1 per row */
        @media (max-width: 576px) {
            .about-features {
                grid-template-columns: 1fr;
            }
        }

        .about-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 16px;
            color: black;
            font-family: Inter;
        }

        span.about-feature-icon i {
            color: #e5ba4f;
            font-size: 16px;
        }

        .about-section .row {
            align-items: center;
        }

        .leader-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .footer .col-lg-2 {
            flex: 0 0 auto;
            width: 20.666667%;
        }

        @media (max-width: 767px) {
            .footer .col-lg-2 {
                flex: 0 0 auto;
                width: 100%;
            }

        }

        @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .footer .col-lg-3 {
                width: 31%;
            }

            .footer .col-lg-2 {
                width: 18.666667%;
            }

            .navbar-nav .nav-link {
                margin: 0px;
                margin-right: 20px;
            }
        }

        .top-header {
      background-color: #2f3138;
      color: #fff;
      font-size: 14px;
    }
 
    .top-header-inner {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      min-height: 45px;
    }
 
    .top-left a {
      color: #fff;
      text-decoration: none;
      margin-right: 20px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
 
    .top-left a:hover {
      text-decoration: underline;
    }
 
    @media (max-width: 768px) {
      .top-header-inner {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
        text-align: center;
      }
 
      .top-left a {
        margin-right: 10px;
      }
    }

    .contact-float {
    position: fixed;
    right: 20px;
    top: 40%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
 
/* Wrapper */
.contact-item {
    position: relative;
    width: 45px;
    height: 45px;
    align-self: flex-end;
}
 
/* Expanding pill */
.contact-pill {
    position: absolute;
    right: 0;
    top: 0;
    height: 45px;
    width: 45px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: width 0.4s ease;
}
 
/* Hover expands pill */
.contact-item:hover .contact-pill {
    width: 300px;
}
 
/* Icon */
.contact-pill i {
    min-width: 45px;
    text-align: center;
    font-size: 22px;
    color: #fff;
}
 
/* Text */
.contact-text {
    white-space: nowrap;
    font-size: 14px;
    color: #fff;
    padding-right: 18px;
    opacity: 0;
    transition: opacity 0.3s ease 0.15s;
}
 
.contact-item:hover .contact-text {
    opacity: 1;
}
 
 
.contact-pill {
    background: #e5ba4f;
}