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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Fluid media defaults */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
iframe {
    max-width: 100%;
    border: 0;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

/* Banner Section */
.banner-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    overflow: hidden;
    padding: 40px 0;
    background-attachment: fixed;
}


.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 100%),
        radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Banner Info */
.banner-info {
    color: white;
}

.banner-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.badge i {
    color: #ffd700;
}

.banner-heading {
    margin-bottom: 15px;
}

.banner-heading .line-1 {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.banner-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.feature-item i {
    color: #4ade80;
    font-size: 1.2rem;
    width: 20px;
}

.banner-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.banner-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

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

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Banner Visual */
.banner-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Banner inline form styles (Ojaank page) */
.banner-form-container {
    background: rgba(255,255,255,0.96);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(102,126,234,0.2);
}
.banner-form-title {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 4px;
}
.banner-form-subtitle { color: #64748b; font-size: 0.95rem; margin-bottom: 16px; }
.banner-contact-form { display: flex; flex-direction: column; gap: 14px; }
.banner-form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.banner-form-group input:focus { outline: none; border-color: #667eea; box-shadow: 0 0 0 4px rgba(102,126,234,0.15); transform: translateY(-1px); }
.banner-submit-btn {
    background: #0a1f87;
    color: #fff;
    border: none;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.banner-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,31,135,0.35); }

.banner-form-meta { display:none; flex-direction: column; gap:8px; margin-top: 12px; }
.banner-form-meta .meta-item { display:flex; align-items:center; gap:8px; color:#475569; font-size: 0.95rem;  }
.banner-form-meta i { color:#0a1f87; }

@media (max-width: 768px) {
    .banner-form-container { max-width: 100%; }
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 350px;
}

.main-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.director-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.director-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 25px;
    transition: transform 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.director-image:hover img {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.15);
}

.floating-card i {
    color: #ffd700;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0.8s;
}

.card-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 1.2s;
}

.card-3 {
    top: 60%;
    right: -5%;
    animation-delay: 1.6s;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-section {
        min-height: 100vh;
        padding: 30px 0;
        /* Avoid mobile Safari issues with fixed backgrounds */
        background-attachment: scroll;
    }
    
    .banner-content {
        gap: 30px;
    }
    
    .banner-heading .line-1 {
        font-size: 2.2rem;
    }
    
    .banner-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .visual-container {
        max-width: 400px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        min-height: 100vh;
        padding: 30px 0;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo {
        height: 40px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-heading {
        font-size: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metric-card-about {
        padding: 30px 15px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .banner-heading .line-1 {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .banner-cta {
        justify-content: center;
    }
    
    .cta-primary, .cta-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .visual-container {
        max-width: 350px;
        height: 280px;
    }
    
    .floating-card {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .card-1 {
        right: -5%;
    }
    
    .card-2 {
        left: -10%;
    }
    
    .card-3 {
        right: 0%;
    }
}

@media (max-width: 480px) {
    .banner-section {
        min-height: 100vh;
        padding: 20px 0;
        background-attachment: scroll;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .logo {
        height: 35px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-heading {
        font-size: 1.3rem;
    }
    
    .about-paragraph {
        font-size: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metric-card-about {
        padding: 25px 15px;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .banner-badges {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .banner-heading {
        margin-bottom: 10px;
    }
    
    .banner-heading .line-1 {
        font-size: 1.25rem;
        line-height: 1.25;
    }
    
    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .banner-features {
        margin-bottom: 20px;
    }
    
    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .banner-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 18px;
        margin-bottom: 16px;
        justify-content: center;
    }
    .banner-stats .stat-item { min-width: 120px; }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .banner-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .visual-container {
        max-width: 280px;
        height: 220px;
    }
    
    .visual-placeholder i {
        font-size: 2.5rem;
    }
    
    .visual-placeholder span {
        font-size: 0.9rem;
    }
    
    .floating-card {
        display: none;
    }
}

/* Inline CTA (inserted after each section) */
.inline-cta-wrapper {
    margin: 40px 0 0;
}
.inline-cta-header {
    text-align: center;
    font-weight: 800;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.inline-cta {
    display: flex;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(102,126,234,0.25), 0 0 0 1px rgba(255,255,255,0.06) inset;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
}
.inline-cta input[type="text"],
.inline-cta input[type="tel"],
.inline-cta input[type="email"] {
    min-width: 0;
    flex: 1 1 0;
    padding: 12px 14px;
    border: 0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.inline-cta input:focus { outline: none; box-shadow: 0 0 0 4px rgba(102,126,234,0.35); transform: translateY(-1px); }
.inline-cta .cta-button {
    flex: 0 0 auto;
    align-self: center;
    border: 0;
    border-radius: 9999px;
    padding: 12px 26px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 10px 25px rgba(102,126,234,0.35);
}
.inline-cta .cta-button:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(118,75,162,0.35); }
.inline-cta .cta-button:active { transform: translateY(0); }

@media (max-width: 480px) {
    .inline-cta-header { font-size: 1.1rem; }
    .inline-cta { gap: 10px; padding: 12px; display: flex; flex-direction: column;}
    .inline-cta input { min-width: 0; }
}


/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Earlier collapse of About grid for tablets */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-text {
    color: #334155;
}

.about-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-paragraphs {
    margin-bottom: 40px;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #64748b;
}

.about-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-director {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 2px solid rgba(102,126,234,0.2);
}
.about-director img { width: 100%; height: auto; display: block; }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.metric-card-about {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.metric-card-about:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    display: block;
}

.metric-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 50px;
}

.testimonials-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - 20px);
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 0 50px;
}

.testimonial-slide {
    background: transparent;
    height: 400px; /* Fixed height for all slides */
    display: flex;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.15);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0; /* Prevent header from shrinking */
    min-height: 140px; /* Fixed header height */
}

.testimonial-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.profile-section {
    position: relative;
    flex-shrink: 0;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.topper-badge {
    position: absolute;
    bottom: -5px;
    left: -5px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    border: 2px solid #ffd700;
    min-width: 140px;
}

/* Hide topper badge in testimonials only */
.testimonials-section .topper-badge { display: none; }

.badge-content {
    text-align: center;
}

.badge-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.badge-details {
    color: #ffd700;
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1.2;
}

.badge-details .rank {
    font-weight: 700;
    font-size: 0.65rem;
}

.badge-details .name {
    font-size: 0.55rem;
    margin: 1px 0;
}

.badge-details .year {
    font-size: 0.55rem;
}

.testimonial-info {
    flex: 1;
}

.student-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    background: #ffffff;
    padding: 30px 25px;
    position: relative;
    flex: 1; /* Take remaining space */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.quote-mark {
    font-size: 4rem;
    color: #667eea;
    font-weight: 700;
    position: absolute;
    top: 15px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin: 0;
    padding-left: 20px;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Limit to 6 lines */
    line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: calc(1.7em * 6); /* 6 lines * line-height */
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 1.1rem;
}

.testimonials-nav:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.3);
}

.testimonials-nav.prev {
    left: 0;
}

.testimonials-nav.next {
    right: 0;
}

/* IAS Selections Section */
.selections-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.selections-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 50px 0 40px;
    background: #ffffff;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.15);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    text-align: center;
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
    display: block;
}

.selections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.selection-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.selection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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


.card-info {
    flex: 1;
}

.rank {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}

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

/* Videos Carousel */
.videos-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 6px;
}

.videos-carousel-wrapper {
    position: relative;
}

.videos-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 18px);
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.video-slide {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.video-slide iframe {
    width: 100%;
    height: 200px;
    display: block;
}

.videos-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.videos-nav.prev { left: -10px; }
.videos-nav.next { right: -10px; }

@media (max-width: 1024px) {
    .testimonials-carousel { 
        grid-auto-columns: calc(50% - 15px);
        gap: 25px;
        padding: 0 40px;
    }
    .testimonial-slide {
        height: 380px; /* Slightly smaller for tablets */
    }
    
    .selections-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .selections-tabs {
        max-width: 450px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .videos-carousel { grid-auto-columns: calc(33.333% - 16px); }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-carousel { 
        grid-auto-columns: calc(100% - 20px);
        gap: 20px;
        padding: 0 30px;
    }
    
    .testimonial-slide {
        height: 350px; /* Smaller for mobile */
    }
    
    .testimonial-header {
        padding: 20px;
        gap: 15px;
        min-height: 120px; /* Smaller header for mobile */
    }
    
    .profile-image {
        width: 70px;
        height: 70px;
    }
    
    .student-name {
        font-size: 1.1rem;
    }
    
    .testimonial-content {
        padding: 25px 20px;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: 10px;
        left: 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        padding-left: 15px;
        -webkit-line-clamp: 5; /* Fewer lines on mobile */
        line-clamp: 5;
        max-height: calc(1.7em * 5);
    }
    
    .testimonials-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .selections-section {
        padding: 60px 0;
    }
    
    .selections-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }
    
    .selections-tabs {
        max-width: 400px;
        margin: 40px auto 30px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .selection-card {
        padding: 15px;
    }
    
    .card-image {
        width: 70px;
        height: 70px;
    }
    
    .rank {
        font-size: 1.1rem;
    }
    
    .name {
        font-size: 0.9rem;
    }
    
    .videos-carousel { grid-auto-columns: calc(50% - 12px); }
    .video-slide iframe { height: 180px; }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-carousel { 
        padding: 0 20px;
        gap: 15px;
    }
    
    .testimonial-slide {
        height: 320px; /* Even smaller for small mobile */
    }
    
    .testimonial-header {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
        min-height: 110px; /* Smaller header for small mobile */
    }
    
    .profile-image {
        width: 60px;
        height: 60px;
    }
    
    .topper-badge {
        min-width: 120px;
        padding: 6px;
    }
    
    .badge-title {
        font-size: 0.6rem;
    }
    
    .badge-details {
        font-size: 0.5rem;
    }
    
    .student-name {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .rating i {
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 20px 15px;
    }
    
    .quote-mark {
        font-size: 2.5rem;
        top: 8px;
        left: 12px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 10px;
        line-height: 1.6;
        -webkit-line-clamp: 4; /* Even fewer lines on small mobile */
        line-clamp: 4;
        max-height: calc(1.6em * 4);
    }
    
    .testimonials-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .selections-section {
        padding: 50px 0;
    }
    
    .selections-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .selections-tabs {
        max-width: 350px;
        margin: 30px auto 25px;
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .tab-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        flex: 1;
        min-width: 70px;
    }
    
    .selection-card {
        padding: 12px;
    }
    
    .card-image {
        width: 60px;
        height: 60px;
    }
    
    .rank {
        font-size: 1rem;
    }
    
    .name {
        font-size: 0.85rem;
    }
    
    .videos-carousel { grid-auto-columns: 100%; }
    .video-slide iframe { height: 200px; }
}

/* Contact Button */
.contact-btn-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.contact-btn i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 1.1rem;
}

.modal-body {
    padding: 30px 25px;
}

.modal-body .callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-body .form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #1f2937;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-body .form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.modal-body .form-group input::placeholder {
    color: #6b7280;
}

.modal-body .submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.modal-body .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Contact Button & Modal */
@media (max-width: 768px) {
    .contact-btn-container {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contact-btn span {
        display: none;
    }
    
    .contact-btn i {
        font-size: 1.3rem;
    }
    
    .contact-modal {
        padding: 15px;
    }
    
    .modal-content {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 18px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-body .callback-form {
        gap: 18px;
    }
    
    .modal-body .form-group input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .modal-body .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-btn-container {
        bottom: 15px;
        right: 15px;
    }
    
    .contact-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .contact-modal {
        padding: 10px;
    }
    
    .modal-content {
        border-radius: 10px;
    }
    
    .modal-header {
        padding: 15px 18px;
        border-radius: 10px 10px 0 0;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-close {
        width: 30px;
        height: 30px;
    }
    
    .modal-body {
        padding: 20px 18px;
    }
    
    .modal-body .callback-form {
        gap: 15px;
    }
    
    .modal-body .form-group input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .modal-body .submit-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

/* Footer Section */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #667eea;
}

/* Customer Support Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phone-numbers {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    display: none;
}

.phone-numbers i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 5px;
}

.phone-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-links a:hover {
    color: #667eea;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn i {
    color: #667eea;
    font-size: 1.1rem;
}

.social-btn:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.social-btn:hover i {
    color: #ffffff;
}

/* Form Section */
.form-section {
    align-items: center;
}

.form-container {
    background: #0A145F;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    background: #ffffff;
    color: #1f2937;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
    color: #6b7280;
}

.submit-btn {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Address Section */
.address-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-link, .email-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.address-link:hover, .email-link:hover {
    color: #667eea;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-link i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.copyright p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .form-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .phone-numbers {
        justify-content: center;
    }
    
    .social-media {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .phone-numbers {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .phone-numbers i {
        margin-top: 0;
    }
    
    .social-media {
        gap: 12px;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .callback-form {
        gap: 15px;
    }
    
    .form-group input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .address-link, .email-link {
        font-size: 0.9rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}

/* Choose Section */
.choose-section {
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
    padding: 90px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.choose-card {
    background: #ffffff;
    justify-items: center !important;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(102,126,234,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.choose-card:hover .choose-title { color: #0f172a; }
.choose-card:hover .choose-text { color: #334155; }

.choose-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.choose-text {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.7;
}

.choose-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 10px 20px rgba(102,126,234,0.35);
}

.choose-card:hover .choose-icon {
    transform: scale(1.05);
}

/* Start Now Section */
.start-now-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 90px 0;
}

.start-list {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    list-style: none;
}

.start-list li {
    background: #ffffff;
    border: 1px solid rgba(118,75,162,0.15);
    border-radius: 16px;
    padding: 22px 22px 22px 64px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.start-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-list li:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }

.start-list li strong {
    color: #0f172a;
}

.start-list li span,
.start-list li { /* ensure good paragraph color */
    color: #475569;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .choose-section, .start-now-section {
        padding: 60px 0;
    }
    .choose-grid {
        grid-template-columns: 1fr;
    }
    .start-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .choose-card { padding: 18px; }
    .start-list li { padding-left: 52px; }
}

/* Hover Effects */
.banner-section:hover .floating-card {
    animation-play-state: paused;
}

.banner-section:hover .floating-card:hover {
    animation-play-state: running;
    transform: scale(1.1);
}

/* Loading Animation */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 4;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

   .inline-cta-header {
    --pulse-duration: 1.5s;
    --pulse-scale: 1.08;
  
    /* display: inline-block; */
    transform-origin: center;
    animation: pulse-grow var(--pulse-duration) ease-in-out infinite;
    will-change: transform;
  }
  
  @keyframes pulse-grow {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(var(--pulse-scale));
    }
  }
  
  /* optional: add slight opacity pulse too */
  .inline-cta-header.pulse-fade {
    animation: pulse-grow-fade var(--pulse-duration) ease-in-out infinite;
  }
  
  @keyframes pulse-grow-fade {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(var(--pulse-scale));
      opacity: 0.8;
    }
  }
  
  /* accessibility: stop pulsing if user prefers reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .inline-cta-header {
      animation: none;
      transform: none;
    }
  }
  
  
  
  /* Container Styling */
.start-now-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/*.section-title {*/
/*    font-size: 2.5rem;*/
/*    color: #2c3e50;*/
/*    margin-bottom: 15px;*/
/*    font-weight: 700;*/
/*}*/

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 2px;
    animation: expandLine 1s ease-in-out;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* List Styling */
.start-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
    gap: 30px;
    counter-reset: item;
}

.start-list li {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    counter-increment: item;
}

/* Numbered Circle Badge */
.start-list li::before {
    content: counter(item);
    position: absolute;
    left: 30px;
    top: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Background Gradient Effect */
.start-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

/* Content Positioning */
.start-list li strong,
.start-list li::first-line {
    position: relative;
    z-index: 1;
    padding-left: 60px;
}

.start-list li {
    padding-left: 30px;
}

.start-list li strong {
    display: block;
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Hover Effects */
.start-list li:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.start-list li:hover::before {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.start-list li:hover::after {
    left: 0;
}

.start-list li:hover strong {
    color: #667eea;
}

/* Staggered Animation on Load */
.start-list li {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.start-list li:nth-child(1) { animation-delay: 0.1s; }
.start-list li:nth-child(2) { animation-delay: 0.2s; }
.start-list li:nth-child(3) { animation-delay: 0.3s; }
.start-list li:nth-child(4) { animation-delay: 0.4s; }
.start-list li:nth-child(5) { animation-delay: 0.5s; }
.start-list li:nth-child(6) { animation-delay: 0.6s; }
.start-list li:nth-child(7) { animation-delay: 0.7s; }
.start-list li:nth-child(8) { animation-delay: 0.8s; }
.start-list li:nth-child(9) { animation-delay: 0.9s; }
.start-list li:nth-child(10) { animation-delay: 1s; }
.start-list li:nth-child(11) { animation-delay: 1.1s; }
.start-list li:nth-child(12) { animation-delay: 1.2s; }

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

/* Responsive Design */
@media (max-width: 768px) {
    .start-list {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .start-list li {
        padding: 25px;
    }
}

/* Active/Focus State */
.start-list li:active {
    transform: translateY(-8px) scale(1.01);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}