/* Main wrapper to isolate styles */
.main-location {
  font-family: "Inter", sans-serif;
  color: #333;
}


/* -------------------------------
   HERO SECTION
--------------------------------*/
.main-location .locations-hero {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.main-location .locations-hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.main-location .locations-hero p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
}


/* -------------------------------
   GRID SECTION
--------------------------------*/
.main-location .locations-grid-section {
  padding: 30px 20px;
  background: #ffffff;
}

.main-location .locations-grid-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

/* Grid Layout */
.main-location .locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

/* Cards */
.main-location .location-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-location .location-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.main-location .location-card .city-name {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  width: 100%;
}

.main-location .location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}


/* -------------------------------
   EXPANDING SECTION
--------------------------------*/
.main-location .expanding-section {
  background: #fafafa;
  padding: 80px 20px;
  text-align: center;
}

.main-location .expanding-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
}

.main-location .expanding-section p {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  color: #555;
}


/* -------------------------------
   CTA SECTION
--------------------------------*/
.main-location .cta-section {
  background: #e91e63;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.main-location .cta-section h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.main-location .cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.main-location .cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #e91e63;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.main-location .cta-button:hover {
  background: #fce4ec;
}

/* -------------------- Individual locations -------------------- */

/* ---------- Hero Section ---------- */
.hero-hyderabad {
  position: relative;
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: last baseline;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}



.hero-hyd-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* stronger overlay for better readability */
  z-index: 1;
}


.hero-hyd-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}


/* Typography tweaks */
.hero-hyd-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #e91e63;
}

.hero-hyd-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
  color: #f2f2f2;
  max-width: 700px;
}


/* ---------- Responsive Adjustments ---------- */
@media (max-width: 992px) {
  .hero-hyderabad {
    height: 75vh;
    background-position: top center;
  }

  .hero-hyd-content h1 {
    font-size: 2.2rem;
  }

  .hero-hyd-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-hyderabad {
    height: auto;
    padding: 100px 0;
  }

  .hero-hyd-content {
    padding: 0 20px;
  }

  .hero-hyd-content h1 {
    font-size: 1.8rem;
  }

  .hero-hyd-content p {
    font-size: 0.95rem;
  }
}


/* ---------- Services Section ---------- */
.truhands-services {
  padding: 50px 0;
  background-color: #fafafa;
}

.truhands-services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 40px;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  background-color: #fbd6e3;
  color: #333;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-tags span:hover {
  background-color: #e91e63;
  color: white;
}

.service-image {
  flex: 1;
  text-align: right;
}

.service-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 380px;
  transition: transform 0.5s ease;
}

.service-block:hover .service-image img {
  transform: scale(1.03);
}

/* ---------- CTA Section ---------- */
.location-cta {
  background-color: #e91e63;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.location-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.location-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #eaeaea;
}

.cta-button {
  background-color: #fff;
  color: #0d6efd;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #dbe7ff;
}



/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .service-block {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  .service-block.reverse {
    flex-direction: column;
  }
  .service-image img {
    max-height: 300px;
  }
}
