body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f9fbfc;
    color: #0f172a;
}

.container {
    width: 100%;
    max-width: 1200px;  /* SAME AS ABOUT PAGE */
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(to bottom, #90adff, transparent);
}

.hero h1 {
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

.hero h1 span {
    color: #00a8b8;
}

.hero p {
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 15px;
    color: #475569;
}

/* SERVICES GRID */
.services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.icon {
    width: 55px;
    height: 55px;
    background: #e6f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 12px;
}

.service-card h3 {
    margin: 0 0 8px;
}

.service-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
}

.service-card ul {
    padding-left: 18px;
    color: #475569;
    font-size: 13px;
}

/* PROCESS SECTION */
.process-section {
    padding: 100px 0;
    text-align: center;
    
}

.process-section h2 span {
    color: #00b6c6;
}

.process-grid {
    margin-top: 40px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.process-card {
    background: white;
    border-radius: 14px;
    padding: 28px;
    text-align: left;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
}

.process-card h4 {
    font-size: 26px;
    color: #00b6c6;
    margin: 0 0 8px;
}

/* QUOTE */
.quote-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, #00b6c6, #00d4ff);
    color: white;
}

.quote-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary,
.btn-outline {
    padding: 10px 22px;
    background: white;
    color: #00b6c6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    
    position: sticky;
    top: 0;
    z-index: 10;

    
}

.logo {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    background: #02c7c7;
    padding: 6px 10px;
    border-radius: 50%;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 33px;
    
}

.btn-small {
    padding: 7px 15px;
    background: #02c7c7;
    color: #fff;
    border-radius: 5px;
}

footer {
    background: #0a2b33;
    color: white;
    padding: 60px;
    margin-top: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 6px 0;
}

header{
  width:100%;
  padding:18px 45px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  border-bottom:1px solid #eee;
}

.logo{
  font-size:22px;
  font-weight:700;
}
.logo span{ color:#ff6a00; }

nav a{
  margin:0 7px;
  color:#555;
  text-decoration:none;
  font-weight:500;
}
nav a.active{ color:#2f6be0; }

.header-right a {
  padding: 8px 12px;
  border-radius: 6px;
  margin-left: 10px;
  font-size: 14px;
  text-decoration: none !important;
  color: #333;
  border: 1px solid #ccc;
  transition: 0.3s ease;
}

.header-right a:hover {
  background: #f7f7f7;
}

/* WhatsApp Button */
.header-right .whatsapp {
  color: white;
  background: #25D366 !important;
  border: none !important;
}

.header-right .whatsapp:hover {
  opacity: 0.85;
}

/* Get Free Audit — Gradient button (Same as homepage) */
.header-right .cta {
  color: white !important;
  border: none !important;
  background: linear-gradient(to right, #557bff, #9c4bff) !important;
}

.header-right .cta:hover {
  opacity: 0.9;
}


/* ================================
   RESPONSIVE FIX — SERVICES PAGE
   (NO HTML CHANGE)
================================ */

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* ---------- HERO ---------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem !important;
    text-align: center;
    margin-top: 0 !important;
  }

  .hero p {
    font-size: 1rem !important;
    text-align: center;
    margin-bottom: 0 !important;
    padding: 0 1rem;
  }
}

/* ---------- SERVICES GRID ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PROCESS GRID ---------- */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================
   GLOBAL HARD RESPONSIVE OVERRIDE
   (HTML NOT TOUCHED)
===================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ================= NAVBAR FIX ================= */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  flex-wrap: wrap;
}

/* FORCE REMOVE INLINE MARGINS */
.logo1,
nav,
.header-right {
  margin-left: 3 !important;
  margin-right: 2 !important;
  margin-bottom: 4;
}


/* Navbar list */
.navbar {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  header {
    justify-content: center;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-right {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    gap: 0.8rem;
  }

  .header-right {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
}

/* ================= FOOTER FIX ================= */

footer {
  width: 100%;
  padding: 2rem 1rem;
  overflow-x: hidden;
}

/* Footer grid center */
.footer-grid {
  margin: 0 auto !important;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* REMOVE INLINE FOOTER MARGINS */
footer p,
footer b {
  margin-left: 0 !important;
  margin-top: 0 !important;
  
}

/* Tablet footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
}

/* Mobile footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  footer p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  hr {
    margin: 1.5rem 0;
  }
}


/* ===== HAMBURGER DEFAULT HIDE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  margin-left: -23rem;
  
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  border-radius: 3px;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

  header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
  }

  /* LOGO RIGHT */
  .logo {
    margin-right: 22rem;
    margin-left: -11rem;
  }

  /* NAV HIDE */
  .main-nav {
    display: none !important;
    position: absolute;
    top: 90px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .main-nav.show {
    display: block !important;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* HAMBURGER SHOW */
  .hamburger {
    display: flex;
    margin-bottom: 3rem;
    
    
  }

  /* HEADER RIGHT HIDE */
  .header-right {
    display: none;
  }
}


/* ===== NAVBAR LINK HOVER EFFECT (NO SIZE CHANGE) ===== */

.navbar li a,
.navbar a,
.header-right a {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Text color on hover */
.navbar li a:hover,
.navbar a:hover {
  color: rgb(0, 184, 197);
}

/* Underline animation */
.navbar li a::after,
.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: rgb(0, 184, 197);
  transition: width 0.3s ease;
}

/* Animate underline */
.navbar li a:hover::after,
.navbar a:hover::after {
  width: 100%;
}

/* Active page underline */
.navbar li a.active::after,
.navbar a.active::after {
  width: 100%;
}

/* ===== Header Right Buttons ===== */

.header-right a {
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Login hover */
.header-right a:hover {
  color: rgb(0, 184, 197);
}

/* Get Started button hover (NO size jump) */
.header-right a.yeah:hover {
  background-color: rgb(0, 150, 160);
  color: #fff;
}






/* SERVICES DROPDOWN (VERTICAL + SPACED) */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 155%;
  left: 0;

  background: #ffffff;
  min-width: 270px;   /* thodi width zyada */

  display: flex;
  flex-direction: column;

  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.22);

  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
  transition: all 0.35s ease;

  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  padding: 20px 28px;     /* 👈 yahin se “lambai” aati hai */
  font-size: 1.18rem;    /* 👈 text thoda bada */
  font-weight: 500;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: rgb(0, 184, 197);
  color: #fff;
}

/* Hover slide-down */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
