* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #0a2a66;
  color: #fff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

/* ================= HEADER ================= */
.main-header {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  height: 55px;
}

.logo-text h1 {
  font-size: 22px;
  color: #b22222;
}

.logo-text p {
  font-size: 13px;
  color: #555;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav-btn {
  background: #b22222;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
}

/* ================= HERO ================= */
.hero {
  height: 60vh;
  background-image: url("images/main.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: #b22222;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #b22222;
}

/* ================= BOOKING FORM ================= */
.form-container {
  max-width: 420px;
  background: #fff;
  padding: 30px;
  margin: 60px auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.form-container h3 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container input,
.form-container select,
.form-container button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-container button {
  background: #b22222;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ================= SERVICES (HOMEPAGE) ================= */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  margin: 12px 0 5px;
}

.service-card p {
  padding-bottom: 15px;
  font-size: 14px;
}

/* ================= ABOUT ================= */
.about-us {
  padding: 70px 20px;
  background: #f9f9f9;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-video iframe {
  width: 100%;
  height: 360px;
  border-radius: 10px;
}

/* ================= WHY US ================= */
.why-us {
  background: #0a2a66;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
/* HERO POP-UP INITIAL STATE */
.hero-title,
.hero-subtitle,
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
}

/* HERO POP-UP ANIMATION TRIGGER */
.hero-show .hero-title {
  animation: heroPop 0.8s ease forwards;
}

.hero-show .hero-subtitle {
  animation: heroPop 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-show .hero-buttons {
  animation: heroPop 0.8s ease forwards;
  animation-delay: 0.4s;
}

/* HERO KEYFRAMES */
@keyframes heroPop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================
   SERVICES DARK SECTION
================================ */
.services-dark {
  background: #1e1e1e;
  padding: 80px 20px;
  text-align: center;
}

.services-title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER MOVE EFFECT (IMPORTANT) */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* IMAGE */
.service-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXT */
.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #b22222;
}

.service-content p {
  font-size: 14px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-title {
    font-size: 26px;
  }
}
/* ===============================
   DARK SERVICES SECTION
================================ */

.services-dark {
  background: #1c1c1c;
  padding: 80px 20px;
}

.services-title {
  color: #fff;
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE CONTAINER */
.service-img {
  height: 200px;
  overflow: hidden;
}

/* IMAGE MOVE EFFECT */
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT (THIS IS THE MAGIC) */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card:hover img {
  transform: scale(1.12);
}

/* TEXT */
.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-title {
    font-size: 26px;
  }

  .service-img {
    height: 180px;
  }
}
/* ================= SERVICE PAGE ================= */

.service-hero {
  position: relative;
  height: 45vh;
  overflow: hidden;
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.service-hero-overlay h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.service-hero-overlay p {
  font-size: 18px;
}

.service-hero-overlay span {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.8;
}

/* CONTENT AREA */
.service-page {
  padding: 70px 20px;
  background: #fff;
}

.service-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDEBAR */
.service-sidebar {
  background: #b07f3a;
  padding: 25px;
  color: #fff;
}

.service-sidebar h3 {
  margin-bottom: 20px;
}

.service-sidebar ul {
  list-style: none;
  padding: 0;
}

.service-sidebar li {
  margin-bottom: 12px;
}

.service-sidebar a {
  color: #fff;
  text-decoration: none;
}

.service-sidebar .active {
  font-weight: bold;
  text-decoration: underline;
}

/* RIGHT CONTENT */
.service-content img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #0a2a66;
}

.service-content p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-points {
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  background: #b22222;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    text-align: center;
  }

  .service-hero-overlay h1 {
    font-size: 28px;
  }
}
/* ================= FOOTER ================= */

.main-footer {
  background: #2b2b2b;
  color: #fff;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  right: 12px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.call-btn,
.whatsapp-btn {
  background: #b07f3a;
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.whatsapp-btn {
  background: #0a2a66;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .floating-buttons {
    right: 10px;
    bottom: 90px;
  }
}
/* ===== SERVICE PAGE LAYOUT ===== */
.service-detail {
  padding: 60px 20px;
}

.service-detail-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT TEXT */
.service-text {
  flex: 1;
}

/* RIGHT IMAGE */
.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .service-detail-wrapper {
    flex-direction: column;
  }
}
/* ===== SERVICE HERO ===== */

/* ===== SERVICE HERO (FIXED SIZE) ===== */
/* ===== SERVICE HERO CENTERED (NO GREY BOX) ===== */
.service-hero {
  position: relative;
  min-height: 420px;
  width: 100%;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */

  text-align: center;
  color: #fff;
}



.service-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.service-hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-call-btn {
  display: inline-block;
  background: #c62828;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.service-hero-content {
  max-width: 900px;
  padding: 20px;
}

.service-call-btn {
  margin-top: 20px;
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
.service-hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.service-hero p {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.95;
}
.contact-page {
  padding: 60px 10%;
  background: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-details h2 {
  margin-bottom: 15px;
  color: #222;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-map iframe {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* ================= HEADER & NAVBAR ================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box img {
  height: 50px;
}

.logo-text h1 {
  font-size: 22px;
  margin: 0;
  color: #c62828;
}

.logo-text p {
  font-size: 13px;
  margin: 0;
  color: #555;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 15px;
}

.nav a:hover {
  color: #c62828;
}

.nav a.active {
  color: #c62828;
  border-bottom: 2px solid #c62828;
  padding-bottom: 4px;
}
/* ================= GALLERY PAGE ================= */

.gallery-section {
  padding: 60px 40px;
  background: #f4f6f8;
  text-align: center;
}

.gallery-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

/* GRID LAYOUT */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE SIZE CONTROL */
.gallery-grid img {
  width: 100%;
  height: 220px;              /* FIXED HEIGHT */
  object-fit: cover;          /* CROPS PROPERLY */
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .gallery-grid img {
    height: 200px;
  }
}
/* ================= GALLERY HERO ================= */

.gallery-hero {
  position: relative;
  height: 380px;
  background: url("images/gallery-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark transparent overlay */
.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Text container */
.gallery-hero .hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.gallery-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.gallery-hero p {
  font-size: 20px;
  margin-bottom: 10px;
}

.gallery-hero span {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Mobile fix */
@media (max-width: 768px) {
  .gallery-hero {
    height: 260px;
  }

  .gallery-hero h1 {
    font-size: 32px;
  }
}
/* FLOATING CALL & WHATSAPP BUTTONS */
.floating-buttons {
  /* Container no longer controls position */
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.floating-buttons a {
  text-decoration: none;
  color: #fff;
  font-size: 28px; /* Larger icon */
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  animation: floatUpDown 2.5s ease-in-out infinite;
  position: fixed;
  bottom: 30px;
  z-index: 9999;
}

/* CALL BUTTON (LEFT) */
.call-float {
  background: #c62828;
  left: 20px;
}

/* WHATSAPP BUTTON (RIGHT) */
.whatsapp-float {
  background: #25D366;
  right: 20px;
}

/* FLOATING ANIMATION */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .floating-buttons a {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
  }
  
  .call-float {
    left: 15px;
  }
  
  .whatsapp-float {
    right: 15px;
  }
}
/* ===== MENU BAR FIX ===== */
.main-nav {
  background: #b58b3a; /* keep your color */
  display: flex;
  align-items: center;          /* vertical center */
  justify-content: center;
  height: 60px;                 /* fixed height like reference */
  padding: 0 20px;
  gap: 0; 
  position: relative;
  z-index: 1000;
}                      /* no uneven gaps */


/* Menu links */
.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0 20px;              /* equal spacing */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: background 0.3s;
}

/* Hover */
.main-nav a:hover {
  background: #0b2c5d;
}

/* Active menu (Home) */
.main-nav .active {
  background: #0b2c5d;
}

/* Quote button on right */
.main-nav .quote-btn {
  margin-left: auto;
  background: #0b2c5d;
  height: 60px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  font-weight: bold;
}
/* ===== HEADER ===== */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO AREA */
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
  width: 90px;
}

.brand-text h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.brand-text p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* CONTACT INFO */
.header-info {
  display: flex;
  gap: 30px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

/* ===== MENU BAR ===== */
.main-nav {
  background: #b8903f; /* gold like reference */
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  padding: 18px 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
  background: #0b2c5d;
}

/* FREE QUOTE BUTTON */
.quote-btn {
  margin-left: auto;
  background: #0b2c5d;
  padding: 18px 25px;
}
@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .header-info {
    flex-direction: column;
    gap: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .quote-btn {
    width: 100%;
    text-align: center;
  }
}
/* ===== ABOUT PAGE ===== */
.page-hero {
  height: 300px;
  background: url("images/gallery-hero.jpg") center/cover no-repeat;
  position: relative;
}

.page-hero-overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-page {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about-container h2,
.about-container h3 {
  color: #0b2c5d;
}

.about-container ul {
  margin: 20px 0;
  padding-left: 20px;
}

.about-container ul li {
  margin-bottom: 10px;
}
/* ===================== NAVBAR STYLING ===================== */

.nav {
  background-color: #b89245; /* gold */
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 60px;
  gap: 25px;
}

/* Menu links */
.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 14px;
  transition: all 0.3s ease;
}

/* Hover effect */
.nav a:hover {
  background-color: #0b2c5d; /* dark blue */
  border-radius: 4px;
}

/* Active page */
.nav a.active {
  background-color: #0b2c5d;
  border-radius: 4px;
}

/* Push GET FREE QUOTE to right */
.nav .quote-btn {
  margin-left: auto;
  background-color: #0b2c5d;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: bold;
}

/* Hover for quote button */
.nav .quote-btn:hover {
  background-color: #091f40;
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
    gap: 10px;
  }

  .nav a {
    padding: 10px;
    font-size: 14px;
  }

  .nav .quote-btn {
    width: 100%;
    text-align: center;
  }
}
/* SERVICES SECTION */
.services-section {
  padding: 60px 20px;
  background: #f5f6f8;
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
}

/* SERVICES BOX */
.services-list {
  max-width: 350px;
  margin: auto;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 6px;
  overflow: hidden;
}

/* SERVICE LINKS */
.services-list a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s;
}

.services-list a:hover {
  background: #b89245;
}

/* REMOVE LAST BORDER */
.services-list a:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 26px;
  }

  .services-list {
    width: 100%;
  }

  .services-list a {
    font-size: 15px;
    padding: 12px;
  }
}
/* ===== SERVICES DROPDOWN (REFERENCE STYLE) ===== */

.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.nav-dropdown a {
  color: #fff;
  padding: 12px 15px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.nav-dropdown a:hover {
  background: #b89246; /* same gold as menu */
}

/* SHOW ONLY ON HOVER */
.dropdown:hover .nav-dropdown {
  display: block;
}
/* ===== SERVICES DROPDOWN FIX ===== */

.main-nav {
  position: relative;
  z-index: 1000;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  min-width: 230px;
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.nav-dropdown a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-dropdown a:hover {
  background: #b8923b;
}

/* SHOW ONLY ON HOVER */
.dropdown:hover .nav-dropdown {
  display: block;
}

/* Prevent layout shifting */
.dropdown {
  height: 100%;
}
.about-video-box {
  position: relative;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.about-video-box img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 50px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  cursor: pointer;
  transition: 0.3s;
}

.about-video-box:hover .play-btn {
  background: red;
  transform: translate(-50%, -50%) scale(1.1);
}
/* ===============================
   DESKTOP vs MOBILE HEADER FIX
================================ */

/* =========================
   DEFAULT: DESKTOP VIEW
========================= */

.mobile-header {
  display: none;
}

.main-header {
  display: block;
}


/* =========================
  /* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {

  /* Hide desktop header & nav */
  .main-header,
  .main-nav {
    display: none !important;
  }

  /* Mobile header */
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  /* Mobile menu (hidden by default) */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #0b2d52;
    width: 100%;
    position: fixed;
    top: 56px; /* below header */
    left: 0;
    z-index: 999;
  }

  .mobile-nav a {
    color: #fff;
    padding: 14px 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 16px;
  }

  /* Show ONLY when toggled */
  .mobile-nav.show {
    display: flex;
  }
}

  /* FIX MOBILE LOGO SIZE */



/* ===============================
   MOBILE HERO BUTTON FIX ONLY
   =============================== */

/* =========================
   MOBILE FLOATING BUTTONS – FINAL FIX
   ========================= */
@media (max-width: 768px) {

  .floating-buttons {
    right: 12px;
    bottom: 90px;
    gap: 10px;
  }

  .floating-buttons a {
    width: auto;              /* prevents full width */
    min-width: 90px;          /* medium size */
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  /* Remove phone numbers */
  .floating-buttons a {
    text-indent: -9999px;
    position: relative;
  }

  /* Call label */
  .floating-buttons a[href^="tel"]::after {
    content: "📞 Call";
    text-indent: 0;
    position: absolute;
  }

  /* WhatsApp label */
  .floating-buttons a[href*="wa.me"]::after {
    content: "💬 WhatsApp";
    text-indent: 0;
    position: absolute;
  }
}
/* ===============================
   SERVICE HERO COMMON STYLE
================================ */
.service-hero {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

/* Overlay */
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

/* ===============================
   INDIVIDUAL HERO IMAGES
================================ */
.local-hero {
  background-image: url("../images/local-shifting.jpg");
}

.india-hero {
  background-image: url("../images/all-india-shifting.jpg");
}

.packing-hero {
  background-image: url("../images/packing-unpacking.jpg");
}

.office-hero {
  background-image: url("../images/office-shifting.jpg");
}

.house-hero {
  background-image: url("../images/house-shifting.jpg");
}

.loading-hero {
  background-image: url("../images/loading-unloading.jpg");
}

.vehicle-hero {
  background-image: url("../images/vehicle-shifting.jpg");
}
.relocation-hero {
  background-image: url("../images/relocation.jpg");
}
@media (max-width: 768px) {
  .service-layout {
    display: flex;
    flex-direction: column;
  }

  .service-sidebar {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* =========================
   FORCE HEADER CONTROL
========================= */

/* Desktop only */
@media (min-width: 769px) {
  .mobile-header,
  .mobile-nav {
    display: none !important;
  }
}

/* Mobile only */

  
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding-top: 90px; /* space for fixed header */
    padding-bottom: 40px;
    background-position: center;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }
}
/* =========================
   MOBILE FLOATING BUTTON FIX
========================= */

@media (max-width: 768px) {
  .call-now,
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 999;
  }

  body {
    padding-bottom: 100px;
  }
}
/* =========================
   MOBILE MENU FIX
   (DO NOT AFFECT DESKTOP)
========================= */


/* Desktop only */
@media (min-width: 769px) {

  .main-nav {
    display: flex;
  }

  .mobile-header,
  .mobile-nav {
    display: none;
  }
}
@media (max-width: 768px) {

  /* FIX LOGO SIZE (MOBILE ONLY) */
  .mobile-brand img {
    height: 40px;      /* controls logo height */
    width: auto;       /* keeps proportions */
    max-width: 40px;   /* prevents stretching */
    object-fit: contain;
  }

  /* Keep header height stable */
  .mobile-header {
    height: 60px;
  }

}
/* =========================
   MOBILE MENU – FINAL FIX
   (ONLY CHANGE)
========================= */

/* Desktop only */
@media (min-width: 769px) {
  .mobile-header,
  .mobile-nav {
    display: none !important;
  }
}

/* Mobile only */
@media (max-width: 768px) {

  /* Hide desktop header/nav */
  .main-header,
  .main-nav {
    display: none !important;
  }

  /* Show mobile header */
  .mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 8px 12px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
  }

  /* Logo size FIX */
  .mobile-brand img {
    height: 40px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
  }

  /* Mobile menu HIDDEN by default */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #0b2d52;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .mobile-nav a {
    color: #fff;
    padding: 14px 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 16px;
  }

  /* SHOW ONLY WHEN ☰ CLICKED */
  .mobile-nav.show {
    display: flex;
  }
}
/* =========================
   MOBILE HERO BUTTON SIZE FIX
   (ONLY THIS CHANGE)
========================= */
@media (max-width: 768px) {

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;      /* center buttons */
    gap: 12px;
  }

  .hero-buttons .btn {
    width: auto;              /* STOP full width */
    min-width: 160px;         /* nice medium size */
    padding: 10px 22px;
    text-align: center;
    border-radius: 30px;      /* pill shape */
  }
}
/* =========================
   MOBILE HEADER – HR FINAL STYLE
========================= */
@media (max-width: 768px) {

  /* Hide desktop header */
  .main-header,
  .main-nav {
    display: none !important;
  }

  /* MAIN MOBILE HEADER */
  .mobile-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
  }

  /* TOP WHITE BAR */
  .mobile-top {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-brand img {
    height: 40px;      /* 🔑 correct logo size */
    width: auto;
  }

  .mobile-brand span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
  }

  /* GOLD MENU BAR */
  .mobile-menu-bar {
    background: #b58b3a;   /* gold */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-icon {
    font-size: 26px;
    color: #fff;
    cursor: pointer;
  }

  /* MOBILE MENU DROPDOWN */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #0b2d52;
    width: 100%;
    position: fixed;
    top: 98px; /* white + gold bars */
    left: 0;
    z-index: 999;
  }

  .mobile-nav a {
    color: #fff;
    padding: 14px 18px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 16px;
  }

  .mobile-nav.show {
    display: flex;
  }

  /* Push hero below fixed header */
  .hero {
    padding-top: 110px;
  }
}
/* =========================
   MOBILE HEADER LOGO + TEXT FIX
   (ONLY MOBILE)
========================= */
@media (max-width: 768px) {

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-brand img {
    height: 48px;      /* 🔥 increased from 40px */
    width: auto;
    object-fit: contain;
  }

  .mobile-brand span {
    font-size: 16px;   /* 🔥 increased text size */
    font-weight: 700;
    line-height: 1.2;
    color: #111;
  }

  .mobile-header {
    height: 70px;      /* keeps header balanced */
    padding: 10px 14px;
  }
}
/* ================================
   MOBILE MENU BAR – LIKE REFERENCE
   ================================ */
@media (max-width: 768px) {

  /* Full-width gold bar */
  .mobile-menu-bar {
    width: 100%;
    background-color: #b08a3c;   /* same brown/gold */
    padding: 14px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Hamburger box */
  .mobile-menu-icon {
    width: 56px;                /* increased width */
    height: 44px;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
  }

}
/* ==================================
   MOBILE FIXED CALL & WHATSAPP BAR
   ================================== */
@media (max-width: 768px) {

  .floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;   /* 🔴 THIS IS IMPORTANT */
    z-index: 9999;
  }

  .call-float,
  .whatsapp-float {
    flex: 1;               /* 50% each */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
  }

  .call-float {
    background-color: #b08a3c; /* gold */
  }

  .whatsapp-float {
    background-color: #25d366; /* green */
  }
}
/* FIX: Mobile header logo size */
@media (max-width: 768px) {
  .mobile-logo img {
    height: 40px;        /* controls logo height */
    width: auto;         /* keeps aspect ratio */
    max-width: 100%;
  }

  .mobile-logo span {
    font-size: 14px;     /* optional: keeps text neat */
    line-height: 1.2;
  }
}
/* FORCE FIX: hamburger size */
@media (max-width: 768px) {

  header.mobile-header .hamburger {
    font-size: 20px !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  header.mobile-header .mobile-menu-bar {
    padding: 6px 12px !important;
    min-height: 44px !important;
  }

}
/* ================= MOBILE HEADER ================= */
@media (max-width: 768px) {

  .mobile-header {
    display: block;
  }

  .mobile-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #fff;
  }

  .mobile-logo-img {
    height: 45px;
    width: auto;
  }

  .mobile-text strong {
    font-size: 14px;
    display: block;
  }

  .mobile-text small {
    font-size: 11px;
    color: #555;
  }

  .mobile-menu-bar {
    background: #b8913f; /* gold */
    color: #fff;
    text-align: center;
    font-size: 24px;
    padding: 12px 0;
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    background: #000;
  }

  .mobile-nav a,
  .mobile-nav summary {
    display: block;
    padding: 14px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
  }

  .mobile-nav details a {
    padding-left: 25px;
    font-size: 14px;
  }

}
/* ===============================
   FINAL MOBILE HEADER FIX
================================ */
@media (max-width: 768px) {

  /* Hide desktop header */
  .main-header {
    display: none !important;
  }

  /* Mobile header base */
  .mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 12px;
    height: 64px;            /* 🔑 fixed height */
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }

  /* Logo + text row */
  .mobile-top {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-logo-img {
    height: 42px;
    width: auto;
  }

  .mobile-text strong {
    font-size: 14px;
    display: block;
    line-height: 1.2;
  }

  .mobile-text small {
    font-size: 11px;
    color: #555;
    line-height: 1.2;
  }

  /* REMOVE gold bar behavior */
  .mobile-menu-bar {
    background: none !important;
    color: #b8913f;
    font-size: 26px;
    height: auto;
    line-height: normal;
    padding: 0;
    margin: 0;
  }

  /* Mobile menu panel */
  .mobile-nav {
    display: none;
    background: #000;
  }

  .mobile-nav.show {
    display: block;
  }

  .mobile-nav a,
  .mobile-nav summary {
    padding: 14px;
    color: #fff;
    display: block;
    border-bottom: 1px solid #333;
  }
}
/* ===============================
   MOBILE LOGO + NAME FIX
================================ */
@media (max-width: 768px) {

  .mobile-top {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 85%;
  }

  .mobile-logo-img {
    height: 46px;        /* 🔑 slightly bigger logo */
    width: auto;
  }

  .mobile-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
  }

  .mobile-text strong {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;   /* 🔑 prevents ugly wrapping */
  }

  .mobile-text small {
    font-size: 11px;
    color: #666;
  }

}
/* =====================================
   UNIVERSAL MOBILE HEADER (ALL PAGES)
===================================== */
@media (max-width: 768px) {

  /* Hide desktop header everywhere */
  .main-header {
    display: none !important;
  }

  /* Mobile header container */
  .mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 12px;
    height: 64px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
  }

  /* Logo + text */
  .mobile-top {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 85%;
  }

  .mobile-logo-img {
    height: 46px;
    width: auto;
  }

  .mobile-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
  }

  .mobile-text strong {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
  }

  .mobile-text small {
    font-size: 11px;
    color: #666;
  }

  /* Hamburger menu icon */
  .mobile-menu-bar {
    background: none !important;
    color: #b8913f;
    font-size: 26px;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }

  /* Mobile navigation */
  .mobile-nav {
    display: none;
    background: #000;
  }

  .mobile-nav.show {
    display: block;
  }

  .mobile-nav a,
  .mobile-nav summary {
    display: block;
    padding: 14px;
    color: #fff;
    border-bottom: 1px solid #333;
    text-decoration: none;
  }

  .mobile-nav details a {
    padding-left: 26px;
    font-size: 14px;
  }
}
/* ================================
   FIX: MOBILE HEADER LOGO SIZE
   (FOR ALL PAGES INCLUDING SERVICES)
================================ */

.mobile-top img,
.mobile-logo-img {
  max-height: 40px;     /* controls height */
  width: auto;          /* keeps aspect ratio */
  object-fit: contain;
}
/* ================================
   FIX: FLOATING CALL & WHATSAPP
   ALIGNMENT ON SERVICE PAGES
================================ */

/* Container fix */
.floating-buttons {
  position: fixed;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 9999;
}

/* Individual button fix */
.floating-buttons a {
  position: relative;
  bottom: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ================================
   HERO PHONE CLICKABLE
================================ */

.hero .hero-phone {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none; /* remove underline */
}

.hero .hero-phone:hover {
  background: rgba(0, 0, 0, 0.7);
}
/* =========================================
   DESKTOP ONLY – FIX CALL & WHATSAPP BARS
   (Force override – mobile untouched)
========================================= */
@media (min-width: 769px) {

  .floating-buttons {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;

    left: auto !important;
    width: auto !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 9999 !important;
  }

  .floating-buttons a {
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;

    padding: 12px 20px !important;
    border-radius: 30px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 14px !important;
    white-space: nowrap !important;
  }
}
