/* ===========================================
   GLOBAL VARIABLES & RESET
=========================================== */
:root {
    --color-slate-950: #020617;
    --color-slate-900: #0f172a;
    --color-slate-100: #f1f5f9;
    --color-slate-50: #f8fafc;
    --color-indigo-400: #818cf8;
    --color-indigo-500: #6366f1;
    --color-sky-400: #38bdf8;
    --color-cyan-300: #67e8f9;
    --color-cyan-400: #22d3ee;
    --color-fuchsia-500: #d946ef;
    
    --primary-navy: #0b2e59;
    --primary-green: #027010;
    --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: black;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}

/* ===========================================
   UTILITY CLASSES
=========================================== */
.hidden { display: none !important; }
.opacity-100 { opacity: 1; }
.opacity-0 { opacity: 0; }
.anchor-section { height: 0; overflow: hidden; }

/* ===========================================
   NAVIGATION / HEADER
=========================================== */
.header-wrapper {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.glass-nav {
    pointer-events: auto;
    width: 100%;
    max-width: 85rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.25rem;
    width: 2.25rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: var(--color-slate-950);
    padding-left: 30px;
}

.logo-icon img {
    height: 3.5rem;
    width: 3.5rem;
}

.name {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding-left: 25px;
    font-weight: bolder;
    letter-spacing: 2.5px;
    color: darkgreen;
    font-size: 2rem;
}

.name2 { color: #120061; }

/* Desktop Navigation */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(241, 245, 249, 0.8);
}

.nav-link {
    border-radius: 10px;
    padding: 0.5rem 1rem;
    transition: all 150ms ease;
    font-weight: bold;
}

.nav-link:hover, .nav-link.active {
    background-color: navy;
    color: #fafffb;
}

/* Mobile Navigation */
.mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 9999px;
    color: var(--color-slate-100);
}

.mobile-toggle svg { color: navy; }
.mobile-toggle:hover { background-color: rgba(255, 255, 255, 0.1); }

.icon-svg {
    height: 1.5rem;
    width: 1.5rem;
    transition: all 0.3s ease;
}

.nav-toggle.active .icon-svg {
    transform: rotate(90deg);
}

.mobile-menu-dropdown {
    pointer-events: auto;
    position: absolute;
    top: 5.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 100%;
    max-width: 80rem;
    width: calc(100% - 2rem);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background-color: rgba(255, 255, 255, 0.1);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-dropdown.active {
    display: block !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.mobile-links-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(241, 245, 249, 0.9);
}

.mobile-link {
    display: block;
    border-radius: 1rem;
    padding: 0.5rem 0.75rem;
    transition: background-color 150ms, color 150ms;
}

.mobile-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-link.contact-btn:hover {
    background-color: rgba(34, 211, 238, 0.9);
    color: var(--color-slate-950);
}

@media (min-width: 768px) {
    .desktop-menu { display: flex; }
    .mobile-toggle { display: none; }
    .mobile-menu-dropdown { display: none !important; }
}

@media (min-width: 640px) {
    .logo-text { display: inline; }
}

@media (max-width: 768px) {
    .name { display: none; }
}

/* ===========================================
   HERO SECTION
=========================================== */
.hero-section {
    position: relative;
    z-index: 0;
    display: flex;
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 700ms ease-in-out;
}

.hero-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* --- Mobile View Adjustments --- */
@media (max-width: 768px) {
  
  /* 1. Reset the parent container height */
  .hero-section, 
  .hero-slider-wrapper {
    /* Stop forcing desktop height */
    height: auto !important; 
    min-height: 0 !important;
    
    /* 2. Set the exact aspect ratio of your image (431w / 538h) */
    /* This ensures the box is always the perfect size for the image */
    aspect-ratio: 431 / 538;
  }

  /* 3. Ensure the image fills that space perfectly */
  .hero-slide, 
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures no stretching */
    display: block;    /* Removes the tiny default bottom gap under images */
  }
}








/* ===========================================
   CONSULTANCY SECTION
=========================================== */
.consultancy-section {
    padding: 50px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    background-color: white;
}

.consultancy-section.visible {
    opacity: 1;
}

.sub-heading {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #027010;
    margin-bottom: 15px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: navy;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
}
.global-e{
    color: darkgreen;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
}

.features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.feature-item {
    flex: 1;
    min-width: 220px;
    padding: 20px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.icon-box {
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box svg {
    width: 90px;
    height: 90px;
    stroke: navy;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.icon-box svg path, 
.icon-box svg circle, 
.icon-box svg rect {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.5s ease-out;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    color: #222;
}

/* Animation Classes */
.visible .sub-heading { animation: fadeInUp 0.8s forwards 0.1s; }
.visible .main-heading { animation: fadeInUp 0.8s forwards 0.3s; }
.visible .description { animation: fadeInUp 0.8s forwards 0.5s; }
.visible .feature-item:nth-child(1) { animation: fadeInUp 0.8s forwards 0.7s; }
.visible .feature-item:nth-child(2) { animation: fadeInUp 0.8s forwards 0.9s; }
.visible .feature-item:nth-child(3) { animation: fadeInUp 0.8s forwards 1.1s; }
.visible .feature-item:nth-child(4) { animation: fadeInUp 0.8s forwards 1.3s; }
.visible .icon-box svg path, 
.visible .icon-box svg circle, 
.visible .icon-box svg rect {
    stroke-dashoffset: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-heading { font-size: 32px; }
    .features-container { flex-direction: column; align-items: center; }
    .feature-item { width: 100%; max-width: 300px; }
}

/* ===========================================
   TICKER SECTION
=========================================== */
.ticker-section {
    background-color: #027010;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    height: 80px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ticker-title {
    flex-shrink: 0;
    z-index: 10;
    background-color: #027010;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 5px 0 15px -5px #027010;
}

.ticker-title span.small-text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2px;
}

.ticker-title h2 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.ticker-wrapper {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: seamless-scroll 60s linear infinite;
}

.event-group {
    display: flex;
}

.event-item {
    font-size: 15px;
    font-weight: 400;
    padding: 0 50px;
    display: inline-flex;
    align-items: center;
}

.nepali-text {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 17px;
}

.event-item::after {
    content: "•";
    color: #d4a017;
    margin-left: 50px;
    font-size: 20px;
}

.ticker-btn {
    flex-shrink: 0;
    z-index: 10;
    background-color: #027010;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 15px -5px #027010;
}

.btn-link {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.btn-link:hover { opacity: 0.8; }

.icon-circle {
    background-color: #0b2e59;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

@keyframes seamless-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

@media (max-width: 900px) {
    .ticker-section { 
        flex-direction: column; 
        height: 70px; 
        padding: 20px; 
        gap: 15px; 
        text-align: center; 
    }



    .event-item{
        font-size: 19px;
    }
    .ticker-btn {
    display: none;
}


    .ticker-title, .ticker-btn { 
        display: none;
    }
    .ticker-wrapper { width: 100%; height: 50px; }
    .ticker-title h2 { font-size: 30px; }
    .btn-link, .ticker-title { align-items: center; }
}

/* ===========================================
   AVENUE SECTION
=========================================== */
.avenue-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    padding-top: 100px;
    gap: 60px;
    min-height: 600px;
    background-color: #f0f7fc;
    font-family: 'Lato', sans-serif;
    overflow: hidden;
}

.avenue-illustration-col {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.avenue-illustration-col img {
    height: 130%;
    width: auto;
}

.avenue-red-shape {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 250px;
    background-color: #e31e24;
    clip-path: polygon(0 20%, 100% 0, 50% 100%, 0 20%);
    z-index: 1;
}

.avenue-landmarks-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
}

.avenue-landmarks-container i {
    position: relative;
    bottom: -20px;
    transition: transform 0.3s ease;
}

.avenue-statue { color: #e31e24; font-size: 140px; z-index: 3; margin-right: -20px; }
.avenue-tower-uk { color: #0b2e59; font-size: 110px; z-index: 2; margin-right: -10px; }
.avenue-tower-cn { color: #3b82f6; font-size: 160px; z-index: 1; margin-right: -20px; bottom: 0 !important; }
.avenue-pagoda { color: #3b82f6; font-size: 90px; z-index: 2; margin-left: -10px; }
.avenue-opera { 
    color: #ffb6c1; 
    font-size: 70px; 
    position: absolute !important; 
    bottom: 30px !important; 
    left: 20%; 
    z-index: 4; 
    transform: rotate(-10deg);
}

.avenue-content-col {
    flex: 1;
}

.avenue-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: #003a70;
    line-height: 1.2;
    margin-bottom: 25px;
}

.avenue-highlight-red {
    color: #027010;
    display: block;
}

.avenue-description {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    max-width: 550px;
}

.avenue-view-link {
    text-decoration: none;
    color: #003a70;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.avenue-view-link:hover {
    opacity: 0.8;
}

.avenue-icon-circle {
    background-color: #e31e24;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .avenue-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 20px;
    }
    .avenue-illustration-col {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
    .avenue-section img { max-width: 135%; height: auto; }
    .avenue-main-heading { font-size: 32px; }
    .avenue-description { margin: 0 auto 30px auto; }
    .avenue-view-link { justify-content: center; }
}

/* ===========================================
   TESTIMONIALS SECTION
=========================================== */
.testimonials {
    background: navy;
    padding: 4rem 0 3.5rem;
}

.testimonials .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-family: 'Playfair Display', serif;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.section-description {
    font-size: 0.95rem;
    color: rgba(167, 243, 208, 0.8);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 300ms ease;
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-quote-icon {
    width: 32px;
    height: 32px;
    color: rgba(52, 211, 153, 0.5);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #34d399;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.2);
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-program {
    font-size: 0.75rem;
    color: rgba(110, 231, 183, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-country-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.testimonial-country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .section-title { font-size: 1.875rem; }
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
    .section-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ===========================================
   PARALLAX SECTIONS
=========================================== */
.parallax-section, .parallax-section2 {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.parallax-section { background-image: url('img/australia.webp'); }
.parallax-section2 { 
    background-image: url('img/caregiver.webp'); 
    min-width: 100vw;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.parallax-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.parallax-title {
    font-size: 60px;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 1px;
    line-height: 1;
}

.parallax-title .font-light { font-weight: 300; }
.parallax-title .font-bold { font-weight: 900; }

.parallax-btn-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.parallax-section2 .pill-btn{
    font-size: 16px;
}
.pill-btn {
    text-decoration: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    letter-spacing: 0.5px;
    min-width: 180px;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.pill-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.btn-explore { background-color: #990000; }
.btn-visa { background-color: #990033; }
.btn-scholar { background-color: #7a297a; }
.btn-blogs { background-color: #524075; }

.side-register-widget {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 10;
    background-color: #e31e24;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    padding: 30px 10px;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    transition: padding 0.3s ease;
}

.side-register-widget:hover { padding: 40px 10px; }

@media (max-width: 900px) {
    .parallax-title { font-size: 42px; }
    .parallax-btn-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .pill-btn { width: 100%; max-width: 300px; }
    .parallax-section, .parallax-section2 {
        height: auto;
        padding: 80px 0;
    }
}

/* ===========================================
   APPLICATION FORM SECTION
=========================================== */
.app-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background-color: #f8fbff;
    font-family: 'Lato', sans-serif;
    overflow: hidden;
}

.app-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
}

.app-form-col { flex: 1; }

.app-heading {
    font-size: 42px;
    font-weight: 900;
    color: navy;
    line-height: 1.2;
    margin-bottom: 20px;
}

.app-highlight-red { color: #027010; font-style: italic; }
.app-desc { font-size: 16px; color: #555; line-height: 1.6; margin-bottom: 30px; }

.form-group { margin-bottom: 20px; }
.form-label { 
    display: block; 
    font-weight: 700; 
    color: #444; 
    margin-bottom: 8px; 
    font-size: 14px; 
}
.required { color: #e31e24; }

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d9e6;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    background-color: #f9fbfc;
    transition: border-color 0.3s;
}

.form-input:focus { 
    outline: none; 
    border-color: #003a70; 
    background-color: #fff; 
}

.checkbox-group { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 25px; 
}
.checkbox-label { font-size: 13px; color: #333; font-weight: 700; }

.app-submit-btn {
    width: 100%;
    background-color: navy;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.app-submit-btn:hover { background-color: darkgreen; }

.app-image-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.main-student-img {
    max-width: 110%;
    height: auto;
    position: relative;
    z-index: 1;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: popInCard 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.card-stats { 
    top: 10%; 
    left: 0; 
    animation-delay: 0.2s;
}

.card-admission { 
    top: 40%; 
    right: -20px; 
    animation-delay: 0.8s;
}

.card-counseling { 
    bottom: 15%; 
    left: 0; 
    animation-delay: 1.4s;
}

@keyframes popInCard {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.icon-blue { background-color: #e0f2fe; color: #0ea5e9; }
.icon-orange { background-color: #ffedd5; color: #f97316; }

.counselor-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    object-position: 50% 20%;
}

.status-dot {
    height: 10px; 
    width: 10px; 
    background-color: #22c55e; 
    border-radius: 50%; 
    position: absolute; 
    bottom: 15px; 
    left: 55px; 
    border: 2px solid white;
}

.card-text h4 { 
    font-size: 15px; 
    font-weight: 800; 
    color: #333; 
    margin-bottom: 2px; 
}
.card-text p { font-size: 12px; color: #666; }

@media (max-width: 900px) {
    .app-container { flex-direction: column; gap: 40px; }
    .app-image-col { margin-top: 20px; min-height: auto; }
    .float-card {
        position: relative;
        top: auto !important; 
        left: auto !important; 
        right: auto !important; 
        bottom: auto !important;
        margin-bottom: 15px;
        width: 100%;
        max-width: 350px;
    }
    .main-student-img, .app-image-col { display: none; }
}

/* ===========================================
   UNIVERSITY LOGOS SECTION
=========================================== */
.university-section9 {
    padding: 4rem 0;
    background: #ffffff;
    overflow: hidden;
}

.section-heading9 {
    text-align: center;
    color: navy;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
}

.university-scroller9 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.university-track9 {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.university-logo {
    flex: 0 0 auto;
    margin: 0 2rem;
    padding: 1rem;
}

.university-logo img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.university-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 2)); }
}

@media (max-width: 768px) {
    .university-logo {
        margin: 0 1.5rem;
    }
    .university-logo img {
        width: 90px;
        height: 90px;
    }
    .section-heading9 { font-size: 29px; }
    .university-section9 { padding-bottom: 10px; }
}

/* ===========================================
   STATS SECTION
=========================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-left: 100px;
    padding-right: 100px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: navy;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #4b5563;
}

@media (max-width: 768px) {
    .stats-grid {
        padding-right: 0;
        padding-left: 0;
    }
}

/* ===========================================
   FOOTER
=========================================== */
.minimal-footer {
    background-color: #0b2e59;
    color: #ffffff;
    padding: 60px 20px 20px 0px;
    font-family: 'Lato', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 200px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: #b0c4de;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #d4a017;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4a017;
    transform: translateX(5px);
}

.footer-address {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #d4a017;
    border-color: #d4a017;
    color: #0b2e59;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: #7a8fa3;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        justify-content: left;
        padding-left: 10px;
    }
    .footer-links a:hover { transform: translateX(0); }
}

/* ===========================================
   WHATSAPP BUTTON
=========================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 15px 40px -5px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 1rem;
    background-color: white;
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5); }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
    .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* ===========================================
   PAGE-SPECIFIC SECTIONS (ABOUT, GALLERY, PROGRAMS)
=========================================== */

/* --- About Page Sections --- */
.split-section1 {
    padding: 150px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 70px;
    font-family: 'Times New Roman', Times, serif;
}

.main-heading2 {
    font-size: 2.8rem;
    color: #027010;
    font-weight: 700;
    text-align: left;
    line-height: 90px;
}

.lower-part1 {
    display: flex;
    gap: 4rem;
}

.image-container1 {
    flex: 1;
    width: 100%;
    height: 400px;
    background: #ffffff;
    margin-bottom: 2rem;
    overflow: hidden;
}

.featured-image1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.text-content1 {
    flex: 1;
    padding: 1.5rem;
    padding-top: 0%;
}

.image-title1 {
    font-size: 2.2rem;
    color: #0a8629;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 20px;
}

.image-subtitle1 {
    color: #0b2e59;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description1 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 2rem;
}

/* Bento Grid Section */
.about-bento-section {
    padding: 100px 20px;
    background-color: white;
    font-family: 'Lato', sans-serif;
}

.bento-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-box {
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.bento-box:hover {
    transform: translateY(-5px);
}

.main-intro {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background-color: var(--primary-navy);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bento-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 20px;
    color: var(--primary-green);
    background: white;
}

.bento-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-green {
    color: #4ade80;
}

.bento-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 30px;
}

.bento-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-green);
    width: fit-content;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.bento-link:hover {
    color: #4ade80;
    border-bottom-color: #4ade80;
}

.visual-box {
    grid-column: 2 / 4;
    height: 300px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-box:hover img {
    transform: scale(1.05);
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-navy);
}

.feature-green {
    background-color: var(--primary-green);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.icon-shell {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.feature-green h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.feature-green p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.feature-white {
    background-color: white;
    color: var(--primary-navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.dark-icon {
    background: #f0fdf4;
    color: var(--primary-green);
}

.feature-white h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.feature-white p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Certification Banner */
.ctevt-minimal-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
}

.cert-banner {
    display: flex;
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.banner-visual {
    flex: 0 0 300px;
    background-color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pattern-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.banner-seal {
    width: 140px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.banner-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e6f9ed;
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 15px;
}

.banner-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight-green {
    color: var(--primary-green);
}

.banner-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.banner-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.reg-no {
    font-family: monospace;
    color: #777;
    font-size: 14px;
}

.reg-no strong {
    color: var(--primary-navy);
}

.verify-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.verify-link:hover {
    gap: 12px;
    text-decoration: underline;
}

/* Map Section */
.map-overlap-section {
    position: relative;
    background-color: #f9fbfc;
    font-family: 'Lato', sans-serif;
    padding-bottom: 80px;
}

.map-header-frame {
    width: 100%;
    height: 450px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.map-header-frame:hover {
    filter: grayscale(0%);
}

.map-header-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.info-grid-container {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.info-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-green);
}

.active-card {
    background-color: var(--primary-navy);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(11, 46, 89, 0.25);
}

.active-card:hover {
    border-bottom-color: var(--primary-green);
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: #f0fdf4;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background 0.3s;
}

.active-card .icon-circle {
    background-color: rgba(255, 255, 255, 0.1);
    color: #4ade80;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-navy);
}

.active-card h3 {
    color: white;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.active-card p {
    color: #cbd5e1;
}

.card-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--primary-green);
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.card-link:hover {
    border-bottom-color: var(--primary-green);
}

.active-card .card-link {
    color: #4ade80;
}

.active-card .card-link:hover {
    border-bottom-color: #4ade80;
}

/* Company Info Section */
.company-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Lato', sans-serif;
    color: #444;
}

.info-container {
    max-width: 1100px;
    margin: 0 auto;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.info-text {
    flex: 1;
}

.info-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.info-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.info-bold {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.small-note {
    font-size: 13px;
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

.green-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
}

.green-link:hover {
    text-decoration: underline;
}

.info-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.rounded-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-badge-wrapper {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 20px;
}

.badge-number {
    font-size: 18px;
    color: #888;
    margin-bottom: 10px;
    font-family: monospace;
    letter-spacing: 1px;
}

.badge-img {
    width: 160px;
    height: auto;
    margin-bottom: 15px;
}

.qr-code {
    font-size: 40px;
    color: #333;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background-color: #f9fbfc;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.highlight-navy {
    color: var(--primary-navy);
}

.gallery-sub {
    font-family: 'Lato', sans-serif;
    color: #666;
    font-size: 16px;
}

.masonry-grid {
    column-count: 4;
    column-gap: 15px;
}

.gallery-item {
    position: relative;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay i {
    color: white;
    font-size: 24px;
    background: var(--primary-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



/* Image Gallery Container */
.container3 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
    gap: 10px;
    padding: 100px;
    padding-top: 10px;
    box-sizing: border-box;
}

.image-box3 {
    flex: 1;
    transition: flex 0.5s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-width: 50px;
}

.image-box3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-box3:hover {
    flex: 4;
}
/* ===========================================
   SIMPLE LIGHTBOX / MODAL STYLES
=========================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Show pointer to indicate it's clickable */
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default; /* Don't show pointer on image */
}

.lightbox-overlay.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
}

/* Remove all buttons and counters - only image remains */
.lightbox-nav,
.lightbox-close,
.lightbox-counter {
    display: none !important;
}







/* Programs Page Sections */
.vision-section {
    padding: 80px 20px;
    background: linear-gradient(90deg, #ffffff 40%, #f0f6fc 100%);
    overflow: hidden;
    font-family: 'Lato', sans-serif;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.vision-container img {
    height: 600px;
    width: auto;
    padding-left: 40px;
}

.vision-content {
    flex: 0.8;
    z-index: 2;
}

.vision-heading {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.brand-text {
    font-style: italic;
    color: var(--primary-navy);
}

.vision-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.vision-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.vision-link:hover {
    opacity: 0.8;
}

.vision-visuals {
    flex: 1.2;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background-color: #0056b3;
    border-radius: 50%;
    z-index: 1;
    background: radial-gradient(circle at 30% 30%, #0069d9, var(--primary-navy));
}

.ring-outline {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(11, 46, 89, 0.2);
    border-radius: 50%;
    padding: 20px;
    box-sizing: content-box;
}

.student-img {
    height: 110%;
    width: auto;
    position: relative;
    z-index: 2;
    bottom: -20px;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.v-card {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    min-width: 160px;
    transition: transform 0.3s ease;
}

.v-card:hover {
    transform: scale(1.05);
}

.v-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.orange-bg { background-color: #f97316; }
.lightblue-bg { background-color: #0ea5e9; }
.grey-bg { background-color: #64748b; }
.red-bg { background-color: #ef4444; }

.v-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.v-text small {
    font-size: 11px;
    color: #666;
}

.v-text strong {
    font-size: 13px;
    color: var(--primary-navy);
}

.card-1 { top: 15%; right: 5%; }
.card-2 { top: 30%; left: 10%; }
.card-3 { top: 55%; right: 0%; }
.card-4 { bottom: 20%; left: 20%; }

/* Training Sections */
.amazing-training-section {
    padding: 100px 20px;
    background-color: #fcfcfc;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
}

.training-container {
    max-width: 1100px;
    width: 100%;
}

.training-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.training-visual {
    width: 60%;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(11, 46, 89, 0.05);
}

.training-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.training-wrapper:hover .training-visual img {
    transform: scale(1.1);
}

.floating-coffee-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.training-content-card {
    width: 50%;
    background: white;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
    margin-left: -150px;
    border-left: 5px solid var(--primary-green);
    transition: transform 0.3s ease;
}

.training-wrapper:hover .training-content-card {
    transform: translateY(-5px);
}

.sub-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.training-content-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 25px;
}

.training-content-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.training-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.explore-btn {
    text-decoration: none;
    background-color: var(--primary-navy);
    color: white;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    transition: background 0.3s;
}

.explore-btn:hover {
    background-color: var(--primary-green);
}

.course-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.course-meta i {
    color: var(--primary-green);
    margin-right: 5px;
}

/* Caretaker Section */
.caretaker-unique-section {
    padding: 20px 20px;
    background-color: #ffffff;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
}

.caretaker-container {
    max-width: 1100px;
    width: 100%;
}

.caretaker-card {
    display: flex;
    background-color: var(--primary-navy);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 46, 89, 0.15);
    color: white;
    min-height: 500px;
}

.caretaker-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.icon-header i {
    font-size: 20px;
}

.caretaker-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.caretaker-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.care-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.care-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
}

.care-features li i {
    color: var(--primary-green);
    background: rgba(255, 255, 255, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.care-btn {
    text-decoration: none;
    background: white;
    color: var(--primary-navy);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.care-btn:hover {
    background: var(--primary-green);
    color: white;
}

.caretaker-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -50px;
}

.caretaker-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.caretaker-card:hover .caretaker-visual img {
    transform: scale(1.05);
}

.pulse-circle {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 70px;
    height: 70px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 0 0 0 rgba(2, 112, 16, 0.7);
    animation: heartbeat 2s infinite;
    z-index: 10;
}

@keyframes heartbeat {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(2, 112, 16, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(2, 112, 16, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(2, 112, 16, 0); }
}

/* Language Section */
.language-arch-section {
    position: relative;
    padding: 100px 20px;
    background-color: #f8fbff;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.language-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.dot-pattern {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.6;
    z-index: 1;
}

.language-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.arch-frame {
    width: 350px;
    height: 500px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(2, 112, 16, 0.1);
    position: relative;
    z-index: 2;
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.language-visual:hover .arch-frame img {
    transform: scale(1.1);
}

.lang-tag {
    position: absolute;
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 3;
    animation: floatTag 4s ease-in-out infinite;
}

.flag { font-size: 18px; }

.tag-1 { top: 20%; left: -20px; animation-delay: 0s; }
.tag-2 { top: 60%; right: -30px; animation-delay: 1.5s; }
.tag-3 { bottom: 30px; left: 10px; animation-delay: 2.5s; }

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.language-content {
    flex: 1.2;
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}

.language-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 25px;
}



.main-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.lang-features1 {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item1 {
    text-align: center;
}

.feature-item1 i {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 10px;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.feature-item1 h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.feature-item1 p {
    font-size: 12px;
    color: #888;
}

.lang-btn1 {
    text-decoration: none;
    background-color: var(--primary-navy);
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.lang-btn1:hover {
    background-color: var(--primary-green);
}

/* Courses Header */
.courses-header-container {
    text-align: center;
    padding: 20px 20px 40px;
    background-color: #fcfcfc;
}

.courses-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-navy);
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.courses-main-title .highlight-green {
    color: var(--primary-green);
}

.courses-main-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 5px;
    background-color: var(--primary-green);
    margin: 15px auto 0;
    border-radius: 10px;
    opacity: 0.8;
}

/* ===========================================
   RESPONSIVE STYLES FOR ALL SECTIONS
=========================================== */
@media (max-width: 900px) {
    /* Bento Grid */



    .about-bento-section{
        padding-top: 20px;
        padding-bottom: 0;
    }
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .main-intro { min-height: auto; }
    .visual-box { height: 250px; }
    .vision-visuals{
        display: none;
    }
    .bento-title { font-size: 32px; }
    
    /* Certification Banner */
    .cert-banner { flex-direction: column; }
    .banner-visual {
        flex: none;
        height: 200px;
        width: 100%;
    }
    .banner-content { padding: 30px 20px; }
    .banner-heading { font-size: 28px; }
    .banner-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Map Section */
    .info-grid-container {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 20px;
        padding: 20px;
    }
    .map-overlap-section{
        padding-bottom: 20px;
    }
    .map-header-frame { height: 300px; }
    .active-card { transform: none; }
    
    /* Company Info */
    .info-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .info-image-wrapper, .info-badge-wrapper {
        order: -1;
        width: 100%;
    }
    .info-text { width: 100%; }
    .info-heading { font-size: 28px; }
    
    /* Gallery */

     .gallery-section{
        padding-top: 20px;
        padding-bottom: 20px;
     }
    .masonry-grid {
        column-count: 2;
        column-gap: 10px;
    }
    .gallery-item { margin-bottom: 10px; }
    
    /* Image Gallery */
    .container3 {
        flex-direction: column;
        padding: 15px;
    }
    .image-box3 {
        width: 100%;
        height: 200px;
    }
    .image-box3:hover { flex: 2; }
    


    .vision-section{
        padding-bottom: 20px;
    }
    /* Vision Section */
    .vision-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .vision-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .vision-desc { margin: 0 auto 30px auto; }
    .vision-heading { font-size: 42px; }
    .vision-visuals {
        width: 100%;
        height: 400px;
        margin-top: 30px;
    }
    .blue-circle {
        width: 300px;
        height: 300px;
    }
    .vision-container img {
        height: 550px;
        width: auto;
        padding-left: 25px;
    }

    .amazing-training-section{
        padding-top: 0;
        padding-bottom: 30px;
    }
    .card-2, .card-3 { display: none; }
    .card-1 { top: 0; right: 10%; }
    .card-4 { bottom: 0; left: 10%; }
    
    /* Training Sections */
    .training-wrapper { flex-direction: column; }
    .training-visual {
        width: 100%;
        height: 350px;
        box-shadow: none;
    }
    .training-content-card {
        width: 90%;
        margin-left: 0;
        margin-top: -50px;
        padding: 40px 30px;
    }
    .training-content-card h2 { font-size: 32px; }
    .training-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    /* Caretaker Section */
    .caretaker-card {
        flex-direction: column-reverse;
        height: auto;
    }
    .caretaker-visual {
        height: 300px;
        margin-left: 0;
        clip-path: none;
        border-radius: 30px 30px 0 0;
    }
    .caretaker-content {
        padding: 40px 30px;
        border-radius: 0 0 30px 30px;
    }
    .pulse-circle {
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
        margin-left: -35px;
    }
    .caretaker-content h2 { font-size: 32px; }
    
    /* Language Section */
    .language-container {
        flex-direction: column;
        gap: 50px;
    }
    .language-visual {
        width: 100%;
        padding: 0 20px;
    }
    .arch-frame {
        width: 100%;
        max-width: 350px;
        height: 400px;
    }
    .tag-1 { left: 0; }
    .tag-2 { right: 0; }
    .language-content { text-align: center; }
    .lang-features1 { justify-content: center; }
    .highlight-green::after { bottom: 2px; }
    
    /* Split Section */
    .split-section1 { padding: 2rem 1rem; }
    .lower-part1 { flex-direction: column; gap: 2rem; }
    .main-heading2 { 
        font-size: 2.2rem; 
        padding-left: 1rem;
    }
    .image-title1 { font-size: 1.8rem; }
    .text-content1 { padding: 0 1rem; }
    .image-container1 { margin-bottom: 8px; }
}



@media (max-width: 1024px) {
    .masonry-grid { column-count: 3; }
}

@media (max-width: 768px) {
    .courses-main-title { font-size: 42px; }
    .main-heading2 { font-size: 1.8rem; }
    .description1 { font-size: 1rem; }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 2;
        column-gap: 8px;
    }
}