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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logoimg img {
    position: relative;
    width: 10vw;
}

.logo h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo span {
    color: #3498db;
    font-size: 1rem;
    font-weight: normal;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    /* flex-basis: fit-content; */
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay img {
    position: fixed;
    z-index: -1;
}

.hero-content {
    border-radius: 5px;
    background-color: #3a3434d9;
    width: 85%;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3498db;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.about-overlay {
    height: auto;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about h2 {
    color: skyblue;
    font-size: xx-large;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 7rem;
    text-align: center;
}

.stats div {
    background-color: #89878742;
    border-radius: 10px;
    width: 100%;
    padding: 10px;
    border: 2px solid #6a6868;
    margin: auto;
}

@media (max-width: 768px) {
    .stats div {
        width: 50%;
    }

    .stats {
        gap: 5rem;
    }

    .about-overlay {
        padding: 50px 0;
    }

    .logoimg img {
        width: 20vw;
    }

    .hero-content {
        width: 90%;
    }
}


.stat h3 {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #3498db;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: #2c3e50d6;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: #3498db;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section .logoimg img {
    border: 1px solid black;
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    padding: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* IELTS Learning Page Specific Styles */
.modules {
    padding: 100px 0;
    background: #fff;
}

.modules h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.module-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.module-content ul {
    list-style: none;
    text-align: left;
}

.module-content ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

.module-content ul li::before {
    content: "✓";
    color: #3498db;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Learning Approach Section */
.learning-approach {
    /* padding: 100px 0; */
    background-size: cover;
    /* background-position: center; */
    /* background-attachment: fixed; */
    color: white;
    position: relative;
}

.approach-overlay {
    width: 100vw;
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}

.approach-overlay .container h2 {
    text-align: center;
    padding: 28px 0 0 0;
    color: skyblue;
    font-size: xx-large;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.approach-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Study Materials Section */
.study-materials {
    padding: 100px 0;
    background: #f8f9fa;
}

.study-materials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.material-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.material-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: #fff;
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    background: #3498db;
    color: white;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-header {
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
}

.package-price .currency {
    font-size: 1rem;
    vertical-align: top;
}

.package-price .period {
    font-size: 1rem;
    color: #666;
}

.package-card.featured .package-price .period {
    color: #ccc;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features li i {
    color: #3498db;
}

.package-card.featured .package-features li i {
    color: #fff;
}

/* One-on-One Methodology Page Specific Styles */
.methodology-overview {
    padding: 50px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.overview-item {
    text-align: center;
    padding: 2rem;
}

.overview-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.overview-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Teaching Process Section */
.teaching-process {
    height: auto;
    /* padding: 100px 0; */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.process-overlay {
    padding: 0px;
    margin: 0px;
    width: 100vw;
    height: auto;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}

.process-overlay .container h2 {
    font-size: -webkit-xx-large;
    color: skyblue;
    padding: 41px 0px 4px 0px;
    text-align: -webkit-center;
}

.process-timeline {
    justify-self: anchor-center;
    padding: 38px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
    text-align-last: center;
    width: 70vw;
}

.process-step {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.step-number {
    align-self: anchor-center;
    width: 80px;
    height: 80px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    width: 50vw;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-content p {
    text-align-last: center;
}

/* Methodology Features */
.methodology-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Success Stories Section */
.success-stories {
    height: auto;
    /* padding: 100px 0; */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.stories-overlay {
    height: auto;
    padding: 40px;
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.story-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-author h4 {
    margin-bottom: 0.5rem;
}

.story-author span {
    color: #3498db;
    font-weight: 600;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: #fff;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #2c3e50;
    color: white;
    font-weight: bold;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-cell.success {
    background: #d4edda;
    color: #155724;
}

.comparison-cell.limited {
    background: #f8d7da;
    color: #721c24;
}

/* About Us Page Specific Styles */
.our-story {
    padding: 100px 0;
    background: #fff;
}

.our-story .container .story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.our-story .container .story-content .story-text {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease-out;
}

.our-story .container .story-content .story-text.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.story-image img {
    height: auto;
    max-width: 100%;
    border-radius: 40px;
    box-shadow: 0px 1px 17px 5px rgb(255 189 0 / 55%);
}

/* Mission & Vision Section */
.mission-vision {
    height: auto;
    padding: 0 0 100px 0;
    ;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.mission-overlay {
    padding: 70px 20px;
    height: auto;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.mission-icon,
.vision-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Tutor Profile Section */
.tutor-profile {
    padding: 100px 0;
    background: #f8f9fa;
}

.tutor-profile h2 {
    padding: 40px 0 0 0;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.tutor-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tutor-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.tutor-title {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 2rem;
    font-weight: 600;
}

.tutor-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item i {
    color: #3498db;
    font-size: 1.2rem;
}

.tutor-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #fff;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.choose-overlay {
    padding: 30px 0 30px 0;
    ;
    height: auto;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}

.choose-overlay .container h2 {
    color: skyblue;
    font-size: xx-large;
    margin-bottom: 10px;
    text-align: center;
}

.methodology-overview .container h2 {
    text-align: center;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.choose-item {
    flex-direction: row;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.choose-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.choose-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.choose-item p {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Success Stats Section */
.success-stats {
    padding: 50px 0;
    background: #2c3e50;
    color: white;
}

.success-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    border-radius: 20px;
    background-color: #625e5e36;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.2rem;
    color: #ccc;
}

.phone-call-button {
    position: fixed;
    left: 18px;
    bottom: 14px;
    display: none;
    object-fit: cover;
    transition: transform 0.3s ease;
    z-index: 2;
}

.phone-call-button:hover {
    transform: scale(1.1);
}

.phone-call-button img {
    opacity: 0.75;
    width: 50px;
    height: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .our-story .container .story-content {
        grid-template-columns: 1fr;
    }

    .tutor-content {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .tutor-image img {
        width: 20%;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-cell {
        padding: 0.5rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 200px;
    }

    .phone-call-button {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services h2,
    .about h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }

    .service-card,
    .testimonial,
    .package-card {
        padding: 1.5rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-cell {
        padding: 0.3rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .phone-call-button {
        display: flex;
    }
}

/* Print Styles */
@media print {

    .header,
    .whatsapp-float,
    .hero-buttons,
    .contact-buttons {
        display: none;
    }

    .hero {
        height: auto;
        padding: 2rem 0;
    }

    .hero-overlay {
        position: static;
        background: none;
        color: #333;
    }

    .hero h1 {
        color: #333;
    }

    .hero p {
        color: #666;
    }
}


/* Responsive: stack toolbar items on small screens */
@media (max-width: 768px) {
    .notes-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .notes-toolbar label,
    .notes-toolbar select,
    .notes-toolbar input,
    .notes-toolbar button,
    .notes-toolbar a {
        width: 100%;
        text-align: center;
    }

    .notes-viewer {
        height: calc(100vh - 220px);
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .notes-toolbar {
        font-size: 0.9rem;
        gap: 6px;
    }

    .notes-toolbar select,
    .notes-toolbar input[type="number"],
    .notes-toolbar button,
    .notes-toolbar a {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
}

@media (min-width: 1450px) {
    .hero-content {
    width: 65%;
    
}

}