/* ============================================================
   WANTIFY — FIXED RESPONSIVE CSS (Mobile + Desktop Perfect)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --navy:        #00234b;
    --navy-light:  #003570;
    --gold:        #c89f5f;
    --gold-light:  #deb96f;
    --green:       #1e5631;
    --green-light: #2a7442;
    --light-gray:  #f8f9fb;
    --white:       #ffffff;
    --text-body:   #4a5568;
    --text-dark:   #1a202c;
    --border:      #e8ecf0;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
    --shadow:      0 12px 40px rgba(0,0,0,0.10);
    --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:      20px;
    --radius-sm:   12px;
}

/* ══ GLOBAL RESET — PERFECT RESPONSIVE ═══════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'DM Sans', sans-serif !important;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
}

/* HAR SCREEN PERFECT FIT */
section, .row, .container, .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── CONTAINER SYSTEM — NO OVERFLOW EVER ──────────────────── */
.container {
    max-width: 1280px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(12px, 4vw, 24px) !important;
}

/* MOBILE-FIRST RESPONSIVE CONTAINER */
@media (max-width: 768px) {
    .container {
        padding: 0 16px !important;
        max-width: 100% !important;
    }
}

/* ── PROFESSIONAL TYPOGRAPHY ───────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }



/* ── FIXED CSS ────────────────────────────────────────────── */
:root {
    --gold: #f1c40f;
    --navy: #1a1a2e;
    --green: #27ae60;
    --white: #ffffff;
    --radius: 20px;
    --radius-sm: 12px;
}

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-green { color: var(--green) !important; }
.text-bluish { color: #4da6ff; }

.section-eyebrow {
    font-size: clamp(0.65rem, 2vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.header-line, .gold-line-center {
    width: 56px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 16px auto 0;
}:root {
    --gold: #f1c40f;
    --navy: #1a1a2e;
    --white: #ffffff;
    --radius: 20px;
}

/* ══════════════════════════════════════════════════════════════
   PERFECT HERO SECTION - MOBILE + DESKTOP ✅
   ══════════════════════════════════════════════════════════════ */

.hero-wrapper {
    width: 100%;
    padding: clamp(40px, 8vw, 80px) 0;
    background: var(--white);
}

.hero-banner-box {
    position: relative;
    width: 100%;
    min-height: clamp(400px, 50vw, 550px);
    background: linear-gradient(135deg, #000c1f 0%, #001a3a 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    padding: clamp(30px, 6vw, 60px);
    margin-bottom: clamp(30px, 6vw, 60px);
    overflow: hidden;
}

.hero-left-content {
    max-width: 48%;
    z-index: 2;
    flex-shrink: 0;
}

.hero-left-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-left-content h1 span { 
    color: var(--gold);
    display: block;
}

.hero-left-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 36px;
    max-width: 85%;
    line-height: 1.6;
}

.btn-yellow-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #000;
    padding: clamp(14px, 3vw, 18px) clamp(28px, 4vw, 36px);
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-yellow-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.6);
}

/* PERFECT FLOATING CARD - DESKTOP */
.hero-floating-card {
    position: absolute;
    right: clamp(3%, 5vw, 7%);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(360px, 34vw, 440px);
    max-width: 90vw;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(25px);
    padding: clamp(28px, 5vw, 44px);
    border-radius: var(--radius);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    z-index: 10;
}

.card-badge {
    background: rgba(253, 246, 233, 0.95);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    display: inline-block;
}

.hero-floating-card h2 {
    color: var(--navy);
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-floating-card h2 span { 
    color: #007bff;
    display: block;
}

.hero-floating-card p {
    color: #4a5568;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    line-height: 1.65;
    margin-bottom: 28px;
}

.card-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-card-gold, .btn-card-outline {
    flex: 1;
    padding: clamp(12px, 2.8vw, 14px) 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-card-gold {
    background: linear-gradient(135deg, var(--gold), #d4a574);
    color: white;
    box-shadow: 0 8px 25px rgba(200, 159, 95, 0.4);
}

.btn-card-gold:hover { 
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 159, 95, 0.6);
}

.btn-card-outline {
    border: 2px solid #333;
    color: #333;
    background: transparent;
    font-weight: 600;
}

.btn-card-outline:hover {
    background: #333;
    color: white;
    transform: translateY(-3px);
}

/* ═══ MOBILE PERFECT - NO CONFLICTS ═══ */
@media (max-width: 992px) {
    .hero-banner-box {
        flex-direction: column !important;
        text-align: center;
        padding: clamp(35px, 8vw, 55px) !important;
        min-height: clamp(500px, 70vw, 600px) !important;
    }
    
    .hero-left-content {
        max-width: 100% !important;
        margin-bottom: 45px;
        order: 1;
    }
    
    .hero-left-content p {
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-floating-card {
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 520px !important;
        margin: 0 auto;
        order: 2;
        padding: clamp(28px, 6vw, 40px) !important;
    }
    
    .card-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-card-gold, .btn-card-outline {
        min-height: 48px !important;
    }
}

@media (max-width: 480px) {
    .hero-banner-box {
        padding: 30px 20px !important;
        margin-bottom: 30px !important;
    }
    
    .hero-floating-card {
        padding: 24px 20px !important;
        margin: 25px auto !important;
    }
    
    .hero-left-content h1 {
        margin-bottom: 20px !important;
    }
    
    .hero-left-content p {
        margin-bottom: 30px !important;
    }
}



/* ══════════════════════════════════════════════════════════════
   2. TECH ECOSYSTEM — Infinite scroll, contained
══════════════════════════════════════════════════════════════ *//* ══════════════════════════════════════════════════════════════


/* ══════════════════════════════════════════════════════════════
   🔥 COMPLETE UPDATED CSS — ALL SECTIONS 2026 READY
══════════════════════════════════════════════════════════════ */

/* ═══ GLOBAL VARIABLES ═══ */
:root {
    --navy: #00234b;
    --gold: #c89f5f;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-600: #4b5563;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --radius: 16px;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
}

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { scroll-behavior: smooth; }
body { 
    font-family: system-ui, -apple-system, 'Inter', sans-serif; 
    line-height: 1.6; 
    color: #1f2937;
    overflow-x: hidden;
}

/* ═══ CONTAINER ═══ */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
    width: 100%;
}

/* ═══ 1. COMPACT NAVBAR (REDUCED PADDING) ═══ */
.horizontal-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    height: 70px;
}

.horizontal-navbar .container-fluid {
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand img { height: 40px; width: auto; }

.navbar-nav .nav-link {
    color: #4a5568 !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    margin: 0 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    white-space: nowrap;
}

.navbar-nav .nav-link i {
    width: 18px;
    margin-right: 6px;
    font-size: 0.95rem;
    color: #718096;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background-color: var(--navy) !important;
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover i, .navbar-nav .nav-link.active i {
    color: var(--gold) !important;
}

.get-started-btn {
    background: var(--navy);
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px !important;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
}

.get-started-btn:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

/* ═══ 2. SEARCH BAR ═══ */
.search-section {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.search-container {
    max-width: 500px;
    position: relative;
    margin: 0 auto;
}

.search-container input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    background: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-container input:focus {
    border-color: var(--navy);
    box-shadow: 0 4px 20px rgba(0,35,75,0.1);
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}

/* ═══ 3. MOBILE DASHBOARD SIDEBAR ═══ */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    border-right: 1px solid var(--border-color);
    z-index: 1200;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
}

.mobile-sidebar.active { left: 0; }

.sidebar-brand {
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.sidebar-brand img { width: 140px; height: auto; }

.mobile-nav-links {
    list-style: none;
    padding: 15px 20px;
    flex-grow: 1;
}

.mobile-nav-links .nav-link {
    padding: 14px 16px;
    color: #4a5568;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.2s;
}

.mobile-nav-links .nav-link i {
    width: 24px;
    margin-right: 12px;
    font-size: 1.1rem;
    color: #718096;
}

.mobile-nav-links .nav-link:hover, .mobile-nav-links .nav-link.active {
    background-color: var(--navy);
    color: white;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

/* ═══ 4. MOBILE HEADER ═══ */
.mobile-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--navy);
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover { background: var(--bg-light); }

/* ═══ 5. MAIN CONTENT ═══ */
.main-content {
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

/* ═══ 6. TECH ECOSYSTEM SECTION (FIXED HEADING) ═══ */
.tech-main-unit {
    background: linear-gradient(135deg, #000c1f 0%, #0a1428 50%, #000c1f 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.tech-main-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

.unit-header h6 {
    color: var(--gold) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(200, 159, 95, 0.5);
    animation: glowPulse 2s ease-in-out infinite;
}

.unit-header h2 {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3), 0 2px 4px rgba(0,0,0,0.5);
}

.text-bluish {
    color: #60a5fa !important;
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.6), 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(200, 159, 95, 0.5); }
    50% { text-shadow: 0 0 30px rgba(200, 159, 95, 0.8), 0 0 40px rgba(200, 159, 95, 0.4); }
}

.gold-line-center {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 25px auto;
    border-radius: 2px;
}

.tech-scroll-wrapper {
    height: 380px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-auto-scroll-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
}

.tech-track {
    display: flex;
    width: max-content;
    gap: 24px;
    padding: 30px 0;
    animation: scroll-left 35s linear infinite;
}

.tech-track:hover { animation-play-state: paused; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tech-unit-card {
    width: 280px;
    height: 320px;
    padding: 32px 28px;
    border-radius: 24px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
}

.tech-unit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.navy-card { background: rgba(0,20,47,0.7); border: 1px solid rgba(255,255,255,0.15); }
.gold-card { background: linear-gradient(145deg, rgba(184,133,58,0.9), rgba(200,159,95,0.8)); }
.blue-card { background: linear-gradient(145deg, rgba(0,68,160,0.85), rgba(0,102,204,0.75)); }

/* ═══ 7. CONTACT PAGE (PREVIOUSLY FIXED) ═══ */
.hero-section { 
    background: linear-gradient(135deg, var(--navy), #001a38);
    color: var(--white); 
    text-align: center; 
    padding: 80px 0 60px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(24px, 6vw, 40px);
    text-align: center;
    width: 100%;
}

.section-title { 
    font-size: clamp(1.5rem, 4vw, 2.75rem); 
    color: var(--navy); 
    text-align: center; 
    margin-bottom: 1rem; 
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(12px, 3vw, 16px) 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366 !important;
    color: white !important;
}

.email-btn {
    background: #EA4335 !important;
    color: white !important;
}

/* ═══ 8. PROFESSIONAL FOOTER ═══ */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-section h4 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* ═══ RESPONSIVE BREAKPOINTS ═══ */
@media (max-width: 991px) {
    .horizontal-navbar, .search-section { display: none; }
    .main-content { padding: 20px 15px; padding-top: 80px; }
}

@media (min-width: 992px) {
    .mobile-header, .mobile-sidebar { display: none !important; }
    .main-content { padding: 40px 40px; }
}

@media (max-width: 768px) {
    .tech-main-unit { padding: 80px 0; }
    .tech-unit-card { width: 260px; height: 300px; padding: 24px 20px; }
}

@media (max-width: 480px) {
    .main-content { padding: 20px 12px; }
    .tech-unit-card { width: 240px; height: 280px; }
}

/* ═══ PERFORMANCE & ACCESSIBILITY ═══ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { 
        animation-duration: 0.01ms !important; 
        animation-iteration-count: 1 !important; 
        transition-duration: 0.01ms !important;
    }
}




/* ══════════════════════════════════════════════════════════════
   3. STUDY ABROAD
═════════════════════════════════════════════════/* ══════════════════════════════════════════════════════════════
   🌍 STUDY ABROAD — Modern Animations + Responsive 2026 Style
══════════════════════════════════════════════════════════════ */

.study-abroad-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.study-abroad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmerTop 4s ease-in-out infinite;
}

@keyframes shimmerTop {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

.section-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.section-header h6 {
    color: var(--gold) !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(200,159,95,0.3);
    animation: fadeInUp 1s ease-out;
}

.section-header h2 {
    color: var(--navy) !important;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,35,75,0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-header .highlight {
    color: var(--gold) !important;
    position: relative;
}

.section-header .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px var(--gold); }
    50% { box-shadow: 0 0 20px var(--gold), 0 0 30px var(--gold); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══ STUDY CARDS GRID ═══ */
.study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.study-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.study-card:hover::before {
    transform: scaleX(1);
}

.study-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border-color: rgba(200,159,95,0.3);
}

.country-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200,159,95,0.1), rgba(200,159,95,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--gold);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(200,159,95,0.15);
}

.country-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    z-index: -1;
}

.study-card:hover .country-icon {
    background: linear-gradient(135deg, var(--gold), #d4a574);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(200,159,95,0.4);
}

.study-card h4 {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.study-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200,159,95,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--gold);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(200,159,95,0.2);
}

.study-card:hover .card-arrow {
    background: var(--gold);
    color: white;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px rgba(200,159,95,0.4);
}

.expert-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px 20px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.3);
}

.expert-cta p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.expert-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--navy), #001a38);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,35,75,0.3);
}

.expert-cta a:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,35,75,0.4);
    background: linear-gradient(135deg, var(--gold), #d4a574);
    color: var(--navy);
}

/* ═══ RESPONSIVE PERFECTION ═══ */
@media (max-width: 992px) {
    .study-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .study-abroad-section { padding: 100px 0; }
    .study-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    .section-header { margin-bottom: 60px; }
}

@media (max-width: 480px) {
    .study-abroad-section { padding: 80px 0; }
    .study-card { padding: 32px 24px; }
    .expert-cta { padding: 32px 16px; margin-top: 60px; }
}

/* ═══ PERFORMANCE ═══ */
@media (prefers-reduced-motion: reduce) {
    .study-card, .country-icon, .card-arrow,
    .expert-cta a { 
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}



/* ══════════════════════════════════════════════════════════════
   4. UMRAH PACKAGES
══════════════════════════════════════════════════════════════ */
.umrah-section {
    background: #f0f5f2;
    padding: 90px 0;
    overflow: hidden;
}

.umrah-badge {
    display: inline-block;
    background: rgba(30,86,49,0.10);
    color: var(--green);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.umrah-card {
    background: var(--white);
    border-radius: 24px;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}
.umrah-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }

.umrah-card.featured {
    border: 2px solid var(--green);
    box-shadow: 0 10px 32px rgba(30,86,49,0.14);
}
.umrah-card.featured:hover { transform: translateY(-6px); }

.border-gold-glow { border: 2px solid var(--gold) !important; }

.package-header {
    padding: 26px 22px;
    text-align: center;
    color: white;
    overflow: hidden;
}
.package-header h4    { font-family: 'DM Sans', sans-serif; font-size: 1.15rem; font-weight: 700; }
.package-header .price { font-size: 0.92rem; opacity: 0.85; margin-top: 4px; }

.package-header.economy   { background: linear-gradient(135deg, #555, #777); }
.package-header.standard  { background: linear-gradient(135deg, #1e5631, #2a7442); }
.package-header.executive { background: linear-gradient(135deg, #00234b, #003570); }
.package-header.royal     { background: linear-gradient(135deg, #b8853a, var(--gold)); }

.popular-tag {
    display: inline-block;
    background: rgba(255,255,255,0.24);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.package-list { list-style: none; padding: 0; }
.package-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.86rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}
.package-list li:last-child { border-bottom: none; }
.package-list li i { color: var(--gold); font-size: 0.84rem; flex-shrink: 0; }

.btn-outline-green {
    display: block;
    border: 2px solid var(--green);
    color: var(--green);
    background: transparent;
    border-radius: var(--radius-sm);
    padding: 10px;
    font-weight: 700;
    font-size: 0.84rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}
.btn-outline-green:hover { background: var(--green); color: white; }

.btn-green {
    display: block;
    background: var(--green);
    color: white;
    border-radius: var(--radius-sm);
    padding: 10px;
    font-weight: 700;
    font-size: 0.84rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}
.btn-green:hover { background: var(--green-light); color: white; }

.btn-gold-umrah {
    display: block;
    background: linear-gradient(135deg, #b8853a, var(--gold));
    color: white;
    border-radius: var(--radius-sm);
    padding: 10px;
    font-weight: 700;
    font-size: 0.84rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}
.btn-gold-umrah:hover { filter: brightness(1.1); color: white; }

/* ══════════════════════════════════════════════════════════════
   🚗 PREMIUM UMRAH TAXI — Real Images + GMC + Animations
══════════════════════════════════════════════════════════════ */

#umrah-taxi {
    padding: 140px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

#umrah-taxi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmerHeader 3s ease-in-out infinite;
}

@keyframes shimmerHeader {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

.taxi-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.taxi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(200,159,95,0.1), rgba(200,159,95,0.05));
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(200,159,95,0.2);
    animation: fadeInUp 1s ease-out;
}

.taxi-section-header h2 {
    color: var(--navy) !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,35,75,0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.taxi-section-header .highlight {
    color: #10b981 !important;
    position: relative;
}

.taxi-section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.taxi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.taxi-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.taxi-card.featured-taxi {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(200,159,95,0.2);
}

.taxi-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    border-color: rgba(200,159,95,0.3);
}

.taxi-img-box {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.taxi-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.taxi-card:hover .taxi-img-box img {
    transform: scale(1.1);
}

.taxi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,35,75,0.7), rgba(16,185,129,0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxi-card:hover .taxi-overlay {
    opacity: 1;
}

.taxi-overlay a {
    background: rgba(255,255,255,0.95);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.taxi-card:hover .taxi-overlay a {
    transform: scale(1);
}

.pax-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--navy), #001a38);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,35,75,0.3);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.taxi-content {
    padding: 32px;
    text-align: center;
}

.taxi-card h4 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.taxi-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.taxi-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    text-align: left;
}

.taxi-features li {
    font-size: 0.95rem;
    color: var(--gray-600);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.taxi-features li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.taxi-features li i.text-gold {
    color: var(--gold);
}

.btn-taxi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--navy), #001a38);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(0,35,75,0.3);
}

.btn-taxi:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,35,75,0.4);
    color: white;
}

.btn-taxi-gold {
    background: linear-gradient(135deg, var(--gold), #d4a574) !important;
    box-shadow: 0 8px 25px rgba(200,159,95,0.4);
}

.btn-taxi-gold:hover {
    box-shadow: 0 15px 40px rgba(200,159,95,0.5);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 992px) {
    .taxi-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    #umrah-taxi { padding: 100px 0; }
    .taxi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    .taxi-content { padding: 24px; }
}

@media (max-width: 480px) {
    #umrah-taxi { padding: 80px 0; }
    .taxi-img-box { height: 200px; }
}

/* ═══ PERFORMANCE ═══ */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   6. PLANTS
══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   🌿 COMPLETE UPDATED PLANTS SECTION CSS — 4 Cards Row
══════════════════════════════════════════════════════════════ */

#plants-section { 
    padding: 140px 0;
    background: linear-gradient(135deg, #f0f9f4 0%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

#plants-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: shimmerGreen 3s ease-in-out infinite;
}

@keyframes shimmerGreen {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* ═══ HEADER ═══ */
.plants-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.plants-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.08));
    color: #047857;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 2px solid rgba(16,185,129,0.3);
    box-shadow: 0 8px 25px rgba(16,185,129,0.15);
    animation: fadeInUp 1s ease-out;
}

.plants-header h2 {
    color: #1f2937 !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.plants-header .highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plants-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══ 4 CARDS GRID ═══ */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══ PLANT CATEGORY CARDS ═══ */
.plant-category-card {
    text-decoration: none;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.plant-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10b981, #059669, #10b981);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.plant-category-card:hover::before {
    transform: scaleX(1);
}

.plant-category-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow);
    border-color: rgba(16,185,129,0.4);
}

/* ═══ IMAGE CONTAINER ═══ */
.category-img-container {
    height: 255px;
    position: relative;
    overflow: hidden;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(1.1) contrast(1.1);
}

.plant-category-card:hover .category-img-container img {
    transform: scale(1.12) rotate(1deg);
}

/* ═══ PLANT INFO ═══ */
.plant-category-info {
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
}

.plant-category-info h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    color: #1f2937;
    font-size: clamp(1.25rem, 3vw, 1.45rem);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.plant-category-info p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ═══ VIEW MORE BUTTON ═══ */
.view-more-btn {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(16,185,129,0.2);
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 25px rgba(16,185,129,0.3);
    position: relative;
    overflow: hidden;
}

.btn-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-view-more:hover::before {
    left: 100%;
}

.btn-view-more:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(16,185,129,0.4);
    color: white !important;
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

/* ═══ FLOATING LEAF PARTICLES ═══ */
.plant-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(16,185,129,0.3), transparent);
    border-radius: 50% 0;
    animation: floatLeaf 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* ═══ RESPONSIVE 4-COLUMN LAYOUT ═══ */
@media (max-width: 1200px) {
    .plants-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #plants-section { padding: 100px 0; }
    .plants-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    .plants-header { margin-bottom: 60px; }
}

@media (max-width: 480px) {
    #plants-section { padding: 80px 0; }
    .category-img-container { height: 240px; }
    .plant-category-info { padding: 28px 20px; }
}

/* ═══ PERFORMANCE ═══ */
@media (prefers-reduced-motion: reduce) {
    * { 
        animation-duration: 0.01ms !important;
        transition-duration: 0.3s !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   7. TOUR PACKAGES
══════════════════════════════════════════════════════════════ */
#tour-packages { overflow: hidden; }

.tour-card {
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid var(--border);
}
.tour-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }

.tour-img {
    height: 215px;
    position: relative;
    overflow: hidden;
}
.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.05); }

.tour-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #b8853a, var(--gold));
    color: white;
    padding: 5px 13px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.93rem;
}

.tour-body h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--navy); }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════════ */

/* ≤1200px: featured card ka scale band */
@media (max-width: 1200px) {
    .umrah-card.featured       { transform: none; }
    .umrah-card.featured:hover { transform: translateY(-6px); }
}

/* ≤992px: Tablet */
@media (max-width: 992px) {
    .hero-img-container { height: 400px; }
    .hero-floating-card {
        left: 5%;
        max-width: 360px;
    }
}

/* ≤768px: Mobile */
@media (max-width: 768px) {
    .container {
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Hero — text center ho */
    .hero-img-container { height: 400px; }

    .hero-floating-card {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 86%;
        width: 86%;
        text-align: center;
        animation: none; /* center transform se conflict na ho */
    }
    .hero-floating-card .d-flex {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Font sizes */
    .display-4 { font-size: 1.85rem !important; }
    .display-5 { font-size: 1.60rem !important; }
    .display-6 { font-size: 1.35rem !important; }

    /* Smaller card dimensions */
    .tech-unit-card          { width: 230px; height: 300px; }
    .category-img-container  { height: 195px; }
    .tour-img                { height: 185px; }
    .taxi-img-box            { height: 165px; }
}

/* ≤480px: Small phones */
@media (max-width: 480px) {
    .hero-img-container { height: 340px; }

    .hero-floating-card {
        max-width: 92%;
        width: 92%;
    }
    .hero-floating-card h2 { font-size: 1.4rem; }
    .hero-floating-card p  { font-size: 0.84rem; margin: 10px 0 18px; }

    .badge-tech  { font-size: 0.63rem; padding: 4px 11px; }
    .btn-gold-sm { padding: 9px 18px; font-size: 0.82rem; }

    .glass-country-card { padding: 24px 14px; }
    .package-header     { padding: 20px 14px; }

    .display-4 { font-size: 1.6rem !important; }
    .display-5 { font-size: 1.4rem !important; }

    .tech-unit-card { width: 210px; height: 280px; padding: 20px 18px; }
}