@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Abril Fatface Font */
@font-face {
    font-family: 'Abril Fatface';
    src: url('../fonts/AbrilFatface-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Teko Font */
@font-face {
    font-family: 'Teko';
    src: url('../fonts/Teko-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    border-radius: 110px;
    padding: 10px 50px;
}

.navbar-nav .nav-link {
    color: white;

}

.buy-now-3 {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    background: #005EF7;
    color: #fff;
    padding: 12px 40px;
    border: solid 1px 4px 4px 1px black;
    border-radius: 75px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

/* ✅ Button Hover Effect */
.buy-now-3:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* =============================== HERO SECTION ==============================*/

.hero-section {
    color: white;
    text-align: left;
    padding: 5vw 0;
    /* height: 100vh; */
    display: flex;
}

.underline-text {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.underline-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.2em;
    width: 100%;
    height: clamp(13px, 6px, 12px);
    background-color: rgba(0, 94, 247, 1);
    z-index: -1;
}


.card-img {
    /* height: 120vh; */
    object-fit: cover;
    border-radius: 0 0 50px 50px;
}

/* =====================MEDIA QUERIES ==================== */
@media (max-width: 768px) {
    .logo {
        height: 60px;
    }

}

@media (min-width: 720px) and (max-width: 1024px) {

    .logo {
        height: 80px;
    }

}

@media (min-width: 1800px) {
    .hero-section {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .logo {
        height: 180px;
    }


}

.navbar-nav {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
}

.hero-title {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 10vw, 111px);
    line-height: 99%;
    letter-spacing: -2%;
}


.card-title {

    font-family: 'Teko', sans-serif;
    background-color: white;
    font-weight: 500;
    font-size: 50px;
    line-height: 85px;

}

/* 🔹 Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .card-title {
        font-size: 35px;

    }
}

/* Section Styling */
.custom-section {
    font-family: "Onest", sans-serif;
    background-color: #ffffff;
    text-align: center;
    padding: 80px 20px 0px 20px;
}

/* Heading Styling */
.custom-heading {
    font-family: 'Teko', sans-serif;
    font-size: 85px;
    font-weight: 500;
    text-transform: none;
    display: inline-block;
    line-height: 70px;
}

.highlighted-text {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 5px;
}

.highlighted-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 20px;
    background-color: #F5E901;
    z-index: -1;
}

/* Search Bar Container */
.search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 750px;
    margin: 20px auto;
}

/* ✅ Search Input  */
.search-input {
    border: none;
    font-family: "Onest", sans-serif;
    background: transparent;
    font-size: 14px;
    color: #1C1C1C;
    flex: 1;
    padding: 5px 5px 5px 20px;
    outline: none;
    display: block;
}

.search-input::placeholder {
    color: #1C1C1C;
    opacity: 1;
}

/* ✅ Address  */
.location-box {
    background: #E5EFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border-radius: 50px;
    width: fit-content;
}

/* ✅ Address Text */
.location-text {
    font-size: 14px;
    font-weight: bold;
    color: black;
    margin-right: 10px;
}

/* ✅ Pencil Icon */
.edit-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    /* 🔹 Shifted right */
    display: flex;
    align-items: center;
}

/* ✅ Custom Button */
.custom-btn {
    background: #005EF7;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    width: 190px;
    text-align: center;
}

/* ✅ Button Hover Effect */
.custom-btn:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* ✅ Mobile Responsive */
@media (max-width: 767px) {
    .custom-heading {
        font-size: 50px;
        line-height: 50px;
    }

    .search-container {
        flex-direction: column;
        padding: 10px 15px;
        max-width: 100%;
        gap: 10px;
    }

    .search-input {
        font-size: 12px;
        padding: 5px 10px;
        margin-left: 10px;
        text-align: center;
    }

    .location-box {
        padding: 8px 12px;
        border-radius: 40px;
        width: auto;
    }

    .location-text {
        font-size: 12px;
    }

    .edit-btn {
        font-size: 14px;
    }

    .custom-btn {
        font-size: 14px;
        padding: 10px 20px;
        width: 160px;
    }
}

/* ✅ Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 30px 70px 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 35px 60px;
    border-radius: 70px;
    border: 1px solid black;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    gap: 50px;
}

.logo-container img {
    height: 40px;
    width: auto;
    object-fit: contain;
}


.logo-1 {
    height: 65px !important;
    width: auto;
}

/* 🔹 Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .logo-container {
        justify-content: center;
        padding: 10px 20px;
        gap: 20px;
    }

    .logo-container img {
        height: 35px;
    }

}


/* ✅ Mobile Responsive */
@media (max-width: 767px) {
    .logo-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 20px;
        gap: 30px;
    }

    .logo-container img {
        height: 30px;
    }
}


/* By Arbab */

.card-img-overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.where_to_buy_pro_sec .col {
    position: relative;
}

.where_to_buy_pro_sec .col input[type="checkbox"] {
    position: absolute;
    top: 22px;
    left: unset;
    right: 24px;
    width: 38px;
    height: 38px;
}

/* Responsive */

@media screen and (max-width:1024px) {}

@media screen and (max-width:820px) {}

@media screen and (max-width:768px) {}

@media screen and (max-width:600px) {
    .card-img {
        height: 330px;
    }
}