/* Base Styles */
html,
body {
    font-family: var(--font1);
    color: var(--light-dar1);
    background-color: var(--light);
    max-width: 100%;
    overflow-x: hidden !important;
}

/* *************** Top Banner Or Hero Section 1 Start ******************* */
/* Main Content */
.main-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-dar1);
    line-height: 1.2;
}

.text-highlight {
    color: var(--primary);
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-dark2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* *************** Top Banner Or Hero Section 1 End ******************* */

/* ************* Up Page Button End *********** */

.main-title {
    text-align: center;
    color: var(--light-dark1);
    font-weight: 600;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.icon-wrapper i {
    font-size: 24px;
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    h1.display-4 {
        font-size: 2.5rem;
    }

    h2.display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .icon-wrapper i {
        font-size: 20px;
    }
}
