:root{
  --orange: #ff7a00;
  --orange-2: #ff9a44;
  --deep: #222;
  --muted: #f5f6f7;
  --card: #fff;
  --container: 1200px;
}

*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; color:var(--deep); background:var(--muted); -webkit-font-smoothing:antialiased}
a{color:inherit; text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 18px}

/* Header */
/* =========================
   HEADER STYLES
========================= */

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.logo-text h1 {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
  font-weight: 700;
}

.logo-text span {
  font-size: 12px;
  color: #777;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover {
  color: var(--orange);
}

/* Get Quote Button */
.quote-btn {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #e85c00;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Hero */
.hero{display:grid; grid-template-columns:1fr 420px; gap:36px; align-items:center; padding:56px 0}
.hero-visual{background:url('../img/mumbai-hero.png') center/cover no-repeat; min-height:360px; border-radius:5px; position:relative; overflow:hidden; box-shadow:0 30px 50px rgba(16,24,40,0.06)}
.hero-copy h1{font-size:34px; margin:0 0 12px}
.hero-copy p{color:#444; margin:0 0 18px}
.badge{display:inline-block; background:#fff; padding:8px 12px; border-radius:999px; font-weight:700; box-shadow:0 6px 18px rgba(16,24,40,0.06); margin-right:8px}

/* Quote card */
.quote-card{background:var(--card); padding:18px; border-radius:12px; box-shadow:0 10px 30px rgba(16,24,40,0.06); border:1px solid #f0f0f0}
.form-row{display:flex; gap:8px; margin-bottom:10px}
.form-row input, .form-row select{flex:1; padding:10px; border-radius:8px; border:1px solid #e7e7e7}

/* Services grid */
.section{padding:48px 0}
.section-title{font-size:22px; font-weight:700; margin:0 0 6px}
.service-card {
  background: #ffffe6; /* light yellow like in your image */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 40%;
  max-width: 350px; /* adjust as needed */
  margin: 20px auto;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 30%;
  height: 50px; /* adjust height */
  object-fit: cover;
  display: block;
}
.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 10px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.service-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Locations carousel area */
.locations-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:18px}
.location-card{background:var(--card); border-radius:12px; overflow:hidden; border:1px solid #f0f0f0; box-shadow:0 6px 18px rgba(16,24,40,0.04)}
.location-thumb{height:150px; background-size:cover; background-position:center}
.location-body{padding:12px}
.location-body h4{margin:0; font-size:16px}
.location-body p{margin:6px 0 0; color:#666; font-size:14px}

.about .row{
    display:flex;
    align-items:center;
    gap:2rem;
    flex-wrap:wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
}

.about .row .video-container{
    flex:1 1 40rem;
    position: relative;
}

.about .row .video-container video{
    width:100%;
    border:1.5rem solid #fff;
    border-radius: .5rem;
    box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    height: 80%;
    object-fit:cover;
}

.about .row .video-container h3{
    position: absolute;
    top:50%;transform: translateY(-50%);
    font-size: 3rem;
    background:#fff;
    width:100%;
    padding: 1rem 2rem;
    text-align: center;
    mix-blend-mode: screen;
}

.about .row .content{
    flex:1 1 40rem;
}
.about  .row .content h3{
    font-size:3rem;
    color:black;
}

.about .row .content p{
    font-size: 1.5rem;
    color:black;
    padding:.5rem 0;
    padding-top: 1rem;
    line-height: 1.5rem;
}


/* Testimonials, contact, footer */
.testimonials{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.testimonial{background:var(--card); padding:18px; border-radius:12px; border:1px solid #f3f3f3}
.contact-grid{display:grid; grid-template-columns:1fr 360px; gap:18px}

/* Footer */
/* =========================
   FOOTER STYLES
========================= */

.footer {
  background: #1a1a1a;
  color: #ccc;
  font-size: 15px;
  margin-top: 60px;
}

.footer-top {
  padding: 60px 20px 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3, .footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
}

.footer-col p {
  color: #aaa;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.footer-social a:hover img {
  filter: brightness(1) saturate(2);
}

/* Bottom Bar */
.footer-bottom {
  background: #111;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #333;
}


/* =========================
   CONTACT PAGE STYLES
========================= */

/* Contact Section Layout */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff8f0;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #e85c00;
}

/* Contact Card (Right Side Info Box) */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-card h4 {
  color: var(--orange);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contact-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ==============================
   LOCATION PAGE STYLING
   ============================== */

.location-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.location-banner {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
}

.location-banner h1 {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.location-details {
  background: #fff7f0;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.location-details h2 {
  color: #ff6f00;
  margin-bottom: 15px;
}

.location-details p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.highlight-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.highlight-box:hover {
  transform: translateY(-5px);
}

.highlight-box img {
  width: 60px;
  margin-bottom: 10px;
}

.highlight-box h4 {
  color: #ff6f00;
  margin-bottom: 8px;
  font-size: 18px;
}

.highlight-box p {
  color: #444;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .location-banner h1 {
    font-size: 26px;
    left: 20px;
    bottom: 20px;
  }
  .location-details {
    padding: 25px;
  }
}
/* =======================================
   SERVICES PAGE STYLING
   ======================================= */

.services-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

/* Each Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.service-card img {
  width: 100%;
  height: 200px; /* uniform height */
  object-fit: cover; /* keeps image ratio clean */
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Text Section */
.service-info {
  padding: 20px 15px;
}

.service-info h3 {
  color: #ff6f00;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-info p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Optional Button */
.service-info .btn {
  display: inline-block;
  margin-top: 10px;
  background: #ff6f00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.service-info .btn:hover {
  background: #e85d00;
}

/* Responsive */
@media (max-width: 900px) {
  .services-container {
    padding: 0 5%;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .service-card img {
    height: 180px;
  }
}
/* ---------- Popup ---------- */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
  display:flex;
  justify-content:center;
  align-items:center;
  visibility:hidden;
  opacity:0;
  transition: all 0.3s;
  z-index: 1000;
}

.popup.active {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  background:white;
  padding: 25px 30px;
  border-radius:12px;
  text-align:center;
  box-shadow: var(--shadow);
  max-width: 350px;
}

.popup-box h3 {
  color: var(--orange);
  margin-bottom:10px;
}

.popup-box button {
  background: var(--orange);
  color:white;
  border:none;
  padding:10px 20px;
  border-radius:6px;
  cursor:pointer;
  margin-top:15px;
}

/* ---------- WhatsApp Floating ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 14px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}/* =========================================
   RESPONSIVE FIXES — ADD THESE ONLY
========================================= */

/* Tablets */
@media (max-width: 992px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobiles */
@media (max-width: 768px) {

  /* ===== HEADER ===== */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 70px;
    background: #fff;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 10px #00000020;
    border-radius: 12px;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block !important;
    font-size: 28px;
    cursor: pointer;
  }

  /* ===== HERO ===== */
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .quote-card {
    width: 100%;
  }

  /* ===== SERVICES ===== */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .service-card img.icon {
    margin: 0 auto;
  }

  /* ===== LOCATIONS ===== */
  .locations-grid {
    grid-template-columns: 1fr !important;
  }

  /* ===== FOOTER ===== */
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: left;
    gap: 25px;
  }
}

/* Very small phones */
@media (max-width: 480px) {

  .logo-text h1 {
    font-size: 18px;
  }

  .logo img {
    width: 45px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .service-card {
    padding: 15px;
  }

  .location-thumb {
    height: 120px;
  }
}
/* =======================================
   MOBILE RESPONSIVE FIXES (IMPORTANT)
======================================= */

/* GENERAL CONTAINER FIX */
@media (max-width: 768px) {
  .container {
    padding: 0 14px;
    max-width: 100%;
  }
}

/* HERO SECTION FIX */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

  .quote-card {
    margin-top: 10px;
  }
}

/* SERVICE GRID FIX */
@media (max-width: 768px) {
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* LOCATION GRID FIX */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* HEADER FIX – LOGO + NAV */
@media (max-width: 768px) {
  .header-inner {
    padding: 12px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-text h1 {
    font-size: 1rem;
  }
}

/* ABOUT PAGE FIX */
@media (max-width: 768px) {
  .about .row {
    flex-direction: column;
  }
}

/* CONTACT PAGE FIX */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  form,
  .contact-card {
    padding: 20px;
  }
}

/* FOOTER FIX */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
/* Hamburger Icon */
.hamburger {
  display: none;
  width: 30px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  margin: 6px 0;
  transition: 0.4s;
}

/* Mobile Menu Hidden Default */
#mobileMenu {
  display: none;
  background: white;
  text-align: center;
  padding: 20px 0;
}

#mobileMenu ul {
  list-style: none;
  padding: 0;
}

#mobileMenu ul li {
  padding: 10px 0;
}

#mobileMenu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

/* Show Hamburger on Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    display: none;
  }
}
/* ---------- Header layout ---------- */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  flex-wrap: nowrap;    /* Important: do not wrap */
}

/* Logo area */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;        /* allow shrinking */
  max-width: 70%;
  overflow: hidden;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.logo-text {
  min-width: 0;
}

.logo-text h1 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Desktop nav visible by default */
.nav-desktop { display: block; }
.nav-links { display:flex; gap:20px; align-items:center; margin:0; padding:0; list-style:none; white-space:nowrap; }

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  width: 38px;
  height: 28px;
  padding: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  align-self: center;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #222;
  border-radius: 3px;
  margin: 5px 0;
  transition: transform .28s ease, opacity .2s ease;
}

/* Mobile menu (hidden) */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1200;
}
.mobile-menu ul { margin:0; padding:10px 0; list-style:none; }
.mobile-menu li { padding: 10px 18px; border-bottom: 1px solid #f1f1f1; }
.mobile-menu a { color:#222; text-decoration:none; font-size:15px; }

/* ---------- Responsive rules ---------- */
@media (max-width: 900px) {
  /* hide desktop nav, show hamburger */
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  /* restrict logo width so toggler remains visible */
  .logo { max-width: calc(100% - 110px); } /* leaves space for hamburger */
}

/* animate hamburger to X when open */
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* show mobile menu when open */
.mobile-menu.open { display:block; }







