:root {
    --gold: #FFD700;
    --gold-dark: #C9A800;
    --green: #00C851;

    --dark: #0A0A0A;
    --dark2: #111111;
    --dark3: #1A1A1A;
    --dark4: #222222;

    --text: #F0EDE6;
    --muted: #999;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
}

ul {
    list-style: none;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: #fff;
}

h1 {
    font-family: var(--font-display);
}

/* ---------------------------button------------ */
/* ================================
   FLOATING BUTTONS SECTION
================================ */
.floating-buttons-section {
    position: relative;
    z-index: 999;
}

/* Container */
.floating-buttons {
    position: fixed;
    right: 1.5rem;
    bottom: 1.2rem;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* 🔥 right align */
    gap: 12px;
}

/* WhatsApp Box */
.wa-box {
    display: flex;
    flex-direction: column;
    /* 🔥 message top */
    align-items: flex-end;
    gap: 6px;
}

/* ================================
   TOOLTIP MESSAGE
================================ */
.wa-msg {
    background: #0f0f0f;
    border: 1px solid #25D366;
    color: #25D366;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    margin-bottom: 6px;
    /* Smooth entry animation */
    animation: fadeSlideUp 0.6s ease;
}

/* ================================
   COMMON BUTTON STYLE
================================ */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 26px;
    color: #fff;
    text-decoration: none;

    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Hover effect */
.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
}

/* ================================
   WHATSAPP BUTTON
================================ */
.whatsapp {
    background: #25D366;
    font-size: 28px;

    animation: floatUp 3s ease-in-out infinite;
}

/* ================================
   CALL BUTTON
================================ */
.call {
    background: #0078ff;

    animation: floatDown 3s ease-in-out infinite;
}

/* ================================
   FLOAT ANIMATIONS
================================ */
@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* ================================
   TOOLTIP ANIMATION
================================ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 530px) {
    .floating-buttons {
        right: 0.8rem;
        bottom: 1rem;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .wa-msg {
        font-size: 12px;
        padding: 6px 10px;
    }
}
/* ---------header--------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    z-index: 100;
}

nav {
    /* max-width: 1200px; */
    margin: 0vw 3vw;

}

.top {
    margin-top: 5.5rem;
}

.nav-left {
    max-width: 27rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
}

.logo {
    width: 4.3rem;
    height: 3.5rem;
}

.logo-text {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.name {
    font-family: 'Fredoka', sans-serif;
    text-align: start;
    padding-top: 5px;
    font-weight: 600;
    font-size: 1.4rem;
    color: white;
    text-shadow: 1px 1px 1px #ffee04;
}

.nav-data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    position: relative;
    width: 40px;
    height: 40px;
}

.bar,
.close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 4rem;
    cursor: pointer;
    transition: opacity .1s, transform .2s;
}

.nav-toggle i {
    font-size: 1.6rem;
    color: white;
}

.close {
    opacity: 0;
}

@media screen and (max-width:769px) {
    .nav-left {
        max-width: 30rem;
    }

    .logo {
        width: 4.8rem;
        height: 3.8rem;

    }

    .logo-text {
        align-items: start;
    }

    .name {
        padding-top: 5px;
        font-weight: 700;
        font-size: 1.3rem;
        text-shadow: 1px 0.5px 1px #ff0404;
    }

    .top {
        margin-top: 4.5rem;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 4.6rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        pointer-events: none;
        transition: left 0.2s, opacity 0.1s;
        z-index: 100;
        background-color: var(--dark);
    }

    .nav-link {
        color: var(--muted) !important;
        font-size: 1.1rem !important;
        padding: 0.9rem 1rem;
        text-align: center;
    }

    a.nav-link.login-btn {
        background-color: var(--gold) !important;
        color: #000 !important;
        border-radius: 10px;
        width: 70%;
    }

    .nav-menu::-webkit-scrollbar {
        width: 0;
    }

    .nav {
        padding: 0.4rem 0.5rem;
    }

    .nav-link {
        font-weight: 400;
    }

    .login-btn {
        padding: 1rem 16px !important;
        margin-right: 0.5rem;
        margin-top: 1rem;
        font-size: 1.1rem !important;
        border-radius: 30px;
        justify-content: center !important;
    }
}

.nav-link {
    color: var(--muted) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}


.nav-link i {
    font-size: 12px;
}

.show-menu {
    left: 0;
    opacity: 1;
    pointer-events: initial;
}

.show-icon .bar {
    opacity: 0;
    transform: rotate(90deg);
}


.show-icon .close {
    opacity: 1;
    transform: rotate(90deg);
}

.plus {
    margin-left: auto;
}

@media screen and (min-width: 769px) {
    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-list {
        height: 100%;
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;

    }

    .nav-link {
        height: 100%;
        /* padding: 0.3rem 0.7rem; */
        justify-content: initial;
        column-gap: .5rem;
        font-size: 1rem;

    }

    .nav-link:hover {
        color: var(--gold) !important;
    }

}


.login-btn {
    background-color: var(--gold) !important;
    color: #000 !important;
    padding: 10px 16px !important;
    margin-left: 0.5rem;
    font-size: 1rem !important;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.login-btn:hover {
    background-color: var(--gold-dark) !important;
    color: #000 !important;
    border-radius: 3px !important;
}

/* ================================
   YELLOW TOP BAR
================================ */
.top-bar {
    width: 100%;
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 6px 10px 9px;
    font-size: 14px;
    font-weight: 500;
}

/* ================================
   HEADER HEIGHT FIX
================================ */
.header {
    display: flex;
    flex-direction: column;
}

/* SPACE FIX (IMPORTANT) */
.top {
    margin-top: 110px;
    /* adjust based on header height */
}

/* ================================
   RESPONSIVE FIX
================================ */
@media (max-width: 768px) {

    .top-bar {
        font-size: 12px;
        padding: 5px;
    }

    .top-bar span {
        display: block;
        margin-top: 4px;
    }

    .top {
        margin-top: 95px;
    }

    .nav-menu {
        top: 5rem;
        /* 🔥 adjust for yellow bar */
    }
    .nav-list li{
        text-align: center;
    }
}
@media (max-width: 768px) {

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;   /* 🔥 center horizontally */
        justify-content: center;
        gap: 12px;
        padding: 20px 0;
    }

    .nav-list li {
        width: 100%;
        display: flex;
        justify-content: center; /* 🔥 li bhi center */
    }

    .nav-link {
        justify-content: center !important; /* 🔥 FIX MAIN ISSUE */
        text-align: center;
        width: auto;
    }

    /* BOOK NOW BUTTON CENTER */
    .login {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .login-btn {
        width: 70%;
        text-align: center;
    }
}


/* Hero Section=---------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

/* Gradient Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right,
            rgba(0, 0, 0),
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.72));
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 1rem;
    max-width: 1200px;
    margin: -4rem auto 0;
}

/* Tagline */
.tagline {
    border: 1px solid #FFD700;
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    /* Dono line ke bich fixed gap / height */
    min-height: 1.8em;
    display: block;
}

/* Text ke line ke liye wrapper */
.changing-line-wrap {
    display: block;
    margin-top: 6px;
    /* upar se thoda gap */
    height: 5.1rem;
    line-height: 1.1;
    overflow: hidden;
    /* jitter text motion se jump na ho */
}

/* Changing text span with cursor */
.changing-text {
    color: #FFD700;
    font-size: inherit;
    font-style: var(--font-display);
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
    position: relative;
}

/* Optional: cursor blink effect (| jhatka jhatka ho) */
.changing-text::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #FFD700;
    animation: blinkCursor 1s step-start infinite;
}

@keyframes blinkCursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Remove text height fix ke liye container */
.hero-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);

    /* Height fixed rakho, text change se page jump na ho */
    min-height: 1.2em;
}

/* Subtext */
.sub-text {
    margin: 16px 0 24px;
    font-size: 18px;
    color: #ddd;
}

/* Buttons */
.buttons {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary {
    background: #00c853;
    color: #fff;
}

.primary:hover {
    background: #00a143;
    transform: scale(1.05);
}

.secondary {
    border: 1px solid #FFD700;
    color: #FFD700;
    background: transparent;
}

.secondary:hover {
    background: #FFD700;
    color: #000;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.scroll-down span {
    display: block;
    width: 2px;
    height: 30px;
    background: #FFD700;
    margin: 0 auto 8px;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.scroll-down p {
    font-size: 12px;
    letter-spacing: 2px;
    color: #ddd;
    margin: 0;
}


/* Mobile Responsive */
@media (max-width: 768px) {


    /* Hero Section=---------------------------------------- */
    .hero {
        height:46rem;
    }
    .hero-video {
        width: 100%;
        height: 46rem;
        object-fit:fill;
    }

    /* Gradient Overlay */
    .overlay {

        width: 100%;
        height: 47rem;
        background: linear-gradient(to right,
                rgba(0, 0, 0, 0.765),
                rgba(0, 0, 0, 0.7),
                rgba(0, 0, 0, 0.7));
    }
    /* Hero Content */
    .hero-content {
        margin: -8rem auto 0;
    }

    .hero-heading,
    .changing-text {
        font-size: 28px;
        line-height: 1.2;
    }


    .tagline {
        font-size: 12px;
        letter-spacing: 1.5px;
        padding: 4px 12px;
    }
    .sub-text {
        font-size: 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .scroll-down {
        bottom: 20px;
    }

}
/* Default (Desktop) */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

/* Mobile */
@media (max-width: 560px) {

    .desktop-video {
        display: none; /* ❌ laptop video hide */
    }

    .mobile-video {
        display: block; /* ✅ mobile video show */
    }

}

.hero-scroll {
    display: flex;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(6px)
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    display: inline-block
}
/* STATS SECTION */
.stats {
    padding-block: 6rem;
    background: var(--dark2);
    border-top: 1px solid rgba(255, 215, 0, .1);
    border-bottom: 1px solid rgba(255, 215, 0, .1)
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0
}

.stat-item {
    text-align: center;
    padding: 50px 30px;
    border-right: 1px solid rgba(255, 215, 0, .1);
    position: relative
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    display: block;
    font-weight: 500
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block
}

/* .services-header{
    padding:20px 5%;   

} */
.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px
}
.section-sub {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 580px
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0
}

@media(max-width:768px){
    
/* STATS SECTION */
.stats {
    padding-block: 2rem;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0
}
.stat-item {
    padding: 30px 30px;
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-size: clamp(35px, 5vw, 60px);
    font-weight: 900;
}

.stat-label {
    font-size: 12px;
   letter-spacing: 1.6px;
    margin-top: 14px;
    font-weight: 400
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 18px;
}

}

/* SERVICES */
.services {
    background: var(--dark);
    padding:20px 5%;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 24px;
    flex-wrap: wrap
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px
}

.service-card {
    background: var(--dark3);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    cursor: pointer;
    border: 1px solid transparent
}

.service-card:hover {
    border-color: rgba(255, 215, 0, .3);
    background: var(--dark4)
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: .4s;
    transform-origin: left
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-num {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 215, 0, .06);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1
}

.service-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 215, 0, .3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 22px
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 14px;
    color: #fff
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px
}

.service-price {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px
}

.service-price::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    display: inline-block
}

.service-tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 12px;
    background: rgba(255, 215, 0, .08);
    border: 1px solid rgba(255, 215, 0, .2);
    color: var(--gold);
    border-radius: 2px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase
}



/* SERVICES */
.services {
    background: var(--dark)
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 24px;
    flex-wrap: wrap
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px
}

.service-card {
    background: var(--dark3);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    cursor: pointer;
    border: 1px solid transparent
}

.service-card:hover {
    border-color: rgba(255, 215, 0, .3);
    background: var(--dark4)
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: .4s;
    transform-origin: left
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-num {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 215, 0, .06);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1
}

.service-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 215, 0, .3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 22px
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 14px;
    color: #fff
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px
}

.service-price {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px
}

.service-price::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    display: inline-block
}

.service-tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 12px;
    background: rgba(255, 215, 0, .08);
    border: 1px solid rgba(255, 215, 0, .2);
    color: var(--gold);
    border-radius: 2px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase
}
@media (max-width: 992px) {

    .services {
        padding: 60px 5%;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .services-grid {
        gap: 12px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-num {
        font-size: 60px;
        top: 10px;
        right: 16px;
    }

    .service-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 13px;
    }
}
@media (max-width: 600px) {

    .services {
        padding: 50px 4%;
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* 🔥 single column */
        gap: 16px;
    }

    .service-card {
        padding: 26px 20px;
    }

    .service-num {
        font-size: 42px;
        opacity: 0.05;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-price {
        font-size: 12px;
    }

    .service-tag {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* PORTFOLIO */
.portfolio {
    background: var(--dark2);
     padding:20px 5%;   
}

.portfolio-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, .15);
    flex-wrap: wrap
}

.ptab {
    padding: 14px 28px;
    background: none;
    border: none;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
    border-bottom: 2px solid transparent;
    font-weight: 500
}

.ptab.active,
.ptab:hover {
    color: var(--gold);
    border-bottom-color: var(--gold)
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 3px
}

.port-item {
    position: relative;
    overflow: hidden;
    background: var(--dark3);
    cursor: pointer
}

.port-item.tall {
    grid-row: span 2
}

.port-item.wide {
    grid-column: span 2
}

.port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.port-item:hover img {
    transform: scale(1.05)
}

.port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 60%);
    opacity: 0;
    transition: .4s;
    display: flex;
    align-items: flex-end;
    padding: 20px
}

.port-item:hover .port-overlay {
    opacity: 1
}

.port-info h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 16px
}

.port-info span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase
}

.port-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark3), var(--dark4));
    flex-direction: column;
    gap: 12px;
    font-size: 32px
}

.port-placeholder p {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase
}
.port-item {
    cursor: pointer;
}
.port-item:active {
    transform: scale(0.98);
}
@media (max-width: 992px) {

    .portfolio {
        padding: 60px 5%;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); /* 🔥 2 column */
        grid-auto-rows: 200px;
        gap: 6px;
    }

    /* disable complex layout */
    .port-item.tall,
    .port-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .ptab {
        padding: 12px 18px;
        font-size: 12px;
    }
}
/* MOBILE VIEW */
@media (max-width: 600px) {

    .portfolio {
        padding: 50px 4%;
    }

    .portfolio-tabs {
        justify-content: center;
        gap: 8px;
    }

    .ptab {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); /* 🔥 2 column */
        grid-auto-rows: 180px;
        gap: 8px;
    }

    /* IMPORTANT: span remove */
    .port-item.tall,
    .port-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .port-overlay {
        padding: 12px;
    }

    .port-info h4 {
        font-size: 13px;
        margin: 0.5rem 0 0;
    }

    .port-info span {
        font-size: 10px;
    }
}

/* -----staff-section---- */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.section-sub {
    max-width: 340px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
}
/* SECTION */
.staff-section {
    padding: 60px 5%;
    background: var(--dark);
}

/* SLIDER */
.team-slider {
    overflow: hidden;
    position: relative;
}
/* TRACK GAP REDUCE */
.team-track {
    display: flex;
    gap: 14px; /* 🔥 pehle 20px tha */
    width: max-content;
    animation: scrollTeam 20s linear infinite;
}

/* CARD */
.staff-card {
    min-width: 200px;
    padding: 18px;
    background: var(--dark3);
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
}

/* IMAGE BIGGER */
.staff-img {
    width: 100px;  /* 🔥 bigger */
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid var(--gold); /* 🔥 premium border */
}

/* NAME GOLD */
.staff-card h1 {
    font-size: 16px;
    color: var(--gold); /* 🔥 gold text */
    font-weight: 600;
    margin-bottom: 4px;
}

/* ROLE */
.staff-card p {
    font-size: 12px;
    color: var(--muted);
}   
/* ANIMATION */
@keyframes scrollTeam {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* TABLET */
/* TABLET */
@media (max-width: 992px) {

    .team-track {
        gap: 12px;
    }

    .staff-card {
        min-width: 180px;
    }

    .staff-img {
        width: 85px;
        height: 85px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .team-track {
        gap: 10px;
    }

    .staff-card {
        min-width: 150px;
        padding: 14px;
    }

    .staff-img {
        width: 70px;
        height: 70px;
    }

    .staff-card h1 {
        font-size: 14px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .staff-section {
        padding: 40px 4%;
    }

    .staff-card {
        min-width: 150px;
        padding: 14px;
    }

    .staff-img {
        width: 60px;
        height: 60px;
    }

    .staff-card h1 {
        font-size: 14px;
    }

    .staff-card p {
        font-size: 12px;
    }

    .section-sub {
        text-align: center;
        max-width: 100%;
    }

    .services-header {
        align-items: center;
        text-align: center;
    }
}
/* SECTION */
/* ================================
   CLIENT SECTION
================================ */
.client-section {
    padding: 60px 5%;
    background: var(--dark2);
    position: relative;
}

/* ================================
   HEADER
================================ */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.section-sub {
    max-width: 470px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
}

/* ================================
   SLIDER CONTAINER
================================ */
.client-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    position: relative;

    /* smooth scroll feel */
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.client-slider::-webkit-scrollbar {
    display: none;
}

/* ================================
   TRACK
================================ */
.client-track {
    display: flex;
    gap: 18px;
    width: max-content;
    align-items: center;
}

/* ================================
   CARD
================================ */
.client-card {
    min-width: 180px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

/* ================================
   IMAGE (CIRCLE BIG)
================================ */
.client-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
}

/* ================================
   NAME
================================ */
.client-card h1 {
    font-size: 14px;
    color: var(--gold);
    margin-top: 10px;
    letter-spacing: 1px;
}

.team-slider {
    cursor: grab;
}
.team-slider:active {
    cursor: grabbing;
}
.team-slider {
    overflow-x: auto;      /* add karo */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}
.team-slider::-webkit-scrollbar {
    display: none;         /* scrollbar hide */
}
.team-slider:active {
    cursor: grabbing;
}

/* ================================
   TABLET
================================ */
@media (max-width: 992px) {

    .client-track {
        gap: 14px;
    }

    .client-card {
        min-width: 150px;
    }

    .client-img {
        width: 90px;
        height: 90px;
    }

    .section-sub {
        text-align: left;
    }
}

/* ================================
   MOBILE
================================ */
/* ================================
   MOBILE
================================ */
@media (max-width: 600px) {

    .client-section {
        padding: 40px 4%;
    }

    .services-header {
        align-items: center;
        text-align: center;
    }
    .section-sub {
        text-align: center;
        max-width: 100%;
        font-size: 12px;
        line-height: 1.5;
        overflow-wrap: break-word; /* ✅ long words break karega */
        word-break: break-word;    /* ✅ browser compatibility ke liye */
        hyphens: auto;             /* ✅ hyphen add karega break pe (optional) */
    }

    .client-track {
        gap: 10px;
    }

    .client-card {
        min-width: 130px;
    }

    .client-img {
        width: 70px;
        height: 70px;
    }

    .client-card h1 {
        font-size: 12px;
                overflow-wrap: break-word; /* ✅ long words break karega */
        word-break: break-word;    /* ✅ browser compatibility ke liye */
    }
    
}
@media (max-width: 600px) {
    .client-card {
        min-width: 120px;      /* ✅ pehle 130px tha, kam kiya */
        max-width: 150px;      /* ✅ card width limit */
        width: 90px;
    }

    .client-card h1 {
        font-size: 11px;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        width: 100%;          /* ✅ card ke andar rahe */
    }
}
/* RESULTS */
.results {
    background: var(--dark);
    padding:20px 5%;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px
}

.result-card {
    background: var(--dark3);
    padding: 40px;
    border-left: 3px solid var(--gold);
    position: relative
}

.result-before-after {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px
}

.result-val {
    text-align: center
}

.result-val .big {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700
}

.result-val span {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px
}

.result-arrow {
    color: var(--gold);
    font-size: 28px
}

.result-badge {
    display: inline-block;
    background: rgba(0, 200, 81, .1);
    border: 1px solid rgba(0, 200, 81, .3);
    color: var(--green);
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: .5px
}

.result-client {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 10px
}

.result-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    text-align: center
}

.metric-box {
    padding: 32px 20px;
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .12)
}

.metric-box .num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold)
}

.metric-box p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    letter-spacing: .5px
}
.insta-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold);
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.insta-link:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 992px) {

    .results {
        padding: 60px 5%;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr); /* 🔥 2 column */
        gap: 20px;
    }

    .result-card {
        padding: 30px;
    }

    .result-before-after {
        gap: 16px;
    }

    .result-val .big {
        font-size: 30px;
    }

    .result-client {
        font-size: 18px;
    }

    /* metrics */
    .metrics-row {
        grid-template-columns: repeat(2, 1fr); /* 🔥 2 column */
        gap: 20px;
    }

    .metric-box {
        padding: 26px 16px;
    }

    .metric-box .num {
        font-size: 36px;
    }
}
@media (max-width: 600px) {

    .results {
        padding: 50px 4%;
    }

    .results-grid {
        grid-template-columns: 1fr; /* 🔥 single column */
        gap: 16px;
    }

    .result-card {
        padding: 24px;
    }

    .result-before-after {
        flex-direction: column; /* 🔥 vertical layout */
        gap: 12px;
    }

    .result-arrow {
        transform: rotate(90deg); /* arrow down */
    }

    .result-val .big {
        font-size: 26px;
    }

    .result-client {
        font-size: 16px;
    }

    .result-desc {
        font-size: 12px;
    }

    /* metrics */
    .metrics-row {
        grid-template-columns: 1fr; /* 🔥 single column */
        gap: 16px;
    }

    .metric-box {
        padding: 22px 14px;
    }

    .metric-box .num {
        font-size: 30px;
    }

    .metric-box p {
        font-size: 12px;
    }
    
}
@media (max-width: 600px) {
    .result-card:active {
        border-left-color: var(--gold);
        background: var(--dark4);
    }
}



/* TESTIMONIALS */
.trust {
    background: var(--dark2);
    padding:60px 5% 20px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px
}

.testi-card {
    background: var(--dark);
    padding: 36px;
    border: 1px solid rgba(255, 215, 0, .1);
    position: relative
}

.testi-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold);
    opacity: .2;
    position: absolute;
    top: -8px;
    left: 24px;
    line-height: 1
}

.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px
}

.testi-text {
    color: rgba(240, 237, 230, .8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    font-family: var(--font-display);
    flex-shrink: 0
}

.testi-name {
    font-weight: 600;
    font-size: 14px;
margin-bottom: 0.5rem   ;
}

.testi-event {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .5px
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 60px;
    justify-content: center
}

.badge {
    padding: 14px 28px;
    border: 1px solid rgba(255, 215, 0, .2);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500
}






.btn-primary {
    background: var(--green);
    color: #fff;
    padding: 16px 36px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .5px;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer
}

.btn-primary:hover {
    background: #00a844;
    transform: translateY(-2px)
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 16px 36px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--gold);
    letter-spacing: .5px;
    transition: all .3s;
    cursor: pointer
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, .1)
}
/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, #1a1200, #0d0d0d, #1a1200);
    border-top: 1px solid rgba(255, 215, 0, .2);
    border-bottom: 1px solid rgba(255, 215, 0, .2);
    text-align: center;
    padding: 90px 5%
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    margin-bottom: 20px
}
.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 60px;
    justify-content: center;
}

.badge {
    padding: 14px 28px;
    border: 1px solid rgba(255, 215, 0, .2);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* Wrapper for centering button */
.review-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Gold Button Style */
.add-review-button {
    background: linear-gradient(135deg, #FFD700, #C9A227);
    color: #000;
    padding: 12px 25px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 10px rgba(255, 215, 0, 0.3);
}

/* Hover effect */
.add-review-button:hover {
    transform: translateY(-3px);
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {
    .badge {
        font-size: 10px;
        padding: 10px 16px;
        letter-spacing: 1px;
    }

    .add-review-button {
        width: 80%;
        text-align: center;
        padding: 12px;
        font-size: 13px;
    }
}

.cta-banner p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 40px
}

.scarcity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 60, 60, .1);
    border: 1px solid rgba(255, 60, 60, .3);
    color: #ff6b6b;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px
}

.scarcity::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 1s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.testi-readmore {
    text-align: center;
    margin-top: 40px;
}

.readmore-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover */
.readmore-btn:hover {
    background: var(--gold);
    color: #000;
}
/* TESTIMONIAL DATE */
.testi-date {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 500;
}
/* AVATAR IMAGE SUPPORT */
.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   TABLET
================================ */
@media (max-width: 992px) {

    .trust {
        padding: 50px 5% 20px;
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testi-card {
        padding: 28px;
    }

    .testi-text {
        font-size: 14px;
    }
}

/* ================================
   MOBILE
================================ */
@media (max-width: 600px) {

    .trust {
        padding: 40px 4% 20px;
    }

    .testimonials {
        grid-template-columns: 1fr; /* 🔥 single column */
        gap: 16px;
        margin-top: 40px;
    }

    .testi-card {
        padding: 22px;
    }

    .testi-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .testi-name {
        font-size: 13px;
    }

    .testi-event {
        font-size: 11px;
    }

    .badges-row {
        gap: 10px;
        margin-top: 40px;
    }

    .badge {
        padding: 10px 16px;
        font-size: 10px;
    }
}
/* Avatar container */
.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFD700, #C9A227);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Image */
.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder (RW style) */
.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}
/* Avatar */
.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFD700, #C9A227);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image */
.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Initials */
.avatar-placeholder {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

/* Stars */
.stars {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 3px;
}

/* Hover effect (premium feel) */
.testi-avatar:hover {
    transform: scale(1.1);
    transition: 0.3s;
}
.right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    margin-top: 1rem;
}

.right .a-review {
    background: linear-gradient(135deg, #FFD700, #C9A227);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.right .a-review:hover {
    transform: translateY(-1px);
}

.right .a-review:active {
    transform: scale(0.98);
}

.right .a-review i {
    color: #000;
    font-size: 1.1rem;
}

.right .a-review p {
    color: #000;
    font-size: 14px;
    margin: 0;
}












.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 11;

}

.popup .popup_item {
    display: none;
    z-index: 999;
    top: 3rem;
    margin-inline: 0.8rem;
    text-align: start;
    background-color: #dbf9f9;
    border: var(--container-border);
    border-radius: var(--botton-border-radius);
    position: relative;
    /* margin: 1rem; */
    padding-bottom: 1rem;
    width: 40rem;
    height: 30rem;
    overflow: auto;

}

.popup .popup_item::-webkit-scrollbar {
    width: 5px;
}

.popup .popup_item::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px grey;
    border-radius: 10px;
}

.popup .popup_item::-webkit-scrollbar-thumb {
    background: #b0b0b0;
    border-radius: 10px;
}

.popup .popup_item::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

.popup .popup_item.active {
    display: initial;
}

.popup .popup_item i {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
    color:black;
    font-size: 1.5rem;
}

/* --------------field ---------- */
.r-heading {
    background-color: #ff9933;
    width: 100%;
}

.input-name span {
    color: red;
}

.r-heading h1 {
    font-size: 1.3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    text-align: center;
    padding-block: 0.5rem;
    color: var(--text-color);
}

.review-box {
    padding: 1rem;
}

 .review-box .input-name {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
}

 .review-box .input-name label {
    min-width: 10rem;
    text-transform: capitalize;
    color: var(--text-color);
    font-size: 1.1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

 .review-box .input-name input {
    width: 100%;
    outline: none;
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    padding: 7px 10px;
    border-radius: 5px;
    transition: all 0.5s ease;
}

 .review-box .input-name .selectbox {
    width: 100%;
}

 .review-box .input-name .selectbox select {
    width: 100%;
    padding: 7px 10px;
    text-transform: capitalize;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-10px);
    outline: none;
    font-size: 1rem;
}

     .review-box.input-name textarea {
    width: 100%;
    outline: none;
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    padding: 7px 10px;
    border-radius: 5px;
    height: 4rem;
    transition: all 0.5s ease;
    resize: none;
}

 .review-box .input-name input:focus,
 .review-box .input-name textarea:focus {
    border: 1px solid var(--text-color);
}

.input-name select:focus {
    border: 1px solid var(--text-color);
}

.submit {
    text-align: center;
}

 .review-box .submit input {
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border: none;
    font-weight: 500;
    background-color: #ff6b10;
    color: white;
    display: inline-block;
    text-align: center;
    border-radius: var(--botton-border-radius);
    cursor: pointer;
    transition: transform 0.2s ease-in;
}

 .review-box .submit input:active {
    transform: scale(0.98);
}
@media screen and (max-width:768px) {
    .review-container {
        gap: 2rem;
        flex-direction: column-reverse;
    }

    .review-section {
        padding: 0;
    }

    .review-heading {
        font-size: 1.5rem;
    }

    .last {
        gap: 1.5rem;
    }

    .r-first p {
        font-size: 1.2rem;
    }

    .r-first .rate {
        font-size: 2rem;
    }

    .r-first i {
        font-size: 1.4rem;
    }

    .last {
        gap: 1rem;
    }

    .circle,
    .circle-2,
    .circle-3 {
        width: 4.5rem;
        height: 4.5rem;
    }

    .circle img {
        width: 2.5rem;
        height: 2rem;

    }

    .circle-2 img {
        width: 2.5rem;
        height: 2.5rem;
    }

    .f-d-heading h1 {
        font-size: 0, 9rem;
    }
 
}

@media screen and (max-width:530px) {
    .review-section {
        margin: 5.5rem 0.5rem 0.5rem;
        padding: 0rem;
    }

    .review-container {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .review-heading {
        font-size: 1.3rem;
    }

    .r-first {
        gap: 0rem;
        align-items: center;
    }

    .last {
        gap: 1rem;
        flex-direction: column;
    }

    .r-first p {
        font-size: 1.1rem;
    }

    .r-first .rate {
        font-size: 2.1rem;
    }

    .r-first i {
        color: #f0d000;
        font-size: 1.8rem;
    }

    .right {
        gap: 0.5rem;
        flex-direction: column;
    }

    .circle,
    .circle-2,
    .circle-3 {
        width: 6rem;
        height: 6rem;
    }

    .circle img {
        width: 3.5rem;
        height: 3rem;

    }

    .circle-2 img {
        width: 3.5rem;
        height: 3.5rem;

    }

    .circle-3 img {
        width: 100%;
        height: 100%;

    }

    .f-d-heading h1 {
        font-size: 1rem;
    }
    .popup .popup_item{
    height: 41rem;
    }


    /* --------------field ---------- */
    .r-heading {
        width: 100%;
    }

    .r-heading h1 {
        font-size: 1.2rem;
        padding-block: 1rem;
    }

    .review-box {
        padding: 1rem 0.5rem 0  ;
    }

    .input-name {
        margin-bottom: 1rem;
        display: flex;
        gap: 0.5rem;
        flex-direction: column;
    }

    .input-name label {
        width: 100%;
        font-size: 1rem;

    }

    .input-name input {
        width: 100%;
        font-size: 0.9rem;
    }

    .input-name .selectbox select {
        font-size: 1rem;
    }

    .input-name textarea {
        width: 100%;
        font-size: 1rem;
        height: 4rem;
    }

    .submit input {
        font-size: 1rem;
    }
}




/* FONT */
.popup {
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

/* BACKDROP */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* BOX */
.popup_item {
  width: 350px;
  max-width: 94%;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.9rem;
  transform: translateY(30px);
  opacity: 0;
  transition: 0.3s ease;
  position: relative;
}

.popup_item.active {
  transform: translateY(0);
  opacity: 1;
}

/* CLOSE */
.close-popup {
  position: absolute;
  top: 9px;
  right: 13px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #444;
}

/* HEADER */
.popup-header {
  text-align: center;
  margin-bottom: 0.6rem;
}

.popup-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.popup-header p {
  font-size: 0.78rem;
  color: #666;
}

/* INPUTS */
.input-name input,
.input-name textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 9px;
  font-size: 0.88rem;
  margin-bottom: 0.45rem; /* 👈 reduced gap */
}

/* CITY + STATE */
.input-row {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.input-row input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 9px;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .input-row {
    flex-direction: column;
  }
}

/* UPLOAD BUTTON */
.upload-box {
  text-align: center;
  margin: 0.4rem 0;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #1e88e5;
  color: #fff;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.upload-btn:hover {
  background: #1565c0;
}



















/* RATING */
.rating-wrapper {
  text-align: center;
  margin: 0.5rem 0;
}

.rating-label {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
  color: #333;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.rating-stars span {
  font-size: 1.6rem;
  cursor: pointer;
  filter: grayscale(1);
  transition: 0.2s ease;
}

.rating-stars span.active,
.rating-stars span:hover {
  filter: grayscale(0);
  transform: scale(1.15);
}

/* TEXTAREA */
textarea {
  resize: none;
  height: 58px;
}

/* SUBMIT */
.submit input {
  width: 100%;
  background:var(--gold);
  color: black  ;
  border: none;
  border-radius: 6px;
  padding: 0.55rem;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
}

.submit input:active {
  transform: scale(0.97);
}

.rating-stars span {
  font-size: 1.6rem;
  cursor: pointer;
  filter: grayscale(1);
  transition: 0.2s ease;
}

.rating-stars span.active {
  filter: grayscale(0);
  transform: scale(1.2);
}



/* TIMER */
.timer {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px
}

.timer-block {
    text-align: center;
    min-width: 64px;
    background: rgba(255, 215, 0, .07);
    padding: 12px 16px;
    border: 1px solid rgba(255, 215, 0, .2)
}

.timer-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1
}

.timer-label {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
    display: block
}
@media (max-width: 992px) {

    .timer {
        gap: 12px;
        margin-bottom: 24px;
    }

    .timer-block {
        min-width: 55px;
        padding: 10px 12px;
    }

    .timer-num {
        font-size: 28px;
    }

    .timer-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
}
@media (max-width: 600px) {

    .timer {
        gap: 8px;
        flex-wrap: wrap; /* 🔥 wrap if needed */
    }

    .timer-block {
        min-width: 48px;
        padding: 8px 10px;
    }

    .timer-num {
        font-size: 22px;
    }

    .timer-label {
        font-size: 8px;
        letter-spacing: 1px;
    }
}
/* =========================
   BOOKING SECTION
========================= */
.booking {
    background: #050505;
    padding: 90px 20px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}
 
#booking {
    scroll-margin-top: 80px;
}
 
/* =========================
   MAIN GRID
========================= */
.booking-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}
 
/* =========================
   LEFT SIDE CONTENT
========================= */
.booking-info h2 {
    font-size: clamp(26px, 3.5vw, 44px);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}
 
.booking-info p {
    color: #9c9c9c;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 15px;
}
 
/* =========================
   CONTACT BOX
========================= */
.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 14px 16px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}
 
.contact-detail:hover {
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
}
 
.contact-detail .icon {
    font-size: 20px;
    min-width: 36px;
    text-align: center;
    flex-shrink: 0;
}
 
.contact-detail .info small {
    display: block;
    color: #999;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
 
.contact-detail .info strong {
    color: #fff;
    font-size: 14px;
    word-break: break-all;
}
 
/* =========================
   FORM CARD
========================= */
.form-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 215, 0, 0.12);
    padding: 28px 24px 20px;
    box-sizing: border-box;
    width: 100%;
}
 
/* =========================
   FORM GRID
========================= */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
 
/* =========================
   FORM GROUP
========================= */
.form-group {
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
}
 
.form-group label {
    display: block;
    color: #c2c2c2;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}
 
/* =========================
   INPUTS
========================= */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: #111;
    border: 1px solid rgba(255, 215, 0, 0.18);
    color: #fff;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    display: block;
}
 
.form-group input {
    height: 46px;
}
 
.form-group textarea {
    height: 90px;
    resize: none;
    line-height: 1.5;
}
 
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.12);
}
 
/* =========================
   SELECT
========================= */
.form-group select {
    cursor: pointer;
    padding-right: 40px;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FFD700' stroke-width='1.8' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
 
.form-group select option {
    background: #111;
    color: #fff;
}
 
/* =========================
   BUTTONS
========================= */
.btn-submit,
.btn-whatsapp {
    width: 100%;
    height: 52px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.btn-submit {
    background: linear-gradient(135deg, #FFD700, #c9a800);
    color: #000;
    margin-top: 8px;
}
 
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}
 
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #0da34d);
    color: #fff;
    gap: 10px;
    text-decoration: none;
    margin-top: 12px;
}
 
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}
 
/* =========================
   NOTE
========================= */
.form-note {
    text-align: center;
    color: #777;
    margin-top: 16px;
    font-size: 12px;
}
 
/* =========================
   TABLET (768px - 1024px)
========================= */
@media (max-width: 1024px) {
    .booking {
        padding: 70px 24px;
    }
 
    .booking-inner {
        gap: 30px;
    }
}
 
/* =========================
   TABLET PORTRAIT (max 768px)
========================= */
@media (max-width: 768px) {
    .booking {
        padding: 60px 20px;
    }
 
    .booking-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 600px;
    }
 
    .form-card {
        padding: 24px 20px;
        width: 100%;
    }
 
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}
 
/* =========================
   MOBILE (max 480px)
========================= */
@media (max-width: 480px) {
    .booking {
        padding: 40px 16px;
    }
 
    .booking-inner {
        gap: 28px;
    }
 
    .form-card {
        padding: 18px 14px;
    }
 
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
 
    .booking-info h2 {
        font-size: 26px;
    }
 
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 11px 12px;
        height: 44px;
    }
 
    .form-group select {
        height: 44px;
    }
 
    .form-group textarea {
        height: 80px;
    }
 
    .btn-submit,
    .btn-whatsapp {
        height: 48px;
        font-size: 13px;
    }
 
    .contact-detail {
        padding: 12px 14px;
    }
 
    .contact-detail .info strong {
        font-size: 13px;
    }
} 

.success-msg {
  padding-block: 1rem;
  font-size: 1.15rem;
  color: #2a7a2a;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 12px 16px;
  border-radius: 6px;
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Error message style */
.error-msg {
  padding-block: 1rem;
  font-size: 1.15rem;
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  padding: 12px 16px;
  border-radius: 6px;
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* =========================
   BOOKING POPUP
========================= */
.booking-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.booking-overlay.active {
    display: flex;
}

.booking-popup {
    background: #0d0d0d;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 40px 32px 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    animation: popupIn 0.35s ease;
}

@keyframes popupIn {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: 1px solid rgba(255,215,0,0.25);
    color: #FFD700;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.popup-close:hover {
    background: rgba(255,215,0,0.1);
}

.popup-icon {
    font-size: 44px;
    margin-bottom: 14px;
}

.booking-popup h3 {
    color: #FFD700;
    font-size: 22px;
    margin: 0 0 24px;
    letter-spacing: 0.5px;
}

.popup-details {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.1);
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.popup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.popup-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popup-label {
    color: #888;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.popup-value {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

.popup-download-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #FFD700, #c9a800);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 15px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 14px;
}

.popup-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,215,0,0.25);
}

.popup-note {
    color: #666;
    font-size: 12px;
    margin: 0;
}

/* Mobile */
@media (max-width: 480px) {
    .booking-popup {
        padding: 32px 20px 24px;
    }

    .booking-popup h3 {
        font-size: 19px;
    }

    .popup-icon {
        font-size: 36px;
    }
}
/* -----------------------footer-section--------------- */
.footer {
    background: #000;
    color: var(--gold);
    padding: 3rem 2rem 1rem;
    font-family: var(--style);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-about .logo1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-about .logo1 img {
    width: 3.8rem;
    height: 3.3rem;
}

.logo1 h1 {
    font-size: 1.4rem;
    color: var(--gold);
    font-family: var(--style);
    font-weight: 500;
}

.footer-about .about-text {
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.45;
    font-family: var(--style);
}

.footer-links h3,
.footer-products h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}


.footer-links ul li,
.footer-products ul li {
    margin: 6px 0;
}

.footer-links a,
.footer-products a {
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--style);
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent);
}

.footer-contact .social-icons {
    display: flex;
    gap: 0.6rem;
}

.footer-contact p span {
    margin-left: 1rem;
}

.footer-contact .social-icons a {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s;
}

.footer-contact a {
    color: #fff;
    line-height: 0.5;
    font-size: 0.9rem;
    font-family: var(--style);
    display: block;
    margin-block: 0.8rem;
}

.footer-contact .social-icons i:hover {
    color: var(--accent);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 0.9rem;
    margin: 6px 0;
    color: #fff;
    line-height: 1.5;
    text-align: start;

}
#services {
  scroll-margin-top: 90px;
}

.footer-contact i {
    margin-right: 8px;
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom .policy-links {
    margin-bottom: 8px;
}

.footer-bottom .policy-links a {
    color: #aaa;
    margin: 0 10px;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-bottom .policy-links a:hover {
    color: var(--accent);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.footer-bottom a {
    color: #fbbf24;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 530px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }


    .footer-about .logo1 {
        gap: 0.5rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .footer-about .logo1 img {
        width: 4rem;
        height: 3.1rem;
    }

    .logo1 h1 {
        font-size: 1.18rem;
    }

    .footer-about .about-text {
        font-size: 0.8rem;
        line-height: 1.58;
    }

    .footer-contact p span {
        margin-left: 0rem;
    }


    .footer-links h3,
    .footer-products h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }


    .footer-links ul li,
    .footer-products ul li {
        margin: 6px 0;
        padding: 5px 0;
    }

    .footer-links a,
    .footer-products a {
        font-size: 0.9rem;
    }

    .footer-contact .social-icons {
        gap: 0.6rem;
        margin-bottom: 15px;
    }

    .footer-contact .social-icons a {
        font-size: 1.2rem;
    }

    .footer-contact a {
        font-size: 0.9rem;
        margin-block: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
        margin: 9px 0;
        line-height: 1.5;
        text-align: center;

    }

    .footer-contact i {
        margin-right: 8px;
    }

    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .footer-bottom .policy-links {
        margin-bottom: 8px;
    }

    .footer-bottom .policy-links a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .footer-bottom span {
        font-weight: 500;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact .social-icons {
        justify-content: center;
    }
}



/* ── POPUP BOX — Mobile Fix ── */
.popup_item {
    width: 92%;           /* screen ka 92% le — koi bhi device ho */
    max-width: 400px;     /* desktop pe limit */
    min-width: 0;         /* overflow band */
    box-sizing: border-box;
    padding: 1rem;
}

/* ── INPUTS full width fix ── */
.input-name,
.review-box .input-name {
    display: block;       /* flex hata — block karo */
    margin-bottom: 0.6rem;
    width: 100%;
    box-sizing: border-box;
}

.input-name input,
.input-name textarea,
.review-box .input-name input,
.review-box .input-name textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    display: block;
}

/* ── CITY + STATE row ── */
.input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 0.6rem;
    width: 100%;
    box-sizing: border-box;
}

.input-row input {
    flex: 1;
    min-width: 0;          /* flex overflow fix */
    box-sizing: border-box;
}

/* ── Mobile: City/State ek neeche ek ── */
@media (max-width: 480px) {
    .input-row {
        flex-direction: column;
        gap: 0.4rem;
    }

    .input-row input {
        width: 100%;
    }

    .popup_item {
        width: 96%;
        padding: 0.8rem;
    }
}