/* ====== ENHANCED STYLES FOR NASHIK CAMBRIDGE SCHOOL LANDING PAGE ====== */
/* Using the existing color palette */
:root {
    /* Color variables */
    --mountain-brown: #553231;
    --water-blue: #597C9E;
    --olive-green: #8DA05B;
    --premium-white: #F8F5F2;
    --golden-brown: #EAAD3D;
    --dark-navy: #1A112E;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition-premium: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --section-spacing: 100px;
    
    /* Theme colors */
    --mountain-darker: #553231;
    --mountain: #6A3E3D;
    --mountain-lighter: #886564;
    --water-darker: #26496B;
    --water: #305B86;
    --water-lighter: #597C9E;
    --sun-darker: #B77A0A;
    --sun: #E5990C;
    --sun-lighter: #EAAD3D;
    --plant-darker: #5A6D28;
    --plant: #718832;
    --plant-lighter: #8DA05B;
    --monotone-dark: #1A112E;
    --monotone-light: #F3E8D3;

    /* Additional variables */
    --shadow-soft: 0 10px 30px rgba(26, 17, 46, 0.08);
    --shadow-medium: 0 15px 40px rgba(26, 17, 46, 0.12);
    --shadow-strong: 0 20px 50px rgba(26, 17, 46, 0.15);
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --gradient-primary: linear-gradient(135deg, var(--water-darker), var(--water-lighter));
    --gradient-secondary: linear-gradient(135deg, var(--sun-darker), var(--sun-lighter));
    --primary-color: #0056b3;
    --secondary-color: #f8a100;
    --light-color: #ffffff;
    --dark-color: #333333;
    --gray-light: #f5f7fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--water-darker);
    transition: var(--transition-premium);
}

ul {
    list-style: none;
}

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

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

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1000;
    transition: width 0.2s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--mountain-brown);
    margin-bottom: 2rem;
}

p {
    margin-bottom: 2rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-premium);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-premium);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-premium);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-premium);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-soft);
}

.btn i {
    margin-left: 8px;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-premium);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--water-darker);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--water);
    box-shadow: 0 8px 20px rgba(38, 73, 107, 0.3);
}

.btn-secondary {
    background-color: var(--sun);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--sun-darker);
    box-shadow: 0 8px 20px rgba(229, 153, 12, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--sun);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--gray-dark);
}

.section-cta {
    margin-top: 4rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 8rem;
    overflow: hidden;
    color: var(--premium-white);
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: scale-bg 25s infinite alternate;
}

@keyframes scale-bg {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 73, 107, 0.85), rgba(26, 17, 46, 0.75));
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
    width: 500px;
    height: 500px;
    filter: blur(100px);
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    animation: float-shape-1 15s infinite alternate;
}

.shape-2 {
    bottom: 15%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    animation: float-shape-2 15s infinite alternate;
}

@keyframes float-shape-1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float-shape-2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-color);
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--premium-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.4s;
}

.hero-subtitle {
    font-size: 2.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--premium-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.6s;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.4rem;
}

.scroll-down i {
    font-size: 1.8rem;
    margin-top: 5px;
}

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

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

/* About Section */
.about-section {
    background-color: var(--premium-white);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 3.6rem;
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 1.7rem;
    color: var(--dark-navy);
    opacity: 0.85;
    margin-bottom: 3rem;
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-stack__item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.image-stack__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-stack__item--top {
    position: absolute;
    z-index: 2;
    width: 80%;
    height: 350px;
    top: 0;
    left: 0;
}

.image-stack__item--bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 300px;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    background-color: var(--water-darker);
    padding: 60px 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 3rem;
    background: var(--premium-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-premium);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--water-darker);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.stat-number::after {
    content: attr(data-suffix);
    font-size: 2.5rem;
    position: absolute;
    right: -15px;
    top: 5px;
}

.stat-label {
    font-size: 1.7rem;
    color: var(--dark-navy);
    opacity: 0.8;
    margin: 0;
}

/* Philosophy Section */
.philosophy-section {
    background-color: rgba(26, 17, 46, 0.02);
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-text p {
    font-size: 1.7rem;
    margin-bottom: 3rem;
    color: var(--dark-navy);
    opacity: 0.85;
}

.philosophy-points {
    list-style: none;
    margin-top: 3rem;
}

.philosophy-points li {
    margin-bottom: 2rem;
    padding-left: 3.5rem;
    position: relative;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--mountain-brown);
}

.philosophy-points li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(89, 124, 158, 0.15);
    border-radius: 50%;
    color: var(--water-darker);
    transition: var(--transition-premium);
}

.philosophy-points li:hover i {
    background-color: var(--water-darker);
    color: var(--premium-white);
    transform: scale(1.1);
}

.philosophy-image {
    position: relative;
}

.philosophy-image-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}

.philosophy-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.philosophy-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dark-navy);
    color: var(--premium-white);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    width: 80%;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.philosophy-quote i {
    font-size: 3rem;
    color: var(--sun);
    margin-bottom: 1.5rem;
    display: block;
}

.philosophy-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.philosophy-quote span {
    font-size: 1.4rem;
    opacity: 0.8;
}

/* Approach Section */
.approach-section {
    background-color: var(--premium-white);
    position: relative;
}

.approach-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,173,61,0.15) 0%, rgba(234,173,61,0) 70%);
    z-index: 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.approach-card {
    background-color: white;
    padding: 4rem 3rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-premium);
}

.approach-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-icon {
    margin-bottom: 2rem;
}

.approach-icon i {
    font-size: 4rem;
    color: var(--water-darker);
    background: rgba(89, 124, 158, 0.1);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition-premium);
}

.approach-card:hover .approach-icon i {
    background: var(--water-darker);
    color: var(--premium-white);
    transform: rotateY(180deg);
}

.approach-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
    transition: var(--transition-premium);
}

.approach-card p {
    font-size: 1.6rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Our Programs Section - 4 cards per row */
.programs-section {
    background-color: rgba(26, 17, 46, 0.02);
    position: relative;
}

.programs-decoration {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(89,124,158,0.15) 0%, rgba(89,124,158,0) 70%);
    z-index: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background-color: var(--premium-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
}

.program-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}

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

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 17, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-premium);
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--premium-white);
    color: var(--water-darker);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transform: translateY(20px);
    transition: var(--transition-premium);
}

.program-card:hover .program-link {
    transform: translateY(0);
}

.program-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--mountain-brown);
    transition: var(--transition-premium);
}

.program-content p:first-of-type {
    font-size: 1.4rem;
    color: var(--sun);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.program-content p:last-of-type {
    font-size: 1.6rem;
    color: var(--gray-dark);
    margin-bottom: 0;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonial-section {
    background-color: var(--premium-white);
    position: relative;
    overflow: hidden;
}

.testimonial-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath 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' opacity='.25' class='shape-fill'%3E%3C/path%3E%3Cpath 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' opacity='.5' class='shape-fill'%3E%3C/path%3E%3Cpath 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' class='shape-fill'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.testimonial-slider-container {
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 4rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    margin-bottom: 2rem;
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--sun);
}

.testimonial-text {
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--gray-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--mountain-brown);
}

.author-info span {
    font-size: 1.4rem;
    color: var(--sun);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.slider-arrow {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--premium-white);
    border: none;
    color: var(--water-darker);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: var(--shadow-soft);
}

.slider-arrow:hover {
    background-color: var(--water-darker);
    color: var(--premium-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: var(--water-lighter);
    transition: var(--transition-premium);
    cursor: pointer;
}

.slider-dot.active {
    background-color: var(--water-darker);
    transform: scale(1.2);
}

/* Awards Section */
.awards-section {
    background-color: rgba(26, 17, 46, 0.02);
    position: relative;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.award-card {
    background-color: white;
    padding: 4rem 3rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-premium);
}

.award-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-icon {
    margin-bottom: 2rem;
}

.award-icon i {
    font-size: 4rem;
    color: var(--sun);
    background: rgba(229, 153, 12, 0.1);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition-premium);
}

.award-card:hover .award-icon i {
    background: var(--sun);
    color: var(--premium-white);
    transform: rotateY(180deg);
}

.award-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
}

.award-card p {
    font-size: 1.6rem;
    color: var(--sun-darker);
    font-weight: 500;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--water-darker), var(--dark-navy));
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    color: var(--premium-white);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4rem;
    color: var(--premium-white);
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.cta-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.cta-phone, .cta-email {
    display: flex;
    align-items: center;
    color: var(--premium-white);
    font-size: 1.6rem;
}

.cta-phone i, .cta-email i {
    margin-right: 1rem;
    color: var(--sun);
    font-size: 1.8rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--water-darker);
    color: var(--premium-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: var(--shadow-medium);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--water);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px = 1rem */
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-stack {
        height: 450px;
    }
    
    .approach-grid,
    .programs-grid,
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 50%; /* 8px = 1rem */
    }
    
    .section {
        padding: 70px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .image-stack {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .philosophy-image {
        order: -1;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .approach-grid,
    .programs-grid,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .stats-section .about-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .approach-grid,
    .programs-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 3rem;
    }
    
    .testimonial-card {
        padding: 3rem 2rem;
    }
    
    .hero-badge {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .image-stack {
        height: 350px;
    }
    
    .back-to-top {
        right: 2rem;
        bottom: 2rem;
        width: 4.5rem;
        height: 4.5rem;
    }
}

/* --- Our Programs Section Button Override --- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, #e4a11b 0%, #f4c430 100%);
    color: #fff !important;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 24px rgba(228, 161, 27, 0.18);
    letter-spacing: 0.5px;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    gap: 0.5rem;
}

.btn-premium:hover, .btn-premium:focus {
    background: linear-gradient(135deg, #f4c430 0%, #e4a11b 100%);
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(228, 161, 27, 0.22);
    text-decoration: none;
}

.btn-premium i {
    margin-left: 10px;
    font-size: 1.2em;
    transition: transform 0.3s;
}

.btn-premium:hover i {
    transform: translateX(5px);
}

@media (max-width: 575px) {
    .btn-premium {
        padding: 12px 18px;
        font-size: 1rem;
    }
}

