@font-face {
    font-family: "YaroBg";
    src: url("/static/vendor/googleFonts/YaroOp.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Airbnb";
    src: url("/static/vendor/googleFonts/AirbnbCereal_W_Bk.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AirbnbLight";
    src: url("/static/vendor/googleFonts/AirbnbCereal_W_Lt.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "raleway";
    src: url('/static/vendor/googleFonts/Raleway-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}


/* Apply custom font */
.yaroBg {
    font-family: "YaroBg";
}

.airbnbLight {
    font-family: "AirbnbLight";
}

.raleway {
    font-family: "raleway";
}

body {
    font-family: "Airbnb";
    color: white;
    scroll-behavior: smooth;
    /* padding-bottom: 150px; */
    overflow-x: hidden !important;
    text-transform: capitalize;
    background: black;
}

/* body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to right, #D784CE, #1D3A28);
    z-index: -1;
    will-change: transform;
} */

/***************************************Navbar style start****************************************/

#preloader {
    position: fixed;
    inset: 0;
    background: #D784CE;
    /* theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* FIX: flex column to center logo + ring */
.preloaderInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    transform: scale(1);
    transition: transform .6s ease;
}

.preloaderLogo {
    margin-bottom: 16px;
}

/* Ring Loader */
.loaderRing {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(34, 255, 78, 0.2);
    border-top-color: #D784CE;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* EXIT animation */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide .preloaderInner {
    transform: scale(0.92);
}



.appHeader {
    transition: transform 0.5s ease, box-shadow 0.35s ease;


}

.appHeader.scrolled {
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.appHeader.hideHeader {
    transform: translateY(-100%);
    /* optional: add slight shadow when hidden for depth */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

header {
    z-index: 200;
    font-family: "AirbnbLight";
}

nav {
    /* position: fixed; */
    /* width: 100%; */
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    /* background: linear-gradient(to right, #D784CE, #1D3A28); */
    background: transparent;

}


.myNav .d-flex {
    align-items: center !important;
}

@media(max-width:1000px) {
    .mainNavLogo {
        width: 80px;
    }
}

/* default = mobile */
.myNavLinkUl {
    display: none;
}

/* desktop only */
@media (min-width: 1001px) {
    .myNavLinkUl {
        display: flex;
    }
}


nav ul {
    list-style: none;
    /* display: flex; */
    gap: clamp(24px, 4vw, 68px);
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px !important;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 300;
}


nav ul li a {
    position: relative;
}

nav ul li a::before,
nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: #b3adad;
    transition: width 0.35s ease;
}

/* Left line */
nav ul li a::before {
    right: 50%;
    margin-right: 10px;
}

nav ul li a::after {
    left: 50%;
    margin-left: 10px;
}

/* Center dot */
nav ul li a span {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Hover */
nav ul li a:hover::before,
nav ul li a:hover::before,
nav ul li a:hover::after,
nav ul li a:focus::before,
nav ul li a:focus::after,
nav ul li a:focus-visible::before,
nav ul li a:focus-visible::after,
nav ul li a.active::before,
nav ul li a.active::after {
    width: 30%;
}

nav ul li a:hover span,
nav ul li a:focus span,
nav ul li a:focus-visible span,
nav ul li a.active span {
    opacity: 1;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:focus-visible,
nav ul li a.active {
    transform: translateY(-1px) scale(1.04) !important;
}

nav ul li a {
    transition: transform 0.3s ease, color 0.3s ease !important;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:focus-visible,
nav ul li a.active {
    color: #D784CE !important;
}

.mobileToggle {
    display: none;
    cursor: pointer;
    font-size: 30px !important;
}

.mobileToggle:hover {
    color: #D784CE;
    transform: scale(1.1);
    text-shadow: 0 0 12px #ff22ffb3;
}


@media (max-width: 1000px) {
    .myNav ul {
        flex-direction: column;
        gap: 24px;
    }

    .mobileToggle {
        display: block;
    }
}

.servicesMenu {
    position: relative;
}

/* Base hidden */
.servicesDropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    min-width: 410px;
    background: #000;
    padding: 10px 0;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.35) 2px 4px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


/* Hover (desktop) */
.servicesMenu:hover .servicesDropdown,
.servicesMenu.active .servicesDropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    overflow: hidden;
}

/* Dropdown list */
.servicesDropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 0px !important;
    overflow: visible;
}

.servicesDropdown li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px !important;
    transition: background 0.3s ease;
    font-size: 16px !important;
}

/* Hover effect */
.servicesDropdown li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.servicesDropdown ul li a::before {
    content: "";
    position: absolute;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: linear-gradient(to right, #D784CE, #000);
    transition: width 0.35s ease;
}

.servicesDropdown ul li a::after {
    background: linear-gradient(to right, #000, #D784CE);
}

.servicesDropdown ul li a span {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 6px;
    height: 6px;
    background: #D784CE !important;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Desktop */

.myNav,
nav {
    overflow: visible;
}

/* Base */
.rotateChevron {
    margin-left: 6px;
    transition: transform 0.3s ease;
}


/* Mobile – when collapse is open */
.servicesMenu .servicesCollapse.show~.servicesLink .rotateChevron,
.servicesMenu.active .rotateChevron {
    transform: rotate(180deg);
}

/* Mobile touch friendly */
@media (max-width: 1000px) {
    .servicesMenu:hover .rotateChevron {
        transform: none;
    }
}


.mobileOffcanvasBody ul {
    gap: 28px;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-align: center;
    padding-left: 0px !important;
    background-color: white;
}




.mobileOffcanvasBody .myNavLinkUl .linkLi a {
    display: block;
    padding: 10px 15px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(16px, 2vw, 18px);
    border-right: 3px solid transparent !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize !important;
    background: rgba(205, 11, 137, 0.174);
}

/* Hover / focus effect */
.mobileOffcanvasBody .myNavLinkUl .linkLi a:hover,
.mobileOffcanvasBody .myNavLinkUl .linkLi a:focus,
.mobileOffcanvasBody .myNavLinkUl .linkLi a.active {
    background: rgba(47, 139, 26, 0.08);
    padding-left: 30px;
    border-right: 3px solid #D784CE !important;
}


/* Optional – small dot on hover */
.mobileOffcanvasBody .myNavLinkUl .linkLi a::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #D784CE;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.25s ease;
}

.mobileOffcanvasBody .myNavLinkUl .linkLi a:hover::before,
.mobileOffcanvasBody .myNavLinkUl .linkLi a:focus::before,
.mobileOffcanvasBody .myNavLinkUl .linkLi a:active::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Mobile */
@media (max-width: 1000px) {
    .servicesDropdown {
        display: none !important;
    }

    .servicesCollapse a {
        position: relative;
        color: #fff !important;
        padding: 10px 15px 10px 32px;
        display: block;
        transition: background 0.25s ease, padding-left 0.25s ease;
    }

    .servicesCollapse a::before {
        content: "";
        position: absolute;
        left: 14px;
        top: 50%;
        width: 9px;
        height: 9px;
        background: #D784CE;
        border-radius: 50%;
        transform: translateY(-50%) scale(0);
        opacity: 0;
        transition: all 0.25s ease;
    }

    .servicesCollapse a::after {
        content: "";
        position: absolute;
        left: 10px;
        top: 50%;
        width: 17px;
        height: 17px;
        border: 1.5px solid rgba(227, 13, 163, 0.6) !important;
        border-radius: 50%;
        transform: translateY(-50%) scale(0.6);
        opacity: 0;
        transition: all 0.25s ease;
    }

    .servicesCollapse a:hover,
    .servicesCollapse a:focus,
    .servicesCollapse a:active {
        background: rgba(255, 255, 255, 0.08) !important;
        padding-left: 36px;
    }

    .servicesCollapse a:hover::before,
    .servicesCollapse a:focus::before {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    .servicesCollapse ul {
        gap: 0 !important;
        padding: 8px 0;
        background-color: #D784CE !important;
    }
}

.mobileOffcanvasBody ul li a {
    color: #0b420f;
    text-align: start !important;
    font-weight: bold;
    font-size: clamp(16px, 2vw, 18px) !important;

}

.mobileOffcanvasBody {
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Chrome, Safari, Edge */
.mobileOffcanvasBody::-webkit-scrollbar {
    display: none;
}

.canvasClose {
    font-size: 40px !important;
    color: #fff;
    cursor: pointer;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.canvasClose:hover {
    color: #D784CE !important;
    transform: rotate(90deg) scale(1.08);
    opacity: 0.9;
}

.searchTrigger {
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    /* initial color */
}

.searchTrigger:hover {
    color: #D784CE;
    /* change color on hover */
    transform: scale(1.15);
    /* slight zoom effect */
}

/***************************************Navbar style end?****************************************/

/***************************************index page hero sec style start****************************************/

/***************************************index page - search overlay style start****************************************/

.globalSearchOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 90px;

    overflow: hidden;

    opacity: 0;
    transform: scale(1.03);
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    pointer-events: none;
}

.globalSearchOverlay.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* lock scroll */
body.searchOpen {
    position: fixed;
    width: 100%;
    overflow: hidden;
}


.searchBox {
    width: min(700px, 90%);
    position: relative;
}

.searchBox input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    border-radius: 50px;
    border: none;
    outline: none;
    background: #e2229b1f;
    border: 2px solid #db3ec9;
    color: #d3ded8;
    font-weight: 500;
}

.closeSearch {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: clamp(1.5rem, 2vw, 2.2rem) !important;
    cursor: pointer;
    color: #D784CE;

    font-weight: bold;
    z-index: 10000;
    /* ensure it’s above the overlay content */
}

.closeSearch:hover {
    color: #D784CE;
    transform: scale(1.1);
    transition: all 0.2s ease;
}


.searchResults {
    margin-top: 1.2rem;
    max-height: 300px;
    overflow-y: auto;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}


.searchItem {
    padding: 1rem 1.5rem;
    cursor: pointer;

    color: #d3ded8;
    font-weight: 500;

    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.searchItem:hover {
    background: rgba(255, 34, 196, 0.18);
    color: #D784CE;
}

.searchItem:last-child {
    border-bottom: none;
}


.searchOverlayHeader {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
}

.searchOverlayLogo {
    width: clamp(48px, 6vw, 78px);
    height: auto;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.searchOverlayLogo:hover {
    transform: scale(1.05);
    opacity: 1;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 0px !important;
}

::-webkit-scrollbar-thumb {
    background: #dc098b !important;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d00e9c !important;
    cursor: pointer;
}


@media (hover: hover) and (pointer: fine) {
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-thumb {
        background: #dc09b5;
    }
}


/***************************************index page - style endt****************************************/


.ramzanAdHeroSecContainer {
    background-image: url('/static/img/adPageImg/ramzanAdHeroBg.png');
    background-size: cover;
    background-position: center;
    height: 110vh;
}

@media(max-width:908px) {
    .ramzanAdHeroSecContainer {
        height: 150vh;
    }
}

@media(max-width:398px) {
    .ramzanAdHeroSecContainer {
        height: 130vh;
    }
}

@media(max-width:300px) {
    .ramzanAdHeroSecContainer {
        height: 140vh;
    }
}




.btnRamzan {
    position: relative;
    background: linear-gradient(90deg, #D784D2, #FC936D);
    background-size: 200% 100%;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .btnRamzan {
        padding: 10px 22px;
        font-size: 15px;
    }
}

/*  Mobile (≤424px) */
@media (max-width: 424px) {
    .btnRamzan {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
        text-align: center;
    }
}

/* Gradient slide effect */
.btnRamzan:hover {
    background-position: 100% 0;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(215, 132, 210, 0.4);
    color: #fff;
}

/* Shine animation */
.btnRamzan::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.btnRamzan:hover::before {
    left: 130%;
}

.btnIcon i {
    color: rgb(12, 117, 12);
    font-size: 23px !important;
}


.ramzanAdHeroSecContainer {
    padding-top: 100px;
}


.heroContentMain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: clamp(2rem, 5vw, 4rem);
}

/* LEFT SIDE */
.ramzanAdHeroSecContainerTextContent {
    flex: 1;
}

.ramzanAdHeroSecContainerTextContent h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.ramzanAdHeroSecContainerTextContent p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 520px;
}

/* RIGHT SIDE CARD */
.heroSideBox {
    flex: 0 0 380px;
    background: #ffffff;
    color: #000;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.heroSideImage img {
    border-radius: 15px;
    margin-bottom: 18px;
}

.heroSideBoxImg {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.heroSideBoxImg img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease, filter 0.4s ease;
}

/* Hover Effect */
.heroSideBoxImg:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}


.heroSideContent p {
    margin-bottom: 20px;
    margin-top: 10px !important;

}


@media (max-width: 992px) {

    .heroContentMain {
        flex-direction: column;
        text-align: center;
    }

    .ramzanAdHeroSecContainerTextContent h1 {
        font-size: 38px;
    }

    .heroSideBox {
        width: 100%;
        max-width: 400px;
    }

    .ramzanAdHeroSecContainerTextContent p {
        margin: 0 auto;
    }
}



@media (max-width: 424px) {
    .heroSideBox {
        flex: 0 0 280px;
    }
}





.ramzanAdSecondBlockSec {
    background-image: url("/static/img/adPageImg/ramzanAdOfferSecBg.png");
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    padding: clamp(20px, 10vw, 150px) clamp(20px, 6vw, 100px);
}



.ramzanAdSecondBlockContainer h3 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    margin: 0 auto 60px;
    line-height: 1.3;
    text-align: center;
}



/* Cards Wrapper */
.ramzanCardsWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

@media (max-width: 576px) {

    .ramzanCardsWrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Last card full width */
    .ramzanCardsWrapper .ramzanCard:last-child {
        grid-column: 1 / -1;
    }
}


/* Default Card */
.ramzanCard {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: left;
    min-height: 220px;
    overflow: hidden;
    transition: color 0.4s ease, transform 0.4s ease;
}

/* Gradient Overlay (Hidden Initially) */
.ramzanCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D482D8, #FD936B);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

/* Keep content above gradient */
.ramzanCard h3,
.ramzanCard p {
    position: relative;
    z-index: 1;
}

/* Default Number */
.cardNumber {
    font-size: 70px !important;
    font-weight: 600;
    color: #FF8755;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.ramzanCard p {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    transition: color 0.4s ease;
}

/* Active Card */
.activeCard::before {
    opacity: 1;
}

.activeCard .cardNumber,
.activeCard p {
    color: #fff;
}

/* Optional Smooth Lift */
.ramzanCardAnim1.activeCard {
    transform: translateY(-8px);
}


.activeCard .cardNumber {
    color: #fff;
}

.activeCard p {
    color: #fff;
}

/* Hover Effect */
.ramzanCard:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 20px 40px rgba(215, 3, 109, 0.685);
    cursor: pointer;
    filter: saturate(1.5);
}



.ramzanAdThirdBlockSec {
    background-image: url("/static/img/adPageImg/ramzanAdOfferSecBg.png");
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    padding: clamp(20px, 10vw, 150px) clamp(20px, 6vw, 100px);

}

.ramzanExclusiveOfferPackageContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 6vw, 80px);
    max-width: 1300px;
    margin: 0 auto;
}

.exclusiveImages {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 420px;
    flex-shrink: 0;
    perspective: 1000px;
}


.exclusiveImages img {
    position: absolute;
    border-radius: 24px;
    width: 75%;
    top: 80px;
    animation-duration: 9s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
    transition: box-shadow 0.4s ease;
}


.img1 {
    left: 0;
    animation-name: card1;
}

.img2 {
    left: 60px;
    animation-name: card2;
}

.img3 {
    left: 120px;
    animation-name: card3;
}


/* Image layering balanced */
.img1 {
    left: 0;
    top: 80px;
    z-index: 1;
    transform: rotate(-12deg);
}

.img2 {
    left: 60px;
    top: 80px;
    z-index: 2;
    transform: rotate(0deg);
}

.img3 {
    left: 120px;
    top: 80px;
    z-index: 3;
    transform: rotate(12deg);
}


@keyframes card1 {

    0%,
    100% {
        transform: rotate(-12deg) scale(1) translateY(-10px);
        z-index: 3;
        filter: blur(0);
        opacity: 1;
    }

    33% {
        transform: rotate(-12deg) scale(0.92) translateX(50px);
        z-index: 1;
        filter: blur(2px);
        opacity: 0.85;
    }

    66% {
        transform: rotate(-12deg) scale(0.96);
        z-index: 2;
        filter: blur(1px);
        opacity: 0.95;
    }
}


@keyframes card2 {
    0% {
        transform: rotate(0deg) scale(0.96);
        z-index: 2;
        filter: blur(1px);
        opacity: 0.95;
    }

    33% {
        transform: rotate(0deg) scale(1) translateY(-10px);
        z-index: 3;
        filter: blur(0);
        opacity: 1;
    }

    66% {
        transform: rotate(0deg) scale(0.92) translateX(50px);
        z-index: 1;
        filter: blur(2px);
        opacity: 0.85;
    }

    100% {
        transform: rotate(0deg) scale(0.96);
        z-index: 2;
        filter: blur(1px);
        opacity: 0.95;
    }
}


@keyframes card3 {
    0% {
        transform: rotate(12deg) scale(0.92);
        z-index: 1;
        filter: blur(2px);
        opacity: 0.85;
    }

    33% {
        transform: rotate(12deg) scale(0.96);
        z-index: 2;
        filter: blur(1px);
        opacity: 0.95;
    }

    66% {
        transform: rotate(12deg) scale(1) translateY(-10px);
        z-index: 3;
        filter: blur(0);
        opacity: 1;
    }

    100% {
        transform: rotate(12deg) scale(0.92);
        z-index: 1;
        filter: blur(2px);
        opacity: 0.85;
    }
}


/* Premium hover */
.exclusiveImages img:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.exclusiveContent {
    flex: 1;
}

.exclusiveContent h2 {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 18px;
}

.exclusiveContent p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.offerBadge {
    background: linear-gradient(90deg, #D482D8, #FD936B);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 13px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offerBadge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(221, 11, 112, 0.577);
}



@media (max-width: 992px) {

    .ramzanExclusiveOfferPackageContainer {
        flex-direction: column;
        text-align: center;
        gap: 160px;
    }

    .exclusiveImages {
        max-width: 400px;
        height: 360px;
        margin: 0 auto;
    }

    .exclusiveContent {
        max-width: 600px;
    }

    .offerBadge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {

    .exclusiveImages {
        height: 200px;
        max-width: 250px;
        left: -20px;
    }

    .exclusiveImages img {
        width: 85%;
    }

    .img1 {
        left: 20px;
        top: 60px;
        transform: rotate(-10deg);
    }

    .img2 {
        left: 40px;
        top: 60px;
        transform: rotate(0deg);
    }

    .img3 {
        left: 50px;
        top: 60px;
        transform: rotate(10deg);
    }

    .exclusiveContent h2 {
        font-size: 24px;
    }

    .exclusiveContent p {
        font-size: 14px;
    }

    .offerBadge {
        font-size: 14px;
        padding: 8px 16px;
    }
}



.ramzanPackageForBCCorporateContainer {
    background-image: url("/static/img/adPageImg/ramzanAdBCBg.png");
    background-size: cover;
    background-position: center;
    /* padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 100px); */
    text-align: center;
    /* height: 100vh; */
}


.corporateHeader {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 70px;
    text-align: start;
    padding: clamp(30px, 6vw, 80px);
    gap: 20px;
}

@media(max-width:424px) {
    .corporateHeader {
        flex-wrap: wrap;
    }
}

.splide__slide {
    display: flex;
    height: auto;
}

.corporateCard {
    width: 100%;
}


.corporateHeader h3 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    max-width: 800px;
}

.corporateHeader p {
    font-size: 16px;
    opacity: 0.85;
}

.corporateCards {
    gap: 35px;
    margin: 0 auto;
}

.splide__slide {
    display: flex;
    height: auto;
}

.corporateCard {
    width: 100%;
}

.splideTrack {
    padding: 50px;
}

/* Default slide */
.splide__slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.9);
}

/* Active (center) slide */
.splide__slide.is-active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}


.corporateCard {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(227, 32, 182, 0.725);
}


.corporateCard::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    background: linear-gradient(135deg, #D482D8, #FD936B);
    z-index: -1;
    opacity: 0.6;
    filter: blur(20px);
}

.corporateCard img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.corporateCard span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #D482D8, #FD936B);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 15px 15px 0 0;
}

.corporateCard:hover {
    transform: translateY(-12px) scale(1.02);
    filter: saturate(1.5);
}

@media (max-width: 576px) {

    .corporateCards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .corporateCard span {
        font-size: 12px;
        padding: 10px;
    }
}



.ramzanAdFifthBlockSecContainer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    /* padding: 80px 100px; */
    background: #000;
    gap: 60px;
}

/* ================= LEFT IMAGE ================= */


.imageWrapper {
    overflow: hidden;
    /* important for zoom */
    border-radius: 0 50px 0 0;
}

.imageWrapper img {
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 0 50px 0 0;
    transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
}

/* Hover Effect */
.imageWrapper:hover img {
    transform: scale(1.05) translateY(-5px);
    filter: saturate(1.58);
    box-shadow: inset 0 30px 60px rgba(209, 4, 209, 0.86);
}

/* ================= RIGHT CONTENT ================= */

.rightContent {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 40px;
}



.textBlock {
    text-align: right;
    margin-bottom: 40px;
    padding: 40px;
}


.textBlock h3 {
    position: relative;
    font-size: 48px;
    line-height: 1.2;
    z-index: 1;
    background: linear-gradient(90deg, #D784CE, #FB926F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.textBlock h3::before {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 50%;
    height: 120%;
    transform: translateY(-50%);
    z-index: -1;
    border-right: 3px solid #FC926D;
    background: linear-gradient(to right, #000000, #fb906d36);
    opacity: 0.3;
}


.textBlock p {
    color: #ddd;
    margin-top: 25px !important;
    font-size: 16px;
}

/* ================= CTA CARD ================= */

.ctaCard {
    position: relative;
    padding: 20px;
    max-width: 600px;
    border-radius: 20px;
    border: 2px solid transparent;
    background:
        linear-gradient(#1E1423, #1E1423) padding-box,
        linear-gradient(to right, #D482D3, #FD936C) border-box;

    backdrop-filter: blur(10px);
    text-align: center;
}

.ctaCard h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.ctaCard p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 25px;
}


@media (max-width: 992px) {

    .ramzanAdFifthBlockSecContainer {
        flex-direction: column;
        padding: 60px 40px;
    }

    .imageWrapper img {
        width: 100%;
    }

    .rightContent {
        align-items: center;
        padding: 20px;
    }

    .textBlock {
        text-align: center;
        padding: 20px;
    }

    .textBlock h3 {
        font-size: 36px;
    }

    .ctaCard {
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .ramzanAdFifthBlockSecContainer {
        padding: 40px 20px;
    }

    .imageWrapper img {
        width: 100%;
    }

    .textBlock h3 {
        font-size: 28px;
        line-height: 1.3;
    }

    .textBlock p {
        font-size: 14px;
    }

    .ctaCard {
        padding: 25px;
        border-radius: 15px;
    }

    .ctaCard h5 {
        font-size: 18px;
    }

    .ctaCard p {
        font-size: 13px;
    }
}


.textPink {
    background: linear-gradient(90deg, #D784CE, #FB926F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.ramzanCardYtop {
    transform: translateY(-50px);
}

.ramzanCardYBottom {
    transform: translateY(50px);
}

.ramzanAdSecondBlockContainerTopText {
    margin-bottom: 100px;
}


@media(max-width:576px) {
    .ramzanCardsWrapper2 .ramzanCard:last-child {
        grid-column: 1;
    }

}

.ramzanContactUsSecContainer {
    position: relative;
    padding: 100px 100px;
    background: #000;
    overflow: hidden;
}

/* Radial Gradient Glow */
.ramzanContactUsSecContainer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #FD936B 0%, #D483D6 60%, transparent 70%);
    top: -150px;
    left: -150px;
    opacity: 0.4;
    filter: blur(80px);
    z-index: 0;
}

.ramzanContactUsSecContainer::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FD936B 0%, #D483D6 60%, transparent 70%);
    bottom: -150px;
    right: -150px;
    opacity: 0.3;
    filter: blur(80px);
    z-index: 0;
}


.ramzanContactUsSecContainerTextTop {
    text-align: start;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.ramzanContactUsSecContainerTextTop h2 {
    font-size: 48px;
    color: #fff;
}

.contactContentWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

@media(max-width:768px) {
    .contactContentWrapper {
        display: flex;
        align-items: normal !important;
        justify-content: space-between;
        gap: 60px;
        position: relative;
        z-index: 1;
    }
}

.contactImage {
    display: inline-block;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 20px 60px rgba(210, 31, 168, 0.6);

}

.contactImage img {
    max-width: 520px;
    border-radius: 20px;
    transition: all 0.5s ease;
}

/*  Hover Effect */
.contactImage:hover img {
    transform: scale(1.07) rotate(1deg);
    box-shadow:
        0 25px 80px rgba(210, 31, 168, 0.8),
        0 0 40px rgba(253, 147, 108, 0.6);
    filter: brightness(1.08);
}

.contactForm {
    flex: 1;
}

.contactForm .btnRamzan {
    max-width: 300px;
}

.contactForm form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inputRow {
    display: flex;
    gap: 20px;
}

.contactForm input,
.contactForm textarea {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.501);
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s ease;
}

.contactForm input:focus,
.contactForm textarea:focus {
    border-color: #FD936B;
    box-shadow: 0 0 10px rgba(253, 147, 108, 0.3);
}

.contactBottom {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contactBottom h4 {
    color: #fff;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.contactInfoWrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.infoCard {
    padding: 12px 25px;
    border-radius: 30px;
    background: linear-gradient(90deg, #FD936B, #D483D6);
    color: #fff;
    font-size: 14px;
}

@media (max-width: 992px) {

    .contactContentWrapper {
        flex-direction: column;
        text-align: center;
    }

    .contactImage img {
        width: 100%;
        max-width: 400px;
    }

    .inputRow {
        flex-direction: column;
    }

    .ramzanContactUsSecContainer {
        padding: 60px 30px;
    }

    .ramzanContactUsSecContainerTextTop h2 {
        font-size: 32px;
    }
}

.infoCard {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    background: linear-gradient(90deg, #FD936B, #D483D6);
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

.infoCard i {
    font-size: 14px;
}

.infoCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 147, 108, 0.4);
}


.footerCR {
    background-color: #F9907B;
    color: #ffffff;
    font-size: 14px !important;
}


@media(max-width:424px) {

    .footerCR {
        background-color: #F9907B;
        color: #ffffff;
        font-size: 14px !important;
        margin-bottom: 100px !important;
    }

}

.footerCR .mcubeLink {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: 0.3s ease;
}

.footerCR .mcubeLink:hover {
    opacity: 0.8;
    transform: scale(1.05);
}


































/* ===============================
   Floating WhatsApp – Dock Style
================================ */

.floatingMail.dockSplit {
    position: fixed;
    bottom: clamp(18px, 4vw, 28px);
    left: 0;
    /* attach to left edge */
    z-index: 9999;
}

.floatingMail.dockSplit a {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #dc0d63;

    /* right side rounded only */
    border-radius: 0 28px 28px 0;

    box-shadow: 4px 6px 18px rgba(0, 0, 0, 0.25);
    text-decoration: none;

    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

@keyframes mailPulse {
    0% {
        transform: translateX(0) scale(1);
        box-shadow: 4px 6px 18px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: translateX(0px) scale(1.15);
        box-shadow: 6px 10px 22px rgba(0, 0, 0, 0.35);
    }

    100% {
        transform: translateX(0) scale(1);
        box-shadow: 4px 6px 18px rgba(0, 0, 0, 0.25);
    }
}

.floatingMail.dockSplit a {
    animation: mailPulse 2.4s ease-in-out infinite;
}



.floatingMail.dockSplit a:active {
    transform: scale(0.9);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.25);
}

@media(max-width:428px) {
    .floatingMail.dockSplit a {
        width: 46px;
        height: 46px;
    }
}


/* Base */
.floatingWhatsApp.dockSplit {
    position: fixed;
    bottom: clamp(18px, 4vw, 28px);
    right: 18px;

    display: flex;
    align-items: center;

    text-decoration: none;
    z-index: 9999;
}

/* WhatsApp Logo – Left Circle */
.waIconWrap {
    width: 56px;
    height: 56px;

    background: rgba(34, 255, 78, 0.95);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 2;
    animation: waZoomPulse 2.2s ease-in-out infinite;
}

.fa-whatsapp {
    font-size: 2rem !important;
}

.waIcon {
    width: 30px;
    height: 30px;
}

.waBadge {
    margin-left: -14px;
    padding: 6px 18px 6px 26px;
    background: rgba(5, 163, 19, 0.95);

    color: #ffffff;
    font-size: 15px !important;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0 999px 999px 0;
    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .3s ease, box-shadow .3s ease;
}

@media (max-width: 568px) {

    .floatingWhatsApp.dockSplit {
        right: 14px;
        bottom: 18px;
    }

    /* Icon slightly smaller */
    .waIconWrap {
        width: 52px;
        height: 52px;
        animation-duration: 2.8s;
        /* slower = premium */
    }

    .fa-whatsapp {
        font-size: 1.8rem !important;
    }

    /* Hide text badge */
    .waBadge {
        margin-left: -14px;
        padding: 6px 18px 6px 26px;
        background: rgba(5, 163, 19, 0.95);
        color: #fff;
        font-size: 11px !important;
        font-weight: 500;
        white-space: nowrap;
        border-radius: 0 999px 999px 0;
        box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: transform .3s ease, box-shadow .3s ease;
    }

}


/* Hover feel */
@media (hover: hover) {
    .floatingWhatsApp.dockSplit:hover .waIconWrap {
        transform: scale(1.08);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.389);
    }

    .floatingWhatsApp.dockSplit:hover .waBadge {
        transform: translateX(-4px);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.234);
    }
}


/* Zoom in / out */
@keyframes waZoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}