/* --------------------
   BASE STYLE (OPTION A)
----------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f6f7fb;
  color: #222;
  line-height: 1.6;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* --------------------
   HEADER
----------------------*/
header {
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 900;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0deeb6, #8ed5eb);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
}

.brand-sub {
  margin-top: -3px;
  font-size: 12px;
  opacity: 0.7;
}

/* --------------------
   NAV
----------------------*/
nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 15px;
}

nav a:hover {
  color: #2b59ff;
}

.cta {
  padding: 10px 22px;
  background: #2b59ff;
  color: #fff !important;
  border-radius: 10px;
  display: inline-block;
  margin-left: 24px;
  transition: 0.2s;
}

.cta:hover {
  background: #1d3bcc;
}

/* --------------------
 DROPDOWN
----------------------*/
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  background: #fff;
  width: 220px;
  padding: 12px 0;
  border-radius: 12px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #222;
}

.dropdown-menu a:hover {
  background: #f1f4ff;
}

/* --------------------
   HERO AREA
----------------------*/
.hero {
  background: url('background.jpg') center/cover no-repeat;
  padding: 80px 20px;
  border-radius: 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 14px;
}

/* --------------------
   CARDS
----------------------*/


/* SERVICES GRID */
.services-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.service {
  background: #f6f7fb;
  padding: 14px;
  border-radius: 12px;
}

.service h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

/* --------------------
   SIDE FORM
----------------------*/
form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #000000;
  font-size: 15px;
  margin: 10px 0;
  background: #fafafa;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #2b59ff;
  outline: 0;
  background: #fff;
}

/* --------------------
   BRANDS
----------------------*/
.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-box {
  padding: 12px 18px;
  background: #f3f6ff;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid #dce4ff;
}

/* --------------------
   SERVICE LIST
----------------------*/
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

/* --------------------
   TWO COLUMN FORM (BOOK)
----------------------*/
.two {
  display: flex;
  gap: 14px;
}

.two input {
  flex: 1;
}



/* --------------------
   RESPONSIVE
----------------------*/
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  nav a { display: none; }
  .cta { display: none; }

  header {
    padding: 14px 0;
  }

  h1 { font-size: 28px; }
}

@media (max-width: 500px) {
  .two { flex-direction: column; }
}

/* ----------------------------------------------------
   STYLISH TERMS PAGE ELEMENT DESIGN
------------------------------------------------------*/

.terms-page {
  background: linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url('terms-bg.jpg') center/cover fixed no-repeat;
  color: #000000;
}

.terms-section {
  padding: 80px 0;
}

.terms-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #ffde59;
  margin-bottom: 30px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.terms-wrapper {
  max-width: 900px;
  margin: auto;
  padding: 40px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.terms-wrapper h2 {
  margin-top: 32px;
  font-size: 26px;
  font-weight: 800;
  color: #ffde59;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.terms-wrapper p,
.terms-wrapper ul li {
  font-size: 17px;
  margin: 10px 0;
  line-height: 1.7;
}

.terms-wrapper ul {
  margin-left: 20px;
}

.highlight {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  padding: 18px 20px;
  border-left: 5px solid #ffde59;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}
/* ----------------------------------------------------
   STYLISH PRIVACY PAGE DESIGN
------------------------------------------------------*/

.privacy-page {
  background: linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url('privacy-bg.jpg') center/cover fixed no-repeat;
  color: #000000;
}

.privacy-section {
  padding: 80px 0;
}

.privacy-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #ffde59;
  margin-bottom: 30px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.privacy-wrapper {
  max-width: 900px;
  margin: auto;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.privacy-wrapper h2 {
  margin-top: 30px;
  font-size: 26px;
  font-weight: 800;
  color: #ffde59;
}

.privacy-wrapper h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #ffe27a;
}

.privacy-wrapper p,
.privacy-wrapper ul li {
  margin: 12px 0;
  font-size: 17px;
  line-height: 1.7;
}

.privacy-wrapper ul {
  margin-left: 22px;
}
/* ----------------------------------------------------
   STYLISH FAQ PAGE
------------------------------------------------------*/

.faq-page {
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url('faq-bg.jpg') center/cover fixed no-repeat;
  color: #000000;
}

.faq-section {
  padding: 80px 0;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #ffde59;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
  margin-bottom: 30px;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 22px;
  margin: 10px 0;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(7px);
  cursor: pointer;
  transition: 0.3s;
}

.faq:hover {
  background: rgba(255, 255, 255, 0.2);
}

.faq-question {
  font-size: 20px;
  font-weight: 700;
  color: #ffdf70;
}

.faq-answer {
  font-size: 16px;
  margin-top: 10px;
  display: none;
}

.faq.active .faq-answer {
  display: block;
}
/* ======================
   LOGO FINAL FIX
========================*/

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px; /* remove if you want square logo */
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
/* ----------------------------------------------------
   NEW STYLISH HEADER DESIGN
------------------------------------------------------*/


/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  padding: 12px 0;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.12);
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  padding: 12px 20px;
  display: block;
  color: #222;
}

.dropdown-menu a:hover {
  background: #e9edff;
}
.dev-credit {
    margin-top: 4px;
    font-size: 11px;      /* smaller text */
    opacity: 0.75;        /* lighter premium look */
    letter-spacing: 0.3px;
    color: #91079e;
}

.dev-credit strong {
    color: #000000;
    font-size: 11px;      /* ensure strong text is also small */
}
/* ----------------------------------------------------
   RESPONSIVE FIX FOR FULL CARD + BRANDS + SPACING
------------------------------------------------------*/

/* Tablet & Above */
@media (max-width: 992px) {

  /* Free Quote full-stretch */
  .card {
      margin: 18px 10px;
      padding: 20px;
  }

  /* Service grid 1 column on small screens */
  .services-grid {
      grid-template-columns: 1fr;
      gap: 16px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {

  /* Hero grid fix */
  .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .hero-grid img {
      margin: auto;
  }

  /* Free Quote card full width */
  .card {
      margin: 14px 8px;
      border-radius: 14px;
  }

  /* Service grid reduce gap for mobile */
  .services-grid {
      gap: 14px;
  }

  /* Brands center alignment */
  .brands {
      justify-content: center !important;
      gap: 10px;
  }

  .brand-box {
      padding: 10px 14px;
      font-size: 14px;
  }

  /* Footer compact */
  footer {
      padding: 30px 0 16px;
  }

  .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }
}

/* Extra Small Phones */
@media (max-width: 480px) {

  /* Service cards */
  .service {
      padding: 12px;
  }

  /* Brand box */
  .brand-box {
      padding: 8px 12px;
      font-size: 13px;
  }

  /* Header spacing */
  .new-header {
      padding: 10px 0;
  }

  /* Buttons */
  .header-btn,
  .cta,
  .get-quote {
      padding: 10px 16px;
      font-size: 14px;
  }

  /* Free Quote */
  .card-head {
      flex-direction: column;
      gap: 12px;
      text-align: center;
  }
}

/* ===== HOW IT WORKS PAGE (FIXED & PREMIUM DESIGN) ===== */

.hiw-page {
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url('hiw-bg.jpg') center/cover fixed no-repeat;
  padding: 100px 0;
  color: #fff;
}

.hiw-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.hiw-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffde59;
  margin-bottom: 40px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.hiw-subtext {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.hiw-step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 28px 22px;
  border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  transition: 0.3s ease-in-out;
}

.hiw-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.4);
}

.hiw-number {
  font-size: 40px;
  font-weight: 800;
  color: #ffde59;
  margin-bottom: 10px;
}

.hiw-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hiw-step p {
  opacity: 0.9;
  font-size: 15px;
}
/* -------- HIW ICON FIX -------- */
.hiw-icon {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* HIW step layout fix */
.hiw-step {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.hiw-step:hover {
  transform: translateY(-5px);
  transition: .3s;
}

/* -------------------------
 GENERAL PAGE LAYOUT
--------------------------*/

body {
  background: url('background.jpg') center/cover no-repeat fixed;
  background-size: cover;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* -------------------------
 SERVICE SECTION
--------------------------*/

#services {
  padding: 40px 0;
}

#services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}

/* GRID FIXED — RESPONSIVE & CLEAN */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  width: 100%;
}




/* ============================
   RESPONSIVE ADJUSTMENTS
===============================*/

/* Mobile default */
.container {
  width: 100%;
  padding: 0 16px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

/* Grid sections */
@media (max-width: 768px) {
  .services-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Hero section */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    text-align: center;
  }
  .hero h1 {
    font-size: 28px;
  }
}

/* About / Services images */
@media (max-width: 768px) {
  .about-img img,
  .service-img img {
    width: 100%;
    height: auto;
  }
}

/* ----------------------------------------------------
   RESPONSIVE NAVIGATION (FIXED + SLIDE MENU)
------------------------------------------------------*/

/* hide menu on mobile */
@media (max-width: 780px) {

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    z-index: 9999;
  }

  nav a {
    display: block;
    font-size: 18px;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  /* open menu class */
  nav.nav-open {
    right: 0;
  }

  /* hamburger */
  .menu-btn {
    display: block;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
  }

  /* hide dropdown hover on mobile */
  .dropdown-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  .dropdown.show .dropdown-menu {
    display: block;
  }
}

/* desktop */
@media (min-width: 781px) {
  .menu-btn {
    display: none;
  }
}

.map-container {
  width: 100%;
  max-width: 500px;   /* ⭐ map ka max size yaha control hoga */
  height: 250px;      /* ⭐ map height */
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;     /* ⭐ center me aayega */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==== Sidebar Base ==== */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 240px;
  height: 100%;
  background: #222;
  color: #fff;
  padding-top: 50px;
  transition: 0.3s;
}

.sidebar a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  border-bottom: 1px solid #333;
}

.sidebar a:hover {
  background: #444;
}

/* ==== Hamburger ==== */
.menu-btn {
  position: fixed;
  left: 10px;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
  color: #000;
  z-index: 999;
}

/* ==== Hide sidebar in mobile ==== */
.sidebar.closed {
  left: -260px;
}

/* ==== Page Content ==== */
.content {
  margin-left: 260px;
  padding: 20px;
  transition: 0.3s;
}

.content.full {
  margin-left: 0;
}

@media(max-width: 768px){
  .content {
    margin-left: 0;
  }
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ==== Hamburger Button ==== */
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #222;
  z-index: 1001;
}

/* ==== Sidebar ==== */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 250px;
  height: 100%;
  background: #222;
  color: #fff;
  padding-top: 60px;
  transition: transform 0.3s ease;
  transform: translateX(-260px);
  z-index: 1000;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar a {
  display: block;
  padding: 14px 20px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.sidebar a:hover {
  background: #444;
}

/* ==== Content Area ==== */
.content {
  padding: 20px;
  transition: margin-left .3s;
  margin-left: 0;
}

/* Large screen sidebar always visible */
@media (min-width: 900px) {
  .sidebar {
    transform: translateX(0);
  }
  .menu-btn {
    display: none;
  }
  .content {
    margin-left: 250px;
  }
}

/* Optional overlay when sidebar open on mobile */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 999;
}
.overlay.show {
  display: block;
}

/* --------------------------------------------------
   RESPONSIVE (Mobile)
-------------------------------------------------- */

@media (max-width: 900px) {
  nav {
    display: none;
  }
}

/* HERO GRID MOBILE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE FORM + CARDS FIX */
@media (max-width: 600px) {

  h1 {
    font-size: 26px;
  }

  .card-head {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .brands {
    grid-template-columns: repeat(2,1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  footer {
    text-align: center;
  }
}
.submit-btn {
  background: #4a90e2;          /* Blue color */
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.submit-btn:hover {
  background: #357ABD;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: scale(0.95);
}

/* Header Background */
header {
  width: 100%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 15px 0;
}

/* Flex Container */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

.brand-sub {
  font-size: 13px;
  color: #444;
  margin-top: -4px;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Nav Links */
nav a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: 0.3s ease;
  position: relative;
}

/* Hover Effect */
nav a:hover {
  background: #4a90e2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

/* Active / Focus Effect */
nav a:active {
  transform: scale(0.95);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.drop-toggle::after {
  content: "";
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  width: 220px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

/* Dropdown Hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}

/* Dropdown Items */
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 6px;
  color: #333;
}

.dropdown-menu a:hover {
  background: #4a90e2;
  color: white;
}

/* WhatsApp Button */
nav a[href*="wa.me"] {
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

nav a[href*="wa.me"]:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* Topbar fix */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

/* Menu Button */
.menu-btn {
  font-size: 32px;
  cursor: pointer;
  display: none;
  user-select: none;
}

/* Desktop Navigation */
.desktop-nav a {
  margin-left: 18px;
  font-weight: 500;
}

/* -------------- MOBILE FIX -------------- */
@media (max-width: 768px) {

  /* Brand left side */
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-sub {
    font-size: 12px;
  }

  /* Show menu button on mobile */
  .menu-btn {
    display: block;
  }

  /* Hide desktop navigation on small screens */
  nav.desktop-nav {
    display: none !important;
  }

  /* Fix topbar layout for mobile */
  .topbar {
    padding: 10px;
  }
}

/* Right Slide Menu */
#sideMenu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #ffffff;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  transition: 0.4s;
  z-index: 9999;
}

#sideMenu a {
  display: block;
  padding: 12px 0;
  font-size: 17px;
  border-bottom: 1px solid #ececec;
}

.close-btn {
  font-size: 40px;
  cursor: pointer;
  text-align: right;
  padding-bottom: 20px;
}

/* Services dropdown inside mobile menu */
.side-dropdown p {
  font-size: 18px;
  padding: 12px 0;
  cursor: pointer;
  font-weight: bold;
}

.side-dropdown-menu {
  display: none;
  padding-left: 12px;
}

.side-dropdown:hover .side-dropdown-menu {
  display: block;
}
<!-- Slider / Gallery CSS -->
<style>
  .gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    padding: 20px 0;
  }

  .gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
  }

  .gallery-track img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
</style
/* ==========================
   GLOBAL STYLES
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('background.jpg'); /* image name */
  background-size: cover;      /* full screen adjust */
  background-repeat: no-repeat; /* repeat na ho */
  background-position: center;  /* center me rahe */
  background-attachment: fixed; /* scroll karne par fixed rahe */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* CARD DESIGN */
.card {
  background: linear-gradient(135deg, #f3f180, #6af5fa);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* CARD HOVER */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card h3 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.card p {
  margin: 10px 0 0;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

/* -------------------------
 RESPONSIVE TWEAKS
--------------------------*/

@media (max-width: 768px) {
  #services h2 {
    font-size: 26px;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  #services h2 {
    font-size: 22px;
  }

  .card {
    padding: 18px;
  }
}

/* --- Card Animation on Load --- */
.service-list .card {
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeUp 0.8s ease forwards;
}

/* Stagger effect (delay for each card) */
.service-list .card:nth-child(1) { animation-delay: 0.1s; }
.service-list .card:nth-child(2) { animation-delay: 0.2s; }
.service-list .card:nth-child(3) { animation-delay: 0.3s; }
.service-list .card:nth-child(4) { animation-delay: 0.4s; }
.service-list .card:nth-child(5) { animation-delay: 0.5s; }
.service-list .card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Hover Animation (Zoom + Shadow) --- */
.service-list .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list .card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* --- Smooth Hover for Title --- */
.service-list .card h3 {
  transition: color 0.3s ease;
}
.service-list .card:hover h3 {
  color: #ff6600;
}

/* --- Fade-in for whole section --- */
#services {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================
    HEADER
========================== */
.new-header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 12px 0;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu a {
  margin-left: 26px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: #2b59ff;
  text-shadow: 0 2px 10px rgba(43,89,255,0.3);
}

.header-btn {
  background: #2b59ff;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 10px;
  margin-left: 30px;
  transition: 0.3s ease;
}

.header-btn:hover {
  background: #1d3bcc;
}

.logo img {
  width: 55px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
}

.brand-title {
  font-size: 20px;
  font-weight: bold;
}

.brand-sub {
  font-size: 13px;
  color: #666;
}

/* Desktop Navbar */
.desktop-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.menu-btn {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  background: #fff;
  top: 25px;
  left: 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  padding: 10px;
  border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* ==========================
    MOBILE SLIDE MENU
========================== */
#sideMenu {
  width: 250px;
  background: #fff;
  position: fixed;
  right: -280px;
  top: 0;
  height: 100%;
  padding: 30px 20px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.1);
  transition: 0.4s;
  z-index: 9999;
}

#sideMenu a {
  display: block;
  padding: 12px 0;
  color: #222;
  text-decoration: none;
  font-size: 18px;
}

.close-btn {
  font-size: 28px;
  font-weight: bold;
  float: right;
  cursor: pointer;
}

.side-dropdown p {
  font-size: 18px;
  cursor: pointer;
}

.side-dropdown-menu {
  display: none;
  padding-left: 10px;
}

.side-dropdown:hover .side-dropdown-menu {
  display: block;
}

/* ==========================
    HERO SECTION
========================== */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  padding: 40px 0;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta {
  background: #0077ff;
  padding: 10px 16px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
}

/* ==========================
    SERVICES GRID
========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service {
  background: #fafafa;
  padding: 10px;
  border-radius: 5px;
}

/* ==========================
    GALLERY SLIDER
========================== */
.gallery-slider {
  overflow: hidden;
  margin: 40px 0;
}

.gallery-track {
  display: flex;
  gap: 15px;
  animation: scroll 20s linear infinite;
}

.gallery-track img {
  width: 250px;
  border-radius: 10px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================
    FOOTER
========================== */
footer {
  margin-top: 60px;
  background: #a7ece1;
  padding: 50px 0 20px;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.6;
}
/* ==========================
    RESPONSIVE BREAKPOINTS
========================== */

@media(max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  aside {
    order: -1;
  }
}

@media(max-width: 768px) {

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 500px) {
  .brand-title {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .gallery-track img {
    width: 180px;
  }
}
