:root {
    --primary-purple: #662d91;
    --dark-purple: #4a1f6a;
    --light-purple: #f3e8ff;
    --primary-yellow: #ffcc00;
    --dark-yellow: #e6b800;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --transition: all 0.3s ease;

    /* --- FONT OPTIONS (Change this to test different styles) --- */
    /* --main-font: 'Outfit', sans-serif; */
    /* Modern & Clean */
    /* --main-font: 'Nunito', sans-serif;            /* Friendly & Rounded (Default for now) */
    /* --main-font: 'Quicksand', sans-serif; */
    /* Soft & Airy */
    /* --main-font: 'Poppins', sans-serif; */
    /* Geometric & Popular */
    /* --main-font: 'Fredoka', sans-serif; */
    /* Playful & Soft */
    /* --main-font: 'Baloo 2', sans-serif; */
    /* Bubbly & Fun */
    --main-font: 'Didact Gothic', sans-serif;
    /* Clean, Sans-Serif Gothic */
    /* --main-font: 'League Gothic', sans-serif; */
    /* Tall, Impactful Gothic */
    /* --main-font: 'Gothic A1', sans-serif; */
    /* Versatile Sans Gothic */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main-font, 'Nunito', sans-serif);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fafafa;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.center-text {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-purple {
    color: var(--primary-purple);
}

.text-yellow {
    color: var(--primary-yellow);
}

.mt-5 {
    margin-top: 3rem;
}

.mt-2 {
    margin-top: 1rem;
}

.position-relative {
    position: relative;
}

/* Typography */
/* 
   Tip: You can change the font-weight to test different thicknesses:
   300 (Light), 400 (Regular), 500 (Medium), 600 (Semi-Bold), 700 (Bold), 800 (Extra Bold)
*/
h1,
h2,
h3,
h4 {
    font-weight: 800;
    /* Try changing this to 700 or 600 */
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(102, 45, 145, 0.5);
    /* Rich Purple transparent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(102, 45, 145, 0.25);
    border-radius: 50px;
    border: 1px solid rgba(102, 45, 145, 0.5);
    z-index: -1;
}

.brand-logo {
    max-height: 60px;
    width: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo:hover {
    transform: rotate(-5deg) scale(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-yellow);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    border-radius: 25px;
}

.nav-links a:hover {
    color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.contact-top {
    font-weight: 600;
}

.contact-top a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 800;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 5px 0;
}

/* -------------------------------------
   Playful Animations & Interactions 
   ------------------------------------- */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.08) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.float-svg {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
}

.f1 {
    top: 5%;
    left: 2%;
    animation-delay: 0s;
}

.f2 {
    bottom: 20%;
    left: 2%;
    animation-delay: 2s;
}

.f3 {
    top: 5%;
    right: 35%;
    animation-delay: 1s;
}

.playful-hover {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.playful-hover:hover {
    transform: scale(1.08) rotate(2deg) !important;
    z-index: 10;
}

.tilt-hover {
    transition: transform 0.3s ease;
}

.tilt-hover:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

.bg-scribble {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 50vw;
    z-index: 0;
    opacity: 0.3;
    animation: float 10s linear infinite;
    pointer-events: none;
}

/* -------------------------------------
   Buttons (All Purple as Requested)
   ------------------------------------- */
.cta-btn,
.submit-btn,
.view-all-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(102, 45, 145, 0.3);
    text-align: center;
}

.cta-btn:hover,
.submit-btn:hover,
.view-all-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: var(--dark-purple);
    box-shadow: 0 12px 20px rgba(102, 45, 145, 0.5);
}

.cta-btn.secondary {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.cta-btn.secondary:hover {
    background-color: var(--dark-yellow);
    color: var(--text-dark);
}

/* Form specific button adjustment */
.submit-btn {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 85px;
    padding-bottom: 40px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.program-image-container::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 10%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(102, 45, 145, 0.95) 0%, rgba(102, 45, 145, 0.7) 50%, rgba(102, 45, 145, 0.4) 100%);
    z-index: -1;
}

.hero-content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    z-index: 10;
    position: relative;
}

.hero-text {
    flex: 1;
    color: var(--white);
    position: relative;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-text .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.scribble {
    position: absolute;
    opacity: 0.8;
    pointer-events: none;
}

.decor-outline-svg {
    position: absolute;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.wobble-slow {
    animation: float 8s ease-in-out infinite;
}

.wobble-fast {
    animation: float 4s ease-in-out infinite;
}

.s-1 {
    top: -40px;
    right: 15%;
    left: auto;
    animation: pulse 3s infinite;
}

.s-2 {
    bottom: -30px;
    right: -10px;
    left: auto;
    top: auto;
    animation: float 4s infinite;
}

.hero-form-container {
    flex: 0 0 400px;
}

.glass-form {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-form h2 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    text-align: center;
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    color: var(--text-dark);
}

/* Custom Dropdown Arrow */
.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 1.2em;
    cursor: pointer;
}

/* Make default option look like a placeholder */
.input-group select:invalid {
    color: #757575;
}

.input-group select option {
    color: var(--text-dark);
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--primary-yellow);
    /* Contrast pop on focus */
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-message {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    color: #2ed573;
    display: block;
}

.form-message.error {
    color: #ff4757;
    display: block;
}

/* Custom SVG Dividers */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #fafafa;
}

.custom-shape-divider-bottom .shape-fill-white {
    fill: #ffffff;
}

.bottom-rotate {
    transform: rotate(180deg);
}

.custom-shape-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.custom-shape-divider-top .shape-fill {
    fill: #fafafa;
}

.shape-fill-yellow {
    fill: var(--primary-yellow);
    opacity: 0.6;
}

/* Sections Generic */
.page-section {
    padding: 4rem 0;
    position: relative;
}

.section-purple {
    background-color: var(--primary-purple);
    color: var(--white);
}

.section-light-purple {
    background-color: var(--light-purple);
}

.section-yellow {
    background-color: var(--primary-yellow);
    color: #333333;
}

/* Why Choose Us Steps */
.why-choose-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    position: relative;
}

.step {
    flex: 1;
    padding: 0 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-img-frame {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    background: #fff;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border-radius: 15px;
}

.step-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.frame-tilt-left {
    transform: rotate(-5deg);
    background: var(--primary-yellow);
}

.frame-circle {
    border-radius: 50%;
    background: var(--primary-purple);
}

.frame-circle img {
    border-radius: 50%;
}

.frame-tilt-right {
    transform: rotate(3deg);
    background: var(--primary-yellow);
}

.frame-triangle {
    background: var(--primary-purple);
    border-radius: 12px;
    clip-path: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.frame-triangle img {
    clip-path: none;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
}

/* Programmes Grid */
.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.program-card {
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    text-align: left;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.program-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.program-content {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--white);
    margin-top: -10px;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}

.card-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(102, 45, 145, 0.05);
    position: absolute;
    top: -20px;
    right: 10px;
    line-height: 1;
}

.program-card h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.age-duration {
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.card-scribble {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.5;
}

/* Split Layout (Pedagogy) */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.blob-mask {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-purple);
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    /* overflow: hidden; */
    /* keep image within rounded corners */
}

.blob-mask img {
    width: 100%;
    object-fit: cover;
    /* completely fills the box responsively */
    border-radius: 40px;
}

.decor-blob {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.yellow-blob {
    width: 120px;
    height: 120px;
    background: var(--primary-yellow);
    top: -15px;
    right: -15px;
    animation: float 4s infinite;
}

.purple-blob {
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    bottom: -20px;
    left: -20px;
    animation: float 5s infinite;
}

.decor-star {
    position: absolute;
    bottom: -30px;
    left: -30px;
    animation: pulse 3s infinite ease-in-out;
}

.styled-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.styled-list li {
    margin-bottom: 0.8rem;
    padding-left: 30px;
    position: relative;
}

.styled-list li::before {
    content: '\2605';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

/* Horizontal Carousels */
.carousel-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-nav {
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 1.2rem;
    color: var(--primary-purple);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-nav.prev {
    margin-right: -20px;
}

.carousel-nav.next {
    margin-left: -20px;
}

.horizontal-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 20px;
    scrollbar-width: none;
    flex: 1;
}

.horizontal-carousel::-webkit-scrollbar {
    display: none;
}

.horizontal-carousel img {
    height: 250px;
    min-width: 350px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.horizontal-carousel img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.safety-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}

.safety-features-list span {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-purple);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: default;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1000px;
    height: 75vh;
}

#lightbox-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.close-lightbox:hover {
    color: var(--primary-yellow);
    transform: rotate(90deg);
}

.lightbox-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border: none;
}

.lightbox-nav.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-nav.next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

.lightbox-nav:hover {
    background-color: var(--primary-purple);
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    padding: 20px;
    margin-top: 10px;
    height: 15vh;
}

.lightbox-thumbnails img {
    height: 100%;
    width: auto;
    cursor: pointer;
    opacity: 0.5;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.lightbox-thumbnails img:hover,
.lightbox-thumbnails img.active {
    opacity: 1;
    border-color: var(--primary-yellow);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer p,
.footer li {
    color: #f2e6ff;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer a {
    color: #f2e6ff;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-yellow);
}

.contact-col ul {
    list-style: none;
}

.contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-yellow);
    stroke: var(--primary-yellow);
    /* Ensure strokes for new icons are yellow */
    flex-shrink: 0;
    margin-top: 2px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons svg {
    width: 22px;
    height: 22px;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-yellow);
    transform: translateY(-3px);
}

.social-icons a:hover svg {
    color: var(--primary-purple);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.responsive-map {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

    /* Hide decorative SVGs on mobile/tablet for clean readable text */
    .decor-outline-svg,
    .float-svg,
    .bg-scribble,
    .scribble,
    .blob-shape,
    .decor-star,
    .decor-blob {
        display: none !important;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        margin-top: 4rem;
    }

    .hero-text {
        padding: 0 10px;
    }

    .hero-overlay {
        background: rgba(102, 45, 145, 0.85);
    }

    .split-layout {
        flex-direction: column;
    }

    .split-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .split-text .text-left {
        text-align: center !important;
    }

    .styled-list {
        display: inline-block;
        text-align: left;
    }

    .styled-list li {
        text-align: left;
        padding-left: 30px;
    }

    .styled-list li::before {
        position: absolute;
        left: 0;
        margin-right: 0;
    }

    .footer-grid {
        text-align: center;
        justify-content: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-col li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .carousel-section-header {
        justify-content: center;
        text-align: center;
    }

    .why-choose-steps {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .connecting-line {
        display: none;
    }

    .step {
        width: 100%;
        max-width: 400px;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-form-container {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        background: rgba(102, 45, 145, 0.5);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        display: none;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        overflow: hidden;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    }

    .hamburger {
        display: block;
    }

    .brand-logo {
        max-height: 60px;
    }

    .contact-top {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .glass-form {
        padding: 1.5rem;
    }

    .horizontal-carousel img {
        min-width: 250px;
        height: 200px;
    }

    .view-all-btn,
    .cta-btn {
        padding: 10px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Blog Styles --- */
.blog-title {
    color: var(--primary-purple);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.blog-meta {
    color: #666;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.1rem;
    display: inline-block;
    background: #ffcc0033;
    /* light yellow */
    padding: 5px 15px;
    border-radius: 20px;
}

.blog-heading-purple {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-heading-yellow {
    color: #cca300;
    /* Darker yellow for text readability */
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

#blog-content-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

#blog-content-container strong {
    color: var(--primary-purple);
}

.blog-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px dashed var(--primary-yellow);
    font-weight: bold;
    color: var(--primary-purple);
}

/* --- Blog Section Background & Cards --- */
.resource-hub-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 3rem;
}

.rh-title {
    flex: 1;
}

.rh-desc {
    flex: 1.5;
}

@media (max-width: 768px) {
    .resource-hub-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .rh-desc .text-left {
        text-align: center !important;
    }
}

.section-blogs-creative {
    background: linear-gradient(135deg, #fffcf0 0%, #ffffff 100%);
    overflow: hidden;
}

.blog-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blob-shape {
    position: absolute;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
}

.shape-2 {
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
}

.shape-3 {
    top: 10%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translateX(-50%);
}

.premium-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.blog-card-item {
    min-width: 350px !important;
    max-width: 400px;
    height: auto !important;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: var(--transition);
    border: 1px solid rgba(102, 45, 145, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-card-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(102, 45, 145, 0.15) !important;
    border-color: var(--primary-yellow);
}

.blog-card-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    color: var(--primary-purple);
}

.blog-card-meta {
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--light-purple);
    color: var(--primary-purple) !important;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem !important;
}

.blog-card-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-btn {
    padding: 10px 25px !important;
    font-size: 0.95rem !important;
    border-radius: 30px !important;
}

.section-blog-reader {
    background: linear-gradient(135deg, #f9f6fc 0%, #fff 100%);
    min-height: 100vh;
    padding-top: 100px;
}

.blog-reader-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.blog-reader-nav {
    margin-bottom: 2rem;
}

.premium-btn {
    padding: 10px 25px !important;
    border-radius: 30px !important;
    font-size: 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: fit-content !important;
}

/* Lightbox UX Polish */
#lightbox-img {
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

#lightbox-img.zoom-in {
    transform: scale(1);
    opacity: 1;
}

.lightbox-nav {
    background: rgba(102, 45, 145, 0.7) !important;
    backdrop-filter: blur(5px);
    border-radius: 50% !important;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.lightbox-nav:hover {
    background: var(--primary-yellow) !important;
    color: var(--text-dark) !important;
    transform: scale(1.1) !important;
}

.lightbox-thumbnails {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 10px;
}

/* Share Icons */
.blog-share-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.fb-icon {
    background-color: #1877F2;
}

.x-icon {
    background-color: #000000;
}

.share-icon:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .blog-card-item {
        min-width: 280px !important;
    }

    .blog-reader-glass {
        padding: 1.5rem;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }
}