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

body {
    font-family: 'Grandesign Neue Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
  
}

/* Highlight color variables (used as page highlighters) */
:root {
    --hl-1: #f9d11e; /* warm yellow */
    --hl-2: #b7eadf; /* mint */
    --hl-3: #f9adad; /* soft pink */
    --hl-gradient: linear-gradient(90deg, var(--hl-1) 0%, var(--hl-2) 50%, var(--hl-3) 100%);
}

/* Global FontAwesome icon color */
i.fas, i.far, i.fab {
    color: #251642;
}

/* Hero Section - Clean and Neat */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #251642 0%, #3a2356 100%);
    overflow: hidden;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

/* Highlight ring using the three highlight colors */
.badge::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    padding: 2px;
    background: var(--hl-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    filter: blur(6px);
    opacity: 0.95;
}

/* Make the badge text sit above the decorative ring */
.badge > * {
    position: relative;
    z-index: 2;
}

/* Accent styles using the highlight colors */
.highlight-1 { background: var(--hl-1); color: #111; }
.highlight-2 { background: var(--hl-2); color: #013220; }
.highlight-3 { background: var(--hl-3); color: #3b0b0b; }

/* Age badge (program cards) */
.age-badge {
    display: inline-block;
    background: var(--hl-2);
    color: #033; 
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 6px 12px rgba(11, 128, 104, 0.08);
}


/* Feature icon background */
.feature-icon,
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--hl-3);
    color: #6b0505;
    box-shadow: 0 6px 14px rgba(249, 173, 173, 0.12);
}

/* Color the outer circle of the first card ("Our Mission") with the highlight yellow */
.about-section .cards-grid .card:first-child .card-icon svg circle:first-of-type {
    fill: var(--hl-1);
    stroke: none;
}

/* Ensure inner circles keep a subtle contrast */
.about-section .cards-grid .card:first-child .card-icon svg circle:nth-of-type(2) {
    fill: rgba(0,0,0,0.06);
}
.about-section .cards-grid .card:first-child .card-icon svg circle:nth-of-type(3) {
    fill: rgba(0,0,0,0.12);
}

/* Primary CTA accent — subtle highlight border/glow */
.btn-primary {
    background: #251642;
    color: #fff;
    border: 2px solid transparent;
    padding: 0.6rem 1.4rem;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(183, 234, 223, 0.06), 0 4px 12px rgba(249, 209, 30, 0.03);
    position: relative;
}
.btn-primary::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    background: linear-gradient(90deg, rgba(249,209,30,0.25), rgba(183,234,223,0.18), rgba(249,173,173,0.18));
    z-index: -1;
    filter: blur(6px);
    opacity: 0.95;
    pointer-events: none;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 500;
}

.description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.btn {
    padding: 1.1rem 2.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: #251642;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: #251642;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.3);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.dot-purple { background: #FFD700; }
.dot-orange { background: #FF8383; }

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape1 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
}

.shape3 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 60%;
    left: 5%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(0, -40px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(240, 240, 250, 0.9));
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #251642;
    margin-bottom: 1rem;
}

.about-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 22, 66, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(37, 22, 66, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}


.icon-purple1 {
    background:#f9d11e ;
}

.icon-orange1 {
    background: #FF8383;
}

.icon-blue1 {
    background: #8BC4B9
}


.icon-box2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: none;
    box-shadow: 0 6px 14px rgba(249, 173, 173, 0.12);
    font-size: 2.8rem;
}



.icon-purple2 i {
    color: #f9d11e;
}

.icon-orange2 i {
    color: #FF8383;
}

.icon-blue2 i {
    color: #8BC4B9;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card p {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
}

.motto-banner {
    background: linear-gradient(135deg, #251642 0%, #3a2356 100%);
    border-radius: 30px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.motto-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.motto-content {
    position: relative;
    z-index: 1;
}

.motto-banner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #f9d11e;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.motto-banner p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Programs Section */
.programs-section {
    padding: 1rem 3rem;
    background: linear-gradient(to bottom, rgba(240, 240, 250, 0.9), rgba(255, 255, 255, 0.9));
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.programs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.programs-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #251642;
    margin-bottom: 1rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(37, 22, 66, 0.1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(37, 22, 66, 0.2);
    border-color: #251642;
}

.program-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.age-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background:#251642;;
    color: #f9d11e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.program-content {
    padding: 2rem;
}

.program-title {
    font-size: 1.75rem;
    color: #251642;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.program-description {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.program-list {
    list-style: none;
}

.program-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.program-list li::before {
    content: "✓";
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
}

.program-card:nth-child(1) .program-list li::before {
    color: #f9d11e;
}

.program-card:nth-child(2) .program-list li::before {
    color: #FF8383;
}

.program-card:nth-child(3) .program-list li::before {
    color: #A1D6CB;
}

/* Enhanced Customizable Modules Section */
.customizable-highlight {
    background: linear-gradient(135deg, #251642 0%, #3a2356 100%);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.customizable-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.customizable-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #251642 0%, #3a2356 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.customizable-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.customizable-highlight h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #f9d11e;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}


.customizable-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon,
.feature-icon-cs {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
    color: #FFD700;
}

.feature-icon-cs i {
    color: #FFD700;
}

.feature-item strong {
    color: white;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.customizable-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 48px; /* smaller icon */
    height: 48px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    box-shadow: 0 8px 20px rgba(16,24,40,0.12);
    text-decoration: none;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.customizable-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Why Section */
.why-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.why-section .programs-header {
    margin-bottom: 3rem;
}

.why-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #718096;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tablet Media Query for About Section (668px to 1024px) */
@media (min-width: 668px) and (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .card {
        padding: 2rem;
    }

    .card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }

    .card-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Responsive adjustments for why-section */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .card {
        padding: 2rem;
    }

    .card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }

    .card-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .card {
        padding: 1.25rem 1rem;
        text-align: left;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        margin: 0 0 0.75rem 0;
    }

    .card-icon svg {
        width: 22px;
        height: 22px;
    }

    .why-section {
        padding: 3rem 1rem;
    }
}


.spots-badge {
    text-align: center;
    margin-top: 3rem;
}

.spots-badge .badge {
    background: linear-gradient(135deg, #251642, #3a2356);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 22, 66, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #251642 0%, #3a2356 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-left {
    color: white;
}

.contact-left h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-left > p {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    font-weight: 600;
    transition: opacity 0.3s ease;
    word-break: break-word;
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
   
}

.demo-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.demo-box h3 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #251642, #3a2356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.demo-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.demo-box p:last-child {
    color: #6b7280;
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    margin: 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.8rem;
    border-radius: 15px;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.cta-primary {
    background: white;
    color: #251642;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #251642;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
}

.icon-inline {
    font-size: 1.4rem;
}

.contact-footer {
    text-align: center;
    color: white;
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #251642 0%, #3a2356 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

footer .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}



.footer-top {
    text-align: center;
    margin-bottom: 1.5rem;
}

footer h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 0.3rem;
    background: whitesmoke;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer .tagline {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-section h4 {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 700;
    color: var(--hl-1);
    margin-bottom: 0.6rem;
    text-transform: capitalize;
}

.footer-section p {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--hl-1);
}

.footer-section i {
    color: white;
}

footer .copyright {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typing Animation Styles */
.typing-container {
    margin: 2rem 0;
}

.typing-text {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    font-family: 'Grandesign Neue Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.typing-word {
    
    display: inline-block;
    color: #f9d11e;
    text-align: left;
    border-right: 3px solid #7c3aed;
    padding-right: 8px;
    min-height: 1.2em;
    animation: blink 0.7s infinite;
    white-space: pre;
}

@keyframes blink {
    0%, 49% {
        border-right-color: #7c3aed;
    }
    50%, 100% {
        border-right-color: transparent;
    }
}

/* Tablet Media Query for Programs Section (768px to 1024px) */
@media (min-width: 668px) and (max-width: 1024px) {
    
    .programs-container {
        max-width: 100%;
    }

    .programs-header {
        margin-bottom: 3rem;
    }

    .programs-header h2 {
        font-size: 2.5rem;
    }

    .programs-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
        
    }

}

@media (min-width: 668px) and (max-width: 1024px) {
    .about-container {
        max-width: 100%;
    }
}

/* Mobile Media Query for Programs and Customizable Sections (max-width: 600px) */
@media (max-width: 600px) {

    /* Programs Section */
    .programs-section {
        padding: 1.5rem 0;
        overflow-x: hidden;
    }

    .programs-container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        margin: 0 auto;
    }

    .program-card {
        width: 100%;
        margin: 0 auto;
        max-width: 100%;
    }

    .program-image {
        height: auto;
        padding: 1rem 0;
        width: 100%;
    }

    .program-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .program-content {
        padding: 1.25rem;
        width: 100%;
    }

    /* Customizable Section */
    .customizable-highlight {
        padding: 2rem 1rem;
        border-radius: 18px;
        overflow: hidden;
        margin: 0 auto;
        max-width: 100%;
    }

    .customizable-highlight::before {
        display: none;
    }

    .customizable-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        margin: 1rem auto;
        width: 100%;
        max-width: 100%;
    }

    .feature-item {
        padding: 1rem;
        border-radius: 12px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon,
    .feature-icon-cs {
        margin: 0 auto 0.75rem;
        display: block;
        text-align: center;
    }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .programs-section {
        padding: 1rem 0;
    }

    .programs-container {
        padding: 0 0.75rem;
    }

    .programs-grid {
        gap: 0.75rem;
    }

    .program-card {
        border-radius: 12px;
    }

    .program-content {
        padding: 1rem;
    }

    .customizable-highlight {
        padding: 1.5rem 0.75rem;
        border-radius: 15px;
    }

    .customizable-features {
        gap: 0.75rem;
    }

    .feature-item {
        padding: 0.75rem;
        border-radius: 10px;
    }
}