html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}











/* ========================================
   GEN1 AC SERVICE WEBSITE - COMPLETE FINAL CSS
   Version: 4.2 - BOTTOM SPACE FIXED
   - H1 same as H2 in slider
   - Counter & Dots: Mobile hide, Laptop/PC show
   - Laptop: 3 columns | PC: 4 columns
   - Cards bottom space reduced
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    --ac-primary: #2563eb;
    --ac-bg: #f1f5f9;
    --ac-white: #ffffff;
    --ac-text: #0f172a;
    --ac-radius: 1px;
    --ac-green: #10b981;
}

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--ac-bg);
    color: var(--ac-text);
    line-height: 1.5;
}

/* ========================================
   GEN1 FULL WIDTH BANNER SLIDER v3.0
   ======================================== */
#G1Slider2024,
#G1Slider2024 *,
#G1Slider2024 *::before,
#G1Slider2024 *::after {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
    list-style: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* === SLIDER - PUSH BELOW NAVBAR === */
#G1Slider2024 {
    display: block !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    margin-top: 70px !important;
    padding: 0 !important;
    overflow: hidden !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.4 !important;
}

#G1Slider2024 .g1-box {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 2/1 !important;
    overflow: hidden !important;
    background: #0a0a0a !important;
    border-radius: 0 !important;
}

/* === LOADER === */
#G1Slider2024 .g1-load {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #0a0a0a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999 !important;
    transition: opacity .4s ease !important;
}

#G1Slider2024 .g1-load.g1-hide {
    opacity: 0 !important;
    pointer-events: none !important;
}

#G1Slider2024 .g1-load span {
    width: 44px !important;
    height: 44px !important;
    border: 4px solid rgba(255,255,255,.15) !important;
    border-top-color: #10b981 !important;
    border-radius: 50% !important;
    animation: g1spin .7s linear infinite !important;
}

@keyframes g1spin {
    to { transform: rotate(360deg) }
}

/* === SLIDES === */
#G1Slider2024 .g1-slides {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

#G1Slider2024 .g1-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(1.06) !important;
    transition: all .7s cubic-bezier(.4,0,.2,1) !important;
    z-index: 1 !important;
}

#G1Slider2024 .g1-item.g1-on {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    z-index: 5 !important;
}

/* === IMAGES === */
#G1Slider2024 .g1-item img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

#G1Slider2024 .g1-d { display: none !important }
#G1Slider2024 .g1-m { display: block !important }

/* === TEXT OVERLAY === */
#G1Slider2024 .g1-txt {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(100deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.75) 35%, rgba(0,0,0,.35) 65%, transparent 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 20px !important;
    z-index: 10 !important;
}

/* === H1 & H2 - SAME SIZE === */
#G1Slider2024 .g1-txt h1,
#G1Slider2024 .g1-txt h2 {
    all: unset !important;
    display: block !important;
    width: 75% !important;
    font-size: 4.8vw !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    line-height: 1.15 !important;
    letter-spacing: .5px !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,.9) !important;
    transform: translateY(30px) !important;
    opacity: 0 !important;
    transition: all .55s ease .1s !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* H1 Force Same Size as H2 */
#G1Slider2024 .g1-txt h1 {
    font-size: 4.8vw !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#G1Slider2024 .g1-item.g1-on .g1-txt h1,
#G1Slider2024 .g1-item.g1-on .g1-txt h2 {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

#G1Slider2024 .g1-txt p {
    width: 72% !important;
    font-size: 3.2vw !important;
    font-weight: 600 !important;
    color: #fbbf24 !important;
    margin-top: 10px !important;
    text-shadow: 1px 1px 5px rgba(0,0,0,.8) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transform: translateY(25px) !important;
    opacity: 0 !important;
    transition: all .55s ease .25s !important;
}

#G1Slider2024 .g1-item.g1-on .g1-txt p {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* === CTA BUTTON === */
#G1Slider2024 .g1-txt .g1-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: fit-content !important;
    margin-top: 18px !important;
    padding: 12px 26px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #fff !important;
    font-size: 3.5vw !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 6px 25px rgba(16,185,129,.5) !important;
    transform: translateY(25px) !important;
    opacity: 0 !important;
    transition: all .55s ease .4s !important;
    cursor: pointer !important;
}

#G1Slider2024 .g1-item.g1-on .g1-txt .g1-cta {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

#G1Slider2024 .g1-txt .g1-cta:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 35px rgba(16,185,129,.7) !important;
}

#G1Slider2024 .g1-txt .g1-cta svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #fff !important;
    animation: g1ring 1.5s ease infinite !important;
}

@keyframes g1ring {
    0%, 100% { transform: rotate(0) }
    12% { transform: rotate(-15deg) }
    24% { transform: rotate(15deg) }
    36% { transform: rotate(-15deg) }
    48% { transform: rotate(15deg) }
    60%, 100% { transform: rotate(0) }
}

/* === ARROWS === */
#G1Slider2024 .g1-arr {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255,255,255,.12) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 50 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: all .3s ease !important;
}

#G1Slider2024:hover .g1-arr { opacity: 1 !important }

#G1Slider2024 .g1-arr:hover {
    background: #10b981 !important;
    transform: translateY(-50%) scale(1.12) !important;
}

#G1Slider2024 .g1-arr svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #fff !important;
}

#G1Slider2024 .g1-prv { left: 15px !important }
#G1Slider2024 .g1-nxt { right: 15px !important }

/* === COUNTER - MOBILE HIDE === */
#G1Slider2024 .g1-cnt {
    display: none !important;
}

/* === DOTS - MOBILE HIDE === */
#G1Slider2024 .g1-dots {
    display: none !important;
}

/* === PROGRESS BAR === */
#G1Slider2024 .g1-prog {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: rgba(255,255,255,.1) !important;
    z-index: 60 !important;
    overflow: hidden !important;
}

#G1Slider2024 .g1-prog i {
    display: block !important;
    width: 0% !important;
    height: 100% !important;
    background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7) !important;
    box-shadow: 0 0 10px #10b981 !important;
}

/* ========================================
   SLIDER RESPONSIVE
   ======================================== */
@media(min-width:320px) {
    #G1Slider2024 .g1-txt { padding: 15px !important }
    #G1Slider2024 .g1-txt h1,
    #G1Slider2024 .g1-txt h2 { font-size: 4.5vw !important; width: 78% !important }
    #G1Slider2024 .g1-txt p { font-size: 3vw !important; width: 75% !important }
    #G1Slider2024 .g1-txt .g1-cta { font-size: 3.2vw !important; padding: 10px 20px !important }
}

@media(min-width:375px) {
    #G1Slider2024 .g1-txt { padding: 18px !important }
    #G1Slider2024 .g1-txt h1,
    #G1Slider2024 .g1-txt h2 { font-size: 5vw !important }
    #G1Slider2024 .g1-txt p { font-size: 3.3vw !important }
    #G1Slider2024 .g1-txt .g1-cta { font-size: 3.5vw !important; padding: 11px 24px !important }
}

@media(min-width:480px) {
    #G1Slider2024 .g1-txt h1,
    #G1Slider2024 .g1-txt h2 { font-size: 4.2vw !important; width: 72% !important }
    #G1Slider2024 .g1-txt p { font-size: 2.8vw !important; width: 70% !important }
    #G1Slider2024 .g1-txt .g1-cta { font-size: 3vw !important; padding: 12px 28px !important }
}

/* === TABLET/LAPTOP/PC - SHOW COUNTER & DOTS === */
@media(min-width:768px) {
    #G1Slider2024 .g1-box { aspect-ratio: 3/1 !important }
    #G1Slider2024 .g1-d { display: block !important }
    #G1Slider2024 .g1-m { display: none !important }
    #G1Slider2024 .g1-txt {
        padding: 35px 50px !important;
        background: linear-gradient(100deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.7) 40%, rgba(0,0,0,.3) 70%, transparent 100%) !important;
    }
    #G1Slider2024 .g1-txt h1,
    #G1Slider2024 .g1-txt h2 { width: 55% !important; font-size: 3.2vw !important; margin-bottom: 8px !important }
    #G1Slider2024 .g1-txt p { width: 52% !important; font-size: 1.8vw !important; margin-top: 12px !important }
    #G1Slider2024 .g1-txt .g1-cta { font-size: 1.6vw !important; padding: 14px 34px !important; margin-top: 22px !important; gap: 10px !important }
    #G1Slider2024 .g1-txt .g1-cta svg { width: 20px !important; height: 20px !important }
    #G1Slider2024 .g1-arr { width: 52px !important; height: 52px !important }
    #G1Slider2024 .g1-arr svg { width: 24px !important; height: 24px !important }
    #G1Slider2024 .g1-prv { left: 25px !important }
    #G1Slider2024 .g1-nxt { right: 25px !important }
    
    /* COUNTER - SHOW ON LAPTOP/PC */
    #G1Slider2024 .g1-cnt {
        display: block !important;
        position: absolute !important;
        top: 20px !important;
        right: 25px !important;
        padding: 10px 18px !important;
        background: rgba(0,0,0,.55) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        border-radius: 22px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: rgba(255,255,255,.7) !important;
        z-index: 50 !important;
    }
    
    #G1Slider2024 .g1-cnt b {
        color: #10b981 !important;
        font-size: 18px !important;
    }
    
    /* DOTS - SHOW ON LAPTOP/PC */
    #G1Slider2024 .g1-dots {
        display: flex !important;
        position: absolute !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        gap: 10px !important;
        padding: 10px 18px !important;
        background: rgba(0,0,0,.45) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-radius: 30px !important;
        z-index: 50 !important;
    }
    
    #G1Slider2024 .g1-dots span {
        width: 11px !important;
        height: 11px !important;
        background: rgba(255,255,255,.35) !important;
        border-radius: 6px !important;
        cursor: pointer !important;
        transition: all .4s cubic-bezier(.4,0,.2,1) !important;
    }
    
    #G1Slider2024 .g1-dots span:hover {
        background: rgba(255,255,255,.6) !important;
        transform: scale(1.15) !important;
    }
    
    #G1Slider2024 .g1-dots span.g1-on {
        width: 30px !important;
        background: linear-gradient(90deg, #10b981, #34d399) !important;
        box-shadow: 0 0 14px rgba(16,185,129,.6) !important;
    }
}

@media(min-width:1024px) {
    #G1Slider2024 .g1-box { aspect-ratio: 3/1 !important }
    #G1Slider2024 .g1-txt { padding: 45px 70px !important }
    #G1Slider2024 .g1-txt h1,
    #G1Slider2024 .g1-txt h2 { width: 50% !important; font-size: 2.6vw !important; letter-spacing: 1px !important }
    #G1Slider2024 .g1-txt p { width: 48% !important; font-size: 1.4vw !important }
    #G1Slider2024 .g1-txt .g1-cta { font-size: 1.3vw !important; padding: 16px 40px !important }
    #G1Slider2024 .g1-arr { width: 55px !important; height: 55px !important }
    #G1Slider2024 .g1-prv { left: 35px !important }
    #G1Slider2024 .g1-nxt { right: 35px !important }
    
    /* BIGGER DOTS ON LAPTOP */
    #G1Slider2024 .g1-dots {
        gap: 14px !important;
        padding: 12px 24px !important;
    }
    
    #G1Slider2024 .g1-dots span {
        width: 14px !important;
        height: 14px !important;
    }
    
    #G1Slider2024 .g1-dots span.g1-on {
        width: 42px !important;
    }
}

@media(min-width:1280px) {
    #G1Slider2024 .g1-box { aspect-ratio: 3/1 !important; max-height: 500px !important }
    #G1Slider2024 .g1-txt { padding: 50px 85px !important }
    #G1Slider2024 .g1-txt h1,
    #G1Slider2024 .g1-txt h2 { width: 48% !important; font-size: 2.2vw !important; letter-spacing: 1.5px !important }
    #G1Slider2024 .g1-txt p { width: 45% !important; font-size: 1.15vw !important }
    #G1Slider2024 .g1-txt .g1-cta { font-size: 1.05vw !important; padding: 18px 45px !important }
    #G1Slider2024 .g1-txt .g1-cta svg { width: 22px !important; height: 22px !important }
}

@media(min-width:1500px) {
    #G1Slider2024 .g1-box { aspect-ratio: 3/1 !important; max-height: 500px !important }
    #G1Slider2024 .g1-txt { padding: 55px 100px !important }
    #G1Slider2024 .g1-txt h1,
    #G1Slider2024 .g1-txt h2 { width: 45% !important; font-size: 2vw !important }
    #G1Slider2024 .g1-txt p { width: 42% !important; font-size: 1vw !important }
    #G1Slider2024 .g1-txt .g1-cta { font-size: .95vw !important; padding: 20px 50px !important }
}

@media(min-width:1920px) {
    #G1Slider2024 .g1-box { max-height: 550px !important }
    #G1Slider2024 .g1-txt h1,
    #G1Slider2024 .g1-txt h2 { font-size: 38px !important }
    #G1Slider2024 .g1-txt p { font-size: 18px !important }
    #G1Slider2024 .g1-txt .g1-cta { font-size: 17px !important }
}

/* ========================================
   WRAPPER & GRID - FIXED COLUMNS
   Mobile: 1 | Tablet: 2 | Laptop: 3 | PC: 4
   🔥 BOTTOM SPACE REDUCED 🔥
   ======================================== */

/* Mobile First - LESS PADDING */
.ac-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 8px;
    padding-bottom: 7px; /* 100px se 70px kiya */
    position: relative;
    z-index: 1;
}

/* Service Grid - Mobile (1 Column) */
#acServicesList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

/* Small Mobile - BOTTOM SPACE FIXED */
@media (max-width: 400px) {
    .ac-wrapper {
        padding: 12px 6px;
        padding-bottom: 65px; /* 95px se 65px kiya */
    }
    
    #acServicesList {
        gap: 8px;
    }
}

/* Tablet - 2 Columns */
@media (min-width: 768px) {
    .ac-wrapper {
        padding: 20px 20px;
        padding-bottom: 80px;
    }
    
    #acServicesList {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Laptop - 3 Columns */
@media (min-width: 1024px) {
    .ac-wrapper {
        padding: 25px 30px;
        padding-bottom: 80px;
    }
    
    #acServicesList {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Large Laptop - 3 Columns */
@media (min-width: 1280px) {
    .ac-wrapper {
        padding: 25px 50px;
        padding-bottom: 80px;
    }
    
    #acServicesList {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

/* Still 3 Columns for 1440px Laptops */
@media (min-width: 1440px) {
    .ac-wrapper {
        padding: 28px 60px;
        padding-bottom: 80px;
    }
    
    #acServicesList {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Desktop PC - 4 Columns (1600px+) */
@media (min-width: 1600px) {
    .ac-wrapper {
        padding: 30px 80px;
        padding-bottom: 80px;
    }
    
    #acServicesList {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* Large Desktop - 4 Columns */
@media (min-width: 1920px) {
    .ac-wrapper {
        max-width: 1850px;
        padding: 30px 40px;
        padding-bottom: 80px;
    }
    
    #acServicesList {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

/* ========================================
   SEARCH BOX
   ======================================== */
.ac-search-box {
    margin-bottom: 15px;
    position: relative;
    max-width: 100%;
}

@media(min-width: 768px) {
    .ac-search-box {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
}

.ac-search-box input {
    width: 100%;
    padding: 12px 12px 12px 42px;
    border: 1px solid #e2e8f0;
    border-radius: 55px;
    font-size: 14px;
    outline: none;
    background: var(--ac-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ac-search-box input:focus {
    border-color: var(--ac-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ac-search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

/* ========================================
   CATEGORY PILLS
   ======================================== */
.ac-cat-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 15px;
    scrollbar-width: none;
}

.ac-cat-scroll::-webkit-scrollbar {
    display: none;
}

@media(min-width: 1100px) {
    .ac-cat-scroll {
        justify-content: center;
        margin-bottom: 20px;
    }
}

.ac-pill {
    background: var(--ac-white);
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

@media(min-width: 768px) {
    .ac-pill {
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
    }
}

.ac-pill:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.ac-pill.active {
    background: var(--ac-text);
    color: var(--ac-white);
    border-color: var(--ac-text);
}

/* ========================================
   SECTION TITLE
   ======================================== */
.section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 2px;
    color: var(--ac-text);
}

@media(min-width: 768px) {
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-left: 5px;
    }
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.ac-card {
    background: var(--ac-white);
    border-radius: 4px;
    padding: 12px;
    display: flex;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

@media(min-width: 768px) {
    .ac-card {
        padding: 15px;
        gap: 15px;
    }
}

.ac-card:hover {
    border-color: var(--ac-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.ac-info {
    flex: 1;
    min-width: 0;
}

.ac-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--ac-text);
}

@media(min-width: 768px) {
    .ac-title {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

.ac-rating {
    font-size: 11px;
    color: #f59e0b;
    margin-bottom: 5px;
}

@media(min-width: 768px) {
    .ac-rating {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

.ac-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--ac-text);
    margin-bottom: 3px;
}

@media(min-width: 768px) {
    .ac-price {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

.ac-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
    background: #f0fdf4;
    color: #15803d;
}

@media(min-width: 768px) {
    .ac-tag {
        font-size: 11px;
        padding: 3px 8px;
        margin-bottom: 8px;
    }
}

.ac-tag.repair {
    background: #fff7ed;
    color: #c2410c;
}

.ac-tag.install {
    background: #eff6ff;
    color: #1d4ed8;
}

.ac-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media(min-width: 768px) {
    .ac-desc {
        font-size: 13px;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }
}

.ac-view-btn {
    font-size: 11px;
    color: var(--ac-primary);
    text-decoration: underline;
    cursor: pointer;
    margin-top: 6px;
    display: inline-block;
    font-weight: 600;
    transition: color 0.2s ease;
}

@media(min-width: 768px) {
    .ac-view-btn {
        font-size: 12px;
        margin-top: 8px;
    }
}

.ac-view-btn:hover {
    color: #1d4ed8;
}

/* ========================================
   CARD ACTION AREA
   ======================================== */
.ac-action {
    width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

@media(min-width: 768px) {
    .ac-action {
        width: 95px;
        gap: 8px;
    }
}

.ac-img {
    width: 85px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

@media(min-width: 768px) {
    .ac-img {
        width: 95px;
        height: 80px;
        border-radius: 8px;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.ac-add-btn {
    background: var(--ac-white);
    color: var(--ac-primary);
    border: 1px solid #bfdbfe;
    padding: 6px 0;
    width: 100%;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
}

@media(min-width: 768px) {
    .ac-add-btn {
        padding: 7px 0;
        border-radius: 8px;
        font-size: 13px;
        gap: 5px;
    }
}

.ac-add-btn:hover {
    background: #eff6ff;
    border-color: var(--ac-primary);
}

.ac-call-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 6px 0;
    width: 100%;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

@media(min-width: 768px) {
    .ac-call-btn {
        padding: 7px 0;
        border-radius: 8px;
        font-size: 12px;
        gap: 5px;
    }
}

.ac-call-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.ac-call-btn i {
    animation: phoneRing 1s infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* ========================================
   QUANTITY WRAPPER
   ======================================== */
.qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eff6ff;
    width: 100%;
    border-radius: 6px;
    height: 30px;
}

@media(min-width: 768px) {
    .qty-wrapper {
        border-radius: 8px;
        height: 34px;
    }
}

.qty-click {
    width: 28px;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--ac-primary);
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

@media(min-width: 768px) {
    .qty-click {
        width: 30px;
        font-size: 16px;
    }
}

.qty-click:hover {
    background: rgba(37, 99, 235, 0.1);
}

.qty-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--ac-primary);
}

@media(min-width: 768px) {
    .qty-num {
        font-size: 14px;
    }
}

/* ========================================
   FLOATING CART BAR
   ======================================== */
.float-bar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    width: 94%;
    max-width: 500px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 10px 12px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 15px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    cursor: pointer;
    overflow: hidden;
}

@media(min-width: 768px) {
    .float-bar {
        bottom: 20px;
        width: 92%;
        padding: 10px 15px;
        border-radius: 16px;
    }
}

.float-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.float-bar.pulse {
    animation: cartPulse 0.3s ease-in-out;
}

@keyframes cartPulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); box-shadow: 0 0 30px rgba(37, 99, 235, 0.7); }
    100% { transform: translateX(-50%) scale(1); }
}

.fb-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media(min-width: 768px) {
    .fb-left {
        gap: 12px;
    }
}

.fb-icon-box {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #60a5fa;
    backdrop-filter: blur(5px);
}

@media(min-width: 768px) {
    .fb-icon-box {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        font-size: 20px;
    }
}

.fb-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f172a;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@media(min-width: 768px) {
    .fb-badge {
        top: -6px;
        right: -6px;
        font-size: 11px;
        width: 20px;
        height: 20px;
    }
}

.fb-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fb-items-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

@media(min-width: 768px) {
    .fb-items-text {
        font-size: 15px;
    }
}

.fb-sub-text {
    font-size: 10px;
    color: #cbd5e1;
    font-weight: 500;
}

@media(min-width: 768px) {
    .fb-sub-text {
        font-size: 11px;
    }
}

.fb-right {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--ac-primary);
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
    transition: all 0.2s ease;
}

@media(min-width: 768px) {
    .fb-right {
        gap: 8px;
        padding: 10px 18px;
        font-size: 13px;
    }
}

.fb-right:hover {
    background: #1d4ed8;
}

.fb-right i {
    animation: moveArrow 0.8s infinite alternate ease-in-out;
}

@keyframes moveArrow {
    from { transform: translateX(0); opacity: 0.7; }
    to { transform: translateX(4px); opacity: 1; }
}

/* ========================================
   MODALS - CLOSE BUTTON FIXED
   ======================================== */
.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.modal-bg.active {
    display: flex;
}

.modal-box {
    background: white;
    width: 100%;
    max-width: 600px;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
    padding-top: 20px;
    position: relative;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media(min-width: 768px) {
    .modal-box {
        border-radius: 16px;
        align-self: center;
        height: auto;
        max-height: 85vh;
        padding: 25px;
    }
    .modal-bg {
        align-items: center;
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* ========================================
   🔥 CLOSE BUTTON - FIXED POSITION 🔥
   ======================================== */
.close-btn {
    position: fixed;
    z-index: 1001;
    
    /* 🔥 DARK BACKGROUND 🔥 */
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    
    /* Size */
    width: 40px;
    height: 40px;
    
    /* Shape */
    border-radius: 50%;
    border: 2px solid #475569;
    
    /* Shadow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    
    /* Center Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Font */
    font-size: 18px;
    font-weight: bold;
    
    /* Cursor */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 📱 Mobile Position */
.modal-bg .close-btn {
    bottom: calc(90vh - 50px);
    right: calc(50% - 47% + 15px);
}

/* 💻 Desktop Position */
@media(min-width: 768px) {
    .close-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .modal-bg .close-btn {
        bottom: auto;
        top: calc(7.5vh + 15px);
        right: calc(50% - 285px);
    }
}

/* Hover Effect */
.close-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #ef4444;
    color: #ffffff;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
}

/* Small Mobile Fix */
@media (max-width: 400px) {
    .close-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .modal-bg .close-btn {
        bottom: calc(90vh - 45px);
        right: 15px;
    }
}

/* ========================================
   DETAIL POPUP
   ======================================== */
.d-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

@media(min-width: 768px) {
    .d-img {
        height: 220px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
}

.d-head {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--ac-text);
}

@media(min-width: 768px) {
    .d-head {
        font-size: 20px;
        margin-bottom: 5px;
    }
}

.d-range {
    font-size: 16px;
    color: var(--ac-primary);
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

@media(min-width: 768px) {
    .d-range {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
}

.blog-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ac-text);
    margin-top: 12px;
    margin-bottom: 6px;
}

@media(min-width: 768px) {
    .blog-content h3 {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 8px;
    }
}

.blog-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 10px;
    text-align: justify;
}

@media(min-width: 768px) {
    .blog-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
}

.blog-content ul {
    margin-bottom: 12px;
    list-style: none;
    padding-left: 0;
}

@media(min-width: 768px) {
    .blog-content ul {
        margin-bottom: 15px;
    }
}

.blog-content li {
    margin-bottom: 6px;
    font-size: 13px;
    display: flex;
    gap: 8px;
    color: var(--ac-text);
}

@media(min-width: 768px) {
    .blog-content li {
        margin-bottom: 8px;
        font-size: 14px;
        gap: 10px;
    }
}

.blog-content li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

.d-action-area {
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media(min-width: 768px) {
    .d-action-area {
        padding-top: 15px;
        gap: 10px;
    }
}

.d-action-price {
    font-size: 16px;
    font-weight: 700;
}

@media(min-width: 768px) {
    .d-action-price {
        font-size: 18px;
    }
}

.d-btn-cart {
    background: var(--ac-text);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

@media(min-width: 768px) {
    .d-btn-cart {
        padding: 12px 25px;
        border-radius: 10px;
        font-size: 14px;
        gap: 6px;
    }
}

.d-btn-cart:hover {
    background: #1e293b;
    transform: scale(1.02);
}

.d-btn-call {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

@media(min-width: 768px) {
    .d-btn-call {
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 14px;
        gap: 6px;
    }
}

.d-btn-call:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: scale(1.02);
}/* ========================================
   CHECKOUT MODAL
   ======================================== */
.chk-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 0;
    gap: 8px;
}

@media(min-width: 768px) {
    .chk-row {
        padding: 12px 0;
        gap: 10px;
    }
}

.chk-total-price {
    display: block;
    font-size: 12px;
    color: #2563eb;
    font-weight: 700;
    margin-top: 2px;
}

@media(min-width: 768px) {
    .chk-total-price {
        font-size: 13px;
    }
}

.grand-row {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 800;
    font-size: 15px;
}

@media(min-width: 768px) {
    .grand-row {
        margin-top: 10px;
        padding-top: 15px;
        font-size: 16px;
    }
}

/* ========================================
   FORM STYLES
   ======================================== */
.ac-form input,
.ac-form select,
.ac-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: inherit;
    background-color: white;
    color: #334155;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media(min-width: 768px) {
    .ac-form input,
    .ac-form select,
    .ac-form textarea {
        padding: 12px 15px;
        font-size: 15px;
        margin-bottom: 12px;
    }
}

.ac-form input:focus,
.ac-form select:focus,
.ac-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ac-form textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

@media(min-width: 768px) {
    .ac-form textarea {
        min-height: 90px;
    }
}

.ac-form textarea::placeholder {
    color: #94a3b8;
}

.ac-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media(max-width: 480px) {
    .ac-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media(min-width: 768px) {
    .ac-form-row {
        gap: 15px;
    }
}

.submit-btn {
    width: 100%;
    background: #0f172a;
    color: white;
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

@media(min-width: 768px) {
    .submit-btn {
        padding: 15px;
        border-radius: 12px;
        font-size: 15px;
    }
}

.submit-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   SUCCESS MODAL
   ======================================== */
.success-modal-box {
    max-width: 450px;
    text-align: center;
}

.success-content {
    padding: 15px 0;
}

@media(min-width: 768px) {
    .success-content {
        padding: 20px 0;
    }
}

.success-icon {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease;
}

@media(min-width: 768px) {
    .success-icon {
        font-size: 70px;
        margin-bottom: 20px;
    }
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-title {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

@media(min-width: 768px) {
    .success-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

.success-message {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 500;
}

@media(min-width: 768px) {
    .success-message {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.success-submessage {
    font-size: 12px;
    color: #94a3b8;
}

@media(min-width: 768px) {
    .success-submessage {
        font-size: 14px;
    }
}

/* ========================================
   HIDDEN SEO CONTENT
   ======================================== */
#seo-hidden {
    display: none;
}

/* ================================================================ */
/*  🔥 SMALL SCREEN FIX (350px-385px) - 430px PREVIEW 🔥          */
/*  🔥 BOTTOM SPACE BHI FIX 🔥                                     */
/* ================================================================ */
@media (max-width: 385px) {
    body {
        zoom: 0.85; 
        -webkit-zoom: 0.85;
    }

    .ac-wrapper {
        padding-bottom: 55px !important; /* Bottom space fix for zoom */
    }

    .float-bar {
        bottom: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: translateY(200%) !important;
        border-radius: 0 !important;
        padding: 12px 15px !important;
    }

    .float-bar.visible {
        transform: translateY(0) !important;
    }

    .modal-box {
        zoom: 1.18;
        -webkit-zoom: 1.18;
    }

    #G1Slider2024 {
        zoom: 1.176 !important;
        -webkit-zoom: 1.176 !important;
        margin-top: 60px !important;
    }
}











/* Keyword Slider Start */
  /* ================= RESET ================= */
  * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }

  body { background: #f4f7f6; padding: 20px 0; }

  /* ================= MAIN CARD (Blue Theme) ================= */
  .service-card {
    display: flex;
    width: 100%;
    max-width: 1600px; /* Full Wide for PC */
    height: 400px;     /* Fixed Height Strip */
    margin: 0 auto;
    background: #fff;
    /* HIGHLIGHT: Strong Shadow */
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15); /* Blue-ish Shadow */
    border-radius: 8px; 
    overflow: hidden;
    border: 1px solid #e1e8ed;
  }

  /* ================= LEFT: FORM SECTION (40%) ================= */
  .form-box {
    width: 40%;
    padding: 25px 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-right: 1px solid #f0f0f0;
  }

  /* Decorative Heading */
  .form-box h3 {
    font-size: 22px;
    color: #004085; /* Dark Blue Text */
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .form-box h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #007bff; /* Bright Blue */
    margin-top: 5px;
    border-radius: 2px;
  }

  .form-group { margin-bottom: 12px; }
  
  .input-row {
    display: flex;
    gap: 15px;
  }
  
  .half-width { flex: 1; }

  label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
  }

  /* HIGHLIGHT: Input Fields Styling */
  .form-control {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
    background: #f8fbfd; /* Very Light Blue tint bg */
  }

  /* Focus Glow Effect (Blue) */
  .form-control:focus { 
    border-color: #007bff; 
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.25); /* Blue Glow */
  }

  textarea.form-control {
    height: 45px;
    resize: none;
    padding-top: 8px;
  }

  /* HIGHLIGHT: Gradient Button (Blue to Light Blue) */
  .btn-book {
    width: 100%;
    height: 42px;
    /* Blue to Light Blue Gradient */
    background: linear-gradient(135deg, #0056b3 0%, #00a8ff 100%);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4); /* Blue Shadow */
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-book:hover { 
    transform: translateY(-2px); /* Slight Lift */
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
    background: linear-gradient(135deg, #004494 0%, #007bff 100%);
  }

  /* ================= RIGHT: SLIDER SECTION (60%) ================= */
  .slider-box {
    width: 60%;
    height: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
  }

  .slider-bg {
    position: absolute;
    inset: 0;
    /* Slight Zoom Animation */
    animation: slowZoom 20s infinite alternate; 
  }

  @keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
  }

  /* HIGHLIGHT: Blue Tinted Overlay */
  .slider-overlay {
    position: absolute;
    inset: 0;
    /* Deep Blue Gradient for Overlay */
    background: linear-gradient(to right, rgba(2, 26, 51, 0.9) 0%, rgba(0, 60, 120, 0.7) 100%);
    z-index: 1;
  }

  .slider-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slide-track {
    width: 100%;
    text-align: center;
    animation: scrollUp 35s linear infinite;
  }

  .slide-text {
    color: #fff;
    font-size: 17px;
    padding: 10px 30px;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  @keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  /* ================= MOBILE VIEW (Compact & Stacked) ================= */
  @media (max-width: 768px) {
    body { padding: 0; }
    
    .service-card {
      flex-direction: column;
      height: auto;
      width: 100%;
      border-radius: 0;
      box-shadow: none;
      border: none;
    }

    .form-box {
      width: 100%;
      padding: 20px;
      order: 1;
      border-right: none;
      background: #fff;
    }

    .form-box h3 { font-size: 18px; margin-bottom: 15px; }

    .slider-box {
      width: 100%;
      height: 220px; /* Fixed small height */
      order: 2;
    }
    
    .slide-text { 
      font-size: 13px; 
      padding: 8px 15px; 
      font-weight: 500;
    }

    .form-control { height: 40px; }
  }













/* --- ABout US --- */
#gen-perfect-fix { all: initial; display: block !important; width: 100% !important; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif !important; background-color: #f8fbff !important; background-image: radial-gradient(#dbeafe 1.5px, transparent 1.5px) !important; background-size: 20px 20px !important; padding: 60px 20px !important; box-sizing: border-box !important; overflow: hidden !important; }
#gen-perfect-fix * { box-sizing: border-box !important; margin: 0; padding: 0; }
.gpf-container { max-width: 1100px !important; margin: 0 auto !important; position: relative !important; }
.gpf-grid { display: grid !important; grid-template-columns: 1fr 0.9fr !important; gap: 50px !important; align-items: center !important; }
.gpf-content { text-align: left !important; z-index: 2 !important; position: relative !important; }
.gpf-badge { display: inline-flex !important; align-items: center !important; gap: 8px !important; background: white !important; border: 1px solid #bfdbfe !important; padding: 6px 14px !important; border-radius: 50px !important; font-size: 12px !important; font-weight: 700 !important; color: #2563eb !important; box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1) !important; margin-bottom: 20px !important; }
.gpf-dot { width: 8px !important; height: 8px !important; background: #22c55e !important; border-radius: 50% !important; animation: gpf-pulse 2s infinite !important; }
@keyframes gpf-pulse { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
.gpf-title { font-size: 42px !important; line-height: 1.15 !important; font-weight: 800 !important; color: #0f172a !important; margin-bottom: 15px !important; letter-spacing: -0.5px !important; }
.gpf-blue { color: #2563eb !important; }
.gpf-desc { font-size: 16px !important; color: #64748b !important; line-height: 1.6 !important; margin-bottom: 25px !important; max-width: 90% !important; }
.gpf-stats-strip { display: flex !important; background: white !important; border-radius: 12px !important; box-shadow: 0 4px 20px -5px rgba(0,0,0,0.08) !important; padding: 15px 0 !important; margin-bottom: 25px !important; border: 1px solid #e2e8f0 !important; max-width: 400px !important; }
.gpf-stat-item { flex: 1 !important; text-align: center !important; border-right: 1px solid #f1f5f9 !important; }
.gpf-stat-item:last-child { border-right: none !important; }
.gpf-num { display: block !important; font-size: 24px !important; font-weight: 800 !important; color: #0f172a !important; line-height: 1 !important; margin-bottom: 2px !important; font-family: monospace, sans-serif !important; }
.gpf-lbl { font-size: 10px !important; font-weight: 700 !important; color: #64748b !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.gpf-btns { display: flex !important; gap: 12px !important; }
.gpf-btn { padding: 12px 24px !important; border-radius: 8px !important; font-weight: 600 !important; font-size: 15px !important; text-decoration: none !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; transition: transform 0.2s !important; cursor: pointer !important; }
.gpf-btn-pri { background: #2563eb !important; color: white !important; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important; border: none !important; }
.gpf-btn-sec { background: white !important; color: #0f172a !important; border: 1px solid #cbd5e1 !important; }
.gpf-img-col { position: relative !important; display: flex !important; justify-content: center !important; }
.gpf-main-img { width: 100% !important; border-radius: 20px !important; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15) !important; display: block !important; object-fit: contain !important; height: auto !important; }
.gpf-rating { position: absolute !important; bottom: 20px !important; left: -20px !important; background: rgba(255, 255, 255, 0.98) !important; padding: 8px 16px !important; border-radius: 10px !important; box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important; display: flex !important; align-items: center !important; gap: 10px !important; border: 1px solid #f1f5f9 !important; animation: gpf-float 4s ease-in-out infinite !important; }
@keyframes gpf-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.gpf-star { color: #f59e0b !important; font-size: 16px !important; }
.gpf-rate-txt b { display: block !important; font-size: 13px !important; color: #0f172a !important; min-width: 65px !important; }
.gpf-rate-txt span { display: block !important; font-size: 10px !important; color: #64748b !important; }

/* --- MOBILE FIXES (Standard) --- */
@media (max-width: 900px) {
    #gen-perfect-fix { padding: 40px 15px !important; }
    .gpf-grid { grid-template-columns: 1fr !important; gap: 30px !important; text-align: center !important; }
    .gpf-content { display: flex !important; flex-direction: column !important; align-items: center !important; }
    .gpf-title { font-size: 32px !important; margin-bottom: 10px !important; }
    .gpf-desc { font-size: 15px !important; margin-bottom: 20px !important; }
    .gpf-stats-strip { width: 100% !important; max-width: 100% !important; padding: 10px 0 !important; }
    .gpf-btns { width: 100% !important; justify-content: center !important; gap: 10px !important; }
    .gpf-btn { flex: 1 !important; max-width: 160px !important; padding: 12px 10px !important; }
    .gpf-img-col { margin-top: 10px !important; }
    .gpf-rating { position: absolute !important; bottom: -15px !important; left: 50% !important; transform: translateX(-50%) !important; width: max-content !important; z-index: 5 !important; }
}

/* areas find start*/
*,*::before,*::after{box-sizing:border-box}
.ltv-wrap{max-width:1100px;margin:15px auto;padding:0 6px;font-family:'Segoe UI',Tahoma,sans-serif}

/* Header */
.ltv-head{text-align:center;margin-bottom:10px;background:linear-gradient(135deg,#e3f2fd,#bbdefb);padding:12px 10px;border-radius:10px;border:1px solid #90caf9}
.ltv-head h4{font-size:18px;color:#0d47a1;margin:0;letter-spacing:.3px} /* Increased from 15px */
.ltv-head h4 span{display:block;font-size:13px;color:#1565c0;font-weight:400;margin-top:3px} /* Increased from 11px */

/* Search */
.ltv-search{text-align:center;margin-bottom:8px;position:relative;display:flex;justify-content:center}
.ltv-search input{width:100%;max-width:320px;padding:8px 32px 8px 14px;font-size:14px;border:1.5px solid #90caf9;border-radius:18px;outline:none;transition:.3s;background:#f5f9ff} /* Increased font & padding */
.ltv-search input:focus{border-color:#1976d2;box-shadow:0 0 0 3px rgba(25,118,210,.1)}
.ltv-search .s-ic{position:absolute;right:calc(50% - 148px);top:50%;transform:translateY(-50%);font-size:15px;pointer-events:none}

/* Info bar */
.ltv-info{display:flex;justify-content:center;align-items:center;gap:8px;margin-bottom:8px;flex-wrap:wrap}
.ltv-count{font-size:11px;color:#1565c0;background:#e3f2fd;padding:4px 12px;border-radius:10px;border:1px solid #bbdefb}
.ltv-badge{font-size:10px;color:#fff;background:linear-gradient(135deg,#42a5f5,#1e88e5);padding:3px 9px;border-radius:8px}

/* Grid */
.ltv-grid{display:flex;flex-wrap:wrap;gap:5px;justify-content:center;padding:0;margin:0;list-style:none}
.ltv-grid li{flex:0 0 calc(20% - 5px);max-width:calc(20% - 5px);transition:.2s}
.ltv-grid li.hide{display:none!important}
.ltv-grid li a{display:flex;align-items:center;justify-content:center;gap:3px;padding:6px 5px;font-size:11px;font-weight:600;color:#0d47a1;background:linear-gradient(135deg,#e3f2fd,#f5f9ff);border:1px solid #bbdefb;border-radius:6px;text-decoration:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:.25s;line-height:1.3;min-height:28px;text-align:center} /* Increased font, padding, weight */
.ltv-grid li a .pin{font-size:9px;flex-shrink:0}
.ltv-grid li a:hover{background:linear-gradient(135deg,#1976d2,#1565c0);color:#fff;border-color:#1565c0;transform:translateY(-1px);box-shadow:0 3px 10px rgba(21,101,192,.25)}
.ltv-grid li a:hover .pin{display:none}
.ltv-grid li a:hover::before{content:'✅';font-size:9px;margin-right:2px}

/* Active animation */
.ltv-grid li a:active{transform:scale(.96)}

/* No result */
.ltv-nf{text-align:center;padding:18px 10px;color:#90a4ae;font-size:13px;display:none;width:100%;flex-direction:column;align-items:center;gap:4px}
.ltv-nf .nf-ic{font-size:30px}
.ltv-nf .nf-txt{font-size:12px;color:#b0bec5}

/* Button */
.ltv-more{text-align:center;margin-top:10px}
.ltv-more button{padding:8px 22px;font-size:12px;font-weight:600;color:#fff;background:linear-gradient(135deg,#42a5f5,#1976d2);border:none;border-radius:16px;cursor:pointer;transition:.3s;box-shadow:0 2px 8px rgba(25,118,210,.2);display:inline-flex;align-items:center;gap:5px}
.ltv-more button:hover{background:linear-gradient(135deg,#1976d2,#0d47a1);transform:translateY(-1px);box-shadow:0 4px 14px rgba(25,118,210,.3)}
.ltv-more button:active{transform:scale(.97)}
.ltv-more button .arr{transition:transform .3s;font-size:11px;display:inline-block}
.ltv-more button.exp .arr{transform:rotate(180deg)}

/* Scroll to top hint */
.ltv-top{position:fixed;bottom:15px;right:15px;width:36px;height:36px;background:linear-gradient(135deg,#42a5f5,#1976d2);color:#fff;border:none;border-radius:50%;font-size:16px;cursor:pointer;box-shadow:0 2px 10px rgba(25,118,210,.3);display:none;align-items:center;justify-content:center;z-index:99;transition:.3s}
.ltv-top:hover{transform:scale(1.1)}

/* Desktop 10 per row */
@media(min-width:769px){
.ltv-grid li{flex:0 0 calc(10% - 5px);max-width:calc(10% - 5px)}
.ltv-grid li a{font-size:12px;padding:7px 5px} /* Increased for Laptop */
}

/* Tablet 5 per row */
@media(max-width:768px){
.ltv-grid li{flex:0 0 calc(20% - 5px);max-width:calc(20% - 5px)}
.ltv-grid li a{font-size:11px;padding:6px 4px}
.ltv-grid li a .pin{display:none}
}

/* Mobile 5 per row */
@media(max-width:480px){
.ltv-wrap{padding:0 4px}
.ltv-grid{gap:4px}
.ltv-grid li{flex:0 0 calc(20% - 4px);max-width:calc(20% - 4px)}
.ltv-grid li a{font-size:10px;padding:5px 2px;min-height:26px;border-radius:5px} /* Significantly increased for Mobile */
.ltv-head h4{font-size:16px}
.ltv-head h4 span{font-size:11px}
.ltv-search input{max-width:260px;font-size:13px;padding:7px 12px}
}
/* areas find end */












/* Main Content */
.ac-content-wrapper { 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  line-height: 1.6;
  margin: 25px auto; 
  color: #444; 
  background: #fff; 
  padding-left: 5%; 
  padding-right: 5%; 
}

/* Grid Layout for Cards */
.ac-services-grid { 
  display: grid; 
  gap: 20px; 
  margin: 25px 0; 
  grid-template-columns: 1fr; 
}

/* Service Cards - Blue Theme Applied */
.ac-service-card { 
  padding: 20px; 
  border-left: 4px solid #0056b3; 
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%); 
  border-radius: 6px; 
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.1); 
  transition: transform .3s ease, box-shadow .3s ease; 
}

.ac-service-card:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
}

/* Headings - Blue Theme */
.ac-main-heading { 
  color: #004085; 
  font-weight: 700; 
  margin: 30px 0 20px 0; 
  border-bottom: 3px solid #007bff; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  display: inline-block;
  padding-bottom: 5px;
}

.ac-content-para { 
  text-align: justify; 
  margin-bottom: 20px; 
}

/* Keywords Highlight - Blue */
.ac-keyword-highlight { 
  font-weight: 700; 
  color: #0056b3; 
  text-decoration: none; 
}

.ac-content-section { 
  margin-top: -10px; 
  padding: 15px 0; 
}

/* =========================================
   MOBILE VIEW (Optimized Spacing)
   ========================================= */
@media (max-width: 768px) {

  .ac-content-wrapper { 
    padding-left: 10px;   /* Reduced side space */
    padding-right: 10px; 
    margin: 0; 
  }

  .ac-content-section { 
    font-size: 13px; 
  }

  .ac-main-heading { 
    font-size: 18px; 
    padding-bottom: 8px; 
    margin: 25px 0 15px 0; 
  }

  .ac-service-card { 
    padding: 14px; 
    font-size: 13px; 
  }

  .ac-content-para { 
    font-size: 13px; 
    margin-bottom: 18px; 
  }

  .ac-services-grid { 
    gap: 15px; 
  }
}

/* =========================================
   LAPTOP / PC VIEW
   ========================================= */
@media (min-width: 769px) {

  .ac-content-wrapper { 
    padding-left: 5%; 
    padding-right: 5%; 
  }
  
  .ac-main-heading { 
    font-size: 20px; 
    padding-bottom: 10px; 
    margin: 35px 0 15px 0; 
  }
  
  .ac-service-card { 
    padding: 20px; 
    font-size: 14px; 
  }
  
  .ac-content-para { 
    font-size: 14px; 
    margin-bottom: 25px; 
  }
  
  .ac-services-grid { 
    grid-template-columns: 1fr 1fr; 
  } 
}

















  /* select brands poup css */
  .g1-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); display: none; justify-content: center; align-items: center; z-index: 9999; padding: 16px; }
  .g1-modal { background: #fff; border-radius: 1px; max-width: 1000px; width: 100%; max-height: 90vh; overflow: auto; box-shadow: 0 20px 60px rgba(0,0,0,.25); position: relative; }
  .g1-header { display: flex; gap: 12px; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #eee; position: sticky; top: 0; background: #fff; z-index: 2; }
  .g1-title { font-size: 18px; font-weight: 700; margin: 0; }
  .g1-close { border: 0; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; }
  .g1-body { padding: 16px; }
  .g1-search { max-width: 520px; margin: 0 auto 16px; }
  .g1-input { width: 100%; padding: 12px 14px; border: 1px solid #ccc; border-radius: 2px; font-size: 15px; outline: none; }
  
  /* Grid System */
  .g1-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  
  /* Card Design */
  .g1-card { display: block; text-decoration: none; color: inherit; background: #fff; border: 1px solid #366e3a; border-radius: 1px; padding: 16px 10px; text-align: center; transition: .25s; }
  .g1-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); background: #f3f9ff; }
  .g1-img { width: 92px; height: 44px; object-fit: contain; margin: 0 auto 10px; display: block; }
  .g1-name { margin: 0; font-weight: 700; font-size: 13px; color: #333; }
  
  @media (max-width: 600px) {
    .g1-modal { border-radius: 1px; }
    .g1-title { font-size: 16px; }
    .g1-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .g1-card { padding: 10px 6px; border-radius: 1px; }
    .g1-img { width: 50px; height: 28px; margin-bottom: 6px; }
    .g1-name { font-size: 10px; }
  }
  .g1-hidden { display: none !important; }

























































































/* ================================================================ */
/*  🔥🔥🔥 THE "EXACT PREVIEW" FIX (350px-400px) 🔥🔥🔥           */
/*  YE LOGIC 430px WALE PREVIEW KO 350px PE COPY KAREGA             */
/* ================================================================ */
@media (max-width: 385px) {
    
    /* 1. FORCE ZOOM */
    body {
        zoom: 0.85; 
        -webkit-zoom: 0.85;
    }

    /* 2. Fix Fixed Elements */
    .float-bar {
        bottom: 25px !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: translateY(200%) !important;
        border-radius: 0 !important;
        padding: 15px 20px !important;
    }

    .float-bar.visible {
        transform: translateY(0) !important;
    }

    /* 3. Modal Adjustments */
    .modal-box {
        zoom: 1.1;
    }

    /* ============================================ */
    /*  🔥 BANNER SLIDER AUTO-FIX (NO CUTTING) 🔥  */
    /* ============================================ */
    
    /* Slider ko zoom se alag rakho */
    #G1Slider2024 {
        zoom: 1.176 !important;  /* 1/0.85 = 1.176 (zoom reset) */
        -webkit-zoom: 1.176 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 60px !important;
        left: 0 !important;
        position: relative !important;
    }
    
    /* Slider box perfect fit */
    #G1Slider2024 .g1-box {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 2/1 !important;
    }
    
    /* Text size adjust */
    #G1Slider2024 .g1-txt h2 {
        font-size: 18px !important;
    }
    
    #G1Slider2024 .g1-txt p {
        font-size: 12px !important;
    }
    
    #G1Slider2024 .g1-txt .g1-cta {
        font-size: 12px !important;
        padding: 8px 18px !important;
    }
}