@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9.. 40,100..1000&family=Strichpunkt+Sans&display=swap');

/* 
   CENT DEGREE LLC - PREMIUM CSS STYLESHEET
   Pure HTML5 & CSS3 | Luxury Corporate Aesthetic
*/

:root {
    --primary: #0f3e91;
    --primary-light: #1a56c0;
    --secondary: #ffffff;
    --accent: #f5f7fb;
    --text-dark: #222222;
    --text-muted: #555555;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 62, 145, 0.12);
    --radius: 12px;
    --radius-round: 50px;
    --container-max: 1300px;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #0f3e91;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main,
.site-wrapper {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, background 0.3s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    background-color: transparent;
    border: 2px solid white;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.1s ease-out;
}

.custom-cursor-inner {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.05s ease-out;
}

body:hover .custom-cursor,
body:hover .custom-cursor-inner {
    opacity: 1;
}

.cursor-hover .custom-cursor {
    transform: translate(-50%, -50%) scale(2.5);
    background-color: rgba(15, 62, 145, 0.1);
    border-color: var(--primary);
}

@media (max-width: 1024px) {

    .custom-cursor,
    .custom-cursor-inner {
        display: none;
    }
}

@media (min-width: 1025px) {
    body {
        cursor: none;
    }

    a,
    button,
    .e-nav-item,
    .dot,
    .why-dot {
        cursor: none;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.active,
.reveal-right.active {
    transform: translate(0, 0);
    opacity: 1;
}

@media (max-width: 1100px) {

    .reveal-left,
    .reveal-right {
        transform: translateY(20px) !important;
        transition-duration: 1.2s;
    }
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 4%;

}

.section-padding {
    padding: 20px 0;
}

#welcome-section {
    padding-bottom: 45px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-wrap p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 15px auto 0;
}

.grad-text {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.text-white {
    color: var(--secondary) !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.bg-accent {
    background-color: var(--accent);
    background-image: radial-gradient(rgba(15, 62, 145, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-light {
    background-color: #f9fbfe;
}

/* Utility Classes */
.mb-8 {
    margin-bottom: 8px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.w-100 {
    width: 100%;
}

.opacity-8 {
    opacity: 0.8;
}

.text-muted-opacity {
    color: var(--text-muted);
}

.text-muted-size-9 {
    font-size: 0.9rem;
}

.float-anim {
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius-round);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    color: var(--secondary);
    box-shadow: 0 15px 30px rgba(15, 62, 145, 0.3);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 62, 145, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: transparent;
    transition: var(--transition);
}

header.header-scrolled {
    background-color: #0f3e91;
    padding: 10px 0;
    box-shadow: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrap img {
    height: 60px;
}

.logo-wrap span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--secondary);
}

/* Desktop Nav */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
    opacity: 0.8;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--secondary);
}

/* Mobile Nav Toggle */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1001;
}

/* Header CTA Button */
.nav-cta-wrapper {
    margin-left: 20px;
}

.nav-btn-cta {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(58, 123, 213, 0.3);
}

.nav-btn-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 30px rgba(58, 123, 213, 0.5);
    filter: brightness(1.1);
}

.nav-btn-cta i {
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .nav-cta-wrapper {
        display: none;
    }
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition);
}

/* ============================================
   NEW HERO SECTION
   ============================================ */
.new-hero {
    background-color: #0f3e91;
    padding: 140px 50px 60px;
    color: var(--secondary);
    min-height: 780px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* ── Background Blobs ── */
.hero-blob-left {
    position: absolute;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #2d1654 0%, #1a0d3a 50%, #0d0621 100%);
    bottom: -260px;
    left: -220px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.92;
}

.hero-blob-right {
    position: absolute;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 55%, #1c1236 0%, #12082e 60%, #0a0520 100%);
    top: -180px;
    right: -180px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
}

/* Old bold circles — kept in HTML but hidden */
.bold-circle {
    display: none !important;
}

.hero-layout {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Left Side Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--secondary);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #00d2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d2ff;
}

/* Base heading – solid primary color */
.hero-main-h2 {
    font-size: clamp(1.5rem, 4.2vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    color: white;
    /* solid color for non‑gradient text */
    text-align: left;
}

/* Gradient only on the word Second */
.hero-main-h2 .grad-text {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* Normal text after the gradient word */
.hero-main-h2 .normal-text {
    color: white;
    white-space: nowrap;
}


.hero-desc {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.7;
    color: var(--secondary);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #00d2ff;
    margin-bottom: 5px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.stat-item p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    opacity: 0.7;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 15px;
        margin-top: 30px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .stat-item {
        text-align: center;
        flex: 1;
    }

    .stat-item h3 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

/* Right Side Visuals */
.hero-visual {
    position: relative;
    z-index: 20;
}

.hero-visual-wrapper {
    position: relative;
    padding: 20px;
}

* --- Hero Section Container --- */ .new-hero {
    background-color: #0f3e91;
    padding: 120px 50px 60px;
    color: var(--secondary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* --- Hero Layout: Two Column --- */
.hero-layout {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(20px, 2vw, 50px);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* --- Left Content Column --- */
.hero-content {
    flex: 0 1 45%;
    min-width: 0;
    max-width: none;
    position: relative;
    z-index: 20;
}

.hero-visual {
    flex: 0 1 55%;
    max-width: 55%;
    position: relative;
    z-index: 20;
}

/* --- Right Visual Column --- */


.hero-visual-wrapper {
    position: relative;
    padding: 20px;
    width: 100%;
}

/* --- The Slider Box ---
   Key fix: use aspect-ratio so height always
   matches width proportionally — no cropping.
   Width is fluid (100% of .hero-visual).
   aspect-ratio 4/3 ≈ reference card proportions.
------------------------------------------------ */
.hero-slider {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    /* cap on very wide screens */
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Image fills the slide completely — no cropping */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

/* --- Floating Cards Refined --- */
.hero-contact-btn {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.icon-star {
    background: #ff7e5f !important;
}

.card-bottom {
    position: absolute;
    bottom: 20px;
    right: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: float-bottom 4s infinite ease-in-out;
}

.icon-success {
    width: 35px;
    height: 35px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.m-0 {
    margin: 0;
}

.fs-14 {
    font-size: 14px;
}

.c-333 {
    color: #333;
}

@keyframes float-bottom {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* --- Floating Cards (only desktop) --- */
.card-left {
    bottom: 15%;
    left: -20px;
    animation: float-left 5s infinite ease-in-out;
}

.card-right {
    top: 20%;
    right: -200px;
    animation: float-right 6s infinite ease-in-out;
}

@keyframes float-left {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes float-right {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

/* ============================================
   BREAKPOINTS
   ============================================ */

/* Large desktop: 1400px+ */
@media (min-width: 1400px) {
    .hero-visual {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hero-content {
        flex: 0 0 50%;
        max-width: 50%;
        margin-left: 10px;
    }

    .hero-slider {
        width: 636px;
        height: 400px;
        max-width: none;
    }
}

/* Standard desktop: 1200px – 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-visual {
        flex: 0 0 52%;
        max-width: 52%;
    }

    .hero-slider {
        aspect-ratio: 4 / 3;
        max-height: 500px;
    }
}

/* Medium desktop / large laptop: 1025px – 1199px */
@media (min-width: 1025px) and (max-width: 1199px) {
    .new-hero {
        padding: 120px 30px 50px;
    }

    .hero-layout {
        gap: 30px;
    }

    .hero-visual {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hero-slider {
        aspect-ratio: 4 / 3;
        max-height: 440px;
    }
}

/* Short wide screens (e.g. 1260×600 laptops) */
@media (min-width: 1025px) and (max-height: 700px) {
    .new-hero {
        padding: 100px 40px 40px;
        min-height: auto;
        align-items: flex-start;
        padding-top: 90px;
    }

    .hero-slider {
        aspect-ratio: 16 / 9;
        max-height: 360px;
    }

    .hero-layout {
        align-items: center;
    }

    .card-left,
    .card-right {
        display: none;
    }
}

/* Very short wide screens (height < 550px) */
@media (min-width: 1025px) and (max-height: 550px) {
    .hero-slider {
        aspect-ratio: 16 / 9;
        max-height: 280px;
    }

    .hero-main-h2 {
        font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
        margin-bottom: 16px !important;
        align-items: left;
    }

    .hero-desc {
        font-size: 0.95rem !important;
        margin-bottom: 30px !important;
    }
}

/* Tablet (stacked): ≤ 1024px */
@media (max-width: 1024px) {
    .new-hero {
        padding: 110px 20px 50px;
        text-align: center;
        min-height: auto;
    }

    .hero-layout {
        flex-direction: column;
        gap: 36px;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    .hero-visual {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .hero-visual-wrapper {
        padding: 0;
        width: 100%;
    }

    .hero-slider {
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: none;
        border-radius: 22px;
    }

    .card-left,
    .card-right {
        display: none;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-desc {
        margin: 0 auto 40px;
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
    .new-hero {
        padding: 95px 16px 40px;
    }

    .hero-slider {
        aspect-ratio: 16 / 9;
        border-radius: 16px;
    }

    .page-banner {
        height: 450px;
        padding-top: 80px;
    }

    .hero-main-h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
        letter-spacing: -1px !important;
    }

    .hero-desc {
        font-size: 1rem !important;
        margin-bottom: 28px !important;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        padding: 16px 20px;
    }

    .hero-blob-left,
    .hero-blob-right {
        display: none;
    }
}

/* Small mobile: ≤ 400px */
@media (max-width: 400px) {
    .new-hero {
        padding: 88px 12px 32px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .hero-slider {
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }
}



.hero-slider-track {
    display: flex;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-slide {
    min-width: 100%;
}

@media (max-width: 1024px) {
    .hero-slide img {
        width: 130%;
        height: 300px;
        object-fit: cover;
        display: block;
    }
}

/* Hero Slider Arrows */
.hero-slider-arrows {
    position: absolute;
    bottom: 18px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 30;
}

.hero-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #2a5eb8;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-arrow-btn:hover {
    background: #2a5eb8;
    color: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(42, 94, 184, 0.45);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 1);
    padding: 22px;
    border-radius: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    z-index: 20;
    min-width: 200px;
}

.f-icon {
    width: 45px;
    height: 45px;
    background: #9fb8e3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.f-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.f-info p {
    font-size: 0.8rem;
    color: #666;
}

.card-left {
    bottom: 15%;
    left: -20px;
    animation: float-left 5s infinite ease-in-out;
}

.card-right {
    top: 20%;
    right: -100px;
    animation: float-right 6s infinite ease-in-out;
}

@keyframes float-left {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(-10px);
    }
}

@keyframes float-right {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(20px) translateX(10px);
    }
}

/* ── HERO TABLET (≤ 1200px) ── */
@media (max-width: 1200px) {
    .new-hero {
        padding: 130px 30px 50px;
    }

    .hero-layout {
        gap: 30px;
    }

    .hero-blob-left {
        width: 520px;
        height: 520px;
        bottom: -200px;
        left: -160px;
    }

    .hero-blob-right {
        width: 560px;
        height: 560px;
        top: -140px;
        right: -140px;
    }

    .hero-slider {
        max-width: 480px;
        height: 420px;
    }
}

/* ── HERO TABLET/MOBILE STACK (≤ 1024px) ── */
@media (max-width: 1024px) {
    .new-hero {
        padding: 110px 20px 50px;
        text-align: center;
        min-height: auto;
    }

    .hero-layout {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .hero-content {
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-desc {
        margin: 0 auto 40px;
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-visual-wrapper {
        padding: 0;
        width: 100%;
    }

    .hero-slider {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px;
        border-radius: 24px;
    }

    .hero-slide img {
        height: 300px;
    }

    .hero-slider-arrows {
        left: 60% !important;
    }

    .card-left,
    .card-right {
        display: none;
    }

    .hero-blob-left {
        width: 380px;
        height: 380px;
        left: -150px;
        bottom: -100px;
        opacity: 0.55;
    }

    .hero-blob-right {
        width: 340px;
        height: 340px;
        top: -80px;
        right: -120px;
        opacity: 0.45;
    }
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
}

.hero-btns .btn {
    min-width: 180px;
    text-align: center;
}

/* ── HERO MOBILE (≤ 600px) ── */
@media (max-width: 600px) {
    .new-hero {
        padding: 95px 16px 40px;
    }

    .hero-main-h2 {
        font-size: clamp(1rem, 4vw, 2rem);
        letter-spacing: -1px;
        text-align: center;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-slider {
        height: 230px;
        border-radius: 18px;
    }

    .hero-slide img {
        height: 230px;
    }

    .hero-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        padding: 16px 20px;
    }

    .hero-blob-left,
    .hero-blob-right {
        display: none;
    }
}

/* ── HERO SMALL MOBILE (≤ 400px) ── */
@media (max-width: 400px) {
    .new-hero {
        padding: 90px 12px 36px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-slider {
        height: 195px;
        border-radius: 14px;
    }

    .hero-slide img {
        height: 195px;
    }
}

/* Parallax Effect */
.parallax-offer {
    position: relative;
    background-image: url('images/2ban.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-offer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(145, 179, 237, 0.9), rgba(10, 40, 95, 0.95));
    z-index: 1;
}

.parallax-offer .container {
    position: relative;
    z-index: 2;
}

.parallax-offer h2 {
    color: var(--secondary);
}

.parallax-offer .section-title-wrap p {
    color: rgba(255, 255, 255, 0.7);
}

/* Page Banners */
.about-banner {
    background-image: url('images/2ban.webp');
}

.programs-banner {
    background-image: url('images/convocation.webp');
}

.universities-banner {
    background-image: url('images/2ban.webp');
}

.study-banner {
    background-image: url('images/2ban.webp');
}

.verify-banner {
    background-image: url('images/4ban.webp');
}

.contact-banner {
    background-image: url('images/contact.webp');
}

.page-banner {
    height: 600px;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--secondary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(90deg, #ffffff, #dbeafe, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-banner h1,
.page-banner p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.page-banner .container {
    position: relative;
    z-index: 5;
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 62, 145, 0.1);
}

/* Global Elements */
iframe {
    border: 0;
}

footer {
    padding: 100px 0 0 0;
}

.premium-card {
    background-color: var(--secondary);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Welcome Section */
.welcome-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;

}

.w-visual-box {
    position: relative;
    padding: 30px;
}

.w-main-image-wrap {
    position: relative;
    z-index: 1;
}

.w-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    max-height: 360px;
}

.w-exp-card {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    padding: 25px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.3);
    z-index: 5;
    animation: floatAnim 4s infinite ease-in-out;
}

.w-exp-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.w-exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.w-sub-image-wrap {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 250px;
    border: 8px solid white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.w-sub-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.w-badge-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.w-badge-wrap .line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.w-badge-wrap .line:last-child {
    background: linear-gradient(-90deg, var(--primary), transparent);
}

.w-badge-wrap .badge-text {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.w-heading {
    text-align: left !important;
    margin-bottom: 30px !important;
    font-size: clamp(1.5rem, 2.5 vw, 3rem) !important;
    color: var(--primary);
}

.w-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.w-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 45px;
}

.w-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #edf3ff;
    border-radius: 12px;
    transition: var(--transition);
}

.w-feature-item:hover {
    transform: translateY(-5px);
    background: #e0ebff;
}

.w-f-icon {
    width: 45px;
    height: 45px;
    background: #d4e3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.w-f-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.w-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #13434d, #3a7bd5);
    color: white !important;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(58, 123, 213, 0.25);
    transition: var(--transition);
}

.w-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(58, 123, 213, 0.35);
}

@media (max-width: 1024px) {
    .welcome-grid-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .w-sub-image-wrap {
        width: 200px;
        right: 0;
        bottom: 0;
    }

    .w-exp-card {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .w-features-grid {
        grid-template-columns: 1fr;
    }

    .w-visual-box {
        padding: 0px;
    }

    .w-sub-image-wrap {
        width: 160px;
        border-width: 4px;
    }

    .w-exp-num {
        font-size: 1.6rem;
    }
}

/* Glassmorphism Offer Grid */
.glass-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    padding-top: 15px;
    width: 100%;
}

.slider-container,
.why-slider-container {
    overflow: hidden;
    padding-top: 30px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
    z-index: 1;
}

.bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50% !important;
    background: rgba(58, 123, 213, 0.3);
    border: 1px solid rgba(58, 123, 213, 0.5);
    aspect-ratio: 1 / 1;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    top: 50px;
    left: -200px;
    opacity: 0.6;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 300px;
    left: -100px;
    opacity: 0.4;
}

.circle-4 {
    width: 250px;
    height: 250px;
    top: -50px;
    left: 100px;
    opacity: 0.2;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    touch-action: pan-y;
    padding-top: 10px;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
}

.slider-nav-btn:hover {
    background: white;
    color: var(--primary);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0px;
    box-sizing: content-box;
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-dots .dot {
        width: 10px;
        height: 10px;
        padding: 10px;
    }
}

.slider-track .glass-card {
    flex: 0 0 calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
}

@media (max-width: 1024px) {
    .slider-track .glass-card {
        flex: 0 0 calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .slider-track .glass-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    transition: var(--transition);
    position: relative;
    overflow: visible;
}

/* Tablet & smaller – hide secondary image */
@media (max-width: 1024px) {
    .w-sub-image-wrap {
        display: none;
    }
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-card .offer-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 62, 145, 0.5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card h3 {
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover::before {
    opacity: 1;
}

/* MVV Section */
.modern-mvv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: #0f3e91;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: white;
}

.mvv-card h3,
.mvv-card p {
    color: white !important;
}

/* Core Values list — override .text-muted-opacity on dark card */
.mvv-card ul,
.mvv-card ul li,
.mvv-card .text-muted-opacity {
    color: rgba(255, 255, 255, 0.88) !important;
}

.mvv-card:hover {
    transform: translateY(-5px);
    background: #1a56c0;
    box-shadow: var(--shadow-md);
}

.mvv-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bg-blue-section {
    background: transparent;
}

/* Why Choose Us */
.section-desc {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

.choose-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.choose-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.why-slider-wrapper {
    position: relative;
    margin: 0 auto 30px;
    max-width: 1200px;
    width: 100%;
    padding: 20px 0;
}

.why-slider-container {
    overflow: hidden;
    padding-top: 40px;
    width: 100%;
}

.why-slider-track {
    display: flex;
    gap: 30px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
}

.why-card {
    flex: 0 0 calc(25% - 22.5px);
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 62, 145, 0.05);
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(15, 62, 145, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    will-change: transform;
    margin-top: 12px;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(15, 62, 145, 0.12);
    border-color: var(--primary);
}

.why-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.why-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
}

.why-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5f7fb 0%, #e8edfb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(15, 62, 145, 0.1);
}

.why-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .why-dots {
        display: flex;
    }
}

.why-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 62, 145, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 1100px) {
    .why-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .why-card {
        flex: 0 0 100%;
        width: 100%;
        padding: 40px 30px;
    }

    .why-dot.active {
        width: 25px;
    }
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(15, 62, 145, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 1.8rem;
}

/* ============================================
   PROGRAMS EXPLORER
   ============================================ */
.explorer-dashboard {
    background: #ffffff;
    border-radius: 45px;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 60px;
    width: 100%;
    margin-left: 0;
    position: relative;
}

.explorer-sidebar {
    background: #f8fafc;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.e-nav-item {
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.e-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.e-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--primary);
}

.e-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.e-nav-item.active {
    background: var(--primary);
}

.e-nav-item.active h4,
.e-nav-item.active span {
    color: #ffffff;
}

.explorer-display {
    overflow: hidden;
    position: relative;
    z-index: 10;
    min-height: 420px;
}

.e-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.e-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 30px 60px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.e-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 40, 95, 0.85), rgba(10, 58, 141, 0.5));
    z-index: 1;
}

.e-bg-1 {
    background-image: url('images/class.webp');
}

.e-bg-2 {
    background-image: url('images/2ban.webp');
}

.e-bg-3 {
    background-image: url('images/4ban.webp');
}

.e-bg-4 {
    background-image: url('images/4bann.webp');
}

.e-slide-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}

.glass-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 35px;
    max-width: 820px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 10;
}

.e-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.e-info h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Strichpunkt Sans', sans-serif;
    letter-spacing: -1px;
}

.e-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 30px;
}

.e-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.e-meta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
}

.e-meta-box h5 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.e-meta-box ul {
    list-style: none;
    padding: 0;
}

.e-meta-box ul li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #ffffff;
    font-weight: 500;
}

.e-meta-box ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 0.9rem;
}

.glass-content ul li {
    color: #ffffff !important;
}

.glass-content .e-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Mobile Sub-Tabs */
.e-mobile-tabs {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 100px;
}

.m-tab-btn {
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-tab-btn.active {
    background: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.e-mobile-content-wrap {
    display: none;
}

.m-content-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.m-content-pane.active {
    display: block;
}

.e-desktop-content {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Explorer Arrows */
.e-nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    pointer-events: none;
}

.e-arrow-btn {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

.e-arrow-btn:hover {
    background: white;
    color: var(--primary);
}

/* Mobile Explorer */
@media (max-width: 1024px) {
    .e-mobile-tabs {
        display: flex;
    }

    .e-mobile-content-wrap {
        display: block;
    }

    .e-desktop-content {
        display: none;
    }

    .glass-content {
        padding: 30px 20px;
    }

    .e-info h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .e-meta-box {
        background: transparent;
        padding: 10px 0;
        border: none;
    }

    .e-meta-box h5 {
        display: none;
    }
}

@media (max-width: 480px) {
    .m-tab-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 1300px) {
    .explorer-dashboard {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .explorer-dashboard {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .explorer-sidebar {
        display: flex;
        overflow: hidden;
        grid-template-columns: none;
        padding: 5px 0;
        background: #f8fafc;
        position: relative;
    }

    .e-nav-item {
        flex: 0 0 100%;
        width: 100%;
        padding: 12px 15px;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .e-nav-arrows {
        padding: 0 5px;
    }

    .e-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .explorer-sidebar.p-0 .e-nav-item {
        transform: translateX(0%);
    }

    .explorer-sidebar.p-1 .e-nav-item {
        transform: translateX(-100%);
    }

    .explorer-sidebar.p-2 .e-nav-item {
        transform: translateX(-200%);
    }

    .explorer-sidebar.p-3 .e-nav-item {
        transform: translateX(-300%);
    }

    .e-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    .e-nav-item.active {
        background: transparent;
    }

    .e-nav-item.active .e-text h4 {
        color: var(--primary);
        font-weight: 800;
    }

    .e-nav-item.active .e-icon {
        background: var(--primary);
        color: #ffffff;
    }

    .e-slide {
        padding: 25px 10px;
    }

    .explorer-display {
        min-height: auto;
    }

    .glass-content {
        padding: 20px 15px;
        border-radius: 25px;
    }
}

@media (max-width: 1200px) {
    .explorer-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding: 20px;
        white-space: nowrap;
    }

    .e-nav-item {
        padding: 15px 25px;
        flex: 0 0 auto;
    }

    .e-slide {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .e-meta {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .e-info h3 {
        font-size: 2rem;
    }
}

/* Trust Cards */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--accent);
    padding: 25px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.trust-card:hover {
    background: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.trust-card .icon-box {
    margin: 0;
    min-width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--secondary);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Verification Grid */
.verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.verify-item {
    background: var(--accent);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid transparent;
    transition: var(--transition);
}

.verify-item:hover {
    background: var(--secondary);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Footer */
.site-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

footer {
    background-color: #0a285f;
    color: #ffffff;
    padding: 70px 0 0;
    font-size: 0.95rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-img {
    max-height: 55px;
    width: auto;
    margin-bottom: 25px;
    background: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #00d2ff;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #00d2ff;
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #00d2ff;
    color: #0a285f;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    background: #08214d;
    margin-top: 40px;
    margin-bottom: 0 !important;
}

main,
section {
    width: 100%;
}

/* Contact Form */
.contact-info h2 {
    text-align: left;
}

/* =====================
   FULL RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .choose-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .menu-icon {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f3e91;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    #menu-toggle:checked~.nav-links {
        display: flex;
    }

    .hero-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content,
    .hero-slider {
        width: 100% !important;
        height: auto !important;
    }

    .hero-slide img {
        height: auto !important;
        min-height: 250px;
    }

    .welcome-flex {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .welcome-image {
        order: 2 !important;
        margin-top: 20px !important;
        display: flex;
        justify-content: center;
    }

    .img-premium {
        max-width: 100% !important;
        height: auto;
    }

    .experience-tag {
        position: absolute !important;
        right: 10px !important;
        bottom: 10px !important;
        padding: 12px 18px !important;
        font-size: 0.8rem;
        transform: none !important;
    }

    .welcome-text {
        padding-bottom: 20px;
    }

    .welcome-text h2 {
        text-align: center !important;
        font-size: 1.8rem !important;
    }

    .welcome-features {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin: 20px 0 !important;
    }

    .btn-primary {
        display: inline-block;
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .page-banner {
        height: 350px;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .glass-offer-grid {
        grid-template-columns: 1fr;
    }

    .slider-nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 50px 0;
    }

    .welcome-text {
        padding-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        height: 280px;
    }

    .hero-main-h1 {
        letter-spacing: -1px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-glow 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes whatsapp-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float i {
    animation: whatsapp-blink 2s infinite;
}

@keyframes whatsapp-blink {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}


/* Final Responsiveness Fixes */
@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .image-box img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        display: flex !important;
        flex-direction: column !important;
        gap: 36px !important;
    }

    .image-box,
    .text-box {
        width: 100% !important;
    }

    .image-box img {
        width: 100% !important;
        height: auto !important;
        border-radius: 18px !important;
    }

    .text-box {
        text-align: center !important;
    }

    .text-box h2 {
        text-align: center !important;
    }
}

/* ============================================
   ABOUT DETAILS SECTION
   ============================================ */
.about-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-details-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 600px;
}

.about-details-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    background: rgba(15, 62, 145, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.about-details-content .badge i {
    color: #00d2ff;
}

.about-details-content h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
}

.about-details-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.feature-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--accent);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.check-item i {
    color: #4ade80;
    /* Green check */
    font-size: 1rem;
}

@media (max-width: 992px) {
    .about-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-details-image {
        order: 2;
    }

    .about-details-content {
        order: 1;
    }
}

@media (max-width: 600px) {

    .feature-blocks,
    .check-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ PARALLAX SECTION
   ============================================ */
.faq-parallax {
    position: relative;
    background-image: url('images/student.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 100px 0;
}

.faq-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 40, 95, 0.85), rgba(15, 62, 145, 0.95));
    z-index: 1;
}

.faq-parallax .container {
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.faq-icon {
    color: var(--secondary);
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.8;
    padding-bottom: 25px;
    font-size: 1rem;
}

.faq-item.faq-active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.faq-active .faq-icon {
    transform: rotate(45deg);
    color: #00d2ff;
}

.faq-item.faq-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .faq-parallax {
        background-attachment: scroll;
        /* Better performance on mobile */
        padding: 80px 0;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-card {
    background: var(--secondary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.map-wrapper {
    width: 100%;
    height: 350px;
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

.location-details {
    padding: 35px;
}

.location-details h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.location-details p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-details p i {
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

.location-details p strong {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .location-details {
        padding: 25px;
    }

    .map-wrapper {
        height: 280px;
    }
}

/* Contact grid: stack below 1100px, side-by-side above */
.contact-grid-revised {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

@media (min-width: 1100px) {
    .contact-grid-revised {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Ensure map wrapper never overflows */
.map-wrapper {
    width: 100%;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100% !important;
    min-width: 0 !important;
}

/* Premium card (contact form) full-width on small screens */
@media (max-width: 1099px) {
    .premium-card {
        width: 100%;
        box-sizing: border-box;
        padding: 28px 22px;
    }

    .contact-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .premium-card {
        padding: 20px 16px;
    }

    .map-wrapper {
        height: 240px;
    }

    .location-details {
        padding: 18px 16px;
    }
}

/* ============================================================
   MVV (Core Purpose) — TABLET SLIDER  (481px – 1024px)
   Show ONE card at a time. No translateX / no overflow issues.
   JS adds .mvv-slider-on to .mvv-slider-wrapper on tablets.
   ============================================================ */

/* Slider controls — hidden on mobile & desktop */
.mvv-slider-btn,
.mvv-dots {
    display: none;
}

/* ── Tablet-only activation ── */
@media (min-width: 481px) and (max-width: 1024px) {

    /* Centered wrapper with room for the arrow buttons */
    .mvv-slider-wrapper {
        position: relative;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        padding: 0 56px;
        box-sizing: border-box;
    }

    /* Viewport: just the natural size, no hidden overflow needed */
    .mvv-slider-wrapper.mvv-slider-on .mvv-slider-viewport {
        width: 100%;
    }

    /* On tablet: hide ALL cards inside the slider by default */
    .mvv-slider-wrapper.mvv-slider-on .mvv-card {
        display: none;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    /* Only show the active card */
    .mvv-slider-wrapper.mvv-slider-on .mvv-card.mvv-active {
        display: block;
        opacity: 1;
    }

    /* Override the default 3-column grid on tablet when slider is on */
    .mvv-slider-wrapper.mvv-slider-on .modern-mvv {
        display: block;
    }

    /* Disable hover lift on tablet (not needed) */
    .mvv-slider-wrapper.mvv-slider-on .mvv-card:hover {
        transform: none;
    }

    /* Show arrow buttons and dots when slider is active */
    .mvv-slider-wrapper.mvv-slider-on .mvv-slider-btn,
    .mvv-slider-wrapper.mvv-slider-on .mvv-dots {
        display: flex;
    }

    /* Prev / Next arrow buttons */
    .mvv-slider-btn {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        z-index: 10;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        font-size: 1rem;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(15, 62, 145, 0.3);
        transition: background 0.3s ease, transform 0.2s ease;
        outline: none;
    }

    .mvv-slider-btn:hover {
        background: var(--primary-light);
        transform: translateY(-50%) scale(1.1);
    }

    .mvv-prev {
        left: 0;
    }

    .mvv-next {
        right: 0;
    }

    /* Dot indicators */
    .mvv-dots {
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .mvv-dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: rgba(15, 62, 145, 0.2);
        border: 2px solid var(--primary);
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s ease;
        display: inline-block;
    }

    .mvv-dot.active {
        background: var(--primary);
        transform: scale(1.3);
    }
}