/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #094b65;
    --secondary: #38b6ff;
    --dark: #1a1a1a;
    --light: #ffffff;
    --success: #25D366;
    --accent: #ff6b6b;
    --sketch-color: #094b65;
    --carousel-ang: 0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    overflow-x: hidden;
    background: #fff;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Sketch Style Base */
.sketch-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px dashed var(--sketch-color);
    position: relative;
    overflow: hidden;
}

.sketch-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--sketch-color);
    border-radius: 15px;
    opacity: 0.1;
    pointer-events: none;
}

.sketch-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(9, 75, 101, 0.05) 20px, rgba(9, 75, 101, 0.05) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(9, 75, 101, 0.05) 20px, rgba(9, 75, 101, 0.05) 21px);
    pointer-events: none;
    opacity: 0.3;
}

/* Content Section Base */
.content-section {
    position: relative;
    padding: 80px 20px;
    z-index: 5;
    background: white;
}

/* ================ UPDATED HEADING RESPONSIVENESS ================ */
/* Section Titles - MADE RESPONSIVE */
.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--secondary);
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    color: var(--primary);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
/* ================ END UPDATED HEADINGS ================ */

/* Responsive CTA Buttons */
.btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 36px);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: min(160px, 100%);
    max-width: 100%;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56, 182, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(9, 75, 101, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ================ HERO SECTION (EXACTLY LIKE IELTS PAGE) ================ */
.ielts-hero {
    padding: 150px 50px 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #0a5c7a 100%);
    color: white;
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

/* FIX: Add padding top to account for fixed navbar */
.ielts-hero {
    padding-top: 120px !important;
}

.ielts-hero.sketch-section::before {
    border-color: rgba(255, 255, 255, 0.2);
}

.ielts-hero.sketch-section::after {
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 21px);
}

.ielts-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ielts-hero-content {
    flex: 1;
    max-width: 600px;
    order: 2;
}

.ielts-hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.ielts-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: 'Rancho', cursive;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
    font-weight: 300;
}

.hero-description strong {
    color: var(--secondary);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    flex-wrap: wrap;
}

.btn-hero {
    padding: clamp(14px, 2.5vw, 18px) clamp(25px, 4vw, 40px) !important;
    font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
    min-width: min(200px, 100%) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hero.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.btn-hero.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.ielts-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.5s ease;
}

.ielts-hero-image img:hover {
    transform: scale(1.03);
}

/* Overview Section */
.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.overview-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 2px dashed var(--sketch-color);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.overview-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
}

/* Methodology Section */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.methodology-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #eaeaea;
    transition: var(--transition);
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.methodology-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #eee;
}

.methodology-header i {
    font-size: 2rem;
    color: var(--secondary);
}

.methodology-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.methodology-list {
    list-style: none;
}

.methodology-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.methodology-list li:last-child {
    border-bottom: none;
}

.methodology-list i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.assignment-section {
    margin-top: 60px;
}

.assignment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.assignment-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px dashed var(--sketch-color);
    transition: var(--transition);
}

.assignment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.assignment-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.assignment-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* Environment Section */
.environment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.environment-left,
.environment-right {
    flex: 1;
    width: 100%;
}

.environment-center {
    flex: 1.5;
    width: 100%;
    max-width: 600px;
}

.environment-center img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.environment-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.environment-card:hover {
    transform: translateX(5px);
    border-color: var(--secondary);
}

.environment-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.environment-card h3 i {
    color: var(--secondary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px dashed #ddd;
}

.result-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.result-item p {
    margin: 0;
    font-weight: 500;
}

/* ================ EXACT 3D CAROUSEL STYLES FROM CODE 1 ================ */
.carousel-3d-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.carousel-holder {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    perspective-origin: center;
    margin-bottom: 30px;
    background: transparent;
}

.carousel-spinner {
    transform-style: preserve-3d;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(calc(var(--carousel-ang) * 1deg));
    transition: transform 0.7s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-panel {
    border-radius: 8px;
    width: 200px;
    height: 300px;
    position: absolute;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #eee;
    overflow: hidden;
}

/* CTA Button on each card */
.carousel-cta-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(9, 75, 101, 0.9);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.carousel-cta-btn:hover {
    background: rgba(56, 182, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.carousel-cta-btn:active {
    transform: scale(0.95);
}

/* Only 6 panels with increased translateZ for larger cards */
.carousel-panel:nth-child(1) { transform: rotateY(0deg) translateZ(380px); }
.carousel-panel:nth-child(2) { transform: rotateY(60deg) translateZ(380px); }
.carousel-panel:nth-child(3) { transform: rotateY(120deg) translateZ(380px); }
.carousel-panel:nth-child(4) { transform: rotateY(180deg) translateZ(380px); }
.carousel-panel:nth-child(5) { transform: rotateY(240deg) translateZ(380px); }
.carousel-panel:nth-child(6) { transform: rotateY(300deg) translateZ(380px); }

/* Image backgrounds */
.carousel-panel.student-card-1 { 
    background-image: url(../images/results/ukstudent1.webp); 
}
.carousel-panel.student-card-2 { 
    background-image: url(../images/results/ukstudent2.webp); 
}
.carousel-panel.student-card-3 { 
    background-image: url(../images/results/ukstudent3.webp); 
}
.carousel-panel.student-card-4 { 
    background-image: url(../images/results/ukstudent4.webp); 
}
.carousel-panel.student-card-5 { 
    background-image: url(../images/results/ukstudent5.webp); 
}
.carousel-panel.student-card-6 { 
    background-image: url(../images/results/ukstudent6.webp); 
}

/* Fallback background colors if images don't load */
.carousel-panel.student-card-1 { background-color: rgba(9, 75, 101, 0.1); }
.carousel-panel.student-card-2 { background-color: rgba(56, 182, 255, 0.1); }
.carousel-panel.student-card-3 { background-color: rgba(9, 75, 101, 0.1); }
.carousel-panel.student-card-4 { background-color: rgba(56, 182, 255, 0.1); }
.carousel-panel.student-card-5 { background-color: rgba(9, 75, 101, 0.1); }
.carousel-panel.student-card-6 { background-color: rgba(56, 182, 255, 0.1); }

/* Fade effect */
.carousel-fade {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.7) 30%, 
        rgba(255,255,255,0.7) 70%, 
        rgba(255,255,255,0) 100%);
    width: 100%;
    max-width: 850px;
    height: 320px;
    position: absolute;
    transform: rotateY(calc(var(--carousel-ang) * -1deg)) translateZ(180px);
    transition: transform 0.7s ease-in-out;
    pointer-events: none;
    border-radius: 10px;
}

/* Carousel Navigation */
.carousel-pagination {
    width: 100%;
    max-width: 800px;
    height: 60px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.carousel-prev,
.carousel-next {
    padding: 0;
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    color: #333;
    background: #f0f0f0;
    font-size: 28px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #e0e0e0;
    transform: scale(1.08);
}

.carousel-prev:active,
.carousel-next:active {
    background: #d0d0d0;
    transform: scale(0.95);
}

/* Feedback Modal */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.feedback-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: min(600px, 90vw);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.modal-body h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.modal-student-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #eee;
}

.modal-band-score {
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.modal-feedback {
    color: #555;
    line-height: 1.8;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Responsive adjustments for carousel */
@media (max-width: 1024px) {
    .carousel-holder {
        max-width: 700px;
        height: 300px;
    }
    
    .carousel-panel {
        width: 180px;
        height: 270px;
    }
    
    .carousel-panel:nth-child(1) { transform: rotateY(0deg) translateZ(320px); }
    .carousel-panel:nth-child(2) { transform: rotateY(60deg) translateZ(320px); }
    .carousel-panel:nth-child(3) { transform: rotateY(120deg) translateZ(320px); }
    .carousel-panel:nth-child(4) { transform: rotateY(180deg) translateZ(320px); }
    .carousel-panel:nth-child(5) { transform: rotateY(240deg) translateZ(320px); }
    .carousel-panel:nth-child(6) { transform: rotateY(300deg) translateZ(320px); }
    
    .carousel-cta-btn {
        bottom: 12px;
        right: 12px;
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .carousel-fade {
        max-width: 750px;
        height: 280px;
    }
    
    .carousel-pagination {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .carousel-holder {
        max-width: 600px;
        height: 280px;
    }
    
    .carousel-panel {
        width: 160px;
        height: 240px;
    }
    
    .carousel-panel:nth-child(1) { transform: rotateY(0deg) translateZ(280px); }
    .carousel-panel:nth-child(2) { transform: rotateY(60deg) translateZ(280px); }
    .carousel-panel:nth-child(3) { transform: rotateY(120deg) translateZ(280px); }
    .carousel-panel:nth-child(4) { transform: rotateY(180deg) translateZ(280px); }
    .carousel-panel:nth-child(5) { transform: rotateY(240deg) translateZ(280px); }
    .carousel-panel:nth-child(6) { transform: rotateY(300deg) translateZ(280px); }
    
    .carousel-cta-btn {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .carousel-fade {
        max-width: 650px;
        height: 260px;
    }
    
    .carousel-pagination {
        max-width: 600px;
        gap: 25px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .carousel-holder {
        max-width: 400px;
        height: 220px;
    }
    
    .carousel-panel {
        width: 120px;
        height: 180px;
    }
    
    .carousel-panel:nth-child(1) { transform: rotateY(0deg) translateZ(200px); }
    .carousel-panel:nth-child(2) { transform: rotateY(60deg) translateZ(200px); }
    .carousel-panel:nth-child(3) { transform: rotateY(120deg) translateZ(200px); }
    .carousel-panel:nth-child(4) { transform: rotateY(180deg) translateZ(200px); }
    .carousel-panel:nth-child(5) { transform: rotateY(240deg) translateZ(200px); }
    .carousel-panel:nth-child(6) { transform: rotateY(300deg) translateZ(200px); }
    
    .carousel-cta-btn {
        bottom: 8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 9px;
        border-radius: 15px;
    }
    
    .carousel-fade {
        max-width: 450px;
        height: 200px;
    }
    
    .carousel-pagination {
        max-width: 400px;
        gap: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 360px) {
    .carousel-holder {
        max-width: 340px;
        height: 200px;
    }
    
    .carousel-panel {
        width: 100px;
        height: 150px;
    }
    
    .carousel-panel:nth-child(1) { transform: rotateY(0deg) translateZ(170px); }
    .carousel-panel:nth-child(2) { transform: rotateY(60deg) translateZ(170px); }
    .carousel-panel:nth-child(3) { transform: rotateY(120deg) translateZ(170px); }
    .carousel-panel:nth-child(4) { transform: rotateY(180deg) translateZ(170px); }
    .carousel-panel:nth-child(5) { transform: rotateY(240deg) translateZ(170px); }
    .carousel-panel:nth-child(6) { transform: rotateY(300deg) translateZ(170px); }
    
    .carousel-cta-btn {
        bottom: 6px;
        right: 6px;
        padding: 4px 8px;
        font-size: 8px;
        border-radius: 12px;
    }
    
    .carousel-fade {
        max-width: 380px;
        height: 180px;
    }
    
    .carousel-pagination {
        max-width: 340px;
    }
}

/* Strategies Section */
.strategies-accordion {
    margin-top: 40px;
}

.strategy-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: var(--transition);
}

.strategy-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.strategy-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.strategy-header:hover {
    background: rgba(56, 182, 255, 0.05);
    border-left-color: var(--secondary);
}

.strategy-header.active {
    background: rgba(56, 182, 255, 0.08);
    border-left-color: var(--secondary);
}

.strategy-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.strategy-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    width: 40px;
}

.strategy-header h3 {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

.strategy-arrow {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.strategy-item.active .strategy-arrow {
    transform: rotate(180deg);
}

.strategy-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.strategy-item.active .strategy-content {
    padding: 0 20px 20px 20px;
    max-height: 1000px;
}

.strategy-content ul {
    list-style: none;
    margin: 0;
}

.strategy-content li {
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
    color: #555;
    line-height: 1.6;
}

.strategy-content li:last-child {
    border-bottom: none;
}

.templates-section {
    margin-top: 60px;
}

.template-note {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.template-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px dashed #ddd;
    transition: var(--transition);
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.template-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.template-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* Pricing Cards Styles */
.pricing-section {
    padding: 80px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.badge-text {
    position: relative;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px dashed #eee;
}

.pricing-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.original-price {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #999;
    text-decoration: line-through;
    font-family: 'Inter', sans-serif;
}

.current-price {
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: var(--secondary);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.pricing-features {
    margin-bottom: 40px;
}

.features-title, .freebies-title {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    color: var(--primary);
    margin: 25px 0 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.features-list, .freebies-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    color: #555;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.freebies-list {
    background: linear-gradient(135deg, rgba(56, 182, 255, 0.1) 0%, rgba(9, 75, 101, 0.05) 100%);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.freebies-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.freebies-list i {
    color: #ff6b6b;
}

.pricing-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-enroll, .btn-call {
    flex: 1;
    text-align: center;
    padding: clamp(14px, 2.5vw, 16px) clamp(16px, 3vw, 20px) !important;
    font-size: clamp(1rem, 1.8vw, 1.1rem) !important;
}

.btn-enroll {
    background: linear-gradient(135deg, var(--success) 0%, #1da851 100%) !important;
    border: none !important;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(56, 182, 255, 0.1) 0%, rgba(9, 75, 101, 0.05) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.pricing-note p {
    color: var(--primary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.pricing-note i {
    color: var(--secondary);
    font-size: 1.3rem;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px dashed var(--sketch-color);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.achievement-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.achievement-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.englishwalah-promise {
    background: linear-gradient(135deg, var(--primary) 0%, #0a5c7a 100%);
    border-radius: 20px;
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    text-align: center;
}

.promise-icon {
    font-size: 4rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.promise-content h3 {
    font-size: clamp(1.8rem, 4vw, 2rem);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.promise-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 15px;
}

.promise-tagline {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: var(--secondary);
    font-family: 'Rancho', cursive;
    margin-top: 20px;
}

/* FAQ Section */
.faq-container {
    max-width: 1000px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(56, 182, 255, 0.05);
    border-left-color: var(--secondary);
}

.faq-question.active {
    background: rgba(56, 182, 255, 0.08);
    border-left-color: var(--secondary);
}

.faq-question h3 {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--primary);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.center-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: var(--transition);
}

.center-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.center-header {
    background: var(--primary);
    color: white;
    padding: 25px 30px;
}

.center-header h3 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.center-header i {
    color: var(--secondary);
}

.center-body {
    padding: 30px;
}

.center-address {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed #eee;
}

.center-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

.feature i {
    color: var(--secondary);
    width: 20px;
}

/* Animation Classes */
.animated {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Performance Optimizations */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ================ RESPONSIVE DESIGN ================ */

/* Desktop */
@media (min-width: 992px) {
    .content-section {
        padding: 80px 50px;
    }
    
    .ielts-hero .container {
        flex-direction: row;
        text-align: left;
    }
    
    .ielts-hero-content {
        text-align: left;
        order: 1;
    }
    
    .ielts-hero-image {
        order: 2;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .environment-content {
        flex-direction: row;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }
    
    .pricing-footer {
        flex-direction: row;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .content-section {
        padding: 60px 30px;
    }
    
    .ielts-hero {
        padding: 130px 30px 80px;
        min-height: 85vh;
    }
    
    .ielts-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .ielts-hero-content {
        max-width: 100%;
        order: 2;
    }
    
    .ielts-hero-image {
        order: 1;
        max-width: 400px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
    
    .ielts-hero {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .content-section {
        padding: 50px 20px;
    }
    
    .ielts-hero {
        padding: 130px 20px 60px;
        min-height: 90vh;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .methodology-grid,
    .overview-content,
    .achievements-grid,
    .assignment-grid,
    .results-grid,
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .englishwalah-promise {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 20px;
    }
    
    .promise-icon {
        font-size: 3rem;
    }
    
    .promise-content h3 {
        font-size: 1.6rem;
    }
    
    .promise-content p {
        font-size: 1.1rem;
    }
    
    .promise-tagline {
        font-size: 1.2rem;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .centers-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .content-section {
        padding: 40px 15px;
    }
    
    .ielts-hero {
        padding: 130px 15px 50px;
        min-height: 85vh;
    }
    
    .hero-cta {
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
    
    .features-title, .freebies-title {
        font-size: 1.1rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Large Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .btn {
        padding: 18px 45px;
        font-size: 1.2rem;
        min-width: 200px;
    }
    
    .btn-hero {
        padding: 22px 50px !important;
        font-size: 1.4rem !important;
        min-width: 250px !important;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .ielts-main-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
}

/* Print Styles */
@media print {
    .whatsapp-btn,
    .carousel-prev,
    .carousel-next,
    .carousel-cta-btn,
    .menu-toggle {
        display: none !important;
    }
}