/* Base Styles */
:root {
    --primary: #6FBEF3;        /* Bright blue */
    --primary-light: #EBF567;  /* Vibrant lime green */
    --primary-dark: #4A9BD1;   /* Darker blue shade */
    --secondary: #333333;      /* Neutral dark gray for text */
    --secondary-light: #5D5D5D; /* Lighter gray */
    --accent: #FFD166;        /* Yellow accent */
    --light: #FFFFFF;         /* Pure white background */
    --light-gray: #F5F5F5;    /* Very light gray */
    --accent-1: #A3D8FF;      /* Light blue accent */
    --accent-2: #C9E4FF;      /* Pale blue accent */
    --accent-3: #EFF8FF;      /* Very light blue accent */
    --transition: all 0.3s ease;
    
    /* Text colors */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --fun-shadow: 0 4px 20px rgba(111, 190, 243, 0.3);

     --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
} 

html {
    scroll-behavior: smooth;
}


body {
    font-family: "Helvetica Neue", "Roboto", "Arial", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Header Styles */
.animated-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--accent-3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.animated-header.scrolled {
    background-color: var(--accent-3); /* or white, or any desired color */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}


/* Hamburger animation */
.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navigation */
.main-nav {
    display: flex;
}

.main-nav.active {
    display: flex;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}


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

.main-nav .active {
    color: var(--primary);
}

/* Navigation Dropdown Styles */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
}

.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.main-nav .dropdown-menu li {
    padding: 0;
}

.main-nav .dropdown-menu a {
    padding: 8px 20px;
    display: block;
    color: #333;
    transition: all 0.3s;
}

.main-nav .dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-dark);
}

.main-nav .dropdown > a::after {
    content: none;
}

.main-nav .dropdown i.fa-chevron-down {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s;
}

.main-nav .dropdown:hover i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Service Page Styles */

.consultancy-hero, .knowledge-hero {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
}
.consultancy-hero {
    background: 
    url('../images/consultancy-hero.jpg');
    background-position: center;
    background-size: cover;
}

.knowledge-hero {
    background: url('../images/seed-hero.jpg');
    background-position: center;
    background-size: cover;
}

.consultancy-hero h1, .knowledge-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.program-details, .consultancy-services {
    padding: 60px 0;
}

.program-intro, .service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.highlight-card h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.highlight-card ul {
    list-style-type: none;
    padding: 0;
}

.highlight-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.highlight-card li::before {
    content: "•";
    color: #0066cc;
    position: absolute;
    left: 0;
}



.age-group h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.cta-box {
    text-align: center;
    background: black;
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.cta-box h3, .cta-box h4 {
    margin-bottom: 20px;
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.service-area {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-area:hover {
    transform: translateY(-5px);
}

.service-area h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    box-shadow: var(--fun-shadow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(111, 190, 243, 0.4);
}

.secondary-btn {
    margin-left: -560px;
    background-color: var(--primary);
    color: white;
}

.secondary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(111, 190, 243, 0.4);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Hero Section */
.programs-hero {
  position: relative;
  height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  
}

.programs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/kids-hero-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  backdrop-filter: blur(50px); /* Strong blur */
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

/* Overlay div not strictly necessary if ::before is used */
.programs-hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
  max-width: 800px;
}
.hero-button {
  display: inline-block;
  background-color: var(--primary);
  margin-left: 0;
  color: white;
  text-align: left;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;

}

.hero-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(111, 190, 243, 0.4);
}

.programs-hero h1 {
  font-size: 3.5rem;                /* Large, impactful */
  font-weight: 700;                 /* Bold headline */
  line-height: 1.1;                 /* Tighter line spacing */
  color: #ffffff;                   /* Clean white text */
  margin: 0;                        /* Remove default margins */
  text-align: left;
  margin-left: -160px;
}

.programs-hero p {
  font-size: 8rem;                /* Smaller subtitle size */
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: left;
  margin-left: -160px;
}



.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/kids-hero-bg.png');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(10px);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: slideInFromLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    animation: slideInFromRight 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

/* Wave Decoration */
.header-wave, .footer-wave {
    position: absolute;
    height: 10px;
    width: 100%;
    background-size: cover;
}

.header-wave {
    bottom: -10px;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%236FBEF3" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%236FBEF3" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%236FBEF3"/></svg>');
    animation: waveAnimation 12s linear infinite;
}

.intro-content.animated {
    padding: 80px 0;
}

.intro-content.animated p{
    text-align: left;
    width: 500px;
    color: var(--text-medium);
}

/* Featured Programs */
.featured-programs {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.1rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}


.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    transition: transform 0.6s var(--ease-out-quint), box-shadow 0.3s ease;
    will-change: transform;
}

.program-card:hover {
   transform: translateY(-10px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.1);
     transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-icon {
    height: 200px;
    overflow: hidden;
}

.program-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-icon img {
    transform: scale(1.1);
}

.program-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.program-card p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}



.program-link {
    display: inline-block;
    padding: 15px 25px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 20px 20px;
    border-radius: 30px;
    background-color: rgba(111, 190, 243, 0.1);
}

.program-link:hover {
    background-color: var(--primary);
    color: white;
    padding: 15px 30px;
}

.program-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.program-link:hover i {
    transform: translateX(5px);
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}
/* Homepage Features */
.home-features {
    padding: 80px 0;
}

.feature-cards {
      display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

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

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #0066cc;
    text-align: right;
}

/* Footer */
.animated-footer {
    position: relative;
    background-color: var(--secondary);
    color: white;
    overflow: hidden;
}

.footer-wave {
    top: -10px;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23FFFFFF" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23FFFFFF" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23FFFFFF"/></svg>');
    animation: waveAnimation 8s linear infinite reverse;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-logo img {
    height: 45px;
    margin-bottom: 15px;
}

.footer-section.about p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-light);
    color: var(--secondary);
    transform: translateY(-5px);
}

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

.footer-section.links li {
    margin-bottom: 12px;
}

.footer-section.links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-section.links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section.links a:hover {
    color: white;
    padding-left: 25px;
}

.footer-section.links a:hover::before {
    opacity: 1;
    left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-light);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: #ddd;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 10px 0;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-light);
}
.loading-spinner {
    animation: spin 1s linear infinite;
}

/* Gradient underline animation */
.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveAnimation {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-down-indicator span {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {

     .programs-hero h1,
    .programs-hero p {
        text-align: center;
        margin-left: 0;
        width: 100%;
    }
    
    .programs-hero h1 {
        margin-top: 0;
        font-size: 1.8rem;
    }
    
    .programs-hero p {
        font-size: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .programs-hero .container {
        padding: 0 20px;
    }

       .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--accent-3);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .main-nav li {
        text-align: center;
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
    }
    
    .header-container {
        padding: 15px 5%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
        .programs-hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0;
    }
    
    .programs-hero h1 {
        font-size: 1.5rem;
    }
    
    .programs-hero p {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
      .programs-hero h1 {
        font-size: 1.2rem;
    }
    
    .programs-hero p {
        font-size: 1.3rem;
    } 

    .intro-content.animated p{
        width: 400px;
    }
    
    .hero-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}