/* 
   MOISONS Education Consultants Custom Premium Stylesheet
   Brand Colors:
   Primary Blue: #0B2D5C
   Primary Orange: #F97316
   Light Background: #F8FAFC
   Text Dark: #1E293B
   White: #FFFFFF
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0B2D5C;
    --primary-orange: #c05727;
    --light-bg: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --primary-gradient: linear-gradient(135deg, #0B2D5C 0%, #1E40AF 100%);
    --orange-gradient: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --light-bg: #0F172A;
    --text-dark: #F8FAFC;
    --text-muted: #94A3B8;
    --white: #1E293B;
    --border-color: #334155;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    background-color: #0F172A;
}

/* General Reset & Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

.section-hdg{
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: #c05727;
    text-transform: capitalize;
    line-height: 1.35;
    letter-spacing: -.5px;
}
p {
    color: #525252;
    line-height: 1.7;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Buttons */
/* ============================
   PREMIUM SERVICE CARDS
   ============================ */
.svc-premium-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svc-premium-card:hover {
    transform: translateY(-12px) scale(1.02);
}
.svc-premium-card .svc-top-bar {
    height: 5px;
}
.svc-premium-card .svc-body {
    padding: 30px 25px 28px;
    position: relative;
}
.svc-premium-card .svc-number {
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}
.svc-premium-card .svc-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.4s ease;
}
.svc-premium-card:hover .svc-icon-box {
    transform: scale(1.1) rotate(-8deg);
}
.svc-premium-card h5 {
    font-weight: 700;
    color: #0B2D5C;
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}
.svc-premium-card p {
    color: #525252;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
.svc-premium-card .svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 16px 6px 14px;
    border-radius: 50px;
}
.svc-premium-card .svc-btn:hover {
    gap: 10px;
}
/* Card Color 1 - Indigo */
.svc-premium-card.card-1 .svc-top-bar { background: linear-gradient(90deg, #6366f1, #818cf8); }
.svc-premium-card.card-1:hover { box-shadow: 0 30px 60px -15px rgba(99,102,241,0.2); border-color: rgba(99,102,241,0.2); }
.svc-premium-card.card-1 .svc-number { color: rgba(99,102,241,0.06); }
.svc-premium-card.card-1 .svc-icon-box { background: linear-gradient(135deg, #6366f1, #818cf8); box-shadow: 0 8px 20px rgba(99,102,241,0.2); }
.svc-premium-card.card-1 .svc-btn { background: rgba(99,102,241,0.06); color: #6366f1; }
.svc-premium-card.card-1 .svc-btn:hover { background: #6366f1; color: #fff; }
/* Card Color 2 - Teal */
.svc-premium-card.card-2 .svc-top-bar { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.svc-premium-card.card-2:hover { box-shadow: 0 30px 60px -15px rgba(20,184,166,0.2); border-color: rgba(20,184,166,0.2); }
.svc-premium-card.card-2 .svc-number { color: rgba(20,184,166,0.06); }
.svc-premium-card.card-2 .svc-icon-box { background: linear-gradient(135deg, #14b8a6, #2dd4bf); box-shadow: 0 8px 20px rgba(20,184,166,0.2); }
.svc-premium-card.card-2 .svc-btn { background: rgba(20,184,166,0.06); color: #14b8a6; }
.svc-premium-card.card-2 .svc-btn:hover { background: #14b8a6; color: #fff; }
/* Card Color 3 - Orange */
.svc-premium-card.card-3 .svc-top-bar { background: linear-gradient(90deg, #f97316, #fb923c); }
.svc-premium-card.card-3:hover { box-shadow: 0 30px 60px -15px rgba(249,115,22,0.2); border-color: rgba(249,115,22,0.2); }
.svc-premium-card.card-3 .svc-number { color: rgba(249,115,22,0.06); }
.svc-premium-card.card-3 .svc-icon-box { background: linear-gradient(135deg, #f97316, #fb923c); box-shadow: 0 8px 20px rgba(249,115,22,0.2); }
.svc-premium-card.card-3 .svc-btn { background: rgba(249,115,22,0.06); color: #f97316; }
.svc-premium-card.card-3 .svc-btn:hover { background: #f97316; color: #fff; }
/* Card Color 4 - Yellow */
.svc-premium-card.card-4 .svc-top-bar { background: linear-gradient(90deg, #eab308, #facc15); }
.svc-premium-card.card-4:hover { box-shadow: 0 30px 60px -15px rgba(234,179,8,0.2); border-color: rgba(234,179,8,0.2); }
.svc-premium-card.card-4 .svc-number { color: rgba(234,179,8,0.06); }
.svc-premium-card.card-4 .svc-icon-box { background: linear-gradient(135deg, #eab308, #facc15); box-shadow: 0 8px 20px rgba(234,179,8,0.2); }
.svc-premium-card.card-4 .svc-btn { background: rgba(234,179,8,0.06); color: #eab308; }
.svc-premium-card.card-4 .svc-btn:hover { background: #eab308; color: #fff; }
/* Card Color 5 - Red */
.svc-premium-card.card-5 .svc-top-bar { background: linear-gradient(90deg, #ef4444, #f87171); }
.svc-premium-card.card-5:hover { box-shadow: 0 30px 60px -15px rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.2); }
.svc-premium-card.card-5 .svc-number { color: rgba(239,68,68,0.06); }
.svc-premium-card.card-5 .svc-icon-box { background: linear-gradient(135deg, #ef4444, #f87171); box-shadow: 0 8px 20px rgba(239,68,68,0.2); }
.svc-premium-card.card-5 .svc-btn { background: rgba(239,68,68,0.06); color: #ef4444; }
.svc-premium-card.card-5 .svc-btn:hover { background: #ef4444; color: #fff; }
/* Card Color 6 - Green */
.svc-premium-card.card-6 .svc-top-bar { background: linear-gradient(90deg, #10b981, #34d399); }
.svc-premium-card.card-6:hover { box-shadow: 0 30px 60px -15px rgba(16,185,129,0.2); border-color: rgba(16,185,129,0.2); }
.svc-premium-card.card-6 .svc-number { color: rgba(16,185,129,0.06); }
.svc-premium-card.card-6 .svc-icon-box { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 8px 20px rgba(16,185,129,0.2); }
.svc-premium-card.card-6 .svc-btn { background: rgba(16,185,129,0.06); color: #10b981; }
.svc-premium-card.card-6 .svc-btn:hover { background: #10b981; color: #fff; }
/* Card Color 7 - Purple */
.svc-premium-card.card-7 .svc-top-bar { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.svc-premium-card.card-7:hover { box-shadow: 0 30px 60px -15px rgba(139,92,246,0.2); border-color: rgba(139,92,246,0.2); }
.svc-premium-card.card-7 .svc-number { color: rgba(139,92,246,0.06); }
.svc-premium-card.card-7 .svc-icon-box { background: linear-gradient(135deg, #8b5cf6, #a78bfa); box-shadow: 0 8px 20px rgba(139,92,246,0.2); }
.svc-premium-card.card-7 .svc-btn { background: rgba(139,92,246,0.06); color: #8b5cf6; }
.svc-premium-card.card-7 .svc-btn:hover { background: #8b5cf6; color: #fff; }
/* Card Color 8 - Cyan */
.svc-premium-card.card-8 .svc-top-bar { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.svc-premium-card.card-8:hover { box-shadow: 0 30px 60px -15px rgba(6,182,212,0.2); border-color: rgba(6,182,212,0.2); }
.svc-premium-card.card-8 .svc-number { color: rgba(6,182,212,0.06); }
.svc-premium-card.card-8 .svc-icon-box { background: linear-gradient(135deg, #06b6d4, #22d3ee); box-shadow: 0 8px 20px rgba(6,182,212,0.2); }
.svc-premium-card.card-8 .svc-btn { background: rgba(6,182,212,0.06); color: #06b6d4; }
.svc-premium-card.card-8 .svc-btn:hover { background: #06b6d4; color: #fff; }

/* ============================
   BREADCRUMB — Unique Design
   ============================ */
.page-breadcrumb {
       background: radial-gradient(circle at 15% 15%, rgb(192 87 39 / 20%) 0%, color(a98-rgb 0 0 0 / 0) 40%), radial-gradient(circle at 85% 85%, rgb(33 72 141 / 12%) 0%, transparent 50%), linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}
.page-breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11, 45, 92, 0.12) 1.2px, transparent 1.2px);
    background-size: 20px 20px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.45));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.45));
    pointer-events: none;
    z-index: 1;
}
.page-breadcrumb::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.18) 0%, rgba(251, 146, 60, 0) 70%);
    top: -150px;
    right: -80px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    animation: floatingOrb 12s infinite alternate ease-in-out;
}
@keyframes floatingOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 40px) scale(1.2); }
}

/* Standalone Breadcrumb Path (used in destination detail with bg image) */
.breadcrumb-path,
.page-breadcrumb .breadcrumb-path {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.03);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.breadcrumb-path a,
.page-breadcrumb .breadcrumb-path a {
    color: #475569;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.breadcrumb-path a:hover,
.page-breadcrumb .breadcrumb-path a:hover {
    color: #c05727;
}
.breadcrumb-path span.sep,
.page-breadcrumb .breadcrumb-path span.sep {
    color: rgba(15, 23, 42, 0.2);
    font-size: 0.75rem;
}
.breadcrumb-path span.current,
.page-breadcrumb .breadcrumb-path span.current {
    color: #c05727;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.page-breadcrumb .breadcrumb-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.03);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(8px);
}
.page-breadcrumb .breadcrumb-icon i {
    color: #ea580c;
    font-size: 0.95rem;
}
.page-breadcrumb .breadcrumb-icon span {
    color: #475569;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}
.page-breadcrumb h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}
.page-breadcrumb h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 4px;
    background: #c05727;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.3);
}
.page-breadcrumb p {
    color: #7a7d81;
    font-size: 1.07rem;
    font-weight: 400;
    max-width: 650px;
    margin: 18px auto 0;
    line-height: 1;
    letter-spacing: 0.3px;
}
@media (max-width: 575.98px) {
    .page-breadcrumb h1 { font-size: 2.3rem; }
    .page-breadcrumb { padding: 80px 0 50px; }
}

.btn-premium-primary {
    background: var(--orange-gradient);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    color: #fff;
}

.btn-premium-secondary {
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    padding: 10px 26px;
    border-radius: 50px;
    transition: var(--transition);
}
[data-theme="dark"] .btn-premium-secondary {
    color: #fff;
    border-color: #fff;
}
.btn-premium-secondary:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Sticky Navigation */
.navbar-premium {
    background: #ffffff;
    border-bottom: 2px solid #f1f5f9;
    transition: var(--transition);
    z-index: 1050;
    box-shadow: 0 2px 20px rgba(11, 45, 92, 0.08);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
[data-theme="dark"] .navbar-premium {
    background: #0F172A;
    border-bottom-color: #1E293B;
}
.navbar-premium .nav-link {
    color: #1E293B;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.4rem 0.92rem!important;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
[data-theme="dark"] .navbar-premium .nav-link {
    color: #e2e8f0;
}
.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
    transform: translateX(-50%);
}
.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
    width: 80%;
}
.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
    color: var(--primary-orange);
}

/* Navbar Buttons */
.btn-nav-consultation {
    background: #68a70b;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    padding: 9px 18px;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.btn-nav-consultation:hover {
    background: #5f970a;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgb(95 151 10 / 30%);
    color: #fff;
}
.btn-nav-applynow {
    background: #c05727;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    padding: 9px 18px;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.btn-nav-applynow:hover {
    background: #ea6c0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249,115,22,0.35);
    color: #fff;
}

/* ============================
   HERO SECTION — Full-bleed split
   ============================ */
.hero-section {
    position: relative;
    background: url(../images/banner-bg.png);
    overflow: hidden;
    height: 580px;
    padding: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-city-img{
  position: relative;
  z-index: 1;
  /* width: 100%;
  height: 100%; */
}
.banner-city-img .bnr-city{
        position: absolute;
    top: 8px;
    right: -200px;
    width: 960px;
}
.banner-city-img .bnr-girl{
        position: absolute;
    top: 70px;
    left: 135px;
    width: 350px;
}
.banner-city-img .bnr-airplane{
 position: absolute;
    width: 200px;
    top: 54px;
    left: -50px;
}

.banner-wave img{
      width: 60%;
    height: 200px;
    /* object-fit: cover; */
    position: absolute;
    bottom: -14px;
    z-index: 2;
    right: 0;
  display: none;
}
[data-theme="dark"] .hero-section {
    background: #0F172A;
}

/* Left text panel */
.hero-text-panel {
    width: 47%;
    display: flex;
    align-items: center;
    background: #ffffff;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding: 70px 30px 70px max(21px, calc((100vw - 1320px) / 2 + 24px));
}
[data-theme="dark"] .hero-text-panel {
    background: #0F172A;
}

/* Right image panel — full bleed with diagonal left edge */
.hero-image-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}
.hero-image-panel img:hover {
    transform: scale(1.03);
}

.hero-content {
        width: 100%;
    z-index: 3;
    position: relative;
}
.hero-content .cap-card img{
  position: absolute;
    width: 220px;
    right: -8px;
    z-index: -1;
    top: 63px;
    opacity: .6;
}
.hero-content .hero-line1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.35;
    color: #606367;
    font-family: var(--font-body);
    margin: 0;
    margin-top: 35px;
    max-width: 406px;
}
.hero-content .hero-line1 span{
    color: var(--primary-orange);
    /* font-family: "La Belle Aurore", cursive; */
    /* font-weight: 400; */
    /* font-style: italic; */
    position: relative;
}
/* .hero-content .hero-line1 span::after{
  position: absolute;
    content: '';
    width: 120px;
    height: 40px;
    bottom: -2px;
    right: 0;
    background: url(../images/banner-line.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

} */
/* .hero-content .hero-line2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    
    font-family: var(--font-body);
    margin: 10px 0 14px;
} */
.hero-subheadline {
        font-size: 1.3rem;
    font-weight: 700;
    color: #3b3b3b;
    margin: 0;
    /* font-family: fangsong; */
    border-top: 1px solid rgb(192 87 39 / 15%);
    margin-top: 15px;
    padding-top: 15px;
}
[data-theme="dark"] .hero-subheadline {
    color: #93c5fd;
}
[data-theme="dark"] .hero-content .hero-line1 {
    color: #e2e8f0;
}

/* Hero Stat inline items */
.hero-stats-row {
        display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 10px;
    margin-top: 20px;
    padding-bottom: 20px;
    
}
.hero-stat-item {
        display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: rgb(249 115 22 / 9%);
    padding: 13px;
    border-radius: 10px;
    backdrop-filter: blur(7px);
    border: 1px solid rgb(249 115 22 / 15%);
}
.hero-stat-item .stat-icon {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 3px;
}
.hero-stat-item .stat-icon img{
  width: 45px;
}
[data-theme="dark"] .hero-stat-item .stat-icon {
    color: var(--primary-orange);
}
.hero-stat-item .stat-number {
    font-size: 1.50rem;
    color: #2c4c85;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}
[data-theme="dark"] .hero-stat-item .stat-number {
    color: var(--primary-orange);
}
.hero-stat-item .stat-label {
    font-size: 0.65rem;
    color: #5c5c5c;
    text-transform: uppercase;
    /* letter-spacing: 0.4px; */
    font-weight: 600;
    white-space: nowrap;
}

/* Hero CTA Buttons */
.btn-hero-primary {
    background: #68a70b;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}
.btn-hero-primary:hover {
    background: #5f970a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgb(95 151 10 / 30%);
}
.btn-hero-secondary {
    background: var(--primary-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}
.btn-hero-secondary:hover {
    background: #ea6c0a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(249,115,22,0.3);
}

/* Legacy stat-card kept for other sections */
.stat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}
.stat-number {
    font-size: 2.2rem;
    color: var(--primary-blue);
    font-weight: 700;
}
[data-theme="dark"] .stat-number {
    color: var(--primary-orange);
}


/* General Section Styles */
.section-padding {
    padding: 65px 0;
}
.section-title-wrapper {
    margin-bottom: 50px;
}
/* .section-subtitle {
    color: var(--primary-orange);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.section-subtitle.text-white {
    color: #fff;
} */
 .section-subtitle {
       border: 1px solid #68a70b;
    border-radius: 25px;
    width: fit-content;
    padding: 11px 20px 11px 40px;
    position: relative;
    margin-bottom: 12px;
    background: #fff;
    
}

.section-subtitle .subtitle {
      margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #68a70b;
}

.section-subtitle .subtitle .icon {
 
    color: #68a70b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    bottom: 0;
    margin: auto 0;
}

/* About Section */
.abt-sctn{
  position: relative;
  background: #fff;
  z-index: 1;
}
.abt-sctn::after{
   content: '';
    position: absolute;
    width: 480px;
    height: 300px;
    right: 0;
    top: 0;
    background: url(../images/about-map.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.abt-sctn::before{
  content: '';
    position: absolute;
    width: 315px;
    height: 190px;
    right: 0;
    bottom: 0;
    background: url(../images/paper-plane.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.about-photo-wrap {
    position: relative;
    border-radius: 40px 200px 100px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-photo-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.badge-excellence {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-orange);
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
    min-width: 120px;
    text-align: center;
}
.badge-excellence h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
    font-family: var(--font-heading);
}
.badge-excellence p {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 4px 0 0;
    line-height: 1.3;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}
/* About Stats Single Card */
.about-stats-single {
        display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 90px;
    box-shadow: 0 2px 12px rgb(192 87 39 / 10%), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgb(192 87 39 / 19%);
    padding: 15px 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.about-stats-single:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}
.about-stats-item {
        flex: 1;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 6px;
    padding: 0px 6px;
    text-align: left;
}
.about-stats-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(192,87,39,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-stats-icon svg {
    width: 22px;
    height: 22px;
}
.about-stats-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
}
.about-stats-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c05727;
    font-family: var(--font-heading);
    line-height: 1.1;
}
.about-stats-label {
        font-size: 0.64rem;
    font-weight: 600;
    color: #5c5c5c;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.3;
}
.about-stats-divider {
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.feature-item {
        display: flex;
    align-items: center;
    /* gap: 14px; */
    font-weight: 500;
    background: #ffffff;
    padding: 18px 12px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgb(192 87 39 / 17%), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgb(192 87 39 / 10%);
    height: 100%;
}
.feature-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    transform: translateY(-2px);
    border-color: rgba(192,87,39,0.15);
}
.feature-item span.icon{
        width: 52px;
    height: 52px;
    background: #c05727;
    border-radius: 50%;
    padding: 11px;
}
.feature-item span.icon img{
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  object-fit: scale-down;
}
.feature-item span.txt{
  width: calc(100% - 52px);
  padding-left: 8px;
  font-size: 14px;
}
.feature-item i {
    color: var(--primary-orange);
    font-size: 1.25rem;
}

/* Study Destinations - New Card Style (ref: maizeducation) */
.study-destination-bg {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}
/* .study-destination-bg::after{
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
} */
.study-destination-bg .img-shape {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.study-destination-bg .img-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.study-destination-bg:hover .img-shape img {
    transform: scale(1.1);
}
.destination-hdg {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    transition: all 0.4s ease;
}
.destination-hdg h5 {
    font-family: var(--font-heading);
    font-size: 1.2
    rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}
.destination-flg {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.8);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.destination-flg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Hover overlay card */
.study-hover-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,87,39,0.92) 0%, rgba(234,108,10,0.92) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 3;
}
.study-destination-bg:hover .study-hover-card {
    opacity: 1;
    visibility: visible;
}
.study-hover-card h5 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.study-hover-card .destination-flg {
    margin-bottom: 15px;
}
.study-hover-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
}
.destination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #c05727;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.destination-btn:hover {
    background: #68a70b;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.destination-btn span i {
    font-size: 0.85rem;
}
/* Dark overlay on image when not hovered */
.study-destination-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 85%) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.study-destination-bg:hover::after {
    opacity: 0;
}

/* Services Section — Enhanced */
.services-section {
    background: #21488d;
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.07);
    pointer-events: none;
}
.services-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}
.services-section .section-subtitle {
    color: #fb923c;
}
.services-section h2 {
    color: #ffffff;
}
.services-section > .container > p,
.services-section .section-title-wrapper p {
    color: rgba(255,255,255,0.65) !important;
}

/* Enhanced Service Card */
.service-card-v2 {
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 20px;
    padding: 32px 28px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(5px);
}
.service-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(192 87 39 / 15%) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px;
}
.service-card-v2:hover::before {
    opacity: 1;
}
.service-card-v2:hover {
    transform: translateY(-8px);
    border-color: rgb(192 87 39 / 50%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(105, 167, 11, 0.12);
}

/* Icon box */
.svc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-card-v2:hover .svc-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

/* Number tag */
.svc-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.06);
    line-height: 1;
    transition: var(--transition);
    user-select: none;
}
.service-card-v2:hover .svc-number {
    color: rgb(192 87 39 / 12%);
}

.svc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}
.svc-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.svc-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #c05727;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-card-v2:hover .svc-link {
    opacity: 1;
    transform: translateY(0);
}
.svc-link:hover {
    color: #ffffff;
}

/* Services bottom CTA bar */
.services-cta-bar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    backdrop-filter: blur(6px);
}
.services-cta-bar h5 {
    color: #fff;
    font-family: var(--font-heading);
    margin: 0;
    font-size: 1.1rem;
}
.services-cta-bar p {
    color: rgba(255,255,255,0.55) !important;
    margin: 4px 0 0;
    font-size: 0.88rem;
}

    /* background: rgba(11, 45, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
} */
[data-theme="dark"] .service-icon {
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary-orange);
}
.service-card:hover .service-icon {
    background: var(--primary-orange);
    color: #fff;
    transform: rotate(10deg);
}

/* #destinations {
    background-color: rgb(192 87 39 / 09%) !important;
} */

/* ===== Universities Section ===== */
.uni-section {
    background: linear-gradient(160deg, #9c431a 0%, #92401a 55%, #7c3311 100%);
    padding: 80px 0;
    position: relative;
}
.uni-section .section-subtitle {
    color: #fb923c;
    border-color: rgba(255,255,255,0.2);
}
.uni-section h2 {
    color: #ffffff;
}
.uni-section p {
    color: rgba(255,255,255,0.65) !important;
}
/* ---- Scrolling University Cards ---- */
.uni-scroll-wrap {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.uni-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: uni-scroll 40s linear infinite;
}
.uni-scroll-wrap:has(.uni-card:hover) .uni-scroll-track {
    animation-play-state: paused;
}
@keyframes uni-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}
/* Individual card */
.uni-card {
    width: 180px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 18px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    cursor: default;
}
.uni-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.08);
}
/* Gradient initial badge */
.uni-badge {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    background: #fff;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.uni-card:hover .uni-badge {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.uni-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Name & location */
.uni-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 6px;
}
.uni-location {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}
.uni-location i {
    font-size: 0.6rem;
    margin-right: 3px;
    color: var(--primary-orange);
}

/* Popular Courses Card */
.course-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: var(--transition);
}
.course-card:hover::before {
    transform: scaleX(1);
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Timeline / Journey Cards */
.journey-timeline-container {
    position: relative;
    padding: 20px 0;
}
.journey-card {
    transition: var(--transition);
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
}
.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange) !important;
}
.journey-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(249, 115, 22, 0.15);
    font-family: var(--font-heading);
    line-height: 1;
}
.journey-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.journey-card:nth-child(even) .journey-icon-wrap {
    background: rgba(11, 45, 92, 0.08);
}
.journey-icon-wrap i.text-blue {
    color: var(--primary-blue);
}

/* Testimonial cards - 3-column enhanced grid */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 25px;
    font-size: 10rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(249, 115, 22, 0.06);
    pointer-events: none;
    z-index: 0;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
}
.testimonial-card:hover::after {
    opacity: 1;
}
.student-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover .student-avatar {
    transform: scale(1.08);
    border-color: var(--primary-blue);
}
.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
}
.contact-info-card h3, .contact-info-card p, .contact-info-card a {
    color: #fff !important;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* News Cards (Maiz Education style) */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eef2f6;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(192,87,39,0.08);
    border-color: rgba(192,87,39,0.12);
}
.news-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.news-card:hover .news-card-img img {
    transform: scale(1.08);
}
.news-card-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #c05727 0%, #e86b2e 100%);
    color: #fff;
    border-radius: 10px;
    padding: 6px 10px;
    text-align: center;
    line-height: 1.2;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 44px;
    box-shadow: 0 4px 12px rgba(192,87,39,0.25);
}
.news-card-date span {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-heading);
}
.news-card-body {
    padding: 20px;
}
.news-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: #888;
    flex-wrap: wrap;
}
.news-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.news-card-meta i {
    color: #c05727;
    font-size: 0.7rem;
}
.news-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
        height: 42px;
}
.news-card:hover .news-card-title {
    color: #c05727;
}
.news-card-text {
    font-size: 0.83rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 65px;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #c05727;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(192,87,39,0.08);
    padding: 6px 16px;
    border-radius: 6px;
    width: 100%;
}
.news-card-link:hover {
    background: rgba(192,87,39,0.18);
    color: #c05727;
    gap: 10px;
}

/* ===== Footer – Premium Redesign ===== */
.footer-section {
    background: #020912;
    color: #94a3b8;
    padding: 0 0 0;
    position: relative;
    overflow: hidden;
}
/* Gradient top bar */
.footer-top-bar {
    height: 5px;
    background: linear-gradient(90deg, #68a70b 0%, #fbbf24 50%, #68a70b 100%);
    position: relative;
    z-index: 2;
}
/* Subtle grid pattern overlay */
.footer-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
/* Ambient glow orbs */
.footer-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}
.footer-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 45, 92, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}
.footer-section .container {
    position: relative;
    z-index: 1;
    padding-top: 45px;
    padding-bottom: 0;
}
/* ---- Brand column ---- */
.footer-logo {
    max-height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 22px;
}
.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 75%);
    margin-bottom: 22px;
    max-width: 300px;
}
/* Contact items */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgb(255 255 255);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.footer-contact-item:hover .footer-contact-icon {
    background: var(--primary-orange);
    transform: scale(1.05);
    color: #fff;
}
.footer-contact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c05727;
    margin-bottom: 1px;
}
.footer-contact-value {
    display: block;
    font-size: 0.88rem;
    color: rgb(255 255 255 / 80%);
    /* font-weight: 500; */
    transition: color 0.3s ease;
}
/* .footer-contact-item:hover .footer-contact-value {
    color: var(--primary-orange);
} */
.footer-links.destination-links{
  padding-left: 70px!important;
}
.footer-links.quick-links{
  padding-left: 80px;
}
/* ---- Link columns ---- */
.footer-heading {
        font-family: var(--font-heading);
    font-size: 1.13rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
    width: fit-content;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 8px;
    bottom: 0;
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: var(--orange-gradient);
}
.footer-heading::before{
  content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: rgb(255 255 255 / 15%);
}
.footer-links a {
    color: rgb(255 255 255 / 75%);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 27px;
}
.footer-links a::before {
        content: '\f19d';
    font-family: 'fontAwesome';
    font-weight: 300;
    position: absolute;
    left: 0;
    top: 2px;
    opacity: 1;
    transition: all 0.3s ease;
    color: var(--primary-orange);
    font-size: .75rem;
}
.footer-links a:hover {
    color: var(--primary-orange);
    
    transform: none;
}
/* .footer-links a:hover::before {
    opacity: 1;
    left: 0;
} */
/* ---- Newsletter ---- */
.footer-muted {
    color: rgba(148, 163, 184, 0.7) !important;
    font-size: 0.88rem;
}
.footer-newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.footer-newsletter-form:focus-within {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08);
}
.footer-newsletter-icon {
    color: rgba(148, 163, 184, 0.4);
    padding: 0 0 0 16px;
    font-size: 0.9rem;
}
.footer-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 12px;
    color: #e2e8f0;
    font-size: 0.88rem;
}
.footer-newsletter-input::placeholder {
    color: rgba(148, 163, 184, 0.4);
}
.footer-newsletter-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--orange-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}
.footer-newsletter-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}
/* ---- Working Hours ---- */
.footer-hours {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-hours .footer-heading {
    margin-bottom: 14px;
}
.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 6px 0;
    color: #94a3b8;
}
.footer-hours-row span:last-child {
    font-weight: 500;
    color: #cbd5e1;
}
.footer-heading-center {
       margin-bottom: 5px;
}
.footer-heading-center::after {
    display: none;
}
.footer-heading-center::before{
  display: none;
}
.text-orange {
    color: var(--primary-orange);
}
/* ---- Bottom Bar ---- */
.footer-bottom {
        margin: 20px 0 14px 0;
    padding: 13px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.06); */
    position: relative;
    text-align: center;
    background: rgb(192 87 39 / 10%);
    border: 1px solid #ffffff40;
    border-radius: 25px;
    backdrop-filter: blur(9px);
}
/* .footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
} */
.footer-copyright {
    font-size: 0.82rem;
    color: rgb(255 255 255 / 70%);
    margin: 0;
}
.footer-copyright span {
    color: #d19f89;
}
/* Social icons */
.footer-social {
   display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background: rgb(255 255 255 / 8%);
    color: #ffffff;
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgb(255 255 255 / 15%);
    text-decoration: none;
}
.footer-social:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

/* Widgets */
.back-to-top {
       position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    color: #c05727;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border: 1px solid #c057278c;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #c05727;
    transform: translateY(-5px);
  color: #fff;
}

.whatsapp-float {
    position: fixed;
    bottom: 94px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 160px;
    right: 30px;
    z-index: 1000;
}
.chat-button {
    background: #21488d;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgb(255 255 255 / 15%);
}
.chat-button:hover {
    transform: scale(1.05);
}
.chat-window {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 320px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: none;
    overflow: hidden;
}
.chat-header {
    background: var(--primary-blue);
    color: #fff;
    padding: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-body {
    height: 250px;
    padding: 15px;
    overflow-y: auto;
    background: var(--light-bg);
}
.chat-input-area {
    display: flex;
    border-top: 1px solid var(--border-color);
}
.chat-input {
    flex-grow: 1;
    border: none;
    padding: 12px;
    outline: none;
    background: var(--white);
    color: var(--text-dark);
}
.chat-send {
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

/* ===== Unique Preloader ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgb(0 0 0 / 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    backdrop-filter: blur(3px);
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
/* Animated ring with orbiting dots */
.preloader-ring {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-ring-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 30deg)) translateY(-52px);
    animation: preloader-dot-pulse 1.2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0.2;
}
.preloader-ring-dot:nth-child(odd) {
    background: #fff;
}
@keyframes preloader-dot-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) rotate(calc(var(--i) * 30deg)) translateY(-52px) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) rotate(calc(var(--i) * 30deg)) translateY(-52px) scale(1.5); }
}
/* Center graduation cap icon */
.preloader-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(192, 87, 39, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #c05727;
    animation: preloader-icon-bounce 1.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
@keyframes preloader-icon-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.08) rotate(-8deg); }
    75% { transform: scale(1.08) rotate(8deg); }
}
/* Preloader Logo & Unique Icon */
.preloader-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.preloader-logo-img {
    max-height: 60px;
    filter: brightness(0) invert(1);
    animation: preloader-logo-pulse 2s ease-in-out infinite;
}
@keyframes preloader-logo-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
.preloader-unique-icon {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}
.preloader-unique-icon i {
    font-size: 1.4rem;
    color: var(--primary-orange);
    animation: preloader-icon-bounce 1.5s ease-in-out infinite;
}
.preloader-unique-icon i:nth-child(1) { animation-delay: 0s; }
.preloader-unique-icon i:nth-child(2) { animation-delay: 0.3s; }
.preloader-unique-icon i:nth-child(3) { animation-delay: 0.6s; }
.preloader-unique-icon i:nth-child(1) { color: #fbbf24; }
.preloader-unique-icon i:nth-child(2) { color: #60a5fa; }
.preloader-unique-icon i:nth-child(3) { color: #34d399; }
/* Progress bar */
.preloader-bar-track {
    width: 180px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.preloader-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    background: #c05727;
    animation: preloader-bar-fill 1.8s ease-in-out forwards;
}
@keyframes preloader-bar-fill {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

/* ==== Owl Carousel Nav Buttons - Bottom Center ==== */
.destination-carousel .owl-nav {
    text-align: center;
    margin-top: 24px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}
.destination-carousel .owl-nav button.owl-prev,
.destination-carousel .owl-nav button.owl-next {
        width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #c05727 !important;
    font-size: .9rem !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 87, 39, 0.12) !important;
    margin: 0 6px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
}
.destination-carousel .owl-nav button.owl-prev:hover,
.destination-carousel .owl-nav button.owl-next:hover {
    background: #c05727 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(192,87,39,0.25);
    transform: scale(1.05);
}
.destination-carousel .owl-nav button.owl-prev span,
.destination-carousel .owl-nav button.owl-next span {
    font-size: 1.6rem;
    line-height: 1;
}
.destination-carousel .owl-nav button i{
  position: relative;
    top: 2px;
}
/* Blog Carousel Nav */
.blog-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}
.blog-carousel .owl-nav button.owl-prev,
.blog-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #c05727 !important;
    font-size: .9rem !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 87, 39, 0.12) !important;
    margin: 0 6px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
}
.blog-carousel .owl-nav button.owl-prev:hover,
.blog-carousel .owl-nav button.owl-next:hover {
    background: #c05727 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(192,87,39,0.25);
    transform: scale(1.05);
}

/* Animations CSS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    /* Navbar */
    .btn-nav-consultation,
    .btn-nav-applynow {
        width: 100%;
        justify-content: center;
    }

    /* Hero: stack vertically on tablet/mobile */
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }
    .hero-text-panel {
        width: 100%;
        padding: 50px 24px 40px;
        order: 2;
    }
    .hero-image-panel {
        width: 100%;
        min-height: 320px;
        clip-path: none;
        order: 1;
    }
    .hero-image-panel img {
        height: 320px;
        object-position: top center;
    }
    .hero-content .hero-line1,
    .hero-content .hero-line2 {
        font-size: 2.4rem;
    }
    .hero-stats-row {
        gap: 16px;
    }

    /* About */
    .about-photo-wrap img {
        height: 280px;
    }

    /* Journey */
    .journey-line {
        display: none;
    }
    .journey-timeline-container {
        padding-left: 20px;
    }
    .journey-step {
        text-align: left;
        margin-bottom: 30px;
        padding-left: 60px;
    }
    .journey-dot {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-content .hero-line1,
    .hero-content .hero-line2 {
        font-size: 2rem;
    }
    .hero-stat-item .stat-number {
        font-size: 1.25rem;
    }
    .hero-stats-row {
        gap: 14px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    .about-photo-wrap img {
        height: 240px;
    }
}
.scholarship-stream{
  background: rgb(192 87 39 / 10%);
    padding: 10px;
    border-radius: 20px;
}
.scholarship-stream-img-group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.scholarship-stream-img-box {
 width: 100%;
    height: 360px;
    border-radius: 15px;
    overflow: hidden;
}
.scholarship-stream-img-box:hover img{
  transform: scale(1.1) rotate(5deg);
}
.scholarship-stream-img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;

}
/* ===== Testimonials Main Section (Maiz Education style) ===== */
.testimonial-main {
       background-color: #f8f9fa !important;
}
#scholarships{background: #fff!important;}
#journey{
  position: relative;
  background: #fff;
  z-index: 1;
}
#journey::after{
  position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/work-bg.png);
    top: 0;
    left: 0;
    z-index: -1;
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: contain;
}
.testimonial-main .section-title-wrapper {
    margin-bottom: 0;
}
/* Google Review Wrapper */
.google-rev-wrp {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    max-width: 280px;
    margin-left: auto;
}
.google-review-star {
    display: flex;
    align-items: center;
    gap: 8px;
}
.google-review-star span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}
.google-review-star ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2px;
}
.google-review-star ul li a i,
.google-review-star ul li i {
    color: #f59e0b;
    font-size: 0.75rem;
}
.google-logo-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    border-left: 1px solid var(--border-color);
    padding-left: 12px;
}
.google-logo-rating img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
}
.google-logo-rating span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Testimonials Slider Box */
.testimonials-slider .owl-nav {
    text-align: center;
    margin-top: 30px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}
.testimonials-slider .owl-nav button.owl-prev,
.testimonials-slider .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #c05727 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(192,87,39,0.12) !important;
    margin: 0 6px;
    opacity: 1 !important;
    pointer-events: auto !important;
}
.testimonials-slider .owl-nav button.owl-prev:hover,
.testimonials-slider .owl-nav button.owl-next:hover {
    background: #c05727 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(192,87,39,0.25);
    transform: scale(1.05);
}
.testimonials-slider .owl-nav button.owl-prev:disabled,
.testimonials-slider .owl-nav button.owl-next:disabled,
.testimonials-slider .owl-nav button.owl-prev.disabled,
.testimonials-slider .owl-nav button.owl-next.disabled {
    opacity: 1 !important;
    background: #ffffff !important;
    color: #c05727 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}
.testimonials-box {
   
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-box .msg {
        position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px 20px 18px;
    border: 1px solid #c05727;
    flex: 1;
    box-shadow: 0 3px 0 rgb(192 87 39);
}
.testimonials-box .msg::before{
  position: absolute;
    content: '';
    border-width: 16px;
    border-style: solid;
    border-color: #ffffff #ffffff00 #ffffff00 #fff;
    left: 40px;
    bottom: -30px;
    filter: drop-shadow(2px 3px 0px #c05727);
}
.testimonials-box .msg .quote-icon {
        margin-bottom: 0;
    position: absolute;
    right: 0;
    background: #c05727;
    width: 55px;
    height: 55px;
    top: 0px;
    border-radius: 0px 13px 0px 51px;
}
.testimonials-box .msg .quote-icon i {
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    top: 11px;
    left: 20px;
}
.testimonials-box .msg .str {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    gap: 2px;
}
.testimonials-box .msg .str li i {
    color: #f59e0b;
    font-size: 0.75rem;
}
.testimonials-box .msg .para {
    font-size: .92rem;
    line-height: 1.7;
    color: #525252;
    font-style: italic;
    height: 80px;
    min-height: 80px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pstd-google-icn {
    font-size: 0.7rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}
.pstd-google-icn i {
    color: #4285F4;
    font-size: 0.75rem;
}
.testimonials-box .avtar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}
.testimonials-box .avtar .icn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eef2f6;
    flex-shrink: 0;
}
.testimonials-box .avtar .icn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials-box .avtar .cntnt h6 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}
.testimonials-box .avtar .cntnt span {
        font-size: 0.75rem;
    color: #68a70b;
    font-weight: 400;
    font-style: italic;
}
.work-main{
      position: relative;
    z-index: 1;
    margin-top: 80px;
}
.work-main::after{
    width: 104%;
    height: 131px;
    content: '';
    background: url(../images/work-dot-line.png);
    position: absolute;
    top: -65px;
    left: -2%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
}
.work-main .work-card{
      width: 85%;
}
.work-main .work-card.work-card1{
      margin-top: 15px;
}
.work-main .work-card.work-card2{
      margin-top: -45px;
}
.work-main .work-card.work-card3{
      margin-top: -27px;
}
.work-main .work-card.work-card4{
     margin-top: 27px;
}
.work-main .work-card.work-card5{
     margin-top: 27px;
}
.work-main .work-card.work-card6{
     margin-top: -19px;
}
.work-main .work-card .icon{
  width: 52px;
    height: 52px;
      background: linear-gradient(135deg, #c05727 0%, #68a70b 100%);
    padding: 10px;
    border-radius: 5px;
}
.work-main .work-card .icon img{
        width: 100%;
    height: 100%;
    object-fit: scale-down;
    filter: brightness(0) invert(1);
}
.work-main .work-card h6{
  margin: 0;
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
}
.work-main .work-card p{
     margin: 0;
    color: #515151;
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;

}
@media (max-width: 767.98px) {
    .google-rev-wrp {
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* ===== Unique Overlay Card Design ===== */
.scholarship-overlay-unique {
        background: linear-gradient(135deg, #c05727 0%, #68a70b 100%);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
 
    /* box-shadow: 0 12px 35px rgba(11, 45, 92, 0.35); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}
.scholarship-overlay-unique::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.scholarship-overlay-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.15);
}
.scholarship-overlay-content {
    flex: 1;
    position: relative;
    z-index: 1;
}
.scholarship-overlay-content h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.4;
}
.scholarship-overlay-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 7px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}
.scholarship-overlay-link:hover {
    background: #68a70b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(104,167,11,0.3);
    border-color: transparent;
}
.scholarship-overlay-link span i {
    font-size: 0.75rem;
}

/* ===== Scholarship List Items (Horizontal - Single Column) ===== */
.scholarship-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.scholarship-card-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(192,87,39,0.06), 0 1px 3px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(192,87,39,0.08);
    margin-top: 12px;
}
.scholarship-card-item:first-child {
    margin-top: 0;
}
.scholarship-card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,87,39,0.12);
    border-color: rgba(192,87,39,0.18);
}
.scholarship-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(192,87,39,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.scholarship-card-item:hover .scholarship-card-icon {
    background: rgba(192,87,39,0.18);
    transform: scale(1.08);
}
.scholarship-card-icon i {
    font-size: 1.25rem;
    color: #c05727;
}
.scholarship-card-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}
/* Select2 custom styling to match input fields */
    .select2-container--default .select2-selection--single {
        height: auto !important;
        padding: 13px 20px !important;
        border-radius: 16px !important;
        border: 1px solid rgba(11, 45, 92, 0.08) !important;
        background: rgba(248, 250, 252, 0.7) !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        outline: none !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #1e293b !important;
        line-height: 1.5 !important;
        padding: 0 !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #94a3b8 !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 100% !important;
        right: 15px !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #ea580c transparent transparent transparent !important;
    }
    .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-color: transparent transparent #ea580c transparent !important;
    }
    .select2-dropdown {
        border: 1px solid rgba(11, 45, 92, 0.08) !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.06) !important;
    }
    .select2-container--default .select2-search--dropdown .select2-search__field {
        border: 1px solid rgba(11, 45, 92, 0.08) !important;
        border-radius: 12px !important;
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        outline: none !important;
        background: rgba(248, 250, 252, 0.7) !important;
    }
    .select2-container--default .select2-search--dropdown .select2-search__field:focus {
        border-color: #c05727 !important;
        box-shadow: 0 0 0 4px rgb(192 87 39 / 12%) !important;
    }
    .select2-container--default .select2-results__option {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
    }
    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background: rgba(192, 87, 39, 0.08) !important;
        color: #c05727 !important;
    }
    .select2-container--default .select2-results__option[aria-selected="true"] {
        background: rgba(192, 87, 39, 0.12) !important;
        color: #c05727 !important;
    }
/* Responsive adjustments for new scholarships section */
@media (max-width: 575.98px) {
    .scholarship-overlay-unique {
        margin-left: 15px;
        margin-right: 15px;
        padding: 16px 18px;
    }
    .scholarship-overlay-unique h6 {
        font-size: 0.85rem;
    }
    .scholarship-stream-img-box img {
        height: 160px;
    }
    .scholarship-card-item {
        padding: 16px 14px;
    }
    .scholarship-card-icon {
        width: 46px;
        height: 46px;
        padding: 8px;
    }
    .scholarship-card-title {
        font-size: 0.82rem;
    }
}
