/* =========================
   ROOT VARIABLES
========================= */
:root {
  /* Font Sizes */
  --h1-size: 52px;
  --h2-size: 42px;
  --h3-size: 32px;
  --h4-size: 26px;
  --h5-size: 21px;
  --h6-size: 18px;

  --p-size: 16px;
  --small-size: 14px;

  /* Line Heights */
  --heading-line-height: 1.2;
  --paragraph-line-height: 1.7;

  /* Font Weight */
  --heading-weight: 700;
  --paragraph-weight: 400;

  /* Colors */
  --heading-color: #222;
  --paragraph-color: #666;
}


/* =========================
   GLOBAL TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  line-height: var(--heading-line-height);
  font-weight: var(--heading-weight);
  color: var(--heading-color);
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

p {
  font-size: var(--p-size);
  line-height: var(--paragraph-line-height);
  font-weight: var(--paragraph-weight);
  color: var(--paragraph-color);
  margin: 0 0 15px;
}


/* =========================
   TABLET
   768px - 1024px
========================= */

@media (max-width: 1024px) {

  :root {
    --h1-size: 44px;
    --h2-size: 36px;
    --h3-size: 29px;
    --h4-size: 24px;
    --h5-size: 20px;
    --h6-size: 17px;

    --p-size: 15px;
  }

}


/* =========================
   MOBILE
   481px - 767px
========================= */

@media (max-width: 767px) {

  :root {
    --h1-size: 36px;
    --h2-size: 30px;
    --h3-size: 25px;
    --h4-size: 21px;
    --h5-size: 18px;
    --h6-size: 16px;

    --p-size: 15px;
  }

}


/* =========================
   SMALL MOBILE
   320px - 480px
========================= */

@media (max-width: 480px) {

  :root {
    --h1-size: 30px;
    --h2-size: 27px;
    --h3-size: 23px;
    --h4-size: 20px;
    --h5-size: 18px;
    --h6-size: 16px;

    --p-size: 14px;
  }

}


/* =========================
   NAVBAR
========================= */

.header {
    width: 100%;
    background: #ffffff;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 9999;

    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* scroll effect */

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}


.navbar {
    max-width: 1300px;
    height: 80px;

    margin: auto;

    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    
    width: 192px;
    height: 88px;
    object-fit: contain;
    display: block;
}


/* =========================
   MENU
========================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 38px;

    list-style: none;
}


.nav-link {
    position: relative;

    text-decoration: none;

    color: #4b0002;

    font-size: 23px;
    font-weight: 600;

    transition: 0.3s ease;
}


/* underline animation */

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: #4b0002;

    transition: width 0.3s ease;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.nav-link:hover {
    color: #7a1619;
}


/* =========================
   TOGGLE BUTTON
========================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    outline: none;

    border-radius: 7px;

    background: #4b0002;
    color: #ffffff;

    font-size: 21px;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}


.menu-toggle:hover {
    background: #720005;
}


/* =========================
   TABLET / MOBILE
========================= */

@media screen and (max-width: 768px) {

    .navbar {
        height: 70px;

        padding: 0 20px;
    }


    /* LOGO */

    .nav-logo img {
        width: 125px;
        height: 52px;
    }


    /* SHOW TOGGLE */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE MENU */

    .nav-menu {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: #ffffff;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 0;

        padding: 0;

        max-height: 0;
        overflow: hidden;

        opacity: 0;

        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);

        transition:
            max-height 0.45s ease,
            opacity 0.3s ease,
            padding 0.3s ease;
    }


    /* OPEN MENU */

    .nav-menu.active {
        max-height: 400px;

        padding: 15px 0 20px;

        opacity: 1;
    }


    .nav-menu li {
        width: 100%;

        text-align: center;
    }


    .nav-link {
        display: block;

        width: 100%;

        padding: 15px 20px;

        font-size: 16px;
    }


    .nav-link::after {
        display: none;
    }


    .nav-link:hover {
        background: #4b0002;
        color: #ffffff;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media screen and (max-width: 480px) {

    .navbar {
        padding: 0 15px;
    }


    .nav-logo img {
        width: 110px;
        height: 48px;
    }


    .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 19px;
    }

}


/* =========================
   DEMO SECTIONS
========================= */

.demo-section {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 20px;

    font-size: 30px;
}


#home {
    background: #fff8f0;
}

#about {
    background: #ffffff;
}

#services {
    background: #fff8f0;
}

#contact {
    background: #ffffff;
}


/* navbar fixed hai isliye section cut nahi hoga */

section {
    scroll-margin-top: 80px;
}



/* hero  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}


/* =================================
   MEHNDI HERO
================================= */

.mehndi-hero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    background:
        radial-gradient(circle at 10% 10%, rgba(75, 0, 2, 0.08), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(138, 74, 76, 0.10), transparent 30%),
        #ffffff;

    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 6%;
}


/* CONTAINER */

.mehndi-hero-container {
    width: 100%;
    max-width: 1350px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 70px;

    position: relative;
    z-index: 5;
}


/* =================================
   LEFT CONTENT
================================= */

.mehndi-hero-content {
    max-width: 650px;
}


.hero-small-title {
    display: inline-flex;
    align-items: center;

    color: #4b0002;

    background: #fff3f3;

    border: 1px solid rgba(75, 0, 2, 0.13);

    padding: 9px 18px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 22px;
}


.mehndi-hero-content h1 {
    color: #222;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.mehndi-hero-content h1 span {
    display: block;

    color: #4b0002;

    font-family: "Great Vibes", cursive;

    font-size: 1.12em;

    font-weight: 400;

    letter-spacing: 0;

    margin-top: 8px;
}


.hero-description {
    max-width: 580px;

    color: #6e6262;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 32px;
}


/* =================================
   BUTTONS
================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}


.hero-btn {
    min-height: 52px;

    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.35s ease;
}


.hero-btn-primary {
    background: #4b0002;

    color: #ffffff;

    box-shadow: 0 12px 35px rgba(75, 0, 2, 0.25);
}


.hero-btn-primary span {
    margin-left: 10px;

    font-size: 20px;

    transition: 0.3s;
}


.hero-btn-primary:hover {
    transform: translateY(-4px);

    background: #650005;

    box-shadow: 0 18px 40px rgba(75, 0, 2, 0.3);
}


.hero-btn-primary:hover span {
    transform: translateX(5px);
}


.hero-btn-outline {
    border: 1px solid #4b0002;

    color: #4b0002;

    background: transparent;
}


.hero-btn-outline:hover {
    color: #ffffff;

    background: #4b0002;

    transform: translateY(-4px);
}


/* =================================
   STATS
================================= */

.hero-stats {
    display: flex;
    align-items: center;

    gap: 22px;
}


.stat-item {
    display: flex;
    flex-direction: column;
}


.stat-item strong {
    color: #4b0002;

    font-size: 24px;

    line-height: 1;
}


.stat-item span {
    color: #877777;

    font-size: 11px;

    margin-top: 7px;

    white-space: nowrap;
}


.stat-line {
    width: 1px;
    height: 37px;

    background: #e3d4d4;
}


/* =================================
   RIGHT IMAGE AREA
================================= */

.mehndi-hero-images {
    position: relative;

    width: 100%;

    max-width: 590px;

    height: 600px;

    margin-left: auto;
}


/* BACKGROUND SHAPE */

.hero-image-shape {
    position: absolute;

    width: 420px;
    height: 500px;

    right: 30px;
    top: 40px;

    border-radius: 48% 52% 37% 63% / 60% 40% 60% 40%;

    background:
        linear-gradient(
            140deg,
            #4b0002,
            #7b2528
        );

    transform: rotate(4deg);
}


/* MAIN PHOTO */

.main-mehndi-image {
    position: absolute;

    right: 55px;
    top: 20px;

    width: 380px;
    height: 510px;

    border-radius: 190px 190px 35px 35px;

    overflow: hidden;

    border: 9px solid #ffffff;

    box-shadow: 0 25px 70px rgba(75, 0, 2, 0.22);

    z-index: 3;
}


.main-mehndi-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.main-mehndi-image:hover img {
    transform: scale(1.07);
}


/* SMALL IMAGE */

.small-mehndi-image {
    position: absolute;

    overflow: hidden;

    z-index: 5;

    border: 7px solid white;

    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}


.small-mehndi-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}


.small-mehndi-image:hover img {
    transform: scale(1.1);
}


.image-one {
    width: 170px;
    height: 210px;

    left: 0;
    top: 110px;

    border-radius: 80px 20px 80px 20px;
}


.image-two {
    width: 160px;
    height: 180px;

    right: 0;
    bottom: 5px;

    border-radius: 20px 80px 20px 80px;
}


/* =================================
   EXPERIENCE
================================= */

.experience-badge {
    position: absolute;

    left: 30px;
    bottom: 95px;

    min-width: 185px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border-radius: 16px;

    background: rgba(255,255,255,0.96);

    box-shadow: 0 15px 40px rgba(75, 0, 2, 0.15);

    z-index: 7;

    animation: floatBadge 3s ease-in-out infinite;
}


.experience-icon {
    width: 45px;
    height: 45px;

    background: #4b0002;

    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}


.experience-badge div:last-child {
    display: flex;
    align-items: center;

    gap: 8px;
}


.experience-badge strong {
    font-size: 27px;

    color: #4b0002;
}


.experience-badge span {
    color: #756363;

    font-size: 11px;

    line-height: 1.4;
}


/* FLOATING LABEL */

.floating-label {
    position: absolute;

    right: 10px;
    top: 80px;

    background: #fff;

    color: #4b0002;

    padding: 10px 17px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 600;

    box-shadow: 0 10px 30px rgba(75,0,2,0.15);

    z-index: 6;
}


@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =================================
   DECORATIVE CIRCLES
================================= */

.hero-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.circle-one {
    width: 240px;
    height: 240px;

    background: rgba(75, 0, 2, 0.035);

    left: -100px;
    bottom: -70px;
}


.circle-two {
    width: 330px;
    height: 330px;

    border: 1px solid rgba(75, 0, 2, 0.07);

    right: -100px;
    top: -100px;
}


/* =================================
   TABLET
================================= */

@media (max-width: 1050px) {

    .mehndi-hero {
        padding: 80px 5%;
    }

    .mehndi-hero-container {
        gap: 25px;
    }

    .mehndi-hero-images {
        transform: scale(0.9);
    }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 850px) {

    .mehndi-hero {
        min-height: auto;

        padding:
            85px
            20px
            60px;
    }


    .mehndi-hero-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .mehndi-hero-content {
        text-align: center;

        margin: auto;
    }


    .hero-small-title {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-stats {
        justify-content: center;
    }


    .mehndi-hero-images {
        margin: auto;

        max-width: 550px;

        height: 570px;

        transform: none;
    }

}


/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 576px) {

    .mehndi-hero {
        padding:
            70px
            16px
            50px;
    }


    .mehndi-hero-content h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }


    .hero-description {
        font-size: 14px;

        line-height: 1.8;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-btn {
        width: 100%;
    }


    .hero-stats {
        gap: 12px;
    }


    .stat-item strong {
        font-size: 19px;
    }


    .stat-item span {
        font-size: 9px;
    }


    .mehndi-hero-images {
        width: 100%;

        height: 480px;
    }


    .hero-image-shape {
        width: 80%;

        height: 400px;

        right: 5%;
    }


    .main-mehndi-image {
        width: 72%;

        height: 390px;

        right: 8%;

        border-radius: 130px 130px 25px 25px;
    }


    .image-one {
        width: 115px;
        height: 145px;

        left: 0;

        top: 100px;
    }


    .image-two {
        width: 115px;
        height: 130px;

        right: 0;

        bottom: 0;
    }


    .experience-badge {
        left: 8px;

        bottom: 25px;

        min-width: 150px;

        padding: 10px 12px;
    }


    .experience-icon {
        width: 36px;
        height: 36px;

        font-size: 15px;
    }


    .experience-badge strong {
        font-size: 20px;
    }


    .experience-badge span {
        font-size: 9px;
    }


    .floating-label {
        right: 0;

        top: 25px;

        font-size: 9px;

        padding: 8px 12px;
    }

}


/* VERY SMALL SCREEN */

@media (max-width: 380px) {

    .mehndi-hero-content h1 {
        font-size: 33px;
    }

    .hero-stats {
        gap: 8px;
    }

    .stat-line {
        height: 30px;
    }

}

/* hero  kai badh */
/* ===============================
   PREMIUM MEHNDI SECTION
================================ */

.mehndi-premium-section {
    width: 100%;
    background: #ffffff;
    padding: 100px 20px;
    overflow: hidden;
}

.mehndi-premium-container {
    max-width: 1250px;
    margin: auto;
}


/* HEADING */

.mehndi-premium-heading {
    max-width: 800px;
    margin: 0 auto 65px;
    text-align: center;
}

.mehndi-mini-title {
    display: inline-block;
    color: #4b0002;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.mehndi-premium-heading h2 {
    margin: 0;
    color: #181818;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.mehndi-premium-heading h2 span {
    color: #4b0002;
    font-style: italic;
}

.mehndi-premium-heading p {
    max-width: 680px;
    margin: 24px auto 0;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}


/* MAIN GRID */

.mehndi-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 24px;
    align-items: stretch;
}


/* NORMAL CARDS */

.mehndi-feature-card {
    position: relative;
    padding: 45px 32px;
    border: 1px solid rgba(75, 0, 2, 0.12);
    background: #ffffff;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
}

.mehndi-feature-card:hover {
    transform: translateY(-8px);
    border-color: #4b0002;
    box-shadow: 0 20px 50px rgba(75, 0, 2, 0.08);
}

.mehndi-card-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: rgba(75, 0, 2, 0.12);
    font-size: 42px;
    font-family: Georgia, serif;
}

.mehndi-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid rgba(75, 0, 2, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4b0002;
    font-size: 28px;
    margin-bottom: 28px;
}

.mehndi-feature-card h3 {
    color: #1d1d1d;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 16px;
}

.mehndi-feature-card p {
    color: #686868;
    font-size: 15px;
    line-height: 1.8;
}

.mehndi-line {
    width: 50px;
    height: 2px;
    background: #4b0002;
    margin-top: 25px;
    transition: 0.4s ease;
}

.mehndi-feature-card:hover .mehndi-line {
    width: 100px;
}


/* CENTER PREMIUM CARD */

.mehndi-center-card {
    position: relative;
    background: #a73639;
    padding: 55px 45px;
    text-align: center;
    color: #ffffff;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.mehndi-center-card::before,
.mehndi-center-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.mehndi-center-card::before {
    top: -70px;
    left: -70px;
}

.mehndi-center-card::after {
    right: -70px;
    bottom: -70px;
}

.mehndi-center-decoration {
    font-size: 30px;
    margin-bottom: 18px;
    color: #f1d7c8;
}

.mehndi-small-text {
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    color: #e9c9bd;
}

.mehndi-center-card h3 {
    margin: 20px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.18;
}

.mehndi-center-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
}

.mehndi-premium-btn {
    width: fit-content;
    margin: 0 auto;
    padding: 14px 24px;
    background: #ffffff;
    color: #4b0002;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

.mehndi-premium-btn span {
    font-size: 20px;
    transition: 0.3s ease;
}

.mehndi-premium-btn:hover {
    transform: translateY(-3px);
}

.mehndi-premium-btn:hover span {
    transform: translateX(5px);
}


/* STATS */

.mehndi-premium-stats {
    margin-top: 65px;
    padding-top: 45px;
    border-top: 1px solid #e9e9e9;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mehndi-stat {
    text-align: center;
    flex: 1;
}

.mehndi-stat strong {
    display: block;
    color: #4b0002;
    font-family: Georgia, serif;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 7px;
}

.mehndi-stat span {
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mehndi-stat-divider {
    width: 1px;
    height: 45px;
    background: #dedede;
}


/* ===============================
   SCROLL ANIMATION
================================ */

.reveal-up {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-up.show {
    opacity: 1;
    transform: translateY(0);
}


/* ===============================
   TABLET
================================ */

@media (max-width: 992px) {

    .mehndi-premium-section {
        padding: 80px 20px;
    }

    .mehndi-premium-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mehndi-center-card {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: auto;
    }

    .mehndi-feature-card {
        min-height: 330px;
    }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 650px) {

    .mehndi-premium-section {
        padding: 65px 16px;
    }

    .mehndi-premium-heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .mehndi-mini-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .mehndi-premium-heading h2 {
        font-size: 38px;
    }

    .mehndi-premium-heading p {
        font-size: 14px;
        margin-top: 18px;
    }

    .mehndi-premium-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mehndi-center-card {
        grid-column: auto;
        padding: 45px 25px;
        text-align: left;
    }

    .mehndi-center-card h3 {
        font-size: 30px;
    }

    .mehndi-center-card p {
        font-size: 14px;
    }

    .mehndi-premium-btn {
        margin: 0;
    }

    .mehndi-feature-card {
        min-height: auto;
        padding: 38px 25px;
    }

    .mehndi-premium-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px 15px;
        margin-top: 45px;
    }

    .mehndi-stat-divider {
        display: none;
    }

    .mehndi-stat strong {
        font-size: 29px;
    }

    .mehndi-stat span {
        font-size: 10px;
        letter-spacing: 1px;
    }

}


/* imges */
/* =========================
   BRIDAL MEHNDI SECTION
========================= */

.bridal-gallery {
    --mehndi: #4b0002;
    --mehndi-dark: #280001;
    --cream: #fffaf7;
    --gold: #b98b5d;

    width: 100%;
    padding: 100px 20px;
    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(75, 0, 2, 0.055),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(75, 0, 2, 0.05),
            transparent 28%
        ),
        #ffffff;

    overflow: hidden;
}


/* CONTAINER */

.bridal-container {
    width: min(1400px, 100%);
    margin: auto;
}


/* =========================
   HEADING
========================= */

.bridal-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.bridal-small-title {
    display: inline-block;

    color: var(--mehndi);

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 15px;
}


.bridal-heading h2 {
    margin: 0;

    color: var(--mehndi-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 500;

    line-height: 1.05;
}


.bridal-heading h2 em {
    color: var(--mehndi);
    font-weight: 400;
}


.bridal-heading p {
    max-width: 620px;

    margin:
        20px auto
        0;

    color: #6e5959;

    font-family: Arial, sans-serif;
    font-size: 15px;

    line-height: 1.8;
}


/* HEADING DECORATION */

.heading-design {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 25px;
}

.heading-design span {
    width: 50px;
    height: 1px;

    background: rgba(75, 0, 2, 0.35);
}

.heading-design b {
    color: var(--mehndi);
    font-size: 12px;
}


/* =========================
   CARDS
========================= */

.bridal-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


.bridal-card {
    position: relative;

    min-width: 0;

    opacity: 0;

    transform:
        translateY(70px)
        scale(0.96);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(.2,.8,.2,1);
}


.bridal-card.show-card {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* Alternate height */

.bridal-card:nth-child(2),
.bridal-card:nth-child(4) {
    margin-top: 45px;
}


/* IMAGE */

.bridal-image {
    position: relative;

    height: 520px;

    overflow: hidden;

    background: #eee;

    border-radius:
        160px
        160px
        16px
        16px;

    box-shadow:
        0 25px 55px
        rgba(75, 0, 2, 0.12);

    isolation: isolate;
}


.bridal-image::before {
    content: "";

    position: absolute;
    inset: 10px;

    z-index: 3;

    border:
        1px solid
        rgba(255,255,255,0.55);

    border-radius:
        150px
        150px
        10px
        10px;

    pointer-events: none;
}


.bridal-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s
        cubic-bezier(.2,.7,.2,1);
}


.bridal-card:hover img {
    transform: scale(1.08);
}


/* OVERLAY */

.image-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(37,0,1,0.92) 0%,
            rgba(75,0,2,0.35) 35%,
            transparent 70%
        );

    transition: 0.4s ease;
}


.bridal-card:hover .image-overlay {
    background:
        linear-gradient(
            to top,
            rgba(37,0,1,0.94) 0%,
            rgba(75,0,2,0.45) 45%,
            rgba(75,0,2,0.05) 75%
        );
}


/* NUMBER */

.bridal-number {
    position: absolute;

    top: 28px;
    right: 25px;

    z-index: 5;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-family: Georgia, serif;
    font-size: 13px;

    border:
        1px solid
        rgba(255,255,255,0.65);

    background:
        rgba(75,0,2,0.25);

    backdrop-filter: blur(6px);
}


/* CONTENT */

.bridal-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 30px;

    z-index: 4;

    color: #fff;

    transform: translateY(10px);

    transition: 0.4s ease;
}


.bridal-card:hover .bridal-content {
    transform: translateY(0);
}


.bridal-content span {
    display: block;

    margin-bottom: 7px;

    color: #f2cfae;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.bridal-content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    font-weight: 500;
}


.bridal-content p {
    max-width: 270px;

    margin: 0;

    color:
        rgba(255,255,255,0.78);

    font-family: Arial, sans-serif;
    font-size: 12px;

    line-height: 1.6;
}


/* MOBILE TEXT */

.mobile-scroll-text {
    display: none;
}


/* =========================
   HEADING SCROLL EFFECT
========================= */

.reveal-up {
    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal-up.active {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .bridal-gallery {
        padding:
            80px 25px;
    }

    .bridal-cards {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }

    .bridal-card:nth-child(2),
    .bridal-card:nth-child(4) {
        margin-top: 0;
    }

    .bridal-image {
        height: 570px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .bridal-gallery {
        padding:
            65px 0
            60px;
    }


    .bridal-heading {
        padding:
            0 22px;

        margin-bottom: 35px;
    }


    .bridal-small-title {
        font-size: 10px;
        letter-spacing: 3px;
    }


    .bridal-heading h2 {
        font-size: 39px;
        line-height: 1.08;
    }


    .bridal-heading p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* MOBILE HORIZONTAL SCROLL */

    .bridal-cards {
        display: flex;

        gap: 16px;

        overflow-x: auto;

        padding:
            5px 22px
            30px;

        scroll-snap-type:
            x mandatory;

        scrollbar-width: none;

        -webkit-overflow-scrolling:
            touch;
    }


    .bridal-cards::-webkit-scrollbar {
        display: none;
    }


    .bridal-card {
        flex:
            0 0 83%;

        scroll-snap-align:
            center;
    }


    .bridal-card:nth-child(2),
    .bridal-card:nth-child(4) {
        margin-top: 0;
    }


    .bridal-image {
        height: 500px;

        border-radius:
            130px
            130px
            14px
            14px;
    }


    .bridal-image::before {
        border-radius:
            120px
            120px
            9px
            9px;
    }


    .bridal-content {
        left: 22px;
        right: 22px;
        bottom: 25px;
    }


    .bridal-content h3 {
        font-size: 24px;
    }


    .bridal-content p {
        font-size: 12px;
    }


    .mobile-scroll-text {
        display: flex;

        align-items: center;
        justify-content: center;

        gap: 12px;

        margin-top: 5px;

        color: var(--mehndi);

        font-family: Arial, sans-serif;

        font-size: 11px;
        font-weight: 600;

        letter-spacing: 2px;

        text-transform: uppercase;
    }


    .scroll-arrow {
        display: inline-block;

        font-size: 20px;

        animation:
            moveArrow
            1.2s
            infinite alternate;
    }
}


/* SMALL MOBILE */

@media (max-width: 400px) {

    .bridal-card {
        flex-basis: 88%;
    }

    .bridal-image {
        height: 455px;
    }

    .bridal-heading h2 {
        font-size: 35px;
    }
}


/* ARROW */

@keyframes moveArrow {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(8px);
    }
}


/* Reduced motion */

@media (
    prefers-reduced-motion:
    reduce
) {

    .bridal-card,
    .reveal-up,
    .bridal-image img {
        transition: none;
    }
}


/* =========================================
   AMIT MEHANDI PREMIUM ABOUT PAGE
========================================= */

.amit-about {
    --mehndi: #4b0002;
    --dark-mehndi: #280001;
    --soft-mehndi: #722326;
    --cream: #fff8f6;
    --cream-dark: #f7ece9;
    --text: #342829;
    --muted: #766668;

    background: #ffffff;
    color: var(--text);

    overflow: hidden;
}

.amit-about *,
.amit-about *::before,
.amit-about *::after {
    box-sizing: border-box;
}

.amit-container {
    width: min(1320px, calc(100% - 40px));
    margin: auto;
}


/* =========================================
   HERO
========================================= */

.amit-about-hero {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;

    padding: 90px 0 110px;

    position: relative;

    background:
        radial-gradient(
            circle at 12% 30%,
            rgba(75, 0, 2, 0.05),
            transparent 27%
        ),
        #fff;
}


.amit-about-hero-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;

    gap: 80px;

    align-items: center;
}


.amit-about-hero-content {
    max-width: 620px;

    position: relative;
    z-index: 2;
}


/* SMALL HEADING */

.amit-eyebrow {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    color: var(--mehndi);

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
}


.amit-eyebrow span {
    width: 55px;
    height: 1px;

    background: var(--mehndi);
}


/* MAIN TITLE */

.amit-about-hero h1 {
    margin: 0;

    color: var(--dark-mehndi);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(50px, 6vw, 85px);

    line-height: 1.01;

    font-weight: 400;

    letter-spacing: -3px;
}


.amit-about-hero h1 em {
    display: block;

    color: var(--mehndi);

    font-weight: 400;
}


.amit-hero-lead {
    max-width: 560px;

    margin: 30px 0 0;

    color: var(--muted);

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.9;
}


/* BUTTON AREA */

.amit-about-actions {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-top: 40px;
}


.amit-primary-btn {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 30px;

    padding: 17px 20px 17px 25px;

    background: var(--mehndi);

    color: #fff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.35s ease;
}


.amit-primary-btn span {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,0.12);

    font-size: 16px;

    transition: .35s ease;
}


.amit-primary-btn:hover {
    background: var(--dark-mehndi);

    transform: translateY(-3px);
}


.amit-primary-btn:hover span {
    transform: translateX(3px);
}


/* SIGNATURE */

.amit-mini-signature {
    display: flex;
    align-items: center;

    gap: 12px;
}


.amit-mini-signature > strong {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(75, 0, 2, 0.3);

    color: var(--mehndi);

    font-family: Georgia, serif;

    font-size: 18px;
}


.amit-mini-signature div {
    display: flex;
    flex-direction: column;
}


.amit-mini-signature span {
    color: var(--muted);

    font-size: 9px;

    letter-spacing: 1px;
}


.amit-mini-signature b {
    margin-top: 3px;

    color: var(--mehndi);

    font-family: Georgia, serif;

    font-size: 14px;
}


/* =========================================
   HERO IMAGES
========================================= */

.amit-about-visual {
    height: 680px;

    position: relative;
}


.amit-main-photo {
    position: absolute;

    width: 72%;
    height: 610px;

    right: 0;
    top: 0;

    overflow: hidden;

    border-radius:
        230px 230px
        10px 10px;

    box-shadow:
        0 35px 80px
        rgba(75, 0, 2, 0.13);
}


.amit-main-photo img,
.amit-floating-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.8s ease;
}


.amit-main-photo:hover img {
    transform: scale(1.05);
}


.amit-photo-border {
    position: absolute;

    inset: 13px;

    border:
        1px solid
        rgba(255,255,255,0.6);

    border-radius:
        215px 215px
        7px 7px;
}


.amit-floating-photo {
    position: absolute;

    width: 39%;
    height: 325px;

    left: 1%;
    bottom: 0;

    border:
        10px solid #fff;

    overflow: hidden;

    box-shadow:
        0 25px 55px
        rgba(75,0,2,0.15);
}


.amit-round-badge {
    position: absolute;

    width: 130px;
    height: 130px;

    right: 58%;
    top: 70px;

    padding: 8px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 15px 40px
        rgba(75,0,2,0.12);

    z-index: 5;
}


.amit-badge-inner {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--mehndi);

    color: #fff;
}


.amit-badge-inner strong {
    font-family: Georgia, serif;
    font-size: 30px;
}


.amit-badge-inner span {
    margin-top: 4px;

    font-size: 7px;

    letter-spacing: 2px;
}


.amit-vertical-text {
    position: absolute;

    right: -55px;
    bottom: 170px;

    transform: rotate(90deg);

    color:
        rgba(75,0,2,0.45);

    font-size: 9px;

    letter-spacing: 4px;
}


/* =========================================
   STORY SECTION
========================================= */

.amit-story-section {
    padding: 140px 0;

    background: var(--cream);
}


.amit-story-grid {
    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap: 100px;

    align-items: center;
}


.amit-story-image-wrap {
    min-height: 620px;

    position: relative;
}


.amit-story-image {
    width: 85%;
    height: 590px;

    overflow: hidden;

    border-radius:
        12px 180px
        12px 12px;
}


.amit-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.amit-story-image:hover img {
    transform: scale(1.05);
}


.amit-image-caption {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 220px;

    padding: 25px;

    background: var(--mehndi);

    color: white;
}


.amit-image-caption span {
    color:
        rgba(255,255,255,.55);

    font-family: Georgia, serif;

    font-size: 30px;
}


.amit-image-caption p {
    margin: 14px 0 0;

    font-family: Georgia, serif;

    font-size: 19px;

    line-height: 1.4;
}


/* STORY CONTENT */

.amit-section-tag {
    display: block;

    margin-bottom: 18px;

    color: var(--mehndi);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;
}


.amit-story-content h2,
.amit-art-content h2 {
    margin: 0;

    color: var(--dark-mehndi);

    font-family: Georgia, serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    font-weight: 400;
}


.amit-story-content h2 em,
.amit-art-content h2 em {
    display: block;

    color: var(--mehndi);

    font-weight: 400;
}


.amit-story-highlight {
    margin:
        30px 0 20px !important;

    color: var(--text) !important;

    font-family: Georgia, serif !important;

    font-size: 20px !important;

    line-height: 1.6 !important;
}


.amit-story-content > p {
    color: var(--muted);

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.9;
}


.amit-story-points {
    margin-top: 30px;

    border-top:
        1px solid
        rgba(75,0,2,0.14);
}


.amit-story-point {
    display: grid;

    grid-template-columns:
        35px 1fr;

    gap: 15px;

    padding: 22px 0;

    border-bottom:
        1px solid
        rgba(75,0,2,0.14);
}


.amit-story-point > span {
    color: var(--mehndi);
}


.amit-story-point h3 {
    margin: 0 0 5px;

    color: var(--dark-mehndi);

    font-family: Georgia, serif;

    font-size: 18px;

    font-weight: 500;
}


.amit-story-point p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   QUOTE
========================================= */

.amit-quote-section {
    padding:
        140px 0 100px;

    background: #fff;
}


.amit-quote-box {
    max-width: 950px;

    margin: auto;

    text-align: center;
}


.amit-big-quote {
    height: 60px;

    display: block;

    color: var(--mehndi);

    font-family: Georgia, serif;

    font-size: 100px;

    line-height: 1;
}


.amit-quote-box p {
    margin: 10px 0 30px;

    color: var(--dark-mehndi);

    font-family: Georgia, serif;

    font-size: clamp(30px, 5vw, 58px);

    line-height: 1.25;
}


.amit-quote-box p em {
    color: var(--mehndi);

    font-weight: 400;
}


.amit-quote-author {
    color: var(--mehndi);

    font-size: 10px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* =========================================
   STATS
========================================= */

.amit-stats-section {
    padding-bottom: 130px;
}


.amit-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        rgba(75,0,2,0.15);

    border-bottom:
        1px solid
        rgba(75,0,2,0.15);
}


.amit-stat {
    min-height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    padding: 30px;

    text-align: center;

    border-right:
        1px solid
        rgba(75,0,2,0.15);
}


.amit-stat:last-child {
    border-right: 0;
}


.amit-stat strong {
    color: var(--mehndi);

    font-family: Georgia, serif;

    font-size: 55px;

    font-weight: 400;
}


.amit-stat > span {
    margin-left: 3px;

    color: var(--mehndi);

    font-family: Georgia, serif;

    font-size: 24px;
}


.amit-stat p {
    flex-basis: 100%;

    margin:
        7px 0 0;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   DIFFERENCE
========================================= */

.amit-difference-section {
    padding: 130px 0;

    background: var(--dark-mehndi);
}


.amit-section-heading {
    max-width: 700px;

    margin-bottom: 65px;
}


.amit-section-heading > span {
    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    letter-spacing: 4px;
}


.amit-section-heading h2 {
    margin:
        15px 0 0;

    color: #fff;

    font-family: Georgia, serif;

    font-size: clamp(42px, 5vw, 66px);

    line-height: 1.05;

    font-weight: 400;
}


.amit-section-heading h2 em {
    color: #d9adae;

    font-weight: 400;
}


.amit-difference-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.amit-difference-card {
    min-height: 370px;

    position: relative;

    padding: 35px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid
        rgba(255,255,255,0.12);

    transition: .4s ease;
}


.amit-difference-card:hover {
    transform: translateY(-8px);

    background:
        rgba(255,255,255,0.08);
}


.amit-card-number {
    color:
        rgba(255,255,255,0.4);

    font-family: Georgia, serif;

    font-size: 42px;
}


.amit-card-line {
    width: 40px;
    height: 1px;

    margin:
        80px 0 25px;

    background: #d9adae;
}


.amit-difference-card h3 {
    margin: 0;

    color: #fff;

    font-family: Georgia, serif;

    font-size: 27px;

    font-weight: 400;
}


.amit-difference-card p {
    max-width: 320px;

    margin:
        15px 0 0;

    color:
        rgba(255,255,255,.66);

    font-size: 13px;

    line-height: 1.8;
}


.amit-card-arrow {
    position: absolute;

    right: 30px;
    top: 32px;

    color: #d9adae;

    font-size: 20px;
}


/* =========================================
   ART SECTION
========================================= */

.amit-art-section {
    padding: 140px 0;

    background: white;
}


.amit-art-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


.amit-art-content p {
    max-width: 520px;

    margin:
        25px 0 30px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


.amit-art-list {
    margin-bottom: 35px;
}


.amit-art-list div {
    display: flex;

    gap: 20px;

    padding: 17px 0;

    color: var(--dark-mehndi);

    border-bottom:
        1px solid
        rgba(75,0,2,0.12);

    font-family: Georgia, serif;

    font-size: 16px;
}


.amit-art-list span {
    color:
        rgba(75,0,2,0.45);

    font-size: 12px;
}


.amit-art-photo {
    height: 680px;

    position: relative;

    overflow: hidden;

    border-radius:
        210px 10px
        10px 10px;
}


.amit-art-photo > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .8s ease;
}


.amit-art-photo:hover > img {
    transform: scale(1.05);
}


.amit-art-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(40,0,1,.88),
            transparent 55%
        );
}


.amit-art-photo-content {
    position: absolute;

    left: 40px;
    bottom: 40px;

    z-index: 3;

    color: white;
}


.amit-art-photo-content span {
    font-size: 9px;

    letter-spacing: 3px;
}


.amit-art-photo-content strong {
    display: block;

    margin-top: 10px;

    font-family: Georgia, serif;

    font-size: 26px;

    line-height: 1.35;

    font-weight: 400;
}


/* =========================================
   FINAL CTA
========================================= */

.amit-about-cta {
    padding:
        40px 0 120px;
}


.amit-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 70px;

    background: var(--cream);

    border:
        1px solid
        rgba(75,0,2,.1);
}


.amit-cta-box > div > span {
    color: var(--mehndi);

    font-size: 9px;

    letter-spacing: 4px;
}


.amit-cta-box h2 {
    max-width: 700px;

    margin:
        15px 0 0;

    color: var(--dark-mehndi);

    font-family: Georgia, serif;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

    font-weight: 400;
}


.amit-cta-box h2 em {
    color: var(--mehndi);

    font-weight: 400;
}


.amit-cta-button {
    min-width: 190px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding:
        14px 15px
        14px 22px;

    background: var(--mehndi);

    color: #fff;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.amit-cta-button i {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.12);

    font-size: 17px;

    font-style: normal;
}


/* =========================================
   SCROLL ANIMATION

   IMPORTANT:
   content default visible hai.
   JS load hone par hi animation apply hogi.
========================================= */

.js-amit-animation .amit-reveal {
    opacity: 0;

    transform:
        translateY(55px);

    transition:
        opacity .85s ease,
        transform .85s
        cubic-bezier(.2,.8,.2,1);
}


.js-amit-animation .amit-reveal.amit-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .amit-about-hero-grid,
    .amit-story-grid,
    .amit-art-grid {
        gap: 55px;
    }


    .amit-about-visual {
        height: 590px;
    }


    .amit-main-photo {
        height: 530px;
    }


    .amit-floating-photo {
        height: 270px;
    }


    .amit-story-image {
        height: 530px;
    }


    .amit-art-photo {
        height: 580px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .amit-container {
        width:
            min(100% - 32px, 1320px);
    }


    /* HERO */

    .amit-about-hero {
        min-height: auto;

        padding:
            70px 0 90px;
    }


    .amit-about-hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .amit-eyebrow {
        font-size: 9px;

        letter-spacing: 2.5px;
    }


    .amit-eyebrow span {
        width: 30px;
    }


    .amit-about-hero h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }


    .amit-hero-lead {
        font-size: 13px;

        line-height: 1.8;
    }


    .amit-about-actions {
        align-items: flex-start;
        flex-direction: column;

        gap: 22px;
    }


    .amit-about-visual {
        height: 520px;
    }


    .amit-main-photo {
        width: 84%;
        height: 460px;

        border-radius:
            150px 150px
            8px 8px;
    }


    .amit-photo-border {
        border-radius:
            140px 140px
            5px 5px;
    }


    .amit-floating-photo {
        width: 42%;
        height: 220px;
    }


    .amit-round-badge {
        width: 95px;
        height: 95px;

        right: auto;
        left: 9%;

        top: 45px;
    }


    .amit-badge-inner strong {
        font-size: 22px;
    }


    .amit-vertical-text {
        display: none;
    }


    /* STORY */

    .amit-story-section {
        padding:
            90px 0;
    }


    .amit-story-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .amit-story-image-wrap {
        min-height: 500px;
    }


    .amit-story-image {
        width: 90%;
        height: 465px;

        border-radius:
            10px 120px
            10px 10px;
    }


    .amit-image-caption {
        width: 180px;

        padding: 20px;
    }


    .amit-image-caption p {
        font-size: 16px;
    }


    .amit-story-content h2,
    .amit-art-content h2 {
        font-size: 39px;
    }


    /* QUOTE */

    .amit-quote-section {
        padding:
            90px 0 70px;
    }


    .amit-big-quote {
        font-size: 75px;
    }


    .amit-quote-box p {
        font-size: 31px;
    }


    /* STATS */

    .amit-stats-section {
        padding-bottom: 90px;
    }


    .amit-stats {
        grid-template-columns:
            repeat(2,1fr);
    }


    .amit-stat {
        min-height: 150px;

        padding: 20px;

        border-bottom:
            1px solid
            rgba(75,0,2,.15);
    }


    .amit-stat:nth-child(2) {
        border-right: 0;
    }


    .amit-stat:nth-child(3),
    .amit-stat:nth-child(4) {
        border-bottom: 0;
    }


    .amit-stat strong {
        font-size: 42px;
    }


    /* DIFFERENCE */

    .amit-difference-section {
        padding:
            90px 0;
    }


    .amit-section-heading h2 {
        font-size: 40px;
    }


    .amit-difference-grid {
        grid-template-columns: 1fr;
    }


    .amit-difference-card {
        min-height: 300px;
    }


    .amit-card-line {
        margin:
            50px 0 22px;
    }


    /* ART */

    .amit-art-section {
        padding:
            90px 0;
    }


    .amit-art-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .amit-art-photo {
        height: 500px;

        border-radius:
            130px 8px
            8px 8px;
    }


    .amit-art-photo-content {
        left: 25px;
        bottom: 25px;
    }


    /* CTA */

    .amit-about-cta {
        padding:
            10px 0 80px;
    }


    .amit-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding:
            45px 25px;
    }


    .amit-cta-box h2 {
        font-size: 38px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .amit-about-hero h1 {
        font-size: 38px;
    }


    .amit-about-visual {
        height: 465px;
    }


    .amit-main-photo {
        height: 415px;
    }


    .amit-floating-photo {
        height: 190px;
    }


    .amit-story-image-wrap {
        min-height: 450px;
    }


    .amit-story-image {
        height: 420px;
    }


    .amit-story-content h2,
    .amit-art-content h2 {
        font-size: 35px;
    }


    .amit-stat strong {
        font-size: 37px;
    }


    .amit-art-photo {
        height: 440px;
    }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

    .amit-reveal,
    .amit-main-photo img,
    .amit-story-image img,
    .amit-art-photo img {
        transition: none !important;
    }

}


/* servics */
/* ================================
   MEHNDI SERVICE SECTION
================================ */

.mehndi-service-section {
    width: 100%;
    padding: 100px 20px;
    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(75, 0, 2, 0.07),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 95%,
            rgba(75, 0, 2, 0.05),
            transparent 25%
        ),
        #ffffff;

    overflow: hidden;
}


.mehndi-service-wrapper {
    width: 100%;
    max-width: 1250px;
    margin: auto;
}


/* ================================
   HEADING
================================ */

.mehndi-service-heading {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}


.mehndi-service-heading > span {
    display: inline-block;

    color: #4b0002;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 15px;
}


.mehndi-service-heading h2 {
    margin: 0;

    color: #231718;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 5vw, 62px);

    font-weight: 500;

    line-height: 1.08;
}


.mehndi-service-heading h2 strong {
    display: block;

    color: #4b0002;

    font-style: italic;

    font-weight: 600;

    margin-top: 5px;
}


.mehndi-service-heading p {
    max-width: 620px;

    margin: 20px auto 0;

    color: #776b6c;

    font-size: 15px;

    line-height: 1.8;
}


/* ================================
   GRID
================================ */

.mehndi-service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* ================================
   CARD
================================ */

.mehndi-card {
    min-width: 0;

    background: #ffffff;

    border:
        1px solid rgba(75, 0, 2, 0.10);

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(75, 0, 2, 0.05);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}


.mehndi-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(75, 0, 2, 0.25);

    box-shadow:
        0 25px 55px
        rgba(75, 0, 2, 0.14);
}


/* ================================
   CARD IMAGE
================================ */

.mehndi-card-image {
    position: relative;

    width: 100%;

    height: 360px;

    overflow: hidden;
}


.mehndi-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}


.mehndi-card:hover
.mehndi-card-image img {
    transform: scale(1.08);
}


.mehndi-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(40, 0, 2, 0.70)
        );
}


/* Number */

.mehndi-card-number {
    position: absolute;

    top: 18px;
    left: 18px;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.95);

    color: #4b0002;

    border-radius: 50%;

    font-family: Georgia, serif;

    font-size: 14px;

    font-weight: bold;

    z-index: 2;
}


/* Badge */

.mehndi-card-badge {
    position: absolute;

    right: 18px;
    bottom: 18px;

    padding: 9px 14px;

    background:
        rgba(75, 0, 2, .88);

    color: #ffffff;

    border:
        1px solid rgba(255,255,255,.25);

    border-radius: 30px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

    backdrop-filter: blur(7px);

    z-index: 2;
}


/* ================================
   CONTENT
================================ */

.mehndi-card-content {
    padding: 27px 25px 28px;
}


.mehndi-small-title {
    color: #a07a7b;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;
}


.mehndi-card-content h3 {
    margin:
        9px 0 13px;

    color: #4b0002;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;

    font-weight: 600;

    line-height: 1.2;
}


.mehndi-card-content p {
    min-height: 100px;

    margin:
        0 0 20px;

    color: #776c6d;

    font-size: 14px;

    line-height: 1.75;
}


/* ================================
   TAGS
================================ */

.mehndi-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    padding-bottom: 22px;

    margin-bottom: 20px;

    border-bottom:
        1px solid #eee7e7;
}


.mehndi-tags span {
    padding:
        7px 11px;

    color: #4b0002;

    background: #fbf4f4;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 600;
}


/* ================================
   LINK
================================ */

.mehndi-card-content a {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #302324;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}


.mehndi-card-content a i {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #4b0002;

    border: 1px solid #4b0002;

    border-radius: 50%;

    font-style: normal;

    font-size: 18px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.mehndi-card-content a:hover {
    color: #4b0002;
}


.mehndi-card-content a:hover i {
    background: #4b0002;

    color: #ffffff;

    transform: rotate(45deg);
}


/* ================================
   SCROLL REVEAL
   CSS SUPPORTED BROWSERS
================================ */

@supports (animation-timeline: view()) {

    .mehndi-card {
        animation:
            mehndiCardReveal linear both;

        animation-timeline: view();

        animation-range:
            entry 5%
            cover 28%;
    }


    .mehndi-service-heading {
        animation:
            mehndiHeadingReveal linear both;

        animation-timeline: view();

        animation-range:
            entry 5%
            cover 35%;
    }

}


@keyframes mehndiCardReveal {

    from {
        opacity: 0;

        transform:
            translateY(60px)
            scale(.96);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


@keyframes mehndiHeadingReveal {

    from {
        opacity: 0;

        transform:
            translateY(40px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* ================================
   TABLET
================================ */

@media (max-width: 1024px) {

    .mehndi-service-section {
        padding:
            80px 20px;
    }


    .mehndi-service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .mehndi-card-image {
        height: 350px;
    }


    .mehndi-card-content p {
        min-height: auto;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .mehndi-service-section {
        padding:
            65px 15px;
    }


    .mehndi-service-heading {
        margin-bottom: 38px;
    }


    .mehndi-service-heading > span {
        font-size: 10px;

        letter-spacing: 3px;
    }


    .mehndi-service-heading h2 {
        font-size: 35px;
    }


    .mehndi-service-heading p {
        font-size: 14px;

        line-height: 1.7;
    }


    .mehndi-service-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .mehndi-card-image {
        height: 390px;
    }


    .mehndi-card-content {
        padding:
            24px 21px 26px;
    }


    .mehndi-card-content h3 {
        font-size: 27px;
    }


    .mehndi-card-content p {
        font-size: 13.5px;

        min-height: auto;
    }


    .mehndi-card:hover {
        transform: translateY(-5px);
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {

    .mehndi-service-heading h2 {
        font-size: 31px;
    }


    .mehndi-card-image {
        height: 340px;
    }


    .mehndi-card-content {
        padding:
            22px 18px 24px;
    }


    .mehndi-card-content h3 {
        font-size: 25px;
    }

}

/* footer */
/* ==================================
   AMIT MEHNDI PREMIUM FOOTER
================================== */

.amit-footer {
    position: relative;

    width: 100%;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(255, 255, 255, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(255, 255, 255, 0.06),
            transparent 30%
        ),
        #4b0002;

    color: #ffffff;

    overflow: hidden;

    padding-top: 80px;
}




/* Decorative background circle */

.amit-footer-shape {
    position: absolute;

    width: 380px;
    height: 380px;

    right: -170px;
    top: -170px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    pointer-events: none;
}


.amit-footer-shape::before,
.amit-footer-shape::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 50%;
}


.amit-footer-shape::before {
    inset: 45px;
}


.amit-footer-shape::after {
    inset: 90px;
}


/* ==================================
   MAIN CONTAINER
================================== */

.amit-footer-container {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;

    padding:
        0 25px 70px;

    display: grid;

    grid-template-columns:
        1.25fr .65fr 1.25fr;

    gap: 70px;
}


/* ==================================
   LOGO / BRAND
================================== */

.amit-footer-brand {
    max-width: 390px;
}


.amit-footer-logo {
    display: inline-block;

    margin-bottom: 22px;
}


.amit-footer-logo img {
    display: block;

    width: 155px;

    max-height: 90px;

    object-fit: contain;

    /* Remove this if your logo already has white text */
    background: #ffffff;

    padding: 8px 12px;

    border-radius: 12px;
}


.amit-footer-brand > p {
    color: rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.9;

    margin:
        0 0 28px;
}


/* Call */

.amit-footer-call {
    display: inline-flex;

    align-items: center;

    gap: 13px;
}


.amit-call-icon {
    width: 47px;
    height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,.22);

    background: rgba(255,255,255,.08);

    border-radius: 50%;

    font-size: 18px;
}


.amit-footer-call small {
    display: block;

    color: rgba(255,255,255,.55);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}


.amit-footer-call a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .4px;
}


/* ==================================
   COMMON HEADING
================================== */

.amit-footer-links h3,
.amit-footer-address h3 {
    position: relative;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    font-weight: 500;

    margin:
        0 0 30px;
}


.amit-footer-links h3::after,
.amit-footer-address h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 36px;
    height: 2px;

    background:
        rgba(255,255,255,.7);

    border-radius: 10px;
}


/* ==================================
   QUICK LINKS
================================== */

.amit-footer-links ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.amit-footer-links li {
    margin-bottom: 13px;
}


.amit-footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.72);

    text-decoration: none;

    font-size: 14px;

    transition:
        color .3s ease,
        transform .3s ease;
}


.amit-footer-links a span {
    color: #ffffff;

    font-size: 20px;

    transition:
        transform .3s ease;
}


.amit-footer-links a:hover {
    color: #ffffff;

    transform:
        translateX(5px);
}


.amit-footer-links a:hover span {
    transform:
        translateX(3px);
}


/* ==================================
   LOCATIONS
================================== */

.amit-location-box {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding:
        18px 18px;

    margin-bottom: 15px;

    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.055);

    border-radius: 15px;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.amit-location-box:hover {
    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,.09);

    border-color:
        rgba(255,255,255,.25);
}


.amit-location-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #ffffff;

    color: #4b0002;

    border-radius: 50%;

    font-size: 16px;
}


.amit-location-title {
    display: block;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 6px;
}


.amit-location-box p {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 12.5px;

    line-height: 1.75;
}


/* ==================================
   BOTTOM FOOTER
================================== */

.amit-footer-bottom {
    position: relative;

    z-index: 2;

    border-top:
        1px solid rgba(255,255,255,.1);

    background:
        rgba(0,0,0,.12);
}


.amit-footer-bottom-inner {
    max-width: 1250px;

    margin: auto;

    padding:
        20px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.amit-footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
}


.amit-footer-bottom strong {
    color: #ffffff;

    font-weight: 600;
}


.amit-footer-love span {
    color: #ffffff;

    font-size: 15px;
}


/* ==================================
   TABLET
================================== */

@media (max-width: 950px) {

    .amit-footer-container {
        grid-template-columns:
            1fr 1fr;

        gap:
            55px 40px;
    }


    .amit-footer-brand {
        grid-column:
            1 / -1;

        max-width: 550px;
    }

}


/* ==================================
   MOBILE
================================== */

@media (max-width: 600px) {

    .amit-footer {
        padding-top: 60px;
    }


    .amit-footer-container {
        display: grid;

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            0 18px 50px;
    }


    .amit-footer-brand {
        grid-column: auto;
    }


    .amit-footer-logo img {
        width: 135px;
    }


    .amit-footer-brand > p {
        font-size: 13px;

        line-height: 1.8;
    }


    .amit-footer-links h3,
    .amit-footer-address h3 {
        font-size: 20px;
    }


    .amit-location-box {
        padding: 16px 14px;
    }


    .amit-location-box p {
        font-size: 12px;
    }


    .amit-footer-bottom-inner {
        flex-direction: column;

        text-align: center;

        padding:
            18px 15px;
    }

}


/* ==================================
   VERY SMALL MOBILE
================================== */

@media (max-width: 370px) {

    .amit-location-box {
        gap: 10px;
    }


    .amit-location-icon {
        width: 36px;
        height: 36px;

        font-size: 14px;
    }


    .amit-location-box p {
        font-size: 11px;
    }

}


/* =================================
   FLOATING WHATSAPP + CALL
================================= */

.floating-contact {
    position: fixed;

    right: 22px;
    bottom: 35px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    z-index: 99999;
}


/* ================================
   COMMON BUTTON
================================ */

.float-btn {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.22);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    animation:
        floatingBounce 2.4s ease-in-out infinite;
}


/* ICON */

.float-btn svg {
    width: 27px;
    height: 27px;

    fill: #ffffff;

    position: relative;
    z-index: 3;
}


/* ================================
   WHATSAPP
================================ */

.whatsapp-btn {
    background:
        linear-gradient(
            135deg,
            #25D366,
            #128C7E
        );
}


/* Pulse ring */

.whatsapp-btn::before {
    content: "";

    position: absolute;

    inset: -6px;

    border-radius: 50%;

    border:
        2px solid rgba(37, 211, 102, .45);

    animation:
        whatsappPulse 1.8s infinite;
}


/* ================================
   CALL
================================ */

.call-btn {
    background:
        linear-gradient(
            135deg,
            #6f0003,
            #4b0002
        );

    animation-delay: .25s;
}


.call-btn::before {
    content: "";

    position: absolute;

    inset: -6px;

    border-radius: 50%;

    border:
        2px solid rgba(75, 0, 2, .35);

    animation:
        callPulse 1.8s infinite;

    animation-delay: .4s;
}


/* ================================
   TOOLTIP
================================ */

.float-tooltip {
    position: absolute;

    right: 72px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(8px);

    white-space: nowrap;

    background: #4b0002;

    color: #ffffff;

    padding:
        8px 13px;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .2px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}


/* Small arrow */

.float-tooltip::after {
    content: "";

    position: absolute;

    right: -5px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(45deg);

    width: 10px;
    height: 10px;

    background: #4b0002;
}


/* Show tooltip */

.float-btn:hover .float-tooltip {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);
}


/* ================================
   HOVER
================================ */

.float-btn:hover {
    transform:
        translateY(-5px)
        scale(1.08);

    box-shadow:
        0 14px 35px
        rgba(0,0,0,.28);

    animation-play-state: paused;
}


/* ================================
   BOUNCE
================================ */

@keyframes floatingBounce {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


/* WhatsApp pulse */

@keyframes whatsappPulse {

    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }

}


/* Call pulse */

@keyframes callPulse {

    0% {
        transform: scale(.9);
        opacity: .8;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .floating-contact {
        right: 14px;
        bottom: 22px;

        gap: 11px;
    }


    .float-btn {
        width: 52px;
        height: 52px;
    }


    .float-btn svg {
        width: 24px;
        height: 24px;
    }


    /* Mobile par tooltip hide */
    .float-tooltip {
        display: none;
    }

}


/* ================================
   VERY SMALL MOBILE
================================ */

@media (max-width: 360px) {

    .float-btn {
        width: 48px;
        height: 48px;
    }


    .float-btn svg {
        width: 22px;
        height: 22px;
    }

}/* ================================
   BACK TO TOP BUTTON
================================ */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 185px;

    width: 52px;
    height: 52px;

    border: none;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #6f0003,
            #4b0002
        );

    color: #ffffff;

    font-size: 24px;
    font-weight: 700;

    cursor: pointer;

    z-index: 99999;

    box-shadow:
        0 10px 25px rgba(75, 0, 2, 0.28);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(20px)
        scale(.8);

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease,
        box-shadow .3s ease;

}


/* SHOW BUTTON */

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);

    animation:
        topButtonBounce 2s ease-in-out infinite;
}


/* HOVER */

.back-to-top:hover {
    animation-play-state: paused;

    transform:
        translateY(-5px)
        scale(1.08);

    box-shadow:
        0 15px 35px rgba(75, 0, 2, .35);
}


/* BOUNCE */

@keyframes topButtonBounce {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .back-to-top {
        right: 14px;

        /* Call + WhatsApp buttons se upar */
        bottom: 165px;

        width: 48px;
        height: 48px;

        font-size: 22px;
    }

}


/* ==========================================
   CONTACT PAGE
========================================== */

.contact-page {
    width: 100%;
    padding: 100px 20px;

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(75, 0, 2, .07),
            transparent 28%
        ),
        radial-gradient(
            circle at 100% 40%,
            rgba(75, 0, 2, .05),
            transparent 25%
        ),
        #ffffff;

    color: #291d1e;

    overflow: hidden;
}


.contact-container {
    max-width: 1250px;
    margin: auto;
}


/* ==========================================
   HEADING
========================================== */

.contact-heading {
    max-width: 780px;

    margin:
        0 auto 55px;

    text-align: center;
}


.contact-label {
    display: inline-block;

    color: #4b0002;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 15px;
}


.contact-heading h1 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(40px, 6vw, 66px);

    line-height: 1.05;

    font-weight: 500;

    color: #271c1d;
}


.contact-heading h1 em {
    display: block;

    color: #4b0002;

    font-weight: 600;
}


.contact-heading p {
    max-width: 640px;

    margin:
        22px auto 0;

    color: #786d6e;

    font-size: 15px;

    line-height: 1.8;
}


/* ==========================================
   TOP CONTACT CARDS
========================================== */

.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 100px;
}


.contact-info-card {
    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 120px;

    padding: 22px;

    background: #ffffff;

    border:
        1px solid rgba(75,0,2,.10);

    border-radius: 18px;

    color: inherit;

    text-decoration: none;

    box-shadow:
        0 10px 35px rgba(75,0,2,.05);

    transition:
        .4s ease;
}


.contact-info-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(75,0,2,.25);

    box-shadow:
        0 20px 40px rgba(75,0,2,.12);
}


.contact-info-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #4b0002;

    color: #ffffff;

    font-size: 21px;
}


.contact-info-card span {
    color: #a07d7e;

    font-size: 10px;

    letter-spacing: 1.2px;

    font-weight: 700;
}


.contact-info-card h3 {
    margin:
        4px 0;

    color: #4b0002;

    font-size: 18px;
}


.contact-info-card p {
    margin: 0;

    color: #887c7d;

    font-size: 12px;
}


/* ==========================================
   LOCATION HEADING
========================================== */

.locations-heading {
    text-align: center;

    margin-bottom: 42px;
}


.locations-heading > span {
    color: #4b0002;

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 700;
}


.locations-heading h2 {
    margin:
        10px 0;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(35px, 5vw, 50px);

    font-weight: 500;
}


.locations-heading h2 em {
    color: #4b0002;
}


.locations-heading p {
    color: #887c7d;

    font-size: 14px;
}


/* ==========================================
   LOCATIONS
========================================== */

.locations-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

    margin-bottom: 110px;
}


.location-card {
    padding: 30px;

    background: #ffffff;

    border:
        1px solid rgba(75,0,2,.11);

    border-radius: 24px;

    box-shadow:
        0 15px 45px rgba(75,0,2,.07);

    transition: .4s;
}


.location-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 25px 55px rgba(75,0,2,.13);
}


/* top */

.location-top {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}


.location-number {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #4b0002;

    color: #ffffff;

    font-family: Georgia, serif;

    font-size: 14px;
}


.location-name {
    flex: 1;
}


.location-name span {
    display: block;

    color: #a28384;

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}


.location-name h3 {
    margin:
        4px 0 0;

    color: #4b0002;

    font-family:
        Georgia,
        serif;

    font-size: 27px;
}


.location-pin {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fbf2f2;

    font-size: 17px;
}


/* Address */

.location-address {
    padding: 22px;

    background: #fbf7f7;

    border-radius: 15px;

    margin-bottom: 17px;
}


.address-label {
    display: block;

    color: #4b0002;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.location-address p {
    margin: 0;

    color: #584d4e;

    font-size: 14px;

    line-height: 1.8;
}


/* Phone */

.location-contact {
    display: flex;

    align-items: center;

    gap: 12px;

    margin:
        20px 0;
}


.location-contact > span {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #4b0002;

    color: #ffffff;
}


.location-contact small {
    display: block;

    color: #a28788;

    font-size: 8px;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}


.location-contact a {
    color: #4b0002;

    text-decoration: none;

    font-weight: 700;

    font-size: 14px;
}


/* ==========================================
   MAP
========================================== */

.contact-map {
    width: 100%;

    height: 270px;

    overflow: hidden;

    border-radius: 17px;

    margin-bottom: 18px;
}


.contact-map iframe {
    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* Direction button */

.direction-btn {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding:
        14px 18px;

    border-radius: 50px;

    background: #4b0002;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;
}


.direction-btn span {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.12);

    transition: .3s;
}


.direction-btn:hover {
    background: #690005;

    transform:
        translateY(-2px);
}


.direction-btn:hover span {
    transform:
        rotate(45deg);
}


/* ==========================================
   CONTACT BOTTOM
========================================== */

.contact-bottom {
    padding: 60px;

    border-radius: 30px;

    background: #4b0002;

    color: #ffffff;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 65px;

    position: relative;

    overflow: hidden;
}


.contact-bottom::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    left: -160px;
    bottom: -190px;
}


.contact-bottom-content {
    position: relative;
    z-index: 2;
}


.contact-bottom-content .contact-label {
    color:
        rgba(255,255,255,.7);
}


.contact-bottom-content h2 {
    margin:
        5px 0 20px;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(34px,4vw,48px);

    line-height: 1.12;

    font-weight: 500;
}


.contact-bottom-content h2 em {
    display: block;

    font-weight: 500;
}


.contact-bottom-content > p {
    color:
        rgba(255,255,255,.67);

    line-height: 1.8;

    font-size: 14px;
}


/* points */

.booking-points {
    display: grid;

    gap: 17px;

    margin-top: 30px;
}


.booking-point {
    display: flex;

    align-items: center;

    gap: 13px;
}


.booking-point > span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.12);
}


.booking-point strong {
    display: block;

    font-size: 13px;
}


.booking-point small {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;
}


/* ==========================================
   FORM
========================================== */

.contact-form-box {
    position: relative;

    z-index: 3;

    background: #ffffff;

    color: #312526;

    padding: 35px;

    border-radius: 22px;
}


.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.form-group {
    margin-bottom: 17px;
}


.form-group label {
    display: block;

    color: #4b0002;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 8px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding:
        14px 15px;

    border:
        1px solid #eadede;

    outline: none;

    border-radius: 10px;

    background: #fdfafa;

    color: #372b2c;

    font-family: inherit;

    font-size: 12px;

    transition: .3s;

    box-sizing: border-box;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4b0002;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(75,0,2,.06);
}


.contact-submit {
    width: 100%;

    padding:
        14px 16px;

    border: none;

    border-radius: 50px;

    background: #4b0002;

    color: #ffffff;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: space-between;

    font-weight: 700;

    font-size: 12px;
}


.contact-submit span {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.12);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .contact-page {
        padding:
            80px 18px;
    }


    .contact-info-grid {
        grid-template-columns:
            1fr;
    }


    .locations-grid {
        grid-template-columns:
            1fr;
    }


    .contact-bottom {
        grid-template-columns:
            1fr;

        padding: 45px 35px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .contact-page {
        padding:
            65px 14px;
    }


    .contact-heading {
        margin-bottom: 38px;
    }


    .contact-heading h1 {
        font-size: 38px;
    }


    .contact-heading p {
        font-size: 13px;
    }


    .contact-info-grid {
        gap: 13px;

        margin-bottom: 70px;
    }


    .contact-info-card {
        min-height: auto;

        padding: 17px;
    }


    .contact-info-icon {
        width: 47px;
        height: 47px;
    }


    .locations-grid {
        gap: 22px;

        margin-bottom: 70px;
    }


    .location-card {
        padding: 19px;

        border-radius: 19px;
    }


    .location-name h3 {
        font-size: 23px;
    }


    .location-address {
        padding: 17px;
    }


    .location-address p {
        font-size: 12.5px;
    }


    .contact-map {
        height: 230px;
    }


    .contact-bottom {
        padding:
            38px 18px;

        border-radius: 22px;

        gap: 40px;
    }


    .contact-bottom-content h2 {
        font-size: 34px;
    }


    .contact-form-box {
        padding:
            24px 17px;
    }


    .form-row {
        grid-template-columns:
            1fr;
    }

}

/* spiner */
/* ================================
   WEBSITE PRELOADER
================================ */

.page-loader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    z-index: 999999;

    transition:
        opacity .6s ease,
        visibility .6s ease;
}


/* Loader remove animation */

.page-loader.loader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* CENTER CONTENT */

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* ================================
   SPINNER
================================ */

.logo-spinner {
    position: relative;

    width: 180px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Rotating ring */

.spinner-ring {
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    border: 3px solid rgba(75, 0, 2, 0.12);

    border-top-color: #4b0002;
    border-right-color: #4b0002;

    animation: amitSpinner 1.2s linear infinite;
}


/* Second decorative ring */

.spinner-ring::before {
    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 50%;

    border:
        1px dashed rgba(75, 0, 2, .25);

    animation:
        amitSpinnerReverse 3s linear infinite;
}


/* ================================
   CENTER LOGO
================================ */

.loader-logo {
    position: relative;

    width: 135px;
    height: 135px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 8px 30px rgba(75, 0, 2, .12);

    z-index: 2;

    animation:
        logoPulse 1.8s ease-in-out infinite;
}


.loader-logo img {
    width: 115px;
    max-height: 95px;

    display: block;

    object-fit: contain;
}


/* ================================
   TEXT
================================ */

.loader-content p {
    margin-top: 25px;

    color: #4b0002;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    letter-spacing: 1.5px;

    animation:
        textFade 1.5s ease-in-out infinite;
}


/* ================================
   ANIMATIONS
================================ */

@keyframes amitSpinner {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes amitSpinnerReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

}


@keyframes textFade {

    0%,
    100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }

}


/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .logo-spinner {
        width: 155px;
        height: 155px;
    }


    .loader-logo {
        width: 115px;
        height: 115px;
    }


    .loader-logo img {
        width: 100px;
        max-height: 80px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 480px) {

    .logo-spinner {
        width: 135px;
        height: 135px;
    }


    .loader-logo {
        width: 100px;
        height: 100px;
    }


    .loader-logo img {
        width: 88px;
        max-height: 70px;
    }


    .loader-content p {
        margin-top: 20px;

        font-size: 12px;

        letter-spacing: 1px;
    }

}