/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #b91c1c;
    --accent-glow: #b91c1c;
    --gold: #ffd700;
    --gold-light: #ffff80;
    --light: #fff;
    --dark: #0f0f23;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--dark) !important;
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 10px 18px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link.active {
    color: var(--gold) !important;
}

.toll-free {
    background: var(--accent-glow);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.toll-free i {
    font-size: 12px;
}


/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 450px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    border-radius: 20px;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #ffaa00);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator i {
    color: var(--accent);
    font-size: 20px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== SECTION TITLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}



.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}



.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.about-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.4s ease;
}

.about-image:hover::after {
    opacity: 1;
}



/* ===== RECRUITERS SECTION ===== */
.recruiters-section {
    padding:50px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.recruiters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}


.marquee-container {
    position: relative;
    margin: 30px 0;
}

.marquee-wrapper {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
}

.marquee-content.marquee-left {
    animation: scrollLeft 30s linear infinite;
}

.marquee-content.marquee-right {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.company-logo {
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    border: 1px solid var(--dark);
}

.company-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
   
    transition: all 0.4s ease;
}


.company-logo:hover img {
    filter: grayscale(0%);
}

/* ===== COLLABORATIONS SECTION ===== */
.collab-section {
    padding: 60px 0;
    background: var(--light);
}
.collab-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.collab-card {
    background: #fff;;
    border: 1px solid var(--dark);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}



.collab-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    
   
    transition: all 0.4s ease;
}



/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(233, 69, 96, 0.8), transparent);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 24px;
    z-index: 2;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 20px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    opacity: 0.8;
}

.footer-text {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 40px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  
    
    .about-card {
        padding: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
   
    
    
    .company-logo {
        min-width: 120px;
        padding: 15px;
        height: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }


@media (max-width: 576px) {
 
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
    
    .about-card {
        padding: 20px;
    }
}
/* Highlight styling */
.highlight i {
    color: var(--accent-glow);
    transition: 0.3s;
}

.highlight span {
    color: #000;
    font-weight: 500;
}



.highlight:hover span {
    color: #000;
}

/* Image hover */
.about-section img {
    transition: 0.4s ease;
}

.about-section img:hover {
    transform: scale(1.05);
}

/* Card glow effect */
.about-section .shadow-lg {
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
/* ===== MOBILE NAVBAR (≤ 991px) ===== */
@media (max-width: 991px) {

    /* Navbar background */
    .navbar {
        background: var(--primary);
        padding: 10px 0;
    }

    /* Collapse menu box */
    .navbar-collapse {
        background: var(--secondary);
        margin-top: 10px;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }

    /* Nav items spacing */
    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    /* Nav links */
    .navbar-nav .nav-link {
        font-size: 16px;
        color: #ddd;
        padding: 10px;
        display: block;
        border-radius: 8px;
        transition: 0.3s;
    }

    /* Hover / Active */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      
        color: #fff;
    }

    /* Logo resize */
    .navbar-brand img {
        height: 40px;
    }

   
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Fix logo alignment */
    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* Make logos equal height */
    .navbar-brand img {
        height: 38px;
        width: auto;
        object-fit: contain;
    }

    /* Fix toggler alignment */
    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        width: 45px;
        padding: 0;
        border: none;
        background: var(--gold);
        border-radius: 6px;
    }

    /* Center the icon inside */
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }

    /* Phone box full width */
    .toll-free {
        margin-top: 15px;
        width: 100%;
        text-align: center;
        padding: 10px;
        background: var(--accent);
        color: #fff;
        border-radius: 30px;
        font-weight: 600;
        box-shadow: 0 0 10px var(--accent-glow);
    }

    /* Fix icon spacing */
    .toll-free i {
        margin-right: 5px;
    }
}


/* ===== ABOUT SECTION MOBILE ===== */
@media (max-width: 991px) {

    .about-section {
        padding: 60px 0;
    }

    /* Heading */
    .about-section h2 {
        font-size: 1.8rem !important;
    }

    .about-section p {
        font-size: 14px !important;
    }

    /* Image */
    .about-section img {
        width: 100%;
        border-radius: 15px;
    }

    /* Badge reposition */
    .about-section .position-relative div {
        position: static !important;
        margin-top: 10px;
        display: inline-block;
    }

    /* Content card */
    .about-section .shadow-lg {
        padding: 20px !important;
    }

    /* Text */
    .about-section p {
        text-align: left !important;
        line-height: 1.7 !important;
    }

    /* Highlights */
    .about-section .row.mt-4 {
        margin-top: 20px !important;
    }

    .highlight {
        font-size: 14px;
        justify-content: flex-start;
    }

    .highlight i {
        font-size: 14px;
    }

    /* Stack highlights 1 per row */
    .about-section .col-md-6 {
        width: 100%;
    }
}
/* ================= SECTION ================= */
.courses-section {
    background: var(--dark);
    color: white;
}

/* ================= HEADER ================= */
.main-title {
    font-size: 2.7rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.section-subtitle {
    color: #ccc;
    font-size: 1rem;
}

/* ================= TABS ================= */
.courses-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.tab-btn.active {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* ================= TAB CONTENT ================= */
.tab-wrapper {
    margin-top: 30px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* ================= TABLE ================= */
.course-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 15px;
    background: transparent;
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.course-table tr {
    transition: 0.3s;
}

.course-table tr:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.01);
}

.course-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.course-table td:first-child {
    color: var(--gold);
    font-weight: bold;
    width: 80px;
}

/* ================= ANIMATION ================= */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(15px);}
    to {opacity: 1; transform: translateY(0);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
    .main-title {
        font-size: 2rem;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .course-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}
/* SECTION */
.ct-legacy-new {
    background: var(--light);
    color: white;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 20%);
}



@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* GRID LAYOUT */
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

/* CARD */
.legacy-item {
    background: var(--dark);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}


.legacy-item:hover::before {
    opacity: 1;
}

.legacy-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
    transition: left 0.6s;
}

.legacy-item:hover::after {
    left: 100%;
}





/* ICON */
.icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transition: transform 0.4s ease;
}

.legacy-item:hover .icon {
    transform: scale(1.1) rotate(-2deg);
}

/* TEXT */
.legacy-item .number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    margin: 15px 0;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.legacy-item .label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
/* Grid Pattern Overlay */
.ct-legacy-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
/* ================= RESPONSIVE ================= */

/* Large screens */
@media(min-width:1200px) {
    .legacy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium screens */
@media(max-width:1199px) and (min-width:768px) {
    .legacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small screens */
@media(max-width:767px) {
    .legacy-grid {
        grid-template-columns: 1fr;
    }
    
    .legacy-item {
        padding: 30px 20px;
    }
    
    .legacy-item .number {
        font-size: 2.4rem;
    }
    
    .icon {
        font-size: 42px;
    }
}
.events-pro {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Background Icons Container */
.bg-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* Individual Icons */
.bg-icons i {
  position: absolute;
  font-size: 60px;
  color: #ffffff;
  opacity: 0.05;
  animation: float 20s infinite ease-in-out;
}

/* Position each icon */
.bg-icons i:nth-child(1) {
  top: 20%;
  left: 5%;
}

.bg-icons i:nth-child(2) {
  top: 20%;
  right: 10%;
}

.bg-icons i:nth-child(3) {
  bottom: 5%;
  left: 15%;
}

.bg-icons i:nth-child(4) {
  bottom: 30%;
  right: 20%;
}

.bg-icons i:nth-child(5) {
  top: 10%;
  left: 60%;
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Keep content above */
.events-pro .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.main-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
}

.sub-title {
  color: #fff;
  font-size: 15px;
}

/* Event Item */
.event-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 50px;
 
  transition: 0.3s;
}



/* Icon */
.event-icon {
  min-width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

/* Content */
.event-content h5 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.event-content p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media(max-width:768px) {
  .main-title {
    font-size: 26px;
  }
}

/* HERO SECTION */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    background-color: var(--light);

    background-image: 
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* IMAGE */
.hero-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FORM POSITION */
.hero-form-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 420px;
}

/* CARD */
.form-card {
    background: #0f172a;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    min-height: 600px;
    overflow: hidden;
}

.form-card h3 {
    color: #fff;
    margin-bottom: 20px;
}



@keyframes shimmer {
    100% {
        background-position: -200% 0;
    }
}

/* WIDGET FIX */
.npf_wgts,
.npf_wgts iframe {
    width: 100% !important;
    min-height: 600px !important;
    border: none;
}

/* MOBILE */
.mobile-form-section {
    padding: 40px 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-banner {
        height: auto;
    }

    .hero-banner__img {
        height: auto;
    }

    .hero-form-container {
        display: none;
    }
}