/* =====================================================================
   NANEER PONDY — RO Water Purifier eCommerce
   ===================================================================== */

    :root {
        --np-primary: var(--bs-primary);
        --np-primary-dark: var(--bs-secondary);
        --np-accent: var(--bs-secondary);
        --np-text: #1f2a30;
        --np-text-light: #6b7b83;
        --np-bg-soft: #f4fafc;
        --np-border: #e1edf1;
        --np-radius: 14px;
        --np-shadow: 0 10px 30px rgba(10, 126, 164, 0.10);
    }

    /*** Spinner Start ***/
    #spinner {
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s ease-out, visibility 0s linear .5s;
        z-index: 99999;
    }

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }
    /*** Spinner End ***/

    .back-to-top {
        position: fixed;
        right: 30px;
        bottom: 30px;
        transition: 0.5s;
        z-index: 99;
    }

    /*** Button Start ***/
    .btn {
        font-weight: 600;
        transition: .5s;
    }

    .btn-square {
        width: 32px;
        height: 32px;
    }

    .btn-sm-square {
        width: 34px;
        height: 34px;
    }

    .btn-md-square {
        width: 44px;
        height: 44px;
    }

    .btn-lg-square {
        width: 56px;
        height: 56px;
    }

    .btn-xl-square {
        width: 66px;
        height: 66px;
    }

    .btn-square,
    .btn-sm-square,
    .btn-md-square,
    .btn-lg-square,
    .btn-xl-square {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: normal;
    }

    .btn.btn-primary {
        color: var(--bs-white);
    }

    .btn.btn-primary:hover {
        background: var(--bs-secondary);
        border: 1px solid var(--bs-secondary);
    }

    .btn.btn-secondary {
        color: var(--bs-white);
    }

    .btn.btn-secondary:hover {
        background: var(--bs-primary);
        border: 1px solid var(--bs-primary);
    }
    /*** Button End ***/

    /*** Navbar ***/
    .navbar-light .navbar-nav .nav-link {
        position: relative;
        margin-right: 25px;
        padding: 35px 0;
        color: var(--bs-white);
        font-size: 17px;
        font-weight: 400;
        outline: none;
        transition: .5s;
    }

    .navbar.scrolled.navbar-light .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
        transition: .5s;
    }

    .navbar.scrolled .navbar-brand img {
        max-height: 45px;
    }

    .navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        vertical-align: middle;
        margin-left: 8px;
    }

    .dropdown .dropdown-menu a:hover {
        background: var(--bs-primary);
        color: var(--bs-white);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }

    .logo-black {
        display: none;
    }

    .navbar.scrolled .logo-white {
        display: none;
    }

    .navbar.scrolled .logo-black {
        display: inline-block;
    }

    /*** Icon buttons: cart / account ***/
    .nav-icon-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: transparent;
        color: var(--bs-white);
        font-size: 18px;
        border: 1px solid rgba(255, 255, 255, .5);
        transition: .3s;
        flex-shrink: 0;
    }

    .nav-icon-btn:hover {
        background: var(--bs-primary);
        color: var(--bs-white);
        border-color: var(--bs-primary);
    }

    .navbar.scrolled .nav-icon-btn {
        color: var(--bs-dark);
        border-color: rgba(0, 0, 0, .25);
    }

    .dropdown-toggle-noarrow::after {
        display: none;
    }

    .cart-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        background: var(--bs-primary);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        min-width: 18px;
        height: 18px;
        line-height: 18px;
        text-align: center;
        border-radius: 50%;
        padding: 0 3px;
    }

    .enquiry-block {
        padding-left: 15px;
        border-left: 1px solid rgba(255, 255, 255, .3);
        white-space: nowrap;
    }

    .navbar.scrolled .enquiry-block {
        border-left-color: rgba(0, 0, 0, .15);
    }

    /* Dropdown menu base (desktop) */
    .dropdown-menu {
        z-index: 1080;
    }

/* ============ DESKTOP (>=992px) ============ */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
    }

    .navbar.scrolled.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar.scrolled .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    /* keep the icon row's own dropdown normal on desktop */
    .order-lg-2 .dropdown-menu {
        position: absolute;
    }
}

/* ============ MOBILE / TABLET (<992px) ============ */
@media (max-width: 991.98px) {
    .logo-white {
        display: none !important;
    }

    .logo-black {
        display: inline-block !important;
    }
    .navbar {
        justify-content: space-between;
    }

    .navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-right: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    /* Menu Button - Same Style as Cart & Profile */
    .navbar.navbar-expand-lg .navbar-toggler {
        width: 38px;
        height: 38px;
        padding: 0;
        border: 1px solid var(--bs-primary);
        border-radius: 50%;
        color: var(--bs-primary);
        background: #fff;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: .3s ease;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    }

    .navbar.navbar-expand-lg .navbar-toggler:hover {
        background: var(--bs-primary);
        color: #fff;
    }

    .navbar.navbar-expand-lg .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar.navbar-expand-lg .navbar-toggler .fa-bars {
        font-size: 18px;
    }

    .navbar.navbar-expand-lg .navbar-toggler:hover .fa-bars {
        color: #fff;
    }

    /* icon row (cart / account / toggler) */
    .navbar > .d-flex.order-lg-2 {
        gap: 6px;
    }

    .nav-icon-btn {
        color: var(--bs-dark);
        border-color: rgba(0, 0, 0, .2);
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    /* single, non-conflicting collapse spacing rule */
    #navbarCollapse {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    #navbarCollapse .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    #navbarCollapse .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .enquiry-block {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, .08);
        margin-top: 10px;
        padding-top: 10px;
        padding-left: 0;
    }

    /* --- Dropdown fix: bypass any clipping ancestor entirely --- */
    .order-lg-2 .dropdown-menu {
        position: fixed;
        top: 64px;      /* adjust if your mobile navbar height differs */
        right: 12px;
        left: auto;
        margin: 0;
        min-width: 200px;
        max-width: calc(100vw - 24px);
    }
}

@media (max-width: 380px) {
    .navbar-brand img {
        max-height: 38px;
    }

    .nav-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .order-lg-2 .dropdown-menu {
        top: 58px;
        right: 8px;
    }
}


/* =====================================================
   Login Page
   ===================================================== */

.organic-breadcrumb {
    background: linear-gradient(135deg, var(--np-primary) 0%, var(--np-primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.organic-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 60%);
}

.organic-breadcrumb .breadcrumb-banner h1 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.4rem;
    margin: 0;
    position: relative;
}

.login_box_area {
    background: var(--np-bg-soft);
    padding: 70px 0;
}

.login_box_area .row {
    background: #fff;
    border-radius: var(--np-radius);
    box-shadow: var(--np-shadow);
    overflow: hidden;
}

.login_box_img {
    position: relative;
    height: 100%;
    min-height: 460px;
    overflow: hidden;
}

.login_box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 460px;
    display: block;
    transition: transform 0.5s ease;
}

.login_box_img:hover img {
    transform: scale(1.04);
}

.login_box_img .hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, color-mix(in srgb, var(--np-primary) 15%, transparent) 0%, color-mix(in srgb, var(--np-primary-dark) 92%, transparent) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 40px;
    text-align: left;
}

.login_box_img .hover h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.login_box_img .hover p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.login_box_img .hover .primary-btn {
    background: #fff;
    color: var(--np-primary-dark);
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login_box_img .hover .primary-btn:hover {
    background: var(--np-accent);
    color: #fff;
    transform: translateY(-2px);
}

.login_form_inner {
    padding: 55px 50px;
}

.login_form_inner h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--np-text);
    font-size: 1.6rem;
    margin-bottom: 26px;
}

.login_form > div {
    margin-bottom: 18px;
}

.login_form input[type="email"],
.login_form input[type="password"] {
    width: 100%;
    border: 1.5px solid var(--np-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--np-text);
    background: var(--np-bg-soft);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.login_form input:focus {
    outline: none;
    border-color: var(--np-primary);
    background: #fff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--np-primary) 12%, transparent);
}

.login_form input::placeholder {
    color: var(--np-text-light);
}

.login_form small.text-danger {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #d9534f;
}

.creat_account {
    display: flex;
    align-items: center;
    gap: 8px;
}

.creat_account input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--np-primary);
    cursor: pointer;
}

.creat_account label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--np-text-light);
    cursor: pointer;
}

.login_form > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
    margin-bottom: 0;
}

.login_form button.primary-btn {
    background: var(--np-primary);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login_form button.primary-btn:hover {
    background: var(--np-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--np-primary) 25%, transparent);
}

.login_form > div:last-child a {
    color: var(--np-primary);
    font-size: 0.88rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login_form > div:last-child a:hover {
    color: var(--np-primary-dark);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .login_box_img,
    .login_box_img img {
        min-height: 300px;
    }

    .login_form_inner {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .organic-breadcrumb .breadcrumb-banner h1 {
        font-size: 1.8rem;
    }

    .login_form_inner {
        padding: 30px 18px;
    }

    .login_form > div:last-child {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =====================================================
   Register Page
   ===================================================== */

.register_area {
    background: var(--np-bg-soft);
    padding: 70px 0;
}

.register_area .row {
    background: #fff;
    border-radius: var(--np-radius);
    box-shadow: var(--np-shadow);
    overflow: hidden;
}

.register_image {
    position: relative;
    height: 100%;
    min-height: 620px;
    overflow: hidden;
}

.register_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 620px;
    display: block;
    transition: transform 0.5s ease;
}

.register_image:hover img {
    transform: scale(1.04);
}

.register_image .overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, color-mix(in srgb, var(--np-primary) 15%, transparent) 0%, color-mix(in srgb, var(--np-primary-dark) 92%, transparent) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 40px;
    text-align: left;
}

.register_image .overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.register_image .overlay-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.register_image .overlay-content .primary-btn {
    background: #fff;
    color: var(--np-primary-dark);
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register_image .overlay-content .primary-btn:hover {
    background: var(--np-accent);
    color: #fff;
    transform: translateY(-2px);
}

.register_form {
    padding: 55px 50px;
}

.register_form h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--np-text);
    font-size: 1.6rem;
    margin-bottom: 26px;
}

.register_form .row {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    margin: 0 -10px;
}

.register_form .row > div {
    padding: 0 10px;
    margin-bottom: 18px;
}

.register_form input[type="text"],
.register_form input[type="email"],
.register_form input[type="password"],
.register_form input[type="date"],
.register_form select,
.register_form textarea {
    width: 100%;
    border: 1.5px solid var(--np-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--np-text);
    background: var(--np-bg-soft);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.register_form input:focus,
.register_form select:focus,
.register_form textarea:focus {
    outline: none;
    border-color: var(--np-primary);
    background: #fff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--np-primary) 12%, transparent);
}

.register_form input::placeholder,
.register_form textarea::placeholder {
    color: var(--np-text-light);
}

.register_form textarea {
    min-height: 90px;
    resize: vertical;
}

.register_form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7b83' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.register_form input[type="date"] {
    color: var(--np-text-light);
}

.register_form input[type="date"]:valid {
    color: var(--np-text);
}

.register_form small {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #d9534f;
}

.register_form button.primary-btn {
    background: var(--np-primary);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 6px;
}

.register_form button.primary-btn:hover {
    background: var(--np-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--np-primary) 25%, transparent);
}

@media (max-width: 991px) {
    .register_image,
    .register_image img {
        min-height: 320px;
    }

    .register_form {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .register_form {
        padding: 30px 18px;
    }

    .register_form .row > div {
        margin-bottom: 14px;
    }
}


/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}

@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }

    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }

    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
}

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: color-mix(in srgb, var(--bs-primary) 20%, transparent);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/


/*** Product Detail Page Start ***/

/*** Breadcrumb Banner ***/
.obanner-area.organic-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.75), rgba(0, 20, 66, 0.75)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 40px 0;
}

.obanner-area .breadcrumb-banner {
    text-align: right;
}

.obanner-area .breadcrumb-banner h1 {
    color: var(--bs-white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.obanner-area .breadcrumb-banner nav {
    font-size: 15px;
}

.obanner-area .breadcrumb-banner nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: 0.3s;
}

.obanner-area .breadcrumb-banner nav a:hover {
    color: var(--bs-primary);
}

@media (max-width: 767.98px) {
    .obanner-area.organic-breadcrumb {
        padding: 110px 0 30px 0;
    }

    .obanner-area .breadcrumb-banner {
        text-align: center;
        justify-content: center !important;
    }

    .obanner-area .breadcrumb-banner h1 {
        font-size: 28px;
    }
}

/*** Product Area ***/
.product-area.section_gap {
    padding: 60px 0 100px 0;
}

/*** Image Card ***/
.image-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    aspect-ratio: 1 / 1;
    background: var(--bs-light);
}

.image-card .main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: 0.5s ease;
}

.image-card .sale-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 2;
}

/*** Thumbnails ***/
.thumb-row {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumb-row .thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--bs-light);
    padding: 6px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.thumb-row .thumb:hover {
    opacity: 1;
}

.thumb-row .thumb.active,
.thumb-row .thumb:hover {
    border-color: var(--bs-primary);
    opacity: 1;
}

/*** Details Card ***/
.details-card {
    padding: 10px 0 10px 20px;
}

@media (max-width: 991.98px) {
    .details-card {
        padding: 30px 0 0 0;
    }
}

.details-card .cat {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    color: var(--bs-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.details-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bs-dark);
}

.details-card .price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.details-card .new-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--bs-primary);
}

.details-card .old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.details-card .stock {
    display: inline-block;
    background: color-mix(in srgb, var(--bs-primary) 10%, transparent);
    color: var(--bs-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.details-card .desc {
    color: var(--bs-body, #6c7a89);
    line-height: 1.8;
    margin-bottom: 20px;
}

.details-card hr {
    margin: 25px 0;
    opacity: 0.1;
}

.details-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/*** Variant Blocks ***/
.variant-block {
    margin-bottom: 25px;
}

.variant-block h6 {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--bs-dark);
}

/*** Color Picker (product detail page) ***/
.color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 12px;
    color: #777;
}

.color-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-item .color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, .1);
    box-shadow: 0 0 0 2px transparent;
    transition: 0.3s;
}

.color-item input[type="radio"]:checked + .color-circle {
    border-color: var(--bs-white);
    box-shadow: 0 0 0 2px var(--bs-primary);
    transform: scale(1.08);
}

.color-item:hover .color-circle {
    transform: scale(1.08);
}

.color-item span {
    text-transform: capitalize;
}

/*** Quantity Box ***/
.qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50px;
    overflow: hidden;
}

.qty-box button {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bs-light);
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-dark);
    cursor: pointer;
    transition: 0.3s;
}

.qty-box button:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.qty-box input {
    width: 55px;
    height: 44px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, .08);
    border-right: 1px solid rgba(0, 0, 0, .08);
    text-align: center;
    font-weight: 600;
    -moz-appearance: textfield;
}

.qty-box input::-webkit-outer-spin-button,
.qty-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-box input:focus {
    outline: none;
}

/*** Add Combination Button ***/
.add-combo {
    width: 100%;
    padding: 14px 20px;
    margin-top: 10px;
    border: 2px dashed var(--bs-primary);
    background: transparent;
    color: var(--bs-primary);
    font-weight: 600;
    border-radius: 50px;
    transition: 0.4s;
}

.add-combo:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-style: solid;
}

/*** Variant List ***/
.variant-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.variant-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: var(--bs-light);
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    animation: variantIn 0.3s ease;
}

@keyframes variantIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.variant-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.variant-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.variant-remark {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.remove-btn {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: var(--bs-white);
    color: #999;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.remove-btn:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** Add All To Cart Button ***/
.cart-btn {
    width: 100%;
    padding: 16px 20px;
    margin-top: 25px;
    border: none;
    border-radius: 50px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: 0.4s;
}

.cart-btn:hover {
    background: var(--bs-secondary);
}

@media (max-width: 767.98px) {
    .details-card h2 {
        font-size: 26px;
    }

    .details-card .new-price {
        font-size: 24px;
    }

    .thumb-row .thumb {
        width: 65px;
        height: 65px;
    }

    .color-item .color-circle {
        width: 34px;
        height: 34px;
    }

    .variant-card {
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .image-card {
        aspect-ratio: 4 / 3;
    }

    .qty-box button,
    .qty-box input {
        height: 40px;
        width: 40px;
    }
}
/*** Product Detail Page End ***/

/*** Shop Page Start ***/

/*** Category Gallery (replaces old sidebar) ***/
.shop-categories {
    position: relative;
}

.shop-categories-scroll {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 4px 14px;
    scrollbar-width: thin;
}

.shop-categories-scroll::-webkit-scrollbar {
    height: 5px;
}

.shop-categories-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .shop-categories-scroll {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

.category-pill {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 100px;
    text-align: center;
}

.category-pill-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-white);
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    font-size: 26px;
    color: var(--bs-primary);
    transition: 0.4s;
    overflow: hidden;
}

.category-pill-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-pill-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-dark);
    transition: 0.3s;
}

.category-pill:hover .category-pill-icon,
.category-pill.active .category-pill-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: translateY(-4px);
}

.category-pill:hover .category-pill-label,
.category-pill.active .category-pill-label {
    color: var(--bs-primary);
}

@media (max-width: 575.98px) {
    .category-pill {
        width: 80px;
    }

    .category-pill-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

/*** Product Container / Card Animation ***/
#product-container {
    min-height: 300px;
}

@keyframes productFade {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    opacity: 0;
}

/*** Product Item ***/
.product .product-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: 0.5s;
    height: 100%;
}

.product .product-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    transform: translateY(-5px);
}

/*** Fixed-size image stage: keeps every card the same height
     regardless of the uploaded photo's real dimensions ***/
.product-img-box {
    position: relative;
    height: 240px;
    background: var(--bs-white);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.product-img-box .carousel,
.product-img-box .carousel-inner,
.product-img-box .carousel-item {
    height: 100%;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: 0.5s;
}

.product .product-item:hover .product-image {
    transform: scale(1.06);
}

/*** Sale Badge ***/
.product .product-item .badge.bg-danger {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 3;
}

/*** Hover Overlay (view / wishlist) ***/
.product-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 20, 66, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 2;
}

.product .product-item:hover .product-hover {
    opacity: 1;
    visibility: visible;
}

.product-hover .btn.rounded-circle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translateY(15px);
    opacity: 0;
    transition: 0.4s;
}

.product .product-item:hover .product-hover .btn.rounded-circle {
    transform: translateY(0);
    opacity: 1;
}

.product .product-item:hover .product-hover .btn.rounded-circle:nth-child(2) {
    transition-delay: 0.1s;
}

.product-hover .btn.rounded-circle:hover {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
}

.product-hover .wishlist-form button {
    border: none;
}

/*** Product Content ***/
.product-content {
    padding: 20px 16px;
}

.product-content p.text-uppercase {
    font-size: 11px;
    letter-spacing: 1px;
}

.product-content a.h5 {
    font-size: 16px;
    transition: 0.4s;
}

.product-content a.h5:hover {
    color: var(--bs-primary) !important;
}

.product-content .btn.rounded-pill {
    font-size: 14px;
    padding: 8px 22px !important;
}

/*** Color Swatches ***/
.color-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 4px;
    border: 2px solid var(--bs-white);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
    cursor: pointer;
    vertical-align: middle;
    transition: 0.3s;
}

.color-dot:hover {
    transform: scale(1.2);
}

/*** Pagination (custom) ***/
.pagination {
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination .page-item .page-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px !important;
    color: var(--bs-dark);
    border: 1px solid rgba(0, 0, 0, .1);
    transition: 0.4s;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
}

/*** Responsive ***/
@media (max-width: 991.98px) {
    .product-img-box {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .product-content {
        padding: 18px 14px;
    }

    .product-hover .btn.rounded-circle {
        width: 38px;
        height: 38px;
    }

    .product-img-box {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .product-img-box {
        height: 190px;
    }

    .product-image {
        padding: 12px;
    }
}

/*** Shop Page End ***/


/* =====================================================
    CART PAGE
   ===================================================== */

.cart-item {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    transition: .35s;
    border: 1px solid rgba(0, 0, 0, .04);
}

.cart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.cart-image {
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
}

.cart-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s;
}

.cart-item:hover .cart-image img {
    transform: scale(1.08);
}

.cart-item h4 {
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.badge {
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
}

.remarks {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--bs-primary);
}

.remarks strong {
    display: block;
    margin-bottom: 8px;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    transition: .3s;
}

.qty-btn:hover {
    background: var(--bs-secondary);
    transform: scale(1.08);
}

.qty-wrapper input {
    width: 70px;
    height: 45px;
    border-radius: 50px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: 700;
    background: #fff;
}

.item-total {
    color: var(--bs-primary);
    font-size: 32px;
    font-weight: 700;
}

.cart-summary {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    font-weight: 700;
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #555;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-primary);
}

.cart-summary .btn {
    height: 56px;
    font-size: 17px;
    font-weight: 600;
}

.empty-cart-box {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.empty-cart-img {
    width: 220px;
}

.empty-cart-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.empty-cart-box p {
    font-size: 17px;
    margin-bottom: 30px;
}

.btn-danger {
    border-radius: 50px;
    padding: 10px 25px;
    transition: .3s;
}

.btn-danger:hover {
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .cart-summary {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .item-total {
        margin-top: 20px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cart-item {
        padding: 20px;
        text-align: center;
    }

    .cart-image {
        margin-bottom: 20px;
    }

    .qty-wrapper {
        justify-content: center;
        margin-top: 20px;
    }

    .summary-row {
        font-size: 15px;
    }

    .summary-total {
        font-size: 22px;
    }

    .empty-cart-box {
        padding: 35px;
    }

    .empty-cart-img {
        width: 170px;
    }
}

@media (max-width: 576px) {
    .product-price {
        font-size: 24px;
    }
    .cart-summary {
        padding: 25px;
    }
    .summary-total {
        font-size: 20px;
    }
    .qty-btn {
        width: 40px;
        height: 40px;
    }
    .qty-wrapper input {
        width: 60px;
        height: 40px;
    }
}


/*** Contact Page Start ***/

/*** Section Title ***/
.contact .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.contact .section-title span {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 700;
    color: var(--bs-primary);
    position: relative;
    padding-bottom: 10px;
}

.contact .section-title span::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: var(--bs-secondary);
}

.contact .section-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0 15px 0;
    color: var(--bs-dark);
}

.contact .section-title p {
    color: #6c7a89;
    line-height: 1.7;
}

.contact.section {
    padding: 60px 0 100px 0;
}

/*** Map Card ***/
.map-card {
    height: 100%;
    min-height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
    filter: grayscale(10%);
    transition: 0.5s;
}

.map-card:hover iframe {
    filter: grayscale(0%);
}

/*** Contact Info Card ***/
.contact-info-card {
    background: var(--bs-white);
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    padding: 35px;
    height: 100%;
}

.contact-info-card hr {
    margin: 25px 0;
    opacity: 0.08;
}

/*** Info Rows (call / email / address) ***/
.info-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: 0.4s;
    margin-bottom: 8px;
}

a.info-row:hover {
    background: color-mix(in srgb, var(--bs-primary) 6%, transparent);
    transform: translateX(6px);
}

.info-row-static {
    cursor: default;
}

.info-row-static:hover {
    background: none;
    transform: none;
}

.info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--bs-primary) 10%, transparent);
    color: var(--bs-primary);
    font-size: 20px;
    position: relative;
    transition: 0.4s;
}

a.info-row:hover .info-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.info-row h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--bs-dark);
}

.info-row p {
    color: #6c7a89;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
}

.info-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: 0.4s;
    color: var(--bs-primary);
    font-size: 18px;
}

a.info-row:hover .info-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/*** Pulsing ring on the Call icon, to draw the eye to tap-to-call ***/
.info-icon.pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--bs-primary);
    opacity: 0.4;
    animation: iconPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/*** Social Icons ***/

.social-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bs-light);
    color: var(--bs-dark);
    font-size: 19px;
    transition: 0.4s;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--bs-white);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.whatsapp:hover {
    background: #25d366;
}

.social-icon.telegram:hover {
    background: #229ed9;
}

/*** Floating WhatsApp Button ***/
.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--bs-white);
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 99;
    transition: 0.4s;
}

.whatsapp-float:hover {
    color: var(--bs-white);
    transform: scale(1.08);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    animation: iconPulse 2s ease-out infinite;
    z-index: -1;
}

/*** Responsive ***/
@media (max-width: 991.98px) {
    .map-card {
        min-height: 300px;
    }

    .map-card iframe {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .contact.section {
        padding: 40px 0 70px 0;
    }

    .contact .section-title h2 {
        font-size: 26px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .info-row {
        gap: 14px;
        padding: 12px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }

    .info-arrow {
        display: none;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        left: 20px;
        bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .map-card,
    .map-card iframe {
        min-height: 250px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}
/*** Contact Page End ***/