
    :root {
      --navy: #0A1931;
      --orange: #FF6B35;
      --white: #FFFFFF;
      --black: #000000;
      --light-gray: #F8F9FA;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      color: var(--navy);
    }

    .hero {
      height: 100vh;
      background: linear-gradient(135deg, rgba(10, 25, 49, 0.9), rgba(255, 107, 53, 0.6)),
                  url('https://images.unsplash.com/photo-1581090700227-1e37b190418e?w=1920&h=800&fit=crop&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .btn-explore {
      background: var(--orange);
      color: var(--white);
      border: none;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-explore:hover {
      background: var(--white);
      color: var(--navy);
    }
    .btn-orange {
      background: var(--orange);
      color: var(--white);
      padding: 10px 25px;
      border: none;
      border-radius: 30px;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn-orange:hover {
      background: #e85b27;
    }

    .section {
      padding: 80px 0;
    }

    .feature-icon {
      font-size: 2.5rem;
      color: var(--orange);
      margin-bottom: 20px;
    }




            :root {
            --navy: #0A1931;
            --orange: #FF6B35;
            --white: #FFFFFF;
            --black: #000000;
            --light-gray: #F8F9FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--navy);
        }

        /* Navbar Styles */
        .navbar {
            background: rgba(10, 25, 49, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: all 0.4s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .navbar-scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
            background: rgba(10, 25, 49, 1) !important;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white) !important;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand span {
            color: var(--orange);
        }

        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0 !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--orange) !important;
        }

        /* Hero Slider Redesign */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .carousel {
            height: 100%;
        }

        .carousel-inner {
            height: 100%;
        }

        .carousel-item {
            height: 100%;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(10, 25, 49, 0.85) 0%, 
                rgba(255, 107, 53, 0.6) 100%);
            z-index: 1;
        }

        .carousel-caption {
            z-index: 2;
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            left: 10%;
            right: 10%;
            text-align: left;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-subtitle-small {
            font-size: 1rem;
            font-weight: 600;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            animation: fadeInLeft 0.8s ease;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.2;
            animation: fadeInLeft 1s ease;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 35px;
            line-height: 1.6;
            animation: fadeInLeft 1.2s ease;
            font-weight: 300;
        }

        .hero-buttons {
            animation: fadeInLeft 1.4s ease;
        }

        .btn-hero {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            margin: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary-custom {
            background: var(--orange);
            border: 2px solid var(--orange);
            color: var(--white);
        }

        .btn-primary-custom:hover {
            background: transparent;
            border-color: var(--orange);
            color: var(--orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .btn-outline-custom {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-custom:hover {
            background: var(--white);
            color: var(--navy);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 107, 53, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .carousel-control-prev {
            left: 30px;
        }

        .carousel-control-next {
            right: 30px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-indicators {
            bottom: 40px;
        }

        .carousel-indicators button {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            border: 2px solid var(--white);
            background: transparent;
            transition: all 0.3s ease;
        }

        .carousel-indicators button.active {
            background: var(--orange);
            border-color: var(--orange);
            transform: scale(1.3);
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 107, 53, 0.05);
            border-radius: 50%;
            top: -100px;
            left: -100px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            color: var(--navy);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 5px;
            background: var(--orange);
            border-radius: 3px;
        }

        .about-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #555;
            margin-bottom: 20px;
        }

        .about-img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
        }

        .about-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.25);
        }

        .stats-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            border: 2px solid transparent;
        }

        .stats-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--orange);
        }

        .stats-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--orange);
            margin-bottom: 10px;
        }

        .stats-label {
            font-size: 1.1rem;
            color: var(--navy);
            font-weight: 600;
        }

        /* Companies Section */
        .companies-section {
            padding: 80px 0;
            background: var(--white);
            position: relative;
        }

        .company-card {
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.5s ease;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            position: relative;
            border: 3px solid transparent;
            background: var(--white);
        }

        .company-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10, 25, 49, 0.85), rgba(255, 107, 53, 0.85));
            opacity: 0;
            transition: all 0.5s ease;
            z-index: 2;
        }

        .company-card:hover::before {
            opacity: 1;
        }

        .company-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 30px 70px rgba(255, 107, 53, 0.3);
            border-color: var(--orange);
        }

        .company-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .company-card:hover .company-image {
            transform: scale(1.1);
        }

        .company-content {
            padding: 20px 20px;
            position: relative;
            z-index: 3;
            background: var(--white);
            transition: all 0.5s ease;
        }

        .company-card:hover .company-content {
            background: transparent;
            color: var(--white);
        }

        .company-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            transition: all 0.5s ease;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }

        .company-card:hover .company-icon {
            background: var(--white);
            /* transform: rotateY(360deg) scale(1.1); */
        }

        .company-icon i {
            font-size: 1.5rem;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .company-card:hover .company-icon i {
            color: var(--orange);
        }

        .company-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--navy);
            margin: 10px 0 10px;
            transition: all 0.3s ease;
        }

        .company-card:hover .company-title {
            color: var(--white);
        }

        .company-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 18px;
            transition: all 0.3s ease;
        }

        .company-card:hover .company-description {
            color: rgba(255, 255, 255, 0.95);
        }

        .btn-explore {
            background: var(--orange);
            color: var(--white);
            padding: 10px 28px;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            font-size: 0.85rem;
            transition: all 0.4s ease;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-explore:hover {
            background: var(--navy);
            transform: scale(1.08);
            box-shadow: 0 10px 30px rgba(10, 25, 49, 0.3);
        }

        /* Vision Section */
        .vision-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .vision-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: pulse 8s infinite;
        }

        .vision-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: pulse 6s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .vision-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 45px;
            margin: 20px 0;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .vision-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(15px);
            border-color: var(--orange);
        }

        .vision-icon {
            font-size: 3.5rem;
            color: var(--orange);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .vision-card:hover .vision-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .vision-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .vision-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        /* Leadership Section */
        .leadership-section {
            padding: 100px 0;
            background: var(--light-gray);
            position: relative;
        }

        .leader-card {
            text-align: center;
            transition: all 0.4s ease;
            padding: 20px;
        }

        .leader-img-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 25px;
        }

        .leader-img {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 5px solid var(--orange);
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
        }

        .leader-card:hover .leader-img {
            transform: scale(1.08);
            border-color: var(--navy);
            box-shadow: 0 15px 50px rgba(10, 25, 49, 0.4);
        }

        .leader-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .leader-card:hover .leader-img img {
            transform: scale(1.15);
        }

        .leader-name {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--navy);
            margin: 15px 0 8px;
        }

        .leader-position {
            color: var(--orange);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .leader-bio {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--white);
        }

        .contact-card {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .contact-card:hover {
            border-color: var(--orange);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        /* .contact-card:hover .contact-icon {
            transform: rotateY(360deg);
        } */

        .contact-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .contact-card h5 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .contact-card p {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--orange), var(--navy), var(--orange));
        }

        .footer-title {
            color: var(--orange);
            font-weight: 800;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin: 12px 0;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .footer-link:hover {
            color: var(--orange);
            padding-left: 12px;
        }

        .social-icons {
            margin-top: 25px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .social-icon:hover {
            background: var(--orange);
            /* transform: translateY(-8px) rotate(360deg); */
            border-color: var(--white);
        }

        .social-icon i {
            color: var(--white);
            font-size: 1.2rem;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .carousel-caption {
                left: 5%;
                right: 5%;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle-small {
                font-size: 0.85rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .btn-hero {
                padding: 12px 30px;
                font-size: 0.95rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 45px;
                height: 45px;
            }
            
            .carousel-control-prev {
                left: 15px;
            }
            
            .carousel-control-next {
                right: 15px;
            }
        }

        /* Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }


         .hero h1{font-size:2.6rem;font-weight:700;margin-bottom:.6rem}
    .hero p{max-width:720px;margin:0 auto 1.25rem;font-size:1.05rem}
    .btn-orange{background:var(--orange);color:var(--white);border:none;border-radius:30px;padding:10px 24px}
    .btn-orange:hover{filter:brightness(.94)}

    /* fallback when image fails (very unlikely) */
    .hero[data-image-failed="true"]{
      background-image: linear-gradient(135deg,#0A1931 0%, #22385A 100%);
    }

    .section{padding:72px 0}