@font-face {
    font-family: 'MolgakClassy';
    src: url('/static/vendor/googleFonts/MolgakClassyRegular-lgX7d.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSans';
    src: url('/static/vendor/googleFonts/NotoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply custom font */
.molgakClassy {
    font-family: "MolgakClassy", cursive;
}


body {
    font-family: "NotoSans", sans-serif;
    /* text-transform: capitalize; */
    color: white !important;
    background: black;
    scroll-behavior: smooth;
    padding-bottom: 100px;
    /* overflow-x: hidden !important; */
}



/***************************************Navbar style start****************************************/
.appHeader {
    transition: transform .35s ease;
}

.appHeader.hideHeader {
    transform: translateY(-100%);
}


header {
    z-index: 200;
}

.navLinks li {
    text-transform: uppercase;
    font-weight: 400;
}

.appNavBar {
    padding: clamp(12px, 3vw, 20px) clamp(20px, 6vw, 90px);
    z-index: 2 !important;
}

.navMenu {
    font-size: clamp(16px, 2.2vw, 20px) !important;
    display: inline-block;
    transition: transform 0.3s ease, background 0.4s ease;
}

/* Gradient Hover */
.navMenu {
    position: relative;
    padding-bottom: 3px;
}

/* Hover Effects */
.navMenu:hover {
    transform: scale(1.08);
    cursor: pointer;
    /* Gradient Text */
    background: linear-gradient(90deg, #b2b2af, #fff4d6, #c0bdb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Dashed Bottom Border Animation */
.navMenu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    border-bottom: 2px dashed #c0bdb3;
    /* dashed line color */
    transition: width 0.25s ease;
}

.navMenu:hover::after {
    width: 50%;
}

.navMenuIcon img {
    transition: transform 0.1s ease;
}

.navMenuIcon img:hover {
    animation: wiggle 0.35s ease;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


.navLinks {
    column-gap: clamp(20px, 6vw, 80px);
}


@media (max-width: 768px) {
    .navLinks {
        display: none !important;
    }

    .fa-list-timeline {
        display: inline !important;
    }

    .pearlLookLogoNav {
        width: 100px !important;
    }
}

.customDropdown {
    position: absolute;
    top: 70px;
    /* adjust according to navbar */
    right: 20px;
    width: 200px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    opacity: 0;
    transform: translateY(-30px) scaleY(0.95);
    /* slightly smaller and higher */
    pointer-events: none;

    transition:
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}



@media(min-width:480px) and (max-width:767px) {
    .customDropdown {
        position: absolute;
        top: 70px;
        right: 156px;
    }
}

.customDropdown.show {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    /* slide down + scale up */
    pointer-events: auto;
}

.dropdownHeader {
    font-weight: 500;
    transition: background 0.3s ease;
}

.dropdownBody {
    padding: 20px !important;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dropdownBody img {
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.dropdownBody img:hover {
    transform: scale(1.3);
    filter: brightness(1.2);
}

.cursorPointer {
    cursor: pointer;
}

/***************************************hero sec style start****************************************/
/* ---------- Hero Container (Animated) ---------- */
.heroDynamicPosters {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Base style for animated images */
.heroImg {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    animation: fadeCycle 8s infinite ease-in-out;
}

/* First image (visible first) */
.img1 {
    position: relative;
    opacity: 1;
    animation: fadeCycle 8s infinite ease-in-out;
}

/* Second overlay image */
.img2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: fadeCycleReverse 8s infinite ease-in-out;
}

/* ---------- Static Slides (NO animation) ---------- */
.heroDynamicPostersDynamicLoad {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.heroDynamicPostersDynamicLoadImg {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;

    /* No animation, remain always visible */
    opacity: 1 !important;
    animation: none !important;
}

/* ---------- Content Styles ---------- */
.heroSectionContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    padding: 10px;
    z-index: 5;
}

.heroSectionContent h1 {
    font-size: clamp(20px, 4vw, 60px) !important;
    line-height: 1.2;
    margin-bottom: 20px;
}

.heroSectionContent p {
    font-size: clamp(14px, 2vw, 20px) !important;
    line-height: 1.5;
    margin-bottom: 30px;
}

@media(max-width:768px) {
    .heroSectionContent p {
        display: none !important;
    }
}

@media(max-width:308px) {
    .heroSectionContent {
        display: none !important;
    }
}

.heroSectionContent .btn {
    padding: clamp(8px, 1vw, 14px) clamp(20px, 2vw, 32px) !important;
    font-size: clamp(14px, 2vw, 18px) !important;
}

/* Fade animation for Slide 1 only */
@keyframes fadeCycle {
    0% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeCycleReverse {
    0% {
        opacity: 0;
    }

    45% {
        opacity: 0;
    }

    55% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.customGrayBadge {
    background: gray;
    font-size: 12px !important;
    padding: 3px 9px;
    border-radius: 20px;
    color: white;
}



/* Mobile fixes */
/* @media (max-width: 768px) {
    .heroImg {
        object-position: center right;
    }
}

@media (max-width: 424px) {
    .heroImg {
        object-position: right -150px center;
    }
} */


/* .heroSwiper,
.swiper-slide {
    height: 100vh;
} */

/* .heroDynamicPostersDynamicLoad {
    background-size: cover;
    background-position: center;
    height: clamp(60vh, 90vh, 100vh);
    display: flex;
    align-items: center;
    background-image: url("/static/img/background/heroBg1.png");

} */

.modal-header {
    border-radius: 0px !important;
}

/* Icon hover animation */
.iconBox {
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.iconBox:hover {
    transform: scale(1.07);
    background-color: #494040;
}

/* Icon size (optional, no inline styles) */
.iconImg {
    width: 40px;
    height: 40px;
    margin: 5px;
}

/* Small gray badge */
.smallBadge {
    font-size: 13px !important;
    background: #e4e4e4;
    border-radius: 20px;
    padding: 5px 13px !important;
    display: inline-block;
    line-height: 1;
}

/* Mobile: 0px – 480px */
@media (max-width: 480px) {
    .smallBadge {
        font-size: 10px !important;
        padding: 3px 8px;
    }

    .iconImg {
        width: 30px;
        height: 30px;
        margin: 3px;
    }
}

/* Tablet: 481px – 768px */
@media (max-width: 768px) and (min-width: 481px) {
    .smallBadge {
        font-size: 10px !important;
        padding: 3px 8px;
    }
}

.printingChargesModal,
.catalogueModal {
    --bs-modal-width: 500px !important
}

.pcModalBody::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.pcModalBody::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 0px !important;
}

.pcModalBody::-webkit-scrollbar-thumb {
    background: #7a7e7bd7 !important;
    border-radius: 15px;
}

.pcModalBody::-webkit-scrollbar-thumb:hover {
    background: #505552 !important;
    cursor: pointer;
}

.orderModalBody .form-control,
.form-select {
    border: 1.6px solid #878b89e7 !important;
    box-shadow: none !important;
    border-radius: 3px !important;
}

/* Tagify Wrapper */
.tagify {
    border: 2px solid #878b89e7 !important;
    border-radius: 2px !important;
    background: #fff !important;
    color: #000 !important;
    min-height: 45px;
}

/* Tag Style */
.tagify__tag {
    background: #000 !important;
    color: #fff !important;
    border-radius: 4px !important;
}

/* Remove icon */
.tagify__tag__removeBtn {
    color: #000000 !important;
    opacity: 0.8;
}

/* Tag Hover */
.tagify__tag:hover {
    background: #111 !important;
}

/* Dropdown (whitelist list) */
.tagify__dropdown__item {
    color: #000 !important;
    background: #fff !important;
}

/* Dropdown Hover */
.tagify__dropdown__item--active {
    background: #000 !important;
    color: #fff !important;
}

/* Placeholder */
.tagify__input::placeholder {
    color: #666 !important;
}

/* Set width of Tagify input */
.myTagify {
    width: 100% !important;
    /* or set fixed: 250px, 300px */
}

/* Tagify container fix */
.myTagify .tagify {
    width: 100% !important;
}


.upload-area {
    padding: 40px;
    border: 2px dashed #000000;
    border-radius: 12px;
    background: #efefef;
    cursor: pointer;
}

.upload-area:hover {
    background: #fff;
}

.preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.preview-item {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    position: relative;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.preview-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4d4d;
    color: #fff;
    padding: 5px 11px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
}

.cropper-box {
    padding: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fafafa;
}

/* Apply 250px height for all devices */
.cropper-container {
    height: 250px !important;
    max-height: 250px !important;
    width: 100% !important;
}

/* Extra safety for ultra-small screens */
@media (max-width: 420px) {
    .cropper-container {
        height: 200px !important;
        max-height: 200px !important;
    }
}

.customOtherGroup .input-group-text {
    height: 40px;
    font-size: 14px;
}

.customOtherGroup input {
    height: 40px;
    font-size: 14px;
}

.deleteFieldWrapper {
    cursor: pointer;
}

@media (max-width: 576px) {
    .smallLabel {
        font-size: 13px;
        padding: 0 8px;
    }

    .customOtherGroup input {
        font-size: 13px;
    }

    .deleteFieldWrapper i {
        font-size: 16px;
    }
}

.input-group-text {
    background: rgb(0, 0, 0) !important;
    color: white;
    border: 2px solid black !important;
}


@media(max-width:424px) {
    .orderModalHeaderLine {
        font-size: 12px !important;
    }
}

.journeyWrapper {
    position: relative;
    padding-left: 70px;
    margin: clamp(30px, 5vw, 80px);
}

/* Outside dashed line */
.timeline {
    position: absolute;
    left: 28px;
    top: 0;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
            #bbb 0 5px,
            transparent 5px 10px);

    overflow: visible;
}

.timeline-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: white;
    border-radius: 10px;
    transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.journeyStep {
    position: relative;
    margin-bottom: 70px;
}

.dot {
    position: absolute;
    left: -53.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid #bbb; */
}

.dot i {
    font-size: 19px;
    /* adjusts tshirt icon size */
    color: #ffffff !important;
    /* icon color */
}

.journeyStep.active .dot {
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.15);
}


/*  Mobile Responsive (Up to 576px) */
@media (max-width: 576px) {

    .journeyWrapper {
        padding-left: 40px;
        margin: clamp(10px, 4vw, 40px);
    }

    .timeline {
        left: 18px;
    }

    .timeline-fill {
        width: 2px;
    }

    .journeyStep {
        margin-bottom: 70px;
    }

    .dot {
        left: -30px;
        /* adjust for small screens */
        width: 20px;
        height: 20px;
    }

    .dot i {
        font-size: 16px;
        /* smaller tshirt icon */
    }

    .journeyStep.active .dot {
        transform: translateY(-50%) scale(1.15);
    }

}


.bgLightBlack {
    background: #222222;
}

.printList {
    padding-left: 0 !important;
    width: 100%;
}

.printList li {
    position: relative;
    margin-bottom: 15px;
    font-size: 20px;
    padding: 8px 12px 8px 45px;
    /* left gap for number */
    border-bottom: 1px solid transparent;
    background: transparent;
    color: white;
    cursor: pointer;
    width: 100%;
    transition:
        font-size 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        padding 0.3s ease;
}

/* Manual number before each li */
.printList {
    counter-reset: printCounter;
}

.printList li {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
}

.printList li::before {
    counter-increment: printCounter;
    content: counter(printCounter) ".";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px !important;
    color: #bbb;
    transition: 0.3s ease;
}

/* ---------- ACTIVE (same as :target) ---------- */
.printList li.activePrintItem {
    font-size: clamp(17px, 4vw, 40px) !important;
    background-color: #1B1B1B !important;
    border-bottom: 1px solid white !important;
    padding-left: 55px !important;
    color: white !important;
}

.plistBoldActive {
    font-size: clamp(17px, 4vw, 40px) !important;
    background-color: #1B1B1B !important;
    border-bottom: 1px solid white !important;
    padding-left: 55px !important;
    color: white !important;
}

/* number style when active (same as focus::before) */
.printList li.activePrintItem::before {
    color: white !important;
    font-size: 28px !important;
}

@media (max-width: 1200px) {

    .printList li {
        font-size: 19px;
        padding: 7px 10px 7px 40px;
        margin-bottom: 14px;
    }

    .printList li::before {
        font-size: 19px !important;
        left: 9px;
    }

    /* Active state */
    .printList li.activePrintItem {
        font-size: 22px !important;
        /* slightly reduced from desktop */
        padding-left: 50px !important;
    }

    .printList li.activePrintItem::before {
        font-size: 22px !important;
    }
}

/* ============================
   MAX WIDTH 768px (Tablets)
   ============================ */
@media (max-width: 768px) {

    .printList li {
        font-size: 18px;
        padding: 6px 10px 6px 35px;
        /* reduce left gap */
        margin-bottom: 12px;
    }

    .printList li::before {
        font-size: 18px !important;
        left: 8px;
    }

    /* Active state */
    .printList li.activePrintItem {
        font-size: 18px !important;
        padding-left: 40px !important;
    }

    .printList li.activePrintItem::before {
        font-size: 18px !important;
    }
}


/* ============================
   MAX WIDTH 424px (Mobile)
   ============================ */
@media (max-width: 424px) {

    .printList li {
        font-size: 16px !important;
        padding: 6px 10px 6px 30px;
        margin-bottom: 10px;
    }

    .printList li::before {
        font-size: 16px !important;
        left: 6px;
    }

    /* Active state */
    .printList li.activePrintItem {
        font-size: 16px !important;
        padding-left: 30px !important;
    }

    .printList li.activePrintItem::before {
        font-size: 16px !important;
    }
}


@media(max-width:768px) {

    .journeyImgContainer {
        flex-wrap: wrap;
    }
}

.journeyImgContainer {
    column-gap: clamp(20px, 8vw, 120px);
    padding: clamp(10px, 5vw, 50px);
}

/* Hover effect on list items */
.printList li:hover {
    background-color: rgba(255, 255, 255, 0.08);
    padding-left: 50px;
    /* slight move right */
    color: #fff;
}

.printList li:hover::before {
    color: #fff;
    font-size: 24px;
}

.journeyImg {
    transition: 0.3s ease;
}

.journeyImg {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.journeyImg:hover {
    transform: scale(1.08);
    filter: saturate(1.2);
}

.journeyImg {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.journeyImg.animating {
    opacity: 0;
    transform: scale(0.95);
}

.videoContainer {
    padding: clamp(5px, 5vw, 10px) clamp(10px, 10vw, 150px);
}

.videoContainer {
    position: relative;
    width: 100%;
}

.videoContainer img.mainImg {
    width: 100%;
    display: block;
}

/* Left logo (message box) */
/* MAIN WRAPPER */
.floatingChatWrapper {
    position: fixed;
    bottom: 25px;
    left: 0;
    right: 0;
    padding: 0 30px;
    /* ← equal left & right margin */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* z-index: 9999; */
    pointer-events: none;
}

/* ENABLE CLICKS */
.floatingMessageIcon,
.floatingWhatsApp {
    pointer-events: auto;
}

/* LEFT MESSAGE ICON */
.floatingMessageIcon {
    /* width: 60px; */
    /* height: 60px; */
    object-fit: contain;
    transition: 0.3s ease;
    padding: 30px;
}

/* RIGHT WHATSAPP */
.floatingWhatsApp {
    display: flex;
    align-items: center;
    position: relative;
}

/* BADGE */
.chatBadge {
    background: #25D366;
    color: white;
    padding: 6px 55px 6px 20px;
    border-radius: 30px;
    font-size: 15px !important;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1;
}

/* ICON */
.whatsAppLogo {
    width: 60px;
    height: 60px;
    margin-left: -48px;
    transition: 0.3s ease;
    z-index: 2;
}

/* MOBILE VIEW */
@media(max-width: 768px) {
    .floatingChatWrapper {
        bottom: 20px;
        padding: 0 20px;
        /* smaller margins on mobile */
    }

    .floatingMessageIcon {
        width: 55px;
        height: 55px;
        padding: 8px;
        font-size: 24px;
        box-shadow: 0 3px 14px rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
    }


    .chatBadge {
        padding: 3px 35px 3px 12px;
        font-size: 12px !important;
    }

    .whatsAppLogo {
        width: 40px !important;
        height: 40px !important;
        margin-left: -28px;
    }


    /* .floatingWhatsApp {
        display: flex;
        align-items: center;
        position: relative;
        bottom: 80px;
    } */
}

/* BLUR BACKGROUND + WHITE SHADOW FOR MESSAGE ICON */
.floatingMessageIcon {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.35);
    /* frosted white */
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.6);
    /* white glow */
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}


/* Hover effect */
.floatingMessageIcon:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.85);
}

/* MOBILE SIZE */
@media(max-width: 768px) {
    .floatingMessageIcon {
        width: 55px;
        height: 55px;
        padding: 15px;
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.3);
    }
}


.howToOrderSecContainer {
    padding: clamp(50px, 10vw, 100px) 0;
}


.printingPurposeSecHeader {
    padding: clamp(30px, 8vw, 100px) 20px;
}

.printingPurposeSecContainer {
    display: flex;
    flex-wrap: wrap;
}

.printingPurposeSecContainer>div {
    position: relative;
    padding: clamp(30px, 8vw, 70px);
    flex: 1;
    min-width: 250px;
    box-sizing: border-box;
    cursor: pointer;

    border-top: 1px solid #7a7373;
    border-bottom: 1px solid #7a7373;

    /* Text transition */
    color: white;
    transition: color 0.3s ease;
    overflow: hidden;
}

/* Middle borders */
.printingPurposeSecContainer>div:not(:last-child) {
    border-right: 1px solid #7a7373;
}

/* Smooth bottom → top white fill */
.printingPurposeSecContainer>div::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    /* start completely below */
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transition: bottom 0.4s ease-in-out;
}

/* Hover animation */
.printingPurposeSecContainer>div:hover::before {
    bottom: 0;
    /* fills upward smoothly */
}

.printingPurposeSecContainer>div:hover {
    color: black;
    /* text turns black on white */
}


/* Number badge */
.numBadge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);

    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    backdrop-filter: blur(4px);
    border: 1px solid #ffffff55;
    color: black;
    font-weight: 700;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 3;
    opacity: 0;
    animation: badgePop 0.5s ease-out forwards;

    position: relative;
}

/* Soft outer ring */
.numBadge::before {
    content: "";
    position: absolute;
    inset: -6px;
    /* spread ring */
    border-radius: 50%;
    border: 2px solid #ffffff55;
    opacity: 0.6;
    z-index: -1;
}

/* Small glow line under badge */
.numBadge::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 30px;
    opacity: 0.6;
}



/* Badge hover effect – matches your white fill */
.printingPurposeSecContainer>div:hover .numBadge {
    background: black;
    color: white;
    transform: translateY(0) scale(1.05);
    transition: 0.3s ease;
}

/* Pop animation */
@keyframes badgePop {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}





@media (max-width: 768px) {
    .printingPurposeSecContainer>div {
        border: 1px solid #7a7373;
        margin-bottom: 10px;
        margin: 20px;
        transition: all 0.25s ease-in-out;
    }

    .printingPurposeSecContainer>div:not(:last-child) {
        border-right: 1px solid #7a7373;
    }

    .printingPurposeSecContainer>div {
        position: relative;
        overflow: hidden;
    }

    /* CENTER WHITE DOT */
    .printingPurposeSecContainer>div::before {
        content: "";
        position: absolute;
        bottom: -3px !important;
        left: 50%;
        width: 18px;
        height: 18px;
        background: #fff;
        border-radius: 50%;
        transform: translateX(-50%) scale(0);
        transition: transform 0.25s ease;
    }

    /* EXPANDING LINE FROM CENTER */
    .printingPurposeSecContainer>div::after {
        content: "";
        position: absolute;
        height: 5px;
        width: 5;
        bottom: 0;
        left: 50%;
        background: #fff;
        transform: translateX(-50%);
        transition: width 0.25s ease;
    }

    .printingPurposeSecContainer>div:hover::after {
        width: 100%;
        /* animate full width */
    }

    .printingPurposeSecContainer>div:hover {
        border: 1px solid white !important;
        color: white !important;


    }

    .printingPurposeSecContainer>div:hover::before {
        transform: translateX(-50%) scale(1);
        /* show center dot */
    }

    .mtpostion {
        margin-top: 40px;
    }

}




/* MAIN FOOTER */
.plFooter {
    color: #fff;
    margin-top: 60px;
}

/* 3 Equal Columns */
.plFooterContainer {
    padding: clamp(60px, 7vw, 110px) clamp(25px, 6vw, 80px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 100% / 3 = equal width */
    gap: clamp(40px, 5vw, 80px);
}

/* Column */
.plFooterCol {
    display: flex;
    flex-direction: column;
}

/* Logo */
.plFooterLogo {
    width: 180px;
    margin-bottom: 25px;
}

/* Description */
.plFooterDesc {
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Follow */
.plFooterFollow {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Social Icons */
.plFooterSocials {
    display: flex;
    gap: 16px;
}

.socialIcon {
    background: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
}

.socialIcon:hover {
    transform: translateY(-3px);
    background: #ededed;
}

/* Titles */
.plFooterTitle {
    margin-bottom: 35px;
    font-size: 20px;
}

/* Quick Links */
.plFooterLink {
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.plFooterLink:hover {
    transform: translateX(4px);
    color: #fff;
}

/* Contact Icons Rounded */
.plFooterContact {
    margin-bottom: 18px;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plFooterContactIcon {
    background: #fff;
    color: #000;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .plFooterContainer {
        grid-template-columns: 1fr;
        /* stack */
        gap: 40px;
        padding: clamp(40px, 10vw, 70px) 20px;

    }

    .plFooterLogo {
        width: 150px;
    }

    .socialIcon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

.btn-close {
    box-shadow: none !important;
}


/* Modal Box Styling */
.entranceModalBox {
    background: black;
    color: white;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* Close Button (white) */
.popupCloseBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    filter: invert(1);
    z-index: 1;
    /* makes close icon white */
}

/* Input Styling */
.popupInput {
    background: transparent !important;
    color: white !important;
    border: 1px solid white !important;
}

.popupInput::placeholder {
    color: #ccc !important;
}

.dotIcon {
    transition: 0.3s ease;
}

/* Wrapper */
.disclaimerWrapper {
    background: #000;
    padding: 30px 0;
}

/* Card */
.disclaimerCard {
    background: #111;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    border-radius: 14px;
    padding: 32px 28px;
    color: #fff;
    position: relative;
    overflow: hidden;

    /* Pop-in animation */
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: popIn 0.9s ease-out forwards;
}

/* Glow on hover */
.disclaimerCard:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transition: 0.3s ease;
}

/* Left Border Shine Animation */
.disclaimerCard::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff, transparent);
    animation: borderShine 2.2s linear infinite;
    opacity: 0.7;
}

/* Header */
.disclaimerHeader {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;

    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.disclaimerHeaderIcon {
    font-size: 26px;
}

/* List */
.disclaimerList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.disclaimerItem {
    display: flex;
    gap: 14px;
    margin-bottom: 11px;

    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease-out forwards;
}

.disclaimerItem:nth-child(1) {
    animation-delay: 0.45s;
}

.disclaimerItem:nth-child(2) {
    animation-delay: 0.65s;
}

.disclaimerIcon {
    font-size: 18px !important;
    margin-top: 5px;
}

/* Floating Icons */
.floatIcon {
    animation: floatAnim 2.5s ease-in-out infinite;
}

/* KEYFRAMES */

/* Pop-in */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fade upward */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Icons */
@keyframes floatAnim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Border Shine Animation */
@keyframes borderShine {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 300px;
    }
}

.disclaimerText {
    font-size: 15px !important;
}


/* scrolling wrapper */
.scrollWrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(77, 76, 76, 0.788);

}

/* scrolling text animation */
.scrollText {
    display: inline-block;
    padding-left: 100%;
    animation: scrollLeft 10s linear infinite;

    /* Vertical Gradient: bottom (black) → top (white) */
}



/* scroll animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

div:where(.swal2-container) h2:where(.swal2-title) {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: var(--swal2-title-padding);
    color: inherit;
    font-size: clamp(1.2rem, 2.5vw, 1.875rem) !important;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    overflow-wrap: break-word;
    cursor: initial;
}






/* logo animation */

@keyframes logo-glow {
    0% {
        filter: drop-shadow(0 0 0px white);
    }

    50% {
        filter: drop-shadow(0 0 6px white);
    }

    100% {
        filter: drop-shadow(0 0 0px white);
    }
}

.pearl-logo-wrapper img {
    animation: logo-glow 1s ease-out 1.6s forwards;
}

/* Container for the whole animation */
.logo-magic-container {
    position: relative;
    width: 200px;
    height: 60px;
    overflow: hidden;
    background: black;
}

/* T-shirt slide with rotation and ease */
@keyframes slide-tshirt {
    0% {
        transform: translateX(-120%) rotate(-20deg);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    50% {
        transform: translateX(50%) rotate(0deg);
        opacity: 1;
    }

    70% {
        transform: translateX(80%) rotate(-15deg);
        opacity: 1;
    }

    100% {
        transform: translateX(120%) rotate(0deg);
        opacity: 0;
    }
}

/* PearlLook logo pop with subtle bounce */
@keyframes pop-logo {
    0% {
        transform: translateY(100%) scale(0.5);
        opacity: 0;
    }

    60% {
        transform: translateY(-10%) scale(1.1);
        opacity: 1;
    }

    80% {
        transform: translateY(5%) scale(0.95);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* White wipe with fade effect */
@keyframes show-wipe {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    10% {
        transform: scaleX(1);
        opacity: 1;
    }

    80% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0);
        opacity: 0;
    }
}

/* T-shirt wrapper */
.tshirt-animation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: slide-tshirt 2s ease-in-out forwards;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.anim-tshirt-logo {
    height: 80%;
    width: auto;
}

/* White wipe bar */
/* White wipe main bar */
.white-wipe-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #fff, rgba(30, 30, 30, 0.6));
    animation: show-wipe 3s ease-in-out forwards;
    z-index: 15;
    transform: scaleX(0);
    transform-origin: left;
    overflow: visible;
    border-radius: 50px;
    /* IMPORTANT for dot visibility */
}

/* Bright dot at the end */
.wipe-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 8px white, 0 0 15px white;
    animation: dot-move 3s ease-in-out forwards;
}

/* Dot movement animation */
@keyframes dot-move {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        scale: 1;
    }

    100% {
        left: 100%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* PearlLook logo wrapper */
.pearl-logo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    /* start hidden */
    animation: pop-logo 1s ease-out 1.5s forwards;
}

/* Ensure logo stays visible */
.pearl-logo-wrapper img {
    display: block;
    opacity: 1;
}

/* PearlLook logo image */
.pearlLookLogoNav {
    width: 140px;
    height: auto;
}

/* Responsive scaling */
@media (max-width: 768px) {
    .logo-magic-container {
        width: 150px;
        height: 50px;
    }

    .pearlLookLogoNav {
        width: 100px;
    }

    .white-wipe-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, #fff, rgba(30, 30, 30, 0.6));
        animation: show-wipe 3s ease-in-out forwards;
        z-index: 15;
        transform: scaleX(0);
        transform-origin: left;
        overflow: visible;
        border-radius: 50px;
        /* IMPORTANT for dot visibility */
    }


}

.menuDots {
    width: 70px !important;
}

@media(max-width:450px) {
    .menuDots {
        width: 40px !important;
    }

    .navMenuIcon {
        display: inline !important;
    }

    .navMenuIcon2 {
        display: none !important;
    }

    .customDropdown {
        position: absolute;
        top: 70px;
        /* adjust according to navbar */
        left: 20px;
        width: 200px;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

        opacity: 0;
        transform: translateY(-30px) scaleY(0.95);
        /* slightly smaller and higher */
        pointer-events: none;

        transition:
            opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
    }
}