html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}




/* --- SCOPED CSS START --- */
:root { --ac-primary: #2563eb; --ac-bg: #f1f5f9; --ac-white: #ffffff; --ac-text: #0f172a; --ac-radius: 4px; }

/* Global Reset */
body { margin: 0; padding: 0; font-family: 'Outfit', sans-serif; background: var(--ac-bg); color: var(--ac-text); }
* { box-sizing: border-box; tap-highlight-color: transparent; }

/* --- WRAPPER --- */
.ac-wrapper { max-width: 1200px; margin: 0 auto; padding: 10px; margin-top: 75px; padding-bottom: 35px; position: relative; z-index: 1; }

/* ================= BANNER SYSTEM ================= */
.banner-group { margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border-radius: var(--ac-radius); overflow: hidden; }

.ac-banner-slider { position: relative; width: 100%; background: #cbd5e1; aspect-ratio: 2 / 1; border-bottom-left-radius: 0; border-bottom-right-radius: 0; margin-bottom: 0 !important; overflow: hidden; }

/* Slide Animation */
.ac-banner-slider img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; transform: translateX(100%); transition: transform 0.6s ease-in-out; z-index: 1; }
.ac-banner-slider img.active { transform: translateX(0); z-index: 2; }

/* --- BLUE PATTI --- */
.blue-patti {
    background: var(--ac-primary);
    width: 100%;
    position: relative;
    z-index: 5;
    overflow: hidden;
    min-height: 50px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transition: height 0.25s ease;
}

/* Text Centering Fix */
.slide-caption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
    z-index: 1;
    text-align: center;
}
.slide-caption.active { transform: translateX(0); z-index: 2; }

.slide-caption h1, .slide-caption h2 { font-size: 15px; font-weight: 600; margin: 0; color: white; line-height: 1.4; max-width: 100%; }

/* Display Rules */
.desk-img { display: none !important; }
.mob-img { display: block !important; }

/* --- DESKTOP (Min Width 768px) --- */
@media(min-width: 768px) {
    .ac-banner-slider { aspect-ratio: 3 / 1; }
    .mob-img { display: none !important; }
    .desk-img { display: block !important; }

    .blue-patti { min-height: 70px; }
    .slide-caption { padding: 0 40px; }
    .slide-caption h1, .slide-caption h2 { font-size: 22px; font-weight: 700; line-height: 1.3; }
}

/* --- WIDE SCREEN --- */
@media(min-width: 1100px) {
    .ac-wrapper { max-width: 96%; }
    .ac-banner-slider { aspect-ratio: 3 / 1; }
}

/* --- SEARCH & CATS --- */
.ac-search-box { margin-bottom: 20px; position: relative; max-width: 100%; }
@media(min-width: 768px) { .ac-search-box { max-width: 600px; margin-left: auto; margin-right: auto; } }
.ac-search-box input { width: 100%; padding: 14px 15px 14px 45px; border: 1px solid #e2e8f0; border-radius: 12px; font-size: 14px; outline: none; }
.ac-search-box i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #64748b; }

.ac-cat-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; margin-bottom: 15px; scrollbar-width: none; }
@media(min-width: 1100px) { .ac-cat-scroll { justify-content: center; } }
.ac-pill { background: var(--ac-white); border: 1px solid #e2e8f0; padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; color: #475569; white-space: nowrap; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.3s;} 
.ac-pill:hover { background: #f8fafc; }
.ac-pill.active { background: var(--ac-text); color: var(--ac-white); border-color: var(--ac-text); }

/* --- GRID SYSTEM --- */
#acServicesList { display: flex; flex-direction: column; gap: 15px; }
@media (min-width: 768px) { #acServicesList { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1100px) { #acServicesList { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; } }

/* --- CARDS --- */
.ac-card { background: var(--ac-white); border-radius: var(--ac-radius); padding: 15px; display: flex; gap: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid transparent; transition: 0.2s; position: relative; }
.ac-card:hover { border-color: var(--ac-primary); transform: translateY(-3px); }
.ac-info { flex: 1; }
.ac-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ac-rating { font-size: 12px; color: #f59e0b; margin-bottom: 6px; }
.ac-price { font-size: 16px; font-weight: 700; color: var(--ac-text); margin-bottom: 4px; }
.ac-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; margin-bottom: 8px; background: #f0fdf4; color: #15803d; }
.ac-tag.repair { background: #fff7ed; color: #c2410c; }
.ac-tag.install { background: #eff6ff; color: #1d4ed8; }
.ac-desc { font-size: 13px; color: #64748b; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ac-view-btn { font-size: 12px; color: var(--ac-primary); text-decoration: underline; cursor: pointer; margin-top: 8px; display: inline-block; font-weight: 600;}
.ac-action { width: 95px; display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.ac-img { width: 95px; height: 80px; object-fit: cover; border-radius: 8px; }

/* Buttons */
.ac-add-btn { background: var(--ac-white); color: var(--ac-primary); border: 1px solid #bfdbfe; padding: 7px 0; width: 100%; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; }
.ac-add-btn:hover { background: #eff6ff; }
.qty-wrapper { display: flex; align-items: center; justify-content: space-between; background: #eff6ff; width: 100%; border-radius: 8px; height: 34px; }
.qty-click { width: 30px; height: 100%; border: none; background: transparent; color: var(--ac-primary); font-weight: bold; cursor: pointer; font-size: 16px; }
.qty-num { font-size: 14px; font-weight: 700; color: var(--ac-primary); }












/* ================= ADVANCED FLOATING BAR CSS ================= */
.float-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    width: 92%;
    max-width: 500px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 16px;
    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;
}

.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: 12px; }

.fb-icon-box {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #60a5fa;
    backdrop-filter: blur(5px);
}

.fb-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    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);
}

.fb-info { display: flex; flex-direction: column; justify-content: center; }
.fb-items-text { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2; }
.fb-sub-text { font-size: 11px; color: #cbd5e1; font-weight: 500; }

.fb-right {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ac-primary);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
    transition: 0.2s;
}

.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 --- */
.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: 25px; position: relative; animation: slideUp 0.3s; display: flex; flex-direction: column; }
@media(min-width: 768px) { 
    .modal-box { border-radius: 16px; align-self: center; height: auto; max-height: 85vh; } 
    .modal-bg { align-items: center; } 
}
@keyframes slideUp { from {transform: translateY(100%);} to {transform: translateY(0);} }
.close-btn { position: absolute; top: 15px; right: 15px; font-size: 20px; color: #94a3b8; cursor: pointer; z-index: 5; }

/* Select Dropdown Styling */
.ac-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 12px;
    font-family: inherit;
    background-color: white;
    cursor: pointer;
    color: #334155;
}

.ac-form select:focus {
    outline: none;
    border-color: #3b82f6;
}

.ac-form select option {
    padding: 10px;
}

/* Textarea Styling */
.ac-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 12px;
    font-family: inherit;
    background-color: white;
    color: #334155;
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

.ac-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.ac-form textarea::placeholder {
    color: #94a3b8;
    line-height: 1.5;
}

/* Submit Button Loading State */
.submit-btn {
    position: relative;
    transition: all 0.3s ease;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Modal Styling */
.success-modal-box {
    max-width: 450px;
    text-align: center;
}

.success-content {
    padding: 20px 0;
}

.success-icon {
    font-size: 70px;
    color: #10b981;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-title {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.success-message {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.success-submessage {
    font-size: 14px;
    color: #94a3b8;
}

/* POPUP TYPOGRAPHY */
.d-img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 15px; }
.d-head { font-size: 20px; font-weight: 800; margin-bottom: 5px; color: var(--ac-text); }
.d-range { font-size: 18px; color: var(--ac-primary); font-weight: 700; margin-bottom: 20px; border-bottom:1px solid #eee; padding-bottom:15px;}
.blog-content h3 { font-size: 16px; font-weight: 700; color: var(--ac-text); margin-top: 15px; margin-bottom: 8px; }
.blog-content p { font-size: 14px; line-height: 1.7; color: #475569; margin-bottom: 12px; text-align: justify; }
.blog-content ul { margin-bottom: 15px; list-style: none; padding-left: 0; }
.blog-content li { margin-bottom: 8px; font-size: 14px; display: flex; gap: 10px; color: var(--ac-text); }
.blog-content li i { color: #10b981; margin-top: 4px; }

.d-action-area { margin-top: auto; border-top: 1px solid #f1f5f9; padding-top: 15px; display: flex; justify-content: space-between; align-items: center; }
.d-action-price { font-size: 18px; font-weight: 700; }
.d-btn-cart { background: var(--ac-text); color: white; border: none; padding: 12px 25px; border-radius: 10px; font-weight: 600; cursor: pointer; font-size: 14px; }

/* Checkout Styles */
.chk-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f1f5f9; padding: 12px 0; }
.chk-total-price { display: block; font-size: 13px; color: #2563eb; font-weight: 700; margin-top: 2px; }
.grand-row { display: flex; justify-content: space-between; border-top: 2px solid #e2e8f0; margin-top: 10px; padding-top: 15px; font-weight: 800; font-size: 16px; }

/* Form */
.ac-form input { width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 15px; font-size: 14px; outline:none; }
.ac-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.submit-btn { width: 100%; background: #0f172a; color: white; border: none; padding: 15px; border-radius: 12px; font-weight: 700; cursor: pointer; font-size: 15px; }

#seo-hidden { display: none; }







/* 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 (Sabse solid tareeka) */
    /* Ye puri body ko 85% pe shrink kar dega taaki sab kuch fit ho */
    body {
        zoom: 0.85; 
        -webkit-zoom: 0.85;
    }

    /* 2. Fix Fixed Elements (Zoom ki wajah se jo hil gaye ho) */
    .float-bar {
        /* Zoom hone par fixed elements ko readjust karna padta hai */
        bottom: 25px !important;
        width: 100% !important; /* Full width le lo kyunki zoom ne chota kar diya */
        max-width: 100% !important;
        left: 0 !important;
        transform: translateY(200%) !important; /* Reset initial state */
        border-radius: 0 !important; /* Flat look better on super small zoom */
        padding: 15px 20px !important;
    }

    .float-bar.visible {
        transform: translateY(0) !important;
    }

    /* 3. Modal Adjustments */
    .modal-box {
        zoom: 1.1; /* Modal ko wapas normal size karo taaki padh sakein */
    }

    /* 4. Banner Height Fix */
    .ac-banner-slider {
        aspect-ratio: 2 / 1.1 !important; /* Thoda aur height do */
    }
}