
.content-wrapper{
    background: unset;
}

@media (min-width: 992px) {
    .content-wrapper .header-transparent
    {
        position: absolute;
        width: 100%;
    }
    .navbar-expand-lg .navbar-collapse .nav-link {
        padding: 13px 22px 10px 22px;
    }
    .navbar-stick:not(.navbar-dark) .nav-link {
        padding: 30px 20px;
    }


    /* ===== Enhanced Apple Glass effect (visible, elegant, and light) ===== */
    /* :not(.navbar-stick) .noise-glass {
        position: relative;
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: saturate(200%) blur(28px);
        -webkit-backdrop-filter: saturate(200%) blur(28px);
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 18px;
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        overflow: hidden;
        transition: all 0.4s ease;
    } */

    /* ===== Highlight reflection gradient (subtle Apple glow) ===== */
    /* :not(.navbar-stick) .noise-glass::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.3) 35%,
            rgba(255, 255, 255, 0.1) 100%
        );
        mix-blend-mode: overlay;
        opacity: 0.65;
        pointer-events: none;
        z-index: 1;
    } */

    /* ===== Slight vignette for realistic light falloff ===== */
    /* :not(.navbar-stick) .noise-glass::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at top center,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 80%,
            rgba(255, 255, 255, 0) 100%
        );
        pointer-events: none;
        opacity: 0.5;
        z-index: 2;
    } */

    /* ===== When navbar-stick is active, remove glass effect ===== */
    /* .navbar-stick .noise-glass {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        transition: all 0.3s ease;
    } */

    /* .navbar-social-icons
    {
        padding: 5px;
        border-radius: 20px;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: revert-layer;
    }
    .btn-glass {
        padding: 0.80rem 1.5rem 0.60rem 1.5rem;
        font-size: 0.95rem;
    } */
}



/* ===== Base Glass Button Style ===== */
/* .btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.80rem 1.5rem 0.60rem 1.5rem;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
} */

/* ===== Light Glass Button (Apple style) ===== */
/* .btn-glass-light {
    background: rgba(255, 255, 255, 0.35);
    color: #1a1a1a;
    box-shadow: unset;
}
.btn-glass-light:hover {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.btn-glass-light:active {
    background: rgba(255, 255, 255, 0.55);
    transform: scale(0.98);
} */

/* ===== Dark Glass Button ===== */
/* .btn-glass-dark {
    background: rgba(30, 30, 30, 0.35);
    color: #fff;
    border: unset;
    box-shadow: unset;
}
.btn-glass-dark:hover {
    background: rgba(30, 30, 30, 0.45);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.btn-glass-dark:active {
    background: rgba(30, 30, 30, 0.55);
    transform: scale(0.98);
} */

/* ===== Primary Apple Blue (you can change color easily) ===== */
/* .btn-glass-primary {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: unset;
    box-shadow: unset;
}
.btn-glass-primary:hover {
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.3);
}
.btn-glass-primary:active {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(0.98);
} */

/* ===== Optional glow on hover ===== */
/* .btn-glass::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-glass:hover::after {
    opacity: 0.2;
} */
/* ===== Brand Green Apple Glass Button ===== */
/* .btn-glass.btn-glass-green {
    background: rgb(0, 84, 43);
    color: #fff;
    border: unset;
    border-radius: 14px;
    padding: 0.80rem 1.5rem 0.60rem 1.5rem;
    font-weight: 500;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
} */

/* ===== Hover: brighter tone and more glow ===== */
/* .btn-glass.btn-glass-green:hover {
    background: rgba(0, 84, 44, 0.45);
    box-shadow:
        0 6px 18px rgba(0, 84, 44, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
} */

/* ===== Active: pressed look ===== */
/* .btn-glass.btn-glass-green:active {
    background: rgba(0, 84, 44, 0.55);
    transform: scale(0.98);
    box-shadow:
        0 2px 8px rgba(0, 84, 44, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
} */

/* ===== Light reflection layer ===== */
/* .btn-glass.btn-glass-green::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.1) 60%
    );
    mix-blend-mode: overlay;
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.btn-glass.btn-glass-green:hover::after {
    opacity: 0.45;
} */
.nav-link{
    font-weight: 500;
}

.bottom-left-swiper {
    position: absolute;
    bottom: 30px;       /* distance from bottom */
    left: 60px;         /* distance from left */
    width: 350px;       /* adjust size as needed */
    max-width: 25vw;    /* responsive limit */
    z-index: 3;
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    border-radius: 20px;
    overflow: hidden;
    height: 242px !important;
}
.bottom-left-swiper img {
    width: 100%;
    height: auto;
    border-radius: 20px;

}
.bottom-left-swiper .swiper-slide .post-body {
    position: absolute;
    z-index: 999999999;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px 20px;
    border-radius: 14px;

    background: rgba(199, 255, 177, 0.077);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    /* border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); */
    color: #fff;
    text-align: start;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);

}
/* .swiper-controls .swiper-navigation .swiper-button.swiper-button-prev,.swiper-controls .swiper-navigation .swiper-button.swiper-button-next
{
    top: 39px !important;
} */
.display-1 {
  line-height: 1.4 !important;
}

/* .nav-item:hover .nav-link {
  color: #00542c !important;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
} */

.section-frame {
    background-image: url('../img/aqd A.jpg');
    background-repeat: no-repeat;
    /* background-size: 60px auto; */
    background-position: center center;
    background-blend-mode: overlay;
    opacity: 0.9;
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
    background-color: #c1ac6c !important;
    border-color: #c1ac6c !important;
    color: #000 !important;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  line-height: 1.8;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  color:white;
  transform: scale(1.1);
}
.offcanvas {
  color: #000 !important;
  background-color: #fff !important;
}
/* Make only the sidebar (offcanvas menu) text black */
.offcanvas-nav,
.offcanvas-nav .offcanvas-header .btn-close,
.offcanvas-nav .nav-link,
.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link:focus,
.offcanvas-nav .dropdown-item,
.offcanvas-nav .dropdown-item:hover,
.offcanvas-nav .dropdown-item:focus,
.offcanvas-nav .social a i,
.offcanvas-nav .social a:hover i {
  color: #000 !important;
}
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-collapse .nav-link {
    color: #000 !important;
  }
}