body {
    background-color: #f9fafc;
    color: #333;
}
/* .left-pattern-bg{
    background:
    url('/login_page/static/src/icons/shapes.png');
    background-position:left;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
} */
.navbar-light {
    background-color: #F9F9F9 !important;
}
main{
    background: #f9fafc !important;
}
/* h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Noto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
} */
/* .mass-footer{
    display: none;
} */
h1, h2, h3, h4, h5 {
    font-weight: 700;
}
.hero-section {
    /* background: linear-gradient(135deg, #617da8, #dcf1ff); */
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    width: 90%;
    margin: auto;
}
.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.btn-primary {
    background: linear-gradient(135deg, #6C63FF, #5D54D4);
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #5D54D4, #6C63FF);
}
.btn-outline-danger{
    color: #9c7d45;
    border-color: #b89041;
    font-weight: 900;
}
.btn-outline-danger:hover{
    color: white;
    background-color: #b89041;
    border-color: #b89041;
}
.about-img img {
    border-radius: 10px;
    width: 100%;
}
.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}
.feature-box:hover {
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
}
/* .pattern-bg{
    background: url('/login_page/static/src/icons/shapes.png');
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
} */
.counter {
    font-size: 2.5rem;
    color: #6C63FF;
    font-weight: bold;
}
.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.testimonial p {
    font-style: italic;
    color: #555;
}
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px !important;
    }
    .hero-section img {
        height: 8rem !important;
    }
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    .hero-section p {
        font-size: 1rem !important;
    }
    .btn-primary {
        padding: 8px 20px !important;
    }
    .pattern-bg{
        overflow: hidden !important;
    }
    .pattern-bg img{
        width: auto !important;
        height: 120px !important;
        overflow: hidden !important;
    }
    .left-pattern-bg {
        background: none !important;
    }

}
@media (max-width: 576px) {
    .hero-section {
        padding: 20px 10px;
    }
    .hero-section h1 {
        font-size: 2rem !important;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .btn-primary {
        padding: 6px 15px;
    }
}