.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media(max-width: 575px) {
    /* .container {
                width: 540px;
            } */
}

@media((max-width: 768px)) {
    /* .container {
                width: 720px;
            } */
}

@media((max-width: 992px)) {
    /* .container {
                width: 960px;
            } */
}

@media((max-width: 1200px)) {
    /* .container {
                width: 1140px;
            } */
}

@media((min-width: 1400px)) {
    /* .container {
                width: 1320px;
            } */
}



body {
    font-family: "Baloo Bhaijaan 2", sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

* {
    box-sizing: border-box
}


html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--background-color);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    backdrop-filter: blur(20px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    align-items: center;
}

.navbar ul li {
    display: flex;
    align-items: center;
}

.navbar ul li a {
    text-decoration: none;
}

.navbar ul li a:not(.btn) {
    font-size: 18px;
    color: var(--text-color);
}



.burger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .navbar ul {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px 0;
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar ul li a {
        text-decoration: none;
    }

    .navbar ul li a:not(.btn) {
        color: var(--secondary-color);
        padding: 10px 20px;
        background-color: transparent;
        border: 2px solid var(--secondary-color);
        border-radius: 30px;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .navbar ul li a:hover {
        background-color: var(--secondary-color);
        color: #fff;
    }
}

/* Header */
#homepage {
    height: 100vh;
    background: url('https://source.unsplash.com/1600x900/?education,online') center center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 20px 0;
}

#homepage .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#homepage h1 {
    font-size: 50px;
    font-weight: bold;
    color: transparent;
    background-image: linear-gradient(to right, var(--primary-color) 30%, var(--primary-color));
    background-clip: text;
}

#homepage p {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 600px;
    color: #808080;
}

.hero-content .btn {
    margin-top: 20px;
}


/* Who Are We Section */
#who_are_we {
    padding: 80px 20px;
    background-color: #F4F4F4;
}

#who_are_we h2 {
    font-size: 36px;
    color: #101010;
}

#who_are_we p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #who_are_we {
        height: auto;
        padding: 30px;
    }

    #who_are_we p {
        font-size: 18px;
    }
}

/* Courses Section */
#courses {
    padding: 60px 20px;
}

#courses h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

#courses p {
    font-size: 1.4rem;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
}

/* Center the call-to-action button in Courses */
#courses .btn {
    display: inline-flex;
    margin: 0 auto;
}

.dashboard-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Contact Section */
#contact {
    background-color: #F4F4F4;
    padding: 60px 20px;
}

.contact-form .btn:hover {
    background-color: var(--secondary-color);
    color: #101010;
    box-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
}

.vertical-line {
    display: none;
}

.contact-info i {
    font-size: 20px;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .vertical-line {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-info {
        max-width: 100%;
    }

    .contact-form h2,
    .contact-info h2 {
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    color: var(--text-color);
    padding: 20px 0;
    text-align: center;
}

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

.footer p {
    margin: 5px 0;
}

.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icons a {
    color: #333;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
}

.footer .social-icons a:hover {
    color: var(--hover-color);
}

/* Social Media Icons */
footer .social-icons a {
    font-size: 24px;
    color: #fff;
    margin: 0 15px;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: var(--hover-color);
}

/* 
< !-- Add some CSS styles for the Hero Section -->#homepage {
    background: url('your-image-url.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
} */




.hero-content h1 {
    font-size: 4rem;
    font-weight: bolder;
    margin-bottom: 10px;
}

.hero-content p {
    margin-bottom: 30px;
}


/* Shared button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    color: var(--text-color);
    background-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(106, 4, 132, 0.18);
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

    .btn-outline {
    border-color: var(--primary-700);
    color: var(--primary-700);
    background-color: var(--secondary-100);
    box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.06);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background-color: var(--primary-700);
    border-color: var(--primary-700);
    color: var(--background-color);
    box-shadow: 0 16px 32px rgba(106, 4, 132, 0.25);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 0.45rem 1.35rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}


/* Responsive Design */
@media (max-width: 768px) {
    #homepage {
        padding: 60px 0;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.7rem 1.35rem;
        font-size: 0.95rem;
    }

    .btn-sm {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

.price-box {
    background-color: #f7f4f2;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    text-align: center;
    border: 1px solid #e3caab44;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D73B91;
}

/* Badges */
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #D73B91;
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Card container with relative position */
.card {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* opacity: 0; */
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.4s;
}

.card:nth-child(4) {
    animation-delay: 0.6s;
}

.card:nth-child(5) {
    animation-delay: 0.8-s;
}

.card:hover {
    box-shadow: 1px 12px 30px rgba(0, 0, 0, 0.3) !important;

}

.icon-wrapper {
    background-color: #f3e9de;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 26px;
    color: #D73B91;
}

.card h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card a {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.card a:hover {
    background-color: var(--primary-color);
    color: white;
}

.card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.card-list li::before {
    content: "âœ”";
    color: var(--primary-color);
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: 0;
}

.card-list li:last-child {
    margin-bottom: 0;
}

/* Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







