@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
:root {
    --ncet-blue: #13335B;
    /* PES-inspired Navy Blue */
    --ncet-gold: #F09300;
    --ncet-navy: #13264D;
    --ncet-gold: #F78F2D;
    --ncet-light: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.text-brand-navy {
    color: var(--ncet-navy) !important;
}

.text-brand-gold {
    color: var(--ncet-gold) !important;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll at the source */
    font-family: 'Montserrat', 'Product Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(0, 51, 102, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
    padding: 0.5rem 1rem !important;
    /* Restore some padding for better mobile feel */
    transition: var(--transition);
}

@media (min-width: 992px) {
    .navbar {
        padding: 0 !important;
        /* Zero padding only on desktop */
    }
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 70px;
    /* Optimal size to fit in a standard-height nav */
    width: auto;
    display: block;
}

/* Hero Section - PES Inspired Split Layout */
.hero-section {
    min-height: auto;
    padding: 120px 0 80px;
    /* Reduced padding top since nav is now compact */
    background-color: var(--white);
    display: block;
    position: relative;
}

.hero-content {
    color: var(--ncet-blue);
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 1.5rem;
    /* Added margin relative to badge */
    margin-bottom: 1.5rem;
    color: var(--ncet-blue);
}

.hero-outline-list {
    list-style: none;
    padding: 0;
}

.hero-outline-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
}

.hero-outline-list li::before {
    content: "\f00c";
    /* FontAwesome checkmark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--ncet-gold);
    font-size: 0.9rem;
}

.hero-outline-list li span {
    display: block;
}

.icon-box-premium {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-box-premium i,
.icon-box-premium svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px;
}

.bg-soft-blue {
    background: #e7f1ff;
    color: #0061f2;
}

.bg-soft-red {
    background: #fff1f0;
    color: #e81500;
}

.bg-soft-green {
    background: #e3f9ed;
    color: #00ac69;
}

.bg-soft-info {
    background: #e0f2f1;
    color: #00897b;
}

.bg-soft-yellow {
    background: #fff9e6;
    color: #f4a100;
}

.bg-soft-gray {
    background: #f2f6fc;
    color: #69707a;
}

.program-card:hover .icon-box-premium {
    transform: translateY(-5px) rotate(3deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Lead Form Container */
.lead-form-container {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--ncet-gold);
}

.lead-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ncet-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.btn-premium {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
}

.btn-premium-gold {
    background: var(--ncet-gold);
    color: var(--white);
}

.btn-premium-gold:hover {
    background: #e08500;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 147, 0, 0.4);
    color: var(--white);
}

/* Program Cards */
.program-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-title {
    color: var(--ncet-blue);
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    background: var(--ncet-blue);
    color: var(--white);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ncet-gold);
}

/* Infrastructure Cards */
.infra-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.infra-card:hover {
    transform: scale(1.02);
}

.infra-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

/* Testimonial Box */
.testimonial-box {
    border-left: 5px solid var(--ncet-gold);
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-70 {
    opacity: 0.7;
}

.x-small {
    font-size: 0.75rem;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* FAQ Styles */
.accordion .btn-link {
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem;
}

.accordion .card {
    border-radius: 10px !important;
}

/* Footer */
footer {
    background: var(--ncet-navy);
    color: var(--white);
    padding: 80px 0 40px;
    font-size: 0.85rem;
}

.footer-logo-wrapper {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    height: 65px;
    /* Better scale for the footer */
    object-fit: contain;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--ncet-gold);
    padding-left: 5px;
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.contact-info i {
    width: 25px;
    color: var(--ncet-gold);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    transition: var(--transition);
    text-decoration: none !important;
    display: inline-block;
}

.social-links a:hover {
    opacity: 1 !important;
    color: var(--ncet-gold) !important;
    transform: translateY(-3px);
}

/* Infinite Scrolling Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
    background: var(--white);
}

.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-content .train-logo {
    height: 60px;
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.marquee-content .train-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .marquee-content img {
        height: 40px;
        margin: 0 20px;
    }
}

/* Animations */
/* --- Aesthetic Enhancements --- */

.bg-mesh-gradient {
    background: radial-gradient(at 0% 0%, rgba(19, 38, 77, 0.03) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(247, 143, 45, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(19, 38, 77, 0.03) 0, transparent 50%);
}

.bg-dot-pattern-overlay {
    position: relative;
    overflow: hidden;
}

.dot-pattern {
    background-image: radial-gradient(var(--ncet-navy) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glow-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

/* Enhancing existing reveal animations with smoother cubic-bezier */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0 !important;
    }

    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-brand img {
        height: 60px !important;
        /* Increased from 45px for better mobile visibility */
    }

    /* Sticky Mobile CTA */
    .sticky-mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--ncet-gold);
        color: var(--white) !important;
        text-align: center;
        padding: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        z-index: 2000;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
        text-decoration: none !important;
        transition: var(--transition);
        font-size: 0.9rem;
    }

    .sticky-mobile-cta:hover {
        background: var(--ncet-navy);
    }

    @media (min-width: 992px) {
        .sticky-mobile-cta {
            display: none;
        }
    }

    /* Adjust footer for sticky CTA */
    @media (max-width: 991px) {
        footer {
            padding-bottom: 80px;
        }
    }

    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
        overflow: hidden;
    }

    .hero-content {
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .badge {
        white-space: normal !important;
        /* Critical: Allow badge text to wrap */
        max-width: 90%;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        /* Further reduced for extreme mobile screens */
        word-wrap: break-word;
        margin-top: 1rem;
        line-height: 1.3;
    }

    .hero-outline-list {
        display: block;
        text-align: left;
        margin: 0;
        padding-left: 0;
    }

    .hero-outline-list li {
        justify-content: flex-start;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .lead {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .lead-form-container {
        padding: 20px;
        margin: 0 5px;
    }
}


  .banner-placeholder {
            width: 100%;
            max-width: 1366px;
            height: 768px;
            background: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            border: 2px dashed #ccc;
            color: #999;
            font-size: 2rem;
            text-align: center;
        }

        @media (max-width: 1366px) {
            .banner-placeholder {
                height: auto;
                aspect-ratio: 1366 / 768;
            }
        }




.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #ff5722; /* Your orange color */
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid #ff5722;
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none; 
}




