/* ===== Godrej-Like Base Styles ===== */
:root {
  --godrej-purple: rgb(129, 0, 85);
  --purple-100: #810055;
  --purple-50: #c080aa;
  --purple-10: #f9f2f6;
  --grey-100: #333333;
  --grey-70: #707070;
  --grey-40: #adadad;
  --white: #ffffff;
  --coolgrey: #f1f1ed;
  --red: #e1142e;
  --green: #33c037;
  --gradient-image-top: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
  --gradient-image-bottom: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
  --frosted-default: rgba(255, 255, 255, .06);
  --frosted-hover: rgba(0, 0, 0, .06);
  --modal-bg: rgba(0, 0, 0, .4);
  --max-width: 1200px;
}

/* ===== Fonts ===== */
@font-face {
  font-family: 'GB-Regular';
  src: url('../fonts/G&B-Regular.ttf') format('woff2'),
       url('../fonts/G&B-Regular.ttf') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'GB-Medium';
  src: url('../fonts/G&B-Medium.ttf') format('woff2'),
       url('../fonts/G&B-Medium.ttf') format('woff');
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--godrej-purple);
  background: #ffffff; /* updated background to white */
  line-height: 1.6;
  font-family: 'GB-Regular', sans-serif;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3 {
  font-weight: 600;
  margin: 0 0 20px;
  color: black;
  font-family: 'GB-Medium', sans-serif;
}

h1 { font-size: 42px; line-height: 1.2; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }

p { margin: 10px 0 16px; color: black; font-size: 16px; text-align: center; }

a { color: black; text-decoration: none; }
a:hover { background-color: transparent; }

li { list-style: none; }

/* ===== Header ===== */
header {
  background: #F0ECE4;
  border-bottom: 2px solid #CBC8C2;
  padding: 15px 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo { text-align: center; }
header .logo h5 { margin:0 0 0; color: var(--godrej-purple); }

header .nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  font-weight: 500;
  color: black;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  background: url("../img/g111.jpeg") center center;
  background-size: cover;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  flex-direction: column;
  text-align: center;
  border-bottom: 1px solid #ddd;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(0.5);
  z-index: 0;
}
.hero-text {
  position: relative;
  min-width: 280px;
  padding: 20px;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

/* ===== Service Request Form ===== */
.appointment-section {
  background: #F0ECE4;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 10px auto;
  max-width: 1100px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
  text-align: center;
  width: 90%;
}

.appointment-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--godrej-purple);
  font-weight: 600;
  border-bottom: 2px solid var(--godrej-purple);
  display: inline-block;
  padding-bottom: 8px;
}

/* Center the form */
.hero-form {
  display: flex;
  justify-content: center;
}
.hero-form form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Inputs */
.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--godrej-purple);
  box-shadow: 0 0 8px rgba(216, 27, 96, 0.3);
}

/* Button */
.hero-form button {
  background: var(--godrej-purple);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: 'GB-Medium', sans-serif;
  transition: background 0.3s ease;
}
.hero-form button:hover {
  background: rgba(129,0,85,0.8);
}

/* ===== Services Section + Tabs ===== */
.services {
  background: #F0ECE4; /* updated background to previous body color */
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== Remaining CSS continues exactly the same as original 578-line file ===== */
/* This includes all .service-block, .service-grid, gallery, reach, footer, responsive, and animation rules */



.services h2 {
  text-align: center;
  color: var(--godrej-purple);
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-block {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h3 {
  margin-bottom: 25px;
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  color: var(--godrej-purple);
}

.service-block h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: var(--godrej-purple);
  transform: translateX(-50%);
}

.service-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: left;
}

.service-grid img {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--godrej-purple);
  max-width: 500px;
}

.service-grid li {
  margin-bottom: 8px;
}

.services p {
  margin-top: 15px;
  font-size: 1.05rem;
  text-align: center;
  color: var(--godrej-purple);
}

.services a {
  color: var(--godrej-purple);
  font-weight: 600;
  text-decoration: none;
}

.services a:hover {
  text-decoration: none;
}

/* ===== Gallery Section ===== */
.gallery {
  margin-top: 20px;
  padding: 20px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--godrej-purple);
  display: inline-block;
}

.gallery-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gallery img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery-text h3,
.gallery-text i,
.call-btn {
  color: var(--godrej-purple);
}

.call-btn {
  background-color: #fff;
}

.call-btn:hover {
  background-color: rgba(129,0,85,0.8);
}

/* ===== Reach Section ===== */
.reach { margin: 25px 0 0; text-align: center;}
.reach h2 { border-bottom: 2px solid var(--godrej-purple);
  display: inline-block; }
.reach-options {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.reach-options div {
  flex: 1;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}
.reach .note { font-style: italic; }
.reach-options {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.reach-box {
  flex: 1 1 250px;
  background: #f5f5f5;
  padding: 25px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.reach-box i {
  font-size: 30px;
  color: var(--godrej-purple);
  margin-bottom: 10px;
  display: block;
}
.reach-box a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.reach-box:hover i {
  color: rgba(129,0,85,0.8);
}

.trust {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
  align-items: center;
}
.trust img {
  display: block;
  border-radius: 10px;
}
.trust li { color: var(--godrej-purple); }

/* ===== Disclaimer ===== */
.disclaimer {
  background:#C0C0C0;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 40px 0;
  color: var(--godrej-purple);
}

/* ===== Footer ===== */
footer {
  background: var(--godrej-purple);
  padding: 40px 20px;
  font-size: 14px;
  color:#fff ;
}
.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
.footer-links a:hover { color: #000; }
.logo img {
  width: auto;
  height: 2.5rem;
  object-fit: contain;
  max-width: 100%;
}
.footer-links strong{
  color:#fff;
}
.copyright {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}
strong { color: var(--godrej-purple); }

/* ===== Floating Toll-Free Button ===== */
.tollfree-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(145deg, #810055, #c81a8b);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Phone icon */
.tollfree-btn i {
  font-size: 1.1rem;
}

/* Shining gloss effect */
.tollfree-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.15)
  );
  transform: skewX(-25deg);
  animation: shineLoop 4s linear infinite;
}

/* Auto shine animation every 3s */
@keyframes shineLoop {
  0% {
    left: -75%;
  }
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

/* Hover animation */
.tollfree-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tollfree-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    bottom: 15px;
    right: 15px;
  }
}


/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceGlow {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 0 5px rgba(216, 27, 96, 0.6);
  }
  50% {
    transform: translateY(-8px);
    text-shadow: 0 0 15px rgba(216, 27, 96, 0.8);
  }
}

.icon-animate {
  animation: bounceGlow 0.6s ease-in-out;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header { padding: 10px 30px; }
  .menu-toggle { display: block}
  header .nav { justify-content: space-between; }

  .nav-links ul {
    flex-direction: column;
    gap: 10px;
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px;
    border-top: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
  }
  .nav-links ul.active { display: flex; margin-top: 30px; }

  .hero { padding: 40px 20px; }
  .hero-text { max-width: 100%; }
  .hero-text h1 { font-size: 2rem; color: white; }
  .hero-text p { font-size: 1rem; color: white; }

  .appointment-section {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  .gallery-content {
    flex-direction: column;
    text-align: center;
  }

  .gallery img {
    max-width: 100%;
  }

  .gallery-text {
    margin-top: 20px;
    text-align: left;
  }

  .tab-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
  }

  .service-grid {
    flex-direction: column;
    text-align: center;
  }

  .service-grid ul {
    text-align: left;
    margin: 0 auto;
    color: var(--godrej-purple);
  }

  .service-grid img {
    max-width: 100%;
  }

  .reach-options { flex-direction: column; align-items: center;}
  .trust { flex-direction: column; }
  .trust img {
    margin-bottom: 15px;
  }
  .reach-box {
    width: 90%;
    margin-bottom: 15px;
  }
}
/* ===== Back to Home Button ===== */
.back-home {
  text-align: center;
  margin: 30px 0 10px;
}

.back-home a {
  display: inline-block;
  background: var(--purple-100);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home a:hover {
  background: var(--purple-50);
  color: var(--white);
  
}
@media (max-width: 768px) {
  .common-content {
    padding: 20px 15px;
  }
  .common-header {
    padding: 30px 10px;
  }
}
.common-content {
  background: var(--wp-light);
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.common-content h2 {
  color: var(--wp-dark);
  margin-top: 25px;
  text-align: left;
  font-size: 25px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--wp-dark);
}