html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Bethany Elingston';
    src: url('/static/vendor/googleFonts/Bethany Elingston.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.highlight {
    font-family: "Bethany Elingston";
    color: #ffffff;
}

p,
span,
li,
small,
.navMenu,
.headerText {
    font-family: 'Lato', sans-serif !important;
    font-size: calc(14px + 0.4vw);
    line-height: 1.6;
    color: #ffffff;
}

.appNavLogo {
    height: 120px !important;
    object-fit: contain;
    padding: 8px;
    background-color: white !important;
    border-radius: 80px;
}

@media (max-width:425px) {
    .appNavLogo {
        max-width: 210px !important;
    }
}

.appHeader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #6C0939;
    z-index: 1000 !important;
    display: flex;
    justify-content: center !important;
}

.appHeader::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 100%;
    height: 1.5rem;
    background: transparent !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}


.appNavLogo {
    height: 100px;
    object-fit: contain;
}


@media (max-width:425px) {
    .appNavLogo {
        max-width: 210px;
    }
}

.navLinks li {
    position: relative;
}

.navMenu {
    color: #bab7b7 !important;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.navMenu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.35s ease;
}

.navMenu:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
}

.navMenu:hover::after {
    width: 100%;
}

.navMenu.active {
    color: #ffffff !important;
    animation: activeGlow 2.5s ease-in-out infinite;
}

.navMenu.active::after {
    width: 100%;
}

@keyframes activeGlow {
    0% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.082);
    }

    50% {
        text-shadow: 0 0 10px rgb(255, 255, 255);
    }

    100% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.052);
    }
}

.productDropdown i {
    transition: transform 0.3s ease;
}

.productDropdown:hover i {
    transform: rotate(180deg);
}

/* Product Drop down */
/* ===== Elegant Product Dropdown ===== */
.productDropdownMenu {
    position: absolute;
    top: 165%;
    left: -47px;
    min-width: 300px;
    background: var(--bs-primary);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.95);
    filter: blur(6px);
    transition:
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.35s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.productDropdown:hover .productDropdownMenu,
.productDropdown:focus-within .productDropdownMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.productDropdown i {
    transition: transform 0.35s ease;
}

.productDropdown:hover i {
    transform: rotate(180deg);
}

/* ===== Menu Styling ===== */
.productDropdownMenu ul {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

/* Category Title */
.productDropdownMenu .menu-title {
    padding: 10px 22px;
    font-weight: 600;
    color: #ffd;
    letter-spacing: 0.5px;
    cursor: default;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

/* Sub Items */
.productDropdownMenu .sub-item {
    padding: 10px 22px 10px 38px;
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    opacity: 1;
    transform: translateX(0);
    position: relative;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.4s ease,
        opacity 0.4s ease,
        padding-left 0.3s ease;
}

/* Hover Effects */
.productDropdownMenu .sub-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

.productDropdownMenu .sub-item:hover::before {
    transform: scaleX(1);
}

.productDropdownMenu .sub-item:hover {
    color: var(--bs-primary);
    padding-left: 48px;
    box-shadow: inset 4px 0 0 var(--bs-primary);
}

/* Divider */
.productDropdownMenu .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 8px 20px;
}

/* ===== Stagger Animation ===== */
.productDropdown:hover .productDropdownMenu li {
    opacity: 1;
    transform: translateX(0);
}

.productDropdownMenu li:nth-child(1) {
    transition-delay: 0.05s;
}

.productDropdownMenu li:nth-child(2) {
    transition-delay: 0.08s;
}

.productDropdownMenu li:nth-child(3) {
    transition-delay: 0.11s;
}

.productDropdownMenu li:nth-child(4) {
    transition-delay: 0.14s;
}

.productDropdownMenu li:nth-child(6) {
    transition-delay: 0.18s;
}

.productDropdownMenu li:nth-child(7) {
    transition-delay: 0.21s;
}

.productDropdownMenu li:nth-child(8) {
    transition-delay: 0.24s;
}

.productDropdownMenu li:nth-child(9) {
    transition-delay: 0.27s;
}

/* Drop Down css end */

/* ===== Offcanvas Css Start ===== */
.cursorPointer {
    cursor: pointer;
}

#mobileNav,
#mobileNav a,
#mobileNav summary,
#mobileNav p {
    font-weight: 500 !important;
}

.offcanvas {
    background-color: #6C0939 !important;
}

.offcanvas-header {
    background: #6C0939 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileNavLink {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    position: relative;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mobileNavLink:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.mobileNavLink.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 90%;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transform: translateX(-50%);
}



@keyframes mobileActive {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.mobileProductDropdown {
    width: 100%;
    text-align: center;
}

.mobileProductDropdown summary {
    list-style: none;
    cursor: pointer;
}

.mobileProductDropdown summary::-webkit-details-marker {
    display: none;
}

.productToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.productToggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobileProductDropdown[open] .productToggle i {
    transform: rotate(180deg);
}

.mobileProductMenu {
    margin-top: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.mobileProductDropdown[open] .mobileProductMenu {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.menu-title {
    color: #ffd6e6;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
}

.sub-item {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 6px 0;
    font-size: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sub-item:hover {
    transform: translateX(6px);
    opacity: 0.85;
}

.menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Off Canvas Css End */

/* Hero Section */
.indexHero {
    overflow-x: hidden !important;
}

.indexHeroText {
    padding-left: 50px;
}

.wordRotate {
    display: inline-block;
    min-width: 160px;
    font-weight: bold;
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-family: "Bethany Elingston" !important;
}

.wordRotate.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.wordRotate.fade-in {
    opacity: 1;
    transform: translateY(0);
}


.indexHeroTextTop {
    padding-top: 120px;
}

.indexHeroText h1,
span {
    font-size: 50px !important;
}

.indexHeroText p {
    font-size: 20px !important;
}

@media (max-width: 1024px) {
    .indexHeroTextTop {
        padding-top: 120px;
    }

    .indexHeroText {
        padding-left: 30px;
    }

    .indexHeroText h1,
    .indexHeroText span {
        font-size: 42px !important;
    }

    .indexHeroText p {
        font-size: 18px !important;
        width: 100% !important;
    }

    .heroAnimContainer {
        width: 600px;
        height: 450px;
    }
}


@media (max-width:768px) {
    .indexHeroTextTop {
        padding-top: 150px;
        flex-wrap: wrap;
    }

    .indexHeroText {
        padding-left: 0px;
        padding: 15px;
    }

    .heroImg {
        height: 70vh !important;
        width: fit-content !important;
        object-fit: cover;
    }
}

@media (max-width:425px) {
    .indexHeroText h1 {
        font-size: 24px !important;
        font-weight: bolder !important;
    }

    .indexHeroText p {
        font-size: 15px !important;
    }

    .indexHeroText span {
        font-size: 24px !important;
    }

    .heroImg {
        width: fit-content !important;
        height: 33vh !important;
    }
}

.heroAnimContainer {
    position: relative;
    width: 750px;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
}

.heroImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Correct selectors */
.heroImg.img1 {
    animation: img1Anim 8s infinite;
}

.heroImg.img2 {
    animation: img2Anim 8s infinite;
}

@keyframes img1Anim {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes img2Anim {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    50% {
        opacity: 0;
        transform: translateX(60px);
    }

    60% {
        opacity: 1;
        transform: translateX(0);
    }

    85% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(60px);
    }
}

.indexOrderBtn {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    background-color: #6C0938;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: clamp(8px, 1.2vw, 12px) clamp(18px, 3vw, 26px) !important;
    transition: color 0.35s ease;
}

.indexOrderBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #042B40;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}


.indexOrderBtn:hover {
    color: #fff !important;
    border: none !important;
}

.indexOrderBtn:hover::before {
    transform: scaleX(1);
}

/* Cards Row */
.orderCardRow {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.orderCard {
    position: relative;
    flex: 1 1 220px;
    height: 230px;
    border-radius: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent !important;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


@media (max-width: 768px) {
    .orderCard {
        flex: 1 1 45%;
        background-size: 80%;
    }
}


@media (max-width: 425px) {
    .orderCard {
        flex: 1 1 100%;
        background-size: 65%;
    }
}


@media (max-width: 375px) {
    .orderCard {
        height: 160px;
        background-size: 85%;
    }
}



.orderCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.orderOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.orderOverlay h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.orderCard:hover .orderOverlay {
    opacity: 1;
}

.photoFrame {
    background-image: url("/static/img/buisnessImages/photoFrame1.png");
}

.resinArt {
    background-image: url("/static/img/background/resinArtDummy.jpg");
}

.otherGifts {
    background-image: url("/static/img/background/photodumy.jpg");
}

#photoFrameModal .pfSpotify {
    background-image: url("/static/img/buisnessImages/spotifyTwo.jpg");
}

#photoFrameModal .pfCollage {
    background-image: url("/static/img/buisnessImages/photoFrame2.png");
}

#photoFrameModal .pfNormal {
    background-image: url("/static/img/buisnessImages/photoFrame3.png");
}


/* Booking form css */
.bookingForm input,
.bookingForm textarea,
.bookingForm select {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bookingForm input:focus,
.bookingForm textarea:focus,
.bookingForm select:focus {
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
    transform: translateY(-2px);
}

.bookingBtn {
    transition: transform 0.3s ease;
    border-radius: 10px;
    padding: clamp(8px, 1.2vw, 12px) clamp(18px, 3vw, 26px) !important;
}

.bookingBtn:hover {
    transform: scale(1.05);
    background-color: #042B40 !important;
    color: #fff !important;
}

/* Booking form css end */




/* About Us Section */
.aboutUsHeader,
.indexProductHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
    width: 100%;
}

.aboutUsHeader h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 200;
    color: #000;
    white-space: nowrap;
}

.aboutUsHeader .line {
    flex: 1;
    max-width: 40%;
    height: 4px;
    background-color: #6C0938;
    transform: scaleX(0);
    animation: growLine 0.9s ease-out forwards;
}

.aboutUsHeader .line:first-child {
    transform-origin: left;
}

.aboutUsHeader .line:last-child {
    transform-origin: right;
    animation-delay: 0.15s;
}

@keyframes growLine {
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 576px) {
    .aboutUsHeader .line {
        max-width: 30%;
    }
}


.aboutUsBody {
    margin: 80px auto;
    padding: 0 20px;
}



.aboutUsImg {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.aboutUsImg img {
    position: relative;
    top: 27px;
    left: 70px;
    width: 100%;
    max-width: 420px;
    border: 10px solid #6C0938;
    background: #fff;
    box-shadow: -5px 7px 25px 22px rgba(0, 0, 0, 0.35);
    transform: rotate(-8deg);
}

.aboutUsContent {
    background-color: #FFD6E6;
    padding: 50px;
    padding-left: 140px;
    text-align: start !important;
}

.aboutUsContent h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: #6C0938;
    margin-bottom: 20px;
}

.aboutUsContent h6 {
    font-size: clamp(20px, 2.5vw, 28px);
    color: #6C0938;
    font-weight: 600;
}

.aboutUsContent p {
    width: 70%;
}

@media(max-width:1024px) {
    .aboutUsImg img {
        width: fit-content !important;
        position: relative;
        left: 70px;
    }

    .aboutUsContent {
        padding: 30px !important;
        padding-left: 140px !important;
    }

    .aboutUsContent p {
        width: 100% !important;
    }
}

@media (max-width: 768px) {

    .aboutUsBody {
        display: block !important;
    }

    .aboutUsBody .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }

    .aboutUsImg {
        width: 100% !important;
        flex: unset !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 30px !important;
    }

    .aboutUsImg img {
        width: auto !important;
        max-width: 280px !important;
        height: auto !important;
        left: 0 !important;
        top: 0 !important;
        transform: rotate(-2deg) !important;
    }

    .aboutUsContent {
        width: 100% !important;
        padding: 30px !important;
        padding-left: 30px !important;
        text-align: start !important;
        border-radius: 20px;
    }

    .aboutUsContent p {
        width: 100% !important;
    }
}

@media (max-width: 425px) {

    .aboutUsImg img {
        max-width: 220px !important;
        transform: rotate(-1deg) !important;
    }

    .aboutUsContent {
        padding: 22px !important;
    }

    .aboutUsContent h2 {
        font-size: 22px !important;
        font-weight: 600 !important;
    }

    .aboutUsContent h6 {
        font-size: 18px !important;
    }
}

@media (max-width: 375px) {

    .aboutUsImg img {
        max-width: 200px !important;
    }

    .aboutUsContent {
        padding: 18px !important;
    }

    .aboutUsContent h2 {
        font-size: 20px !important;
    }

    .aboutUsContent h6 {
        font-size: 16px !important;
    }
}

/* Home Page Product Section */
.indexProductHeader h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 200;
    color: #000;
    white-space: nowrap;
}

.indexProductHeader .line {
    flex: 1;
    max-width: 40%;
    height: 4px;
    background-color: #6C0938;
    transform: scaleX(0);
    animation: growLine 0.9s ease-out forwards;
}

.indexProductHeader .line:first-child {
    transform-origin: left;
}

.indexProductHeader .line:last-child {
    transform-origin: right;
    animation-delay: 0.15s;
}

@keyframes growLine {
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 576px) {
    .indexProductHeader .line {
        max-width: 30%;
    }
}

.indexProductBody {
    background-color: #FFE2F0;
}

.productPhotoFrameHeader h3 {
    display: flex;
    justify-content: center;
    text-align: center;
    justify-content: center;
}

.productPhotoFrameHeader p {
    max-width: 50%;
    margin: 0 auto;
    word-wrap: break-word;
    line-height: 1.6;
    font-weight: bolder !important;
}


.indexProductBody {
    position: relative;
    padding: 40px 0 80px;
}


.indexProductBody::before {
    content: "";
    position: absolute;
    top: 250px;
    left: 50%;
    width: 7px;
    height: 0;
    background-color: var(--bs-primary);
    transform: translateX(-50%);
    transition: height 1.2s ease;
}

.indexProductBody.in-view::before {
    height: calc(100% - 380px);
}



.photoFrameScroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    margin: 70px 0;
    position: relative;
}


.photoFrame-ing {
    display: flex;
    justify-content: center;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

.photoFrame-ing img {
    width: 75%;
    max-width: 320px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.photoFrame-ing:hover {
    transform: scale(1.1);
    opacity: 1;
    z-index: 5;
    filter: brightness(1) saturate(1.5);
}

.photoFrameContent {
    max-width: 460px;
}

.timeline-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.photoFrameContent p {
    line-height: 1.6;
    color: #333;
}


.photoFrameScroll:nth-child(even) {
    direction: rtl;
}

.photoFrameScroll:nth-child(even)>* {
    direction: ltr;
}


.fadeUp {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeUp.in-view {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .photoFrameScroll {
        gap: 30px;
        margin: 60px 0;
    }

    .photoFrame-ing img {
        width: 70%;
        max-width: 300px;
    }

    .photoFrameContent {
        max-width: 420px;
    }

    .indexProductBody::before {
        top: 180px;
        width: 6px;
    }
}

@media (max-width: 768px) {

    .productPhotoFrameHeader p {
        max-width: 70% !important;
    }

    .photoFrameScroll {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 25px !important;
    }

    .photoFrame-ing img {
        width: 65%;
        max-width: 260px;
    }

    .photoFrameContent {
        max-width: 100%;
        padding: 0 20px;
    }

    .photoFrameScroll:nth-child(even) {
        direction: ltr;
    }

    .indexProductBody::before {
        display: none !important;
    }
}

@media (max-width: 425px) {
    .productPhotoFrameHeader p {
        max-width: 100% !important;
        font-size: 18px !important;
    }

    .photoFrameScroll {
        margin: 45px 0;
        gap: 20px;
    }

    .photoFrame-ing img {
        width: 75%;
        max-width: 230px;
    }

    .photoFrameContent p {
        font-size: 14px;
        line-height: 1.5;
    }

    .timeline-label {
        font-size: 16px;
    }

    .indexProductBody {
        padding: 30px 0 60px;
    }

}

@media (max-width: 375px) {
    .productPhotoFrameHeader p {
        font-size: 12px !important;
    }

    .photoFrame-ing img {
        width: 80%;
        max-width: 210px;
    }

    .photoFrameContent p {
        font-size: 13.5px;
    }

    .timeline-label {
        font-size: 15px;
    }

    .productPhotoFrameHeader h3 {
        font-size: 20px;
    }

    .productPhotoFrameHeader p {
        font-size: 14px;
    }
}


/* Footer Section */
.footerSection {
    background-color: #FFE2F0;
}

.footerTitle {
    font-size: 22px;
    margin-bottom: 20px;
    color: #000 !important;
}

.footerText {
    line-height: 1.8;
    max-width: 320px;
    color: #000 !important;
    font-weight: 400 !important;
}

.footerLinks {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000 !important;
}

.footerLinks li {
    margin-bottom: 10px;
    font-size: 20px !important;
    font-weight: 500 !important;
    cursor: pointer;
    color: #000 !important;
}


.footerLinks a {
    font-size: 20px !important;
    text-decoration: none;
    font-weight: 500 !important;
    transition: opacity 0.3s ease;
    color: #000 !important;
}

.footerLinks a:hover {
    font-weight: bolder !important;
}

.footerLinks li:hover {
    font-weight: bolder !important;
}



.footerLinks a {
    text-decoration: none;
}

.footerLinks a.active {
    color: #000 !important;
    font-weight: 900 !important;
}



.footerIcons i {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #6C0938;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footerIcons i:hover {
    background-color: #6C0938;
    color: white;
    transform: translateY(-3px);
}

.personalizedItem {
    display: inline-flex;
    align-items: center;
    width: 100%;
    white-space: nowrap !important;
    gap: 4%;
}

.comingSoonBadge {
    padding: 4px 6px;
    background-color: #6C0938;
    color: #ffffff;
    border-radius: 10px;
    line-height: 1;
    white-space: nowrap;
    animation: pulseFloat 1s infinite ease-in-out;
    cursor: no-drop !important;
}

@keyframes pulseFloat {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 0 rgba(83, 14, 46, 0.7);
    }

    50% {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 0 0 8px rgba(13, 110, 253, 0);
    }

    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}



@media (max-width: 1024px) {
    .footerTitle {
        font-size: 20px;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 18px !important;
        text-align: start !important;
    }

    .footerText {
        font-size: 15px;
        line-height: 1.7;
    }

    .footerIcons i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


@media (max-width: 768px) {
    .footerSection .row {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .footerSection .col-lg-4.col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .footerSection .col-lg-4.col-md-6:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}


@media (max-width:425px) {
    .footerLinks li {
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    .footerTitle {
        font-weight: bolder !important;
    }

    .footerLinks a {
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    .comingSoonBadge {
        font-size: 10px !important;
    }

    .copyRightTexts p {
        font-size: 13px !important;
    }

    .copyRightTexts span {
        font-size: 13px !important;
    }
}

@media (max-width:375px) {
    .footerLinks li {
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    .footerTitle {
        font-weight: 300 !important;
    }

    .footerLinks a {
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    .comingSoonBadge {
        font-size: 8px !important;
    }
}


/* Contact Us page css */
.contactUsHero {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slideBg {
    background-size: cover !important;
    background-position: center !important;
}

.contactUsHeader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100% !important;
    z-index: 10;
    font-size: 40px;
}

.contactUsHeader h1 {
    color: white !important;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6) !important;

}

.contactUsHeader span {
    color: #6C0938 !important;
    font-size: 80px !important;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);

}

.contactDiv{
    display: flex;
    flex-direction: column;
    gap: 10px !important;
}




.swiper-pagination-bullet {
    display: none !important;
}

@media(max-width:768px) {
    .slideBg {
        height: 50vh !important;
    }

    .contactUsHero {
        height: auto !important;
    }

    .contactUsHeader {
        position: absolute;
        top: 70% !important;
        left: 50%;
    }

    .contactUsHeader h1 {
        font-size: 30px !important;
    }

    .contactUsHeader span {
        color: #6C0938 !important;
        font-size: 30px !important;
    }


}

/* Contact Form */
.contactBody {
    width: 100%;
    padding: 40px 20px;
}

.contactBody>.d-flex {
    gap: 40px;
}

.contactBodyContent {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.contactForm {
    width: 65%;
}

.contactForm input,
.contactForm textarea {
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.contactForm input:focus,
.contactForm textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.6),
        0 0 24px rgba(255, 255, 255, 0.35),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
}


.contactForm input::-webkit-input-placeholder,
.contactForm textarea::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.8;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
    color: #fff;
    opacity: 0.8;
}

.contactForm input:-ms-input-placeholder,
.contactForm textarea:-ms-input-placeholder {
    color: #fff;
}

.sendMsg {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #fff;
    border: 1px solid #6C0938;
    z-index: 1;
    padding: clamp(8px, 1.2vw, 12px) clamp(18px, 3vw, 26px) !important;
    transition: color 0.35s ease;
}

.sendMsg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #6C0938;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.sendMsg:hover {
    color: #fff !important;
}

.sendMsg:hover::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .contactBody>.d-flex {
        flex-wrap: wrap;
    }

    .contactBodyContent,
    .contactForm {
        width: 100%;
    }

    .contactBodyContent h1,
    .contactBodyContent p {
        text-align: center;
    }

}


/* Charges Modal Box Css */
/* Modal Box */
.pc-enhanced-table table {
    background: var(--bs-primary);
    color: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.pc-enhanced-table thead th {
    background: var(--bs-primary);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pc-enhanced-table thead th:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: none;
    box-shadow: none;
    cursor: default;
}


.pc-enhanced-table tbody tr {
    transition: all 0.35s ease;
    cursor: pointer;
}

.pc-enhanced-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.iconImg {
    width: 70px;
    transition: all 0.35s ease;
}

/* Image pop on row hover */
.pc-enhanced-table tbody tr:hover .iconImg {
    transform: scale(1.4) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: #fff;
}

.priceBadge {
    font-size: 0.8rem;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.pc-enhanced-table tbody tr:hover .priceBadge {
    background: white !important;
    color: var(--bs-primary);
    transform: scale(1.1);
    color: #6C0938 !important;
}

.modal.fade .modal-dialog {
    transform: translateY(-40px) scale(0.95);
    transition: all 0.4s ease;
}

.modal.fade.show .modal-dialog {
    transform: translateY(0) scale(1);
}

/* Product Page Hero Text */
.productHeader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8%;
    gap: 18px;
}

.productHeader h1 {
    color: #fff !important;
    width: 60%;
    text-align: left;
    font-size: 42px !important;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.productHeader span {
    font-size: 42px !important;
    color: #6C0938;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);

}

.productHeader p {
    width: 30% !important;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    text-align: justify !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}



@media (max-width: 768px) {
    .productHeader {
        padding-left: 6%;
    }

    .productHeader h1 {
        width: 90%;
        font-size: 32px;
    }

    .productHeader .wordRotate {
        font-size: 32px;
    }

    .productHeader p {
        width: 90%;
        font-size: 15px;
    }
}

@media (max-width: 425px) {
    .productHeader {
        margin-top: 60px !important;
        gap: 10px;
    }

    .productHeader h1 {
        font-size: 20px !important;
        font-weight: 700 !important;
        width: 80% !important;
        text-align: start !important;
    }

    .productHeader .wordRotate {
        font-size: 20px !important;
        font-weight: 700 !important;
    }

    .productHeader p {
        font-size: 16px;
        width: 80% !important;
    }
}

@media (max-width: 375px) {
    .productHeader {
        margin-top: 60px !important;
        gap: 10px;
    }

    .productHeader h1 {
        font-size: 15px !important;
        font-weight: 700 !important;
        width: 80% !important;
        text-align: start !important;
    }

    .productHeader .wordRotate {
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    .productHeader p {
        font-size: 7px;
        width: 90% !important;
    }
}

/* Cards Wrapper */
.photoFrameCards {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.photoFrameCard {
    width: 400px;
    height: 420px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

.photoFrameCard:hover {
    transform: scale(1.1);
    opacity: 1;
    z-index: 5;
    filter: brightness(1) saturate(1.5);
}

.photoFrameCards:hover .photoFrameCard:not(:hover) {
    transform: scale(0.8);
}

.pfOrderBtn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #6C0938;
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.photoFrameCard:hover .pfOrderBtn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.photoFrameOne {
    background-image: url("/static/img/buisnessImages/photoFrame1.png");
}

.photoFrameTwo {
    background-image: url("/static/img/buisnessImages/photoFrame2.png");
}

.photoFrameThree {
    background-image: url("/static/img/buisnessImages/photoFrame3.png");
}

.resinOne {
    background-image: url("/static/img/buisnessImages/resin1.png");
}

.resinTwo {
    background-image: url("/static/img/buisnessImages/resin2.png");
}

.resinThree {
    background-image: url("/static/img/buisnessImages/resin3.png");
}

@media (max-width: 768px) {
    .photoFrameBody h6 {
        font-weight: bolder !important;
    }

    .photoFrameCards {
        flex-direction: column;
    }

    .photoFrameCard {
        width: 90%;
    }
}

/* ===============================
   Floating WhatsApp – Dock Style
================================ */

/* 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);
    }
}

/***************************************Navbar style start****************************************/

#preloader {
    position: fixed;
    inset: 0;
    background: #6C0938; /* 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(255, 34, 104, 0.2);
    border-top-color: #fa0079;
    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);
}


/* width of the scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

/* scrollbar track (background) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* scrollbar handle (thumb) */
::-webkit-scrollbar-thumb {
  background: #6C0938; /* your brand color */
  border-radius: 10px;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #042B40;
}
