/* ===============================
   COLOR PALETTE
================================ */
:root {
  --deep-blue: #0e21a0;
  --royal-purple: #4d2fb2;
  --violet: #b153d7;
  --soft-pink: #f375c2;
  --white: #ffffff;
  --light-bg: #f6f7fb;
  --dark: #111;
}

/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--light-bg);
  color: var(--dark);
  line-height: 1.6;
  padding-top: 60px; /* space for fixed nav */
}

/* ===============================
   NAVIGATION
================================ */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--deep-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 34px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--soft-pink);
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ===============================
   HERO
================================ */
.hero-header {
  min-height: 400px;
  background-image: url("Images/Sourav.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 40px;
}

.hero-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* Neutral dark overlay */
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    );
}


.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}


.hero-lines {
  margin-top: 20px;
  display: inline-block;
}

.hero-lines p {
  margin: 10px 0;
  padding: 10px 18px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px); /* very light, optional */

  font-size: 15px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}
/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.cta-buttons button {
  padding: 16px 26px;
  border-radius: 40px;
  border: none;
  background: var(--soft-pink);
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-buttons button:hover {
  background: var(--violet);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.cta-link {
  text-decoration: none;
}


/* ===============================
   SECTIONS
================================ */
section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

h2 {
  font-size: 26px;
  color: var(--deep-blue);
  margin-bottom: 40px;
}

/* ===============================
   TEAM
================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.team-card {
  background: white;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  border-top: 6px solid var(--royal-purple);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border-top-color: var(--soft-pink);
}

/* Image frame (FIXED) */
.team-photo {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Crop Akshay upward */
.photo-top img {
  object-position: center 15%;
}

/* Text */
.team-card h3 {
  font-size: 18px;
}

.role {
  font-size: 14px;
  color: var(--royal-purple);
  margin-bottom: 12px;
}

.team-card h4 {
  margin-top: 14px;
  margin-bottom: 8px;
  color: var(--deep-blue);
}

.team-card ul {
  margin-left: 18px;
}

/* Mithuvin first on mobile */
@media (max-width: 768px) {
  .mobile-first {
    order: -1;
  }
}

/* ===============================
   SERVICES SECTION — FIXED
================================ */

.services-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.services-section h2 {
  font-size: 26px;
  color: #0e21a0;
  margin-bottom: 40px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* side by side */
  gap: 32px;
}

/* CARD BASE */
.service-card {
  padding: 32px;
  border-radius: 22px;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* S&C */
.service-card.performance {
  background: linear-gradient(
    135deg,
    #4d2fb2,
    #b153d7
  );
}

/* Rehab */
.service-card.rehab {
  background: linear-gradient(
    135deg,
    #b153d7,
    #f375c2
  );
}

/* Titles */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Lists */
.service-card ul {
  padding-left: 18px;
  margin: 0;
}

.service-card li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Hover */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

/* MOBILE */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   MAPS SECTION
================================ */

.maps-section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

.maps-section h3 {
  color: var(--deep-blue);
  margin-bottom: 30px;
}

/* Grid layout */
.maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* side by side */
  gap: 30px;
}

/* Individual map card */
.map-card {
  background: white;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Title */
.map-card h4 {
  margin-bottom: 12px;
  color: var(--royal-purple);
}

/* Responsive iframe */
.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .maps-grid {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    height: 280px;
  }
}


/* ===============================
   FOOTER
================================ */
footer {
  background: linear-gradient(to right, var(--deep-blue), var(--royal-purple));
  color: white;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

footer h4 {
  color: var(--soft-pink);
  margin-bottom: 12px;
}

footer ul {
  list-style: none;
}
footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: var(--soft-pink);
}


footer li {
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 12px;
  color: #ddd;
}



/* ===============================
   LOCATIONS PAGE
================================ */

.locations-hero {
  min-height: 220px;
  background: linear-gradient(135deg, var(--deep-blue), var(--royal-purple));
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.location-card {
  background: white;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  border-left: 6px solid var(--royal-purple);
  transition: 0.3s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  border-left-color: var(--soft-pink);
}

.location-card h3 {
  margin-bottom: 10px;
  color: var(--deep-blue);
}

.location-card p {
  margin-bottom: 10px;
  color: #555;
}

.direction-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--soft-pink);
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.direction-btn:hover {
  background: var(--violet);
  transform: translateY(-3px);
}

.Location-Image{
  
    height: 120px;           /* KEY: fixed height */
    overflow: hidden;
    border-radius: 18px 18px 0 0;
  }
  
  .Location-Image{
    width: 100%;
    height: 70%;
    object-fit: cover;       /* crops intelligently */
    object-position: center;
  }

  .Location-Image2{width: 100%;
    height: 70%;
    object-fit: cover;       /* crops intelligently */
    object-position: center;
  
    height: 450px;           /* KEY: fixed height */
    overflow: hidden;
    border-radius: 18px 18px 0 0;
  }
  
