/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1b5e20;
    --secondary-green: #2e7d32;
    --light-green: #4caf50;
    --accent-orange: #ff9800;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-bg: #f5f5f5;
    --primary-color: rgb(149, 178, 38);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Container responsive padding */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
}

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

.navbar {
    padding: 15px 0;
}

.logo-img {
    max-width: 150px;
    height: auto;
}

.banner-img {
    width: 120px;
    height: auto;
    position: fixed;
    top: 0;
    right: 100px;
    transition: all 0.3s ease;
}

.banner-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    cursor: pointer;
}

@media (max-width: 1200px) {
    .banner-img {
        width: 100px;
    }
}

/* Mobile Buttons */
.btn-qaida-mobile, .btn-contact-mobile {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 11px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-qaida-mobile {
    background: var(--primary-color);
    color: var(--white);
}

.btn-contact-mobile {
    background: var(--primary-green);
    color: var(--white);
}

.btn-qaida-mobile:hover, .btn-contact-mobile:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Desktop Navigation */
.nav-menu-desktop {
    gap: 60px;
    margin: 0;
    padding: 0;
}

.nav-menu-desktop .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-menu-desktop .nav-link:hover {
    color: var(--primary-green);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 25px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(27, 94, 32, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 80px 0;
    color: var(--white);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Hero Form */
.hero-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-form h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.hero-form .highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: var(--gray-bg);
}

.courses h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-green);
}

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

.course-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid var(--accent-orange);
    position: relative;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.course-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.course-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background: var(--white);
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--gray-bg);
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-green);
}

.why-choose .list-unstyled li {
    transition: transform 0.2s ease;
}

.why-choose .list-unstyled li:hover {
    transform: translateX(5px);
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.feature-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Why Choose Responsive */
@media (max-width: 767px) {
    .why-choose {
        padding: 50px 0 !important;
    }
    
    .why-choose .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .why-choose h2 {
        font-size: 24px !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .why-choose .list-unstyled li {
        margin-bottom: 20px !important;
    }
    
    .why-choose .list-unstyled li span {
        font-size: 14px !important;
    }
    
    .why-choose img[alt="Why Choose Online Quran Teaching"] {
        max-width: 90% !important;
        margin: 30px auto 0 !important;
        display: block !important;
    }
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: var(--white);
}

.mv-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission h2,
.vision h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.mission p,
.vision p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background: var(--gray-bg);
}

.core-values h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-green);
}

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.value-item p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Advanced Classes Section */
.advanced-classes {
    padding: 80px 0;
    background: var(--white);
}

.advanced-classes h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-green);
}

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

.class-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--gray-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.class-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.class-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    color: var(--white);
}

.class-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.class-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Join CTA Section */
.join-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    text-align: center;
    color: var(--white);
}

.join-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.join-cta p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.btn-join {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
}

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

.footer-content p {
    margin-bottom: 30px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.links-column a,
.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.links-column a:hover,
.footer-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Footer link underline effect */
.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 100%;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color) !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(149, 178, 38, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s ease;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

/* Qaida Modal Specific Styles */
.qaida-modal {
    max-width: 600px;
    padding: 50px;
}

.qaida-modal h2 {
    text-align: center;
    margin-bottom: 35px;
}

.qaida-input {
    padding: 15px 20px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Urbanist', sans-serif;
    transition: all 0.3s ease;
}

.qaida-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(149, 178, 38, 0.1);
}

.qaida-input::placeholder {
    color: #999;
    font-size: 15px;
}

.qaida-form .btn-submit:hover {
    background: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(149, 178, 38, 0.3);
}

@media (max-width: 767px) {
    .qaida-modal {
        padding: 35px 25px;
    }
    
    .qaida-modal h2 {
        font-size: 26px !important;
        margin-bottom: 25px !important;
    }
    
    .qaida-input {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.who-we-are-container {
    background-image: url('../images/who-we-are-homepage.png'); background-size: cover; background-position: center; padding: 145px;
}

.join-us-section {
    background-image: url('../images/cta-bg.png'); background-size: cover; background-position: center; padding: 100px;
}

.join-us-btn {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.join-us-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-family: 'Urbanist', sans-serif; font-weight: 500; font-size: 52px; line-height: 1.2;
}
/* Responsive Design */

/* Tablet and Below (max-width: 991px) */
@media (max-width: 991px) {
    /* Logo responsive */
    .logo-img {
        max-width: 120px;
    }

    /* Navigation */
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu-desktop {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu-desktop .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu-desktop .nav-item:last-child {
        border-bottom: none;
    }

    /* Hero Section */
    .hero {
        padding: 50px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px !important;
    }

    .hero-content p {
        font-size: 15px;
    }

    /* Courses Section */
    .courses h2 {
        font-size: 32px !important;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .courses-grid img {
        max-width: 100%;
        height: auto;
    }

    /* Who We Are Section */
    .who-we-are .container {
        padding: 80px 30px !important;
    }

    .who-we-are h2 {
        font-size: 32px !important;
    }

    .who-we-are p {
        font-size: 15px !important;
    }

    /* Why Choose Section */
    .why-choose {
        padding: 60px 30px !important;
    }

    .why-choose h2 {
        font-size: 32px !important;
        text-align: center !important;
    }

    .why-choose .list-unstyled li span {
        font-size: 16px !important;
    }

    .why-choose .row {
        flex-direction: column;
    }
    
    .why-choose img[alt="Why Choose Online Quran Teaching"] {
        max-width: 85% !important;
        margin: 20px auto !important;
    }

    /* Mission & Vision Section */
    .mission-vision .row {
        flex-direction: column;
    }

    .mission-vision img {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .mv-wrapper {
        grid-template-columns: 1fr;
    }

    /* Core Values */
    .core-values h2 {
        font-size: 32px !important;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    /* Advanced Classes Section */
    .advanced-classes h2 {
        font-size: 32px !important;
    }

    .advanced-classes .rounded-circle {
        width: 180px !important;
        height: 180px !important;
    }

    .advanced-classes h3 {
        font-size: 20px !important;
    }

    /* Join CTA Section */
    section[style*="cta-bg.png"] {
        padding: 60px 30px !important;
    }

    section[style*="cta-bg.png"] h2 {
        font-size: 32px !important;
    }

    section[style*="cta-bg.png"] p {
        font-size: 15px !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    /* Logo */
    .logo-img {
        max-width: 100px;
    }

    /* Mobile buttons */
    .btn-qaida-mobile, .btn-contact-mobile {
        padding: 5px 8px;
        font-size: 9px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 !important;
    }

    .hero-content h1 {
        font-size: 26px !important;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px !important;
        margin-bottom: 20px;
    }

    .btn-primary {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .hero-form {
        padding: 25px 20px;
    }

    .hero-form h3 {
        font-size: 18px;
    }

    /* Courses Section */
    .courses {
        padding: 50px 0;
    }

    .courses h2 {
        font-size: 26px !important;
        margin-bottom: 30px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Who We Are Section */
    .who-we-are .container {
        padding: 50px 20px !important;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .who-we-are h2 {
        font-size: 26px !important;
        margin-bottom: 20px;
    }

    .who-we-are p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Why Choose Section */
    .why-choose {
        padding: 50px 0 !important;
    }
    
    .why-choose .container {
        padding: 0 20px !important;
    }

    .why-choose h2 {
        font-size: 24px !important;
        text-align: center !important;
        margin-bottom: 25px !important;
        padding: 0 10px;
    }

    .why-choose .list-unstyled {
        padding-left: 0 !important;
    }

    .why-choose .list-unstyled li {
        margin-bottom: 20px !important;
    }

    .why-choose .list-unstyled li span {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .why-choose .list-unstyled li img {
        width: 18px !important;
        height: 18px !important;
    }

    .why-choose img[alt="Why Choose Online Quran Teaching"] {
        max-width: 90% !important;
        margin: 30px auto 0 !important;
        display: block !important;
    }

    /* Mission & Vision Section */
    .mission-vision {
        padding: 50px 0;
    }

    .mission h2, .vision h2 {
        font-size: 24px;
    }

    .mission p, .vision p {
        font-size: 14px;
    }

    /* Core Values */
    .core-values {
        padding: 50px 0;
    }

    .core-values h2 {
        font-size: 26px !important;
        margin-bottom: 30px;
    }

    .core-values .row {
        justify-content: center;
    }

    .core-values .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .value-item p {
        font-size: 16px !important;
    }

    /* Advanced Classes Section */
    .advanced-classes {
        padding: 50px 0 !important;
    }

    .advanced-classes h2 {
        font-size: 24px !important;
        margin-bottom: 30px !important;
        padding: 0 20px;
    }

    .advanced-classes .rounded-circle {
        width: 150px !important;
        height: 150px !important;
        border-width: 4px !important;
    }

    .advanced-classes h3 {
        font-size: 18px !important;
    }

    .advanced-classes p {
        font-size: 14px !important;
        padding: 0 15px;
    }

    /* Join CTA Section */
    section[style*="cta-bg.png"] {
        padding: 40px 20px !important;
    }

    section[style*="cta-bg.png"] .container {
        padding: 30px 20px !important;
    }

    section[style*="cta-bg.png"] h2 {
        font-size: 24px !important;
    }

    section[style*="cta-bg.png"] p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    section[style*="cta-bg.png"] p br {
        display: none;
    }

    section[style*="cta-bg.png"] .btn-primary {
        font-size: 16px !important;
        padding: 10px 20px !important;
    }

    /* Footer */
    .footer {
        padding: 30px 0 !important;
    }

    .footer img {
        max-width: 140px !important;
    }

    .footer p {
        font-size: 14px !important;
        padding: 0 15px;
    }

    .footer .d-flex {
        flex-direction: row !important;
        gap: 15px !important;
    }

    .footer .d-none.d-md-inline {
        display: none !important;
    }

    .footer .social-links {
        justify-content: center !important;
    }

    .footer .social-links a {
        width: 40px !important;
        height: 40px !important;
    }

    /* Modal */
    .modal-content {
        margin: 10% 20px;
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .logo-img {
        max-width: 80px;
    }

    .btn-qaida-mobile, .btn-contact-mobile {
        padding: 4px 6px;
        font-size: 8px;
    }

    .hero-content h1 {
        font-size: 22px !important;
    }

    .hero-content p {
        font-size: 13px !important;
    }

    .courses h2,
    .who-we-are h2,
    .core-values h2,
    .advanced-classes h2 {
        font-size: 22px !important;
    }
    
    .why-choose h2 {
        font-size: 20px !important;
        padding: 0 5px !important;
    }
    
    .why-choose .list-unstyled li span {
        font-size: 13px !important;
    }
    
    .why-choose .list-unstyled li img {
        width: 16px !important;
        height: 16px !important;
    }

    .advanced-classes .rounded-circle {
        width: 120px !important;
        height: 120px !important;
    }

    section[style*="cta-bg.png"] h2 {
        font-size: 20px !important;
    }
}

