/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}
a{

    text-decoration: none;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.min-h-screen {
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.holi-gradient-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ec4899, #a855f7, #fbbf24, #22c55e, #3b82f6);
}

.holi-decoration {
    position: absolute;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
    pointer-events: none;
}

.gulal-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.6;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.gulal-particle.pink { background-color: #f9a8d4; }
.gulal-particle.yellow { background-color: #fde047; }
.gulal-particle.purple { background-color: #c084fc; }
.gulal-particle.green { background-color: #86efac; }
.gulal-particle.blue { background-color: #93c5fd; }
.gulal-particle.red { background-color: #fca5a5; }

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1e3a5f;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4b5563;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0.75rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: #1e3a5f;
    background: #f3f4f6;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: #fbbf24;
    color: #1e3a5f;
}

.btn-primary:hover {
    background: #f59e0b;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: white;
    color: #7c3aed;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-program {
    width: 100%;
    background: #1e3a5f;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-program:hover {
    background: #fbbf24;
    color: #1e3a5f;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 64px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(30, 58, 95, 0.95), rgba(30, 58, 95, 0.9), rgba(0, 0, 0, 0.85));
}

.color-splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.color-splash.pink {
    width: 128px;
    height: 128px;
    background: rgba(236, 72, 153, 0.2);
}

.color-splash.yellow {
    width: 160px;
    height: 160px;
    background: rgba(251, 191, 36, 0.2);
    animation-delay: 0.3s;
}

.color-splash.green {
    width: 144px;
    height: 144px;
    background: rgba(34, 197, 94, 0.2);
    animation-delay: 0.5s;
}

.color-splash.purple {
    width: 128px;
    height: 128px;
    background: rgba(168, 85, 247, 0.2);
    animation-delay: 0.7s;
}

.color-splash.orange {
    width: 192px;
    height: 192px;
    background: rgba(251, 146, 60, 0.2);
    animation-delay: 1s;
}

.color-splash.blue {
    width: 160px;
    height: 160px;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 0.2s;
}

.holi-element {
    position: absolute;
    animation: bounce 2s infinite;
    pointer-events: none;
    opacity: 0.6;
}

.holi-element.rotate {
    transform: rotate(12deg);
}

.floating-particle {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    opacity: 0.7;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.floating-particle.pink { background-color: #f9a8d4; }
.floating-particle.yellow { background-color: #fde047; animation-delay: 0.2s; }
.floating-particle.purple { background-color: #c084fc; animation-delay: 0.4s; }
.floating-particle.green { background-color: #86efac; animation-delay: 0.6s; }
.floating-particle.blue { background-color: #93c5fd; animation-delay: 0.8s; }
.floating-particle.orange { background-color: #fdba74; animation-delay: 1s; }
.floating-particle.red { background-color: #fca5a5; animation-delay: 0.3s; }
.floating-particle.pink-light { background-color: #fbcfe8; animation-delay: 0.5s; }

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 1rem;
}

.hero-text {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 768px;
    margin: 0 auto 2rem;
}

.usp-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.usp-badge i {
    color: #fbbf24;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.usp-badge span {
    color: white;
    font-size: 0.875rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
  .hero-ctas .contact-btn.whatsapp button{
            background: #25D366;
    color: white;
    border-color: #25D366;

       
    }
    

.trust-element {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 0.875rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1024px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #d1d5db;
}

/* Holi Offer Section */
#holi-offer {
    position: relative;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom right, #ec4899, #a855f7, #f97316);
    overflow: hidden;
}

.offer-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bounce-ball {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.bounce-ball.pink { background-color: #fde047; }
.bounce-ball.green { background-color: #86efac; }
.bounce-ball.blue { background-color: #93c5fd; }
.bounce-ball.red { background-color: #fca5a5; }

.color-splash-offer {
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    filter: blur(80px);
}

.color-splash-offer.yellow {
    top: 0;
    right: 0;
    background: rgba(251, 191, 36, 0.3);
}

.color-splash-offer.pink {
    bottom: 0;
    left: 0;
    background: rgba(236, 72, 153, 0.3);
}

.offer-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.offer-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.offer-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 1rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.offer-discount i {
    font-size: 2rem;
    color: #ec4899;
}

.offer-discount span {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(to right, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.countdown-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 672px;
    margin: 0 auto;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.countdown-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.offer-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.promo-code {
    color: white;
    font-size: 0.875rem;
}

.promo-code span {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.offer-terms {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Us Section */
#why-us {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-text-bold {
    color: #1f2937;
    font-size: 1.125rem;
    line-height: 1.7;
}

.why-text-bold strong {
    font-weight: 700;
}

.why-text-normal {
    color: #1f2937;
    font-size: 1.125rem;
    line-height: 1.7;
}

.why-text-conclusion {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-top: 1rem;
}

.why-video-wrapper {
    position: relative;
}
.why-video-wrapper  iframe{

    width: 100%;
    height: 100%;
}
.video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(to bottom right, rgba(30, 58, 95, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 20px solid #1e3a5f;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.decorative-circle {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    filter: blur(48px);
}

.decorative-circle-1 {
    bottom: -16px;
    right: -16px;
    background: rgba(30, 58, 95, 0.1);
}

.decorative-circle-2 {
    top: -16px;
    left: -16px;
    background: rgba(251, 191, 36, 0.1);
}

/* Programs Section */
#programs {
    padding: 5rem 1rem;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.program-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.2);
    transform: translateY(-4px);
}

.program-gradient-bar {
    height: 8px;
}

.gradient-1 { background: linear-gradient(to right, #1e3a5f, #2d5a8f); }
.gradient-2 { background: linear-gradient(to right, #fbbf24, #f59e0b); }
.gradient-3 { background: linear-gradient(to right, #1e3a5f, #fbbf24); }
.gradient-4 { background: linear-gradient(to right, #2d5a8f, #1e3a5f); }
.gradient-5 { background: linear-gradient(to right, #f59e0b, #fbbf24); }

.program-content {
    padding: 1.5rem;
}

.program-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.program-card:hover .program-title {
    color: #1e3a5f;
}

.program-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.benefit-item i {
    color: #16a34a;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.program-fee-section {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.fee-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.fee-amount {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
}

.fee-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Journey Section */
#journey {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #f9fafb, #fef3c7);
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.journey-step {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    transition: box-shadow 0.3s;
}

.journey-step:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-badge {
    position: absolute;
    top: -24px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, #1e3a5f, #2d5a8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 2rem;
    color: #1e3a5f;
}

.step-header-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-header-text p {
    color: #6b7280;
    line-height: 1.6;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #4b5563;
}

.bullet {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.step-closing {
    color: #1e3a5f;
    font-weight: 600;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.journey-summary {
    background: linear-gradient(to bottom right, #1e3a5f, #2d5a8f);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
}

.journey-summary h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.summary-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto 2rem;
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.summary-item i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.summary-conclusion {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #f9fafb, #dbeafe);
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonial-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    margin: 0 1rem;
    transition: all 0.3s;
    position: relative;
    min-height: 400px;
    display: flex !important;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.2);
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: 0.1;
}

.quote-icon i {
    font-size: 4rem;
    color: #1e3a5f;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
}

.author-program {
    font-size: 0.75rem;
    color: #9ca3af;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-cta p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Slick Slider Customization */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fbbf24;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fbbf24;
}

.slick-prev,
.slick-next {
    width: 48px;
    height: 48px;
    background: #fbbf24;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
    background: #f59e0b;
}

.slick-prev {
    left: -16px;
}

.slick-next {
    right: -16px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 24px;
    color: white;
}

/* CTA Form Section */
#cta-form {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #1e3a5f, #2d5a8f);
    overflow: hidden;
}

.decorative-bg {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(48px);
}

.decorative-bg-1 {
    top: 0;
    right: 0;
    background: rgba(251, 191, 36, 0.1);
}

.decorative-bg-2 {
    bottom: 0;
    left: 0;
    background: rgba(251, 191, 36, 0.1);
}

.cta-form-container {
    position: relative;
    z-index: 10;
    max-width: 1024px;
}

.cta-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cta-form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-form-header p {
    font-size: 1.125rem;
    color: #e5e7eb;
}

.cta-form {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.input-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1rem;
}

/* Footer */
#footer {
    background: #111827;
    padding: 3rem 1rem 1.5rem;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-contact-item i {
    color: #fbbf24;
    width: 16px;
    flex-shrink: 0;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.social-heading {
    margin-top: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #1f2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #fbbf24;
    color: #1e3a5f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 512px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #4b5563;
}

.popup-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
}

.popup-icon {
    width: 64px;
    height: 64px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.popup-icon i {
    font-size: 2rem;
    color: #1e3a5f;
}

.popup-header h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: #6b7280;
}

#consultationForm,
#popupForm form {
    padding: 0 2rem 2rem;
}

#popupSuccess {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 3rem;
    color: #16a34a;
}

#popupSuccess h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.success-message {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-info {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.success-info p {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 0.875rem;
    margin: 0;
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-150 { animation-delay: 0.15s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-details {
        grid-template-columns: 1fr;
    }
    
    .summary-items {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        padding: 0 1rem;
    }
    
    .slick-prev {
        left: -12px;
    }
    
    .slick-next {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
    }

  
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .offer-title {
        font-size: 1.875rem;
    }
    
    .offer-subtitle {
        font-size: 1.125rem;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .holi-element,
    .holi-decoration {
        display: none;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .step-points {
        grid-template-columns: 1fr;
    }
    
    .summary-items {
        grid-template-columns: 1fr;
    }
    
    .slick-prev,
    .slick-next {
        display: none !important;
    }
    
    .cta-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 640px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .usp-badge span {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-value {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .offer-title {
        font-size: 3.75rem;
    }
    
    .offer-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .stats-grid {
        gap: 1rem;
    }
}
