.html,
.body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.font-w1 {
    font-weight: 100;
}

.font-w2 {
    font-weight: 200;
}

.font-w3 {
    font-weight: 300;
}

.font-w4 {
    font-weight: 400;
}

.font-w5 {
    font-weight: 500;
}

.font-w6 {
    font-weight: 600;
}

.font-w7 {
    font-weight: 700;
}

.font-w8 {
    font-weight: 800;
}

.font-w9 {
    font-weight: 900;
}

.head-1 {
    background-color: #F1F1F1;
}

.font-color1 {
    color: #596B91;
}

.font-color2 {
    color: #fff;
}

.font-size-1 {
    font-size: 15px;
}

.font-size-2 {
    font-size: 54px;
}

.font-size-5{
    font-size: 49px;
}

.font-size-3 {
    font-size: 20px !important;
}

.font-size-4 {
    font-size: 37px;
}

.mx-w {
    max-width: 94px;
}

.color-g {
    background: -webkit-linear-gradient(#F45A5A, #EC3237);
    background: linear-gradient(#F45A5A, #EC3237);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-shadpw{
    box-shadow: 0px 4px 4px 0px #00000040 !important;
}

.font-color3 {
    color: #596B91;
}

.font-color4 {
    color: #000;
}

.font-SF-Pro {
    font-family: 'SF Pro Display';
}

.line-h1 {
    line-height: 36px;
}

.navbar {
    background-color: #fff;
}

.nav-link {
    font-family: 'SF Pro Display';
    font-size: 20px;
    font-weight: 500;
    line-height: 23.87px;
}

.nav-link:hover,
.nav-link:focus {
    background: -webkit-linear-gradient(#F45A5A, #EC3237);
    background: linear-gradient(#F45A5A, #EC3237);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sign-in-btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    /* Transparent background */
    color: #EC3237;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 23.87px;
    border: none;
    /* Remove border */
    border-radius: 6px;
    /* Rounded corners */
    z-index: 1;
}

.sign-in-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    /* Same border-radius as the button */
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(90deg, #F45A5A 0%, #EC3237 100%);
    /* Gradient border */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    /* Place behind the button */
}

.position-sticky{
    position: fixed;
    top: 0;
    z-index: 99;
    box-shadow: 15px 25px 60px rgba(0, 0, 0, 10%);
}

.banner-diamonds-wapper {
    position: relative;
    background-image: url(./images/bg-img4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 40%;
    height: 557px;
    overflow: hidden;
    /* Ensures that the pseudo-element doesn't overflow the container */
}

.banner-diamonds-wapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Optional: adds a semi-transparent overlay */
    filter: blur(8px);
    /* Apply blur effect here */
    z-index: -1;
    /* Places the pseudo-element behind the content */
}

.hori-border {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.line {
    width: 70px;
    height: 1px;
    background-color: #ccc;
}

.text-before {
    font-size: 20px;
}

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

.text-before {
    white-space: nowrap;
}

.explore-btn {
    border: 2.5px solid #FFFFFF;
    text-decoration: none;
    color: #fff;
    font-family: 'SF Pro Display';
    font-size: 20px;
    font-weight: 550;
    line-height: 23.87px;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex
}

.img-banner {
    width: 59px;
    height: 59px;
    overflow: hidden;
}

.img-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.bg-banner {
    width: 94px;
    height: 94px;
    background-color: #FFD1CD;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.owl-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    top: 25%;
}

.owl-prev {
    left: -60px;
    /* Adjust for spacing */
}

.owl-next {
    right: -20px;
    /* Adjust for spacing */
}

/* Make responsive */
@media (max-width: 1400px) {

    .owl-prev,
    .owl-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .owl-prev {
        left: -60px;
    }

    .owl-next {
        right: -60px;
    }
}

@media (max-width: 768px) {

    .owl-prev,
    .owl-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .owl-prev {
        left: -15px;
    }

    .owl-next {
        right: -15px;
    }
}

@media (max-width: 576px) {
    .owl-prev,
    .owl-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .owl-prev {
        display: none;
    }

    .owl-next {
        display: none;
    }

    .card-body {
        flex-wrap: wrap;
    }

    .feature-icon {
        width: 100px !important;
    }
    .font-size-2 {
        font-size: 45px !important;
    }
    .background-img-set {
        background-repeat: no-repeat !important;
        height: auto !important;
        overflow: hidden !important;
        background-position: center;
        background-size: cover !important;
    }
    .img-respons2{
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    .img-respons2 img{
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
    .line-h1 {
        line-height: 25px !important;
    }
}

.banner-box-wapper {
    background: linear-gradient(90deg, #F45A5A 0%, #EC3237 100%);
}

.box-1 {
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circal {
    background-color: #FFD1CD;
    width: 85px;
    height: 85px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-p-w {
    max-width: 225px;
}

.feature-icon {
    width: 200px;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.card {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    /* Transparent background */
    color: #EC3237;
    font-family: 'SF Pro Display', sans-serif;
    border: none;
    /* Remove border */
    border-radius: 6px;
    /* Rounded corners */
    z-index: 1;
    box-shadow: 0px 4px 11.9px 2px #00000012;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    /* Same border-radius as the button */
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(90deg, #F45A5A 0%, #EC3237 100%);
    /* Gradient border */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    /* Place behind the button */
}

.card-title {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.card-text {
    font-family: 'SF Pro Display';
    font-size: 20px;
    font-weight: 500;
    line-height: 23.87px;
    color: #596B91 !important;
}

.form-body {
    min-height: 100vh;
    background-image: url(./images/footer-section.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-body2 {
    min-height: 100vh;
    background: linear-gradient(180deg, #f44336 50% , #fff 50%);
    font-family: system-ui, -apple-system, sans-serif;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
    color: #EC3237;
    margin: auto;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    /* Same border-radius as the button */
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(90deg, #F45A5A 0%, #EC3237 100%);
    /* Gradient border */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    /* Place behind the button */
}

.title {
    font-size: 37px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid #D0D5DD;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.form-control::placeholder {
    color: #C7C7C9;
}

.form-label {
    font-size: 14px;
    color: #344054;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.btn-submit {
    background: linear-gradient(90deg, #F45A5A 0%, #EC3237 100%);
    border: none;
    padding: 0.75rem 2rem;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: auto;
    display: block;
    margin: 1.5rem auto 0;
    font-family: 'SF Pro Display';
}


.background-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.app-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.section-title {
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'SF Pro Display';
    font-size: 20px;
    font-weight: 500;
    line-height: 23.87px;
    color: #fff;
}

.section-title:before,
.section-title:after {
    content: "———";
    margin: 0 10px;
}

.main-title {
    margin-bottom: 20px;
    text-align: center;
    font-family: 'SF Pro Display';
    font-size: 37px;
    font-weight: 700;
    line-height: 44.15px;
    color: #fff;
}

.subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'SF Pro Display';
    font-size: 15px;
    font-weight: 500;
    line-height: 17.9px;
    text-align: center;
    color: #fff;
}

.feature-box {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-icon-footer {
    width: 62px;
    height: 62px;
    background-color: #2d2d2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-footer img {
    width: 34px;
    height: 34px;
    fill: #fff;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'SF Pro Display';
    color: #fff;
}
.copy-rights-section{
    background: linear-gradient(90deg, #F45A5A 0%, #EC3237 100%);
}

.banner-about-wapper{
    background-image: url(./images/about-us.png);
}
.banner-whyus-wapper{
    background-image: url(./images/why-us.png);
}
.background-img-set{
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 401px;
    overflow: hidden;
}
.img-respons{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.img-respons img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.contect-box{
    background-color: #fff;
    box-shadow: 0px 4px 11.9px 2px #00000012;
    border-radius: 15px;
}
.form-max{
    max-width: 1000px;
}

.container-fix{
    max-width: 1400px;
    margin: 0 auto;
}
