/* ============================================================
   Pacific India — Main Stylesheet
   Uses Bootstrap 5 navbar-expand-lg pattern:
     - Desktop (>=992px): full horizontal menu in header
     - Mobile  (<992px):  hamburger toggle, menu collapses
   ============================================================ */
* { box-sizing: border-box; }

:root {
  --blue: #1a8cff;
  --blue-dark: #0b7bff;
  --text: #1a1a1a;
  --text-light: #555;
  --bg-light: #f1f1fa;
  --border: #e5e5e5;
}

body {
  font-family: 'Inter', Arial, sans-serif !important;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   HEADER + NAVIGATION (Bootstrap navbar-expand-lg)
   ============================================================ */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

header .navbar {
  padding: 0 60px;
  width: 100%;
  background: #fff;
}

.navbar-brand.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding: 16px 0;
  margin-right: 0;
  text-decoration: none;
  width:150px;
}
.logo-main {
  color: var(--blue);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
}
.logo-tag { font-size: 11px; color: var(--blue); margin-top: 4px; }

/* ---- Hamburger button ---- */
.navbar-toggler.hamburger {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 4px 10px;
  width: 44px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  font-size: 22px;
  color: #333;
  line-height: 1;
}
.navbar-toggler.hamburger:focus,
.navbar-toggler.hamburger:active {
  box-shadow: none !important;
  outline: none !important;
}
.navbar-toggler.hamburger:hover { color: #1a8cff; }

/* Toggle between hamburger (when closed) and X (when open) */
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-open { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: inline-block; }

/* Bootstrap navbar-expand-lg handles show/hide automatically at 992px.
   We just need to style our custom menu items on top. */

/* ---- Top-level nav items ---- */
.navbar-nav { gap: 21px; align-items: center; }
.nav-item { position: relative; }
.nav-item > .nav-link {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  letter-spacing: 1.2px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  transition: color 0.2s;
}
.nav-item:hover > .nav-link,
.nav-item > .nav-link:hover,
.nav-item > .nav-link.active { color: var(--blue) !important; }

.home-icon { padding: 24px 0 !important; }
.home-icon svg { display: block; }

.arrow-down {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  line-height: 1;
  margin-left: 2px;
  transition: color 0.2s, transform 0.2s;
}
.nav-item:hover > .nav-link .arrow-down,
.nav-item > .nav-link.active .arrow-down { color: var(--blue); }

/* ---- Dropdown panels ---- */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: none;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  list-style: none;
  padding: 14px 0;
  display: none;
  z-index: 200;
  margin: 0;
}
.sub-menu li { display: block; position: relative; }
.sub-menu li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 400;
  color: #2a2a2a;
  letter-spacing: 0.2px;
  text-decoration: none;
}
.sub-menu li > a:hover { color: var(--blue); }
.sub-menu .sub-label { flex: 1; }

/* Nested submenus open right (desktop) */
.sub-menu .sub-menu {
  top: 0;
  left: 100%;
  transform: none;
  margin-top: 0;
  margin-left: 4px;
}
.arrow-right {
  font-size: 14px;
  font-weight: 300;
  color: #999;
  line-height: 1;
  flex-shrink: 0;
}
.sub-menu li.has-sub:hover > a .arrow-right { color: var(--blue); }

.navbar-toggler.hamburger{display:none;}

/* Desktop hover behavior (>=992px) */

@media (min-width: 992px) {
  .has-dropdown:hover > .sub-menu,
  .sub-menu li.has-sub:hover > .sub-menu { display: block; }
}

/* ============================================================
   MOBILE NAV (<992px) — Bootstrap handles collapse
   ============================================================ */
@media (max-width: 991.98px) {

  .navbar-toggler.hamburger{display:block;}    
    
  header .navbar { padding: 12px 20px; flex-wrap: wrap; }

  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #eee;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-item:last-child { border-bottom: none; }

  .nav-item > .nav-link {
    padding: 14px 4px !important;
    width: 100%;
    justify-content: space-between;
  }

  .home-icon { padding: 12px 4px !important; }

  /* Submenus collapsed by default on mobile, expand with .open */
  .sub-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    background: #fafafa;
    padding: 0 0 8px 16px;
    min-width: 0;
    margin: 0;
  }
  .nav-item.open > .sub-menu,
  .sub-menu li.open > .sub-menu { display: block; }

  .sub-menu li { border-bottom: 1px solid #eee; }
  .sub-menu li:last-child { border-bottom: none; }
  .sub-menu li > a { padding: 11px 4px; }

  .sub-menu .sub-menu {
    margin-left: 0;
    padding-left: 16px;
    background: #f0f0f0;
  }

  .arrow-down, .arrow-right { margin-left: auto; }
  .nav-item.open > .nav-link .arrow-down,
  .sub-menu li.open > a .arrow-down { transform: rotate(180deg); color: var(--blue); }
  .sub-menu li.has-sub.open > a .arrow-right { transform: rotate(90deg); color: var(--blue); }
}

/* ============================================================
   HERO CAROUSEL (Bootstrap 5)
   ============================================================ */
.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero-carousel .carousel-inner {
  height: 620px;
  width: 100%;
}
.hero-carousel.hero-compact .carousel-inner {
  height: 360px;
}
.hero-carousel .carousel-item {
  height: 620px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-carousel.hero-compact .carousel-item {
  height: 360px !important;
}
.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6));
  z-index: 1;
  pointer-events: none;
}
.hero-carousel.hero-compact .carousel-item::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.5));
}
.hero-carousel .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 100px;
  z-index: 2;
  color: #fff;
}
.hero-carousel .hero-content h1 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 720px;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Default slide backgrounds */
.slide-1 { background-image: url('../images/hero/pacific-3.jpg'); }
.slide-2 { background-image: url('../images/hero/pacific-2.jpg'); }
.slide-3 { background-image: url('../images/hero/pacific-banner1.jpg'); }

/* Bootstrap carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 6%; opacity: 0.8; z-index: 5; }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  background-size: 22px;
}
.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(255,255,255,0.35);
}
.hero-carousel .carousel-indicators { margin-bottom: 1.5rem; z-index: 5; }
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  margin: 0 5px;
  opacity: 1;
}
.hero-carousel .carousel-indicators .active { background-color: #fff; }

/* ============================================================
   HOME PAGE SECTIONS
   ============================================================ */
.what-we-do { background: #000; color: #fff; padding: 60px 100px; }
.what-we-do h2 { font-size: 30px; font-weight: 600; margin-bottom: 25px; }
.what-we-do p { font-size: 14px; line-height: 1.8; color: #ddd; margin: 0; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 25px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.read-more:hover { color: var(--blue); }

.who-we-are { background: var(--bg-light); padding: 80px 100px; }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.who-image img { width: 100%; }
.who-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.who-content p { font-size: 14px; color: #444; margin-bottom: 18px; line-height: 1.8; }
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 2px;
  text-decoration: none;
}
.btn-blue:hover { background: var(--blue-dark); color: #fff; }

.projects-section, .upcoming-section { padding: 80px 100px; background: #fff; }
.projects-section h2, .upcoming-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ccc;
}

/* ---- Bootstrap Projects Carousel ---- */
.projects-carousel-bs { margin-top: 40px; padding: 0 50px; }
.projects-carousel-bs .carousel-inner { overflow: hidden; }
.projects-carousel-bs .carousel-item { transition: transform 0.6s ease-in-out; }
.projects-carousel-bs .project-card {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.3s;
  height: 100%;
}
.projects-carousel-bs .project-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.projects-carousel-bs .project-card .img-wrap { height: 180px; overflow: hidden; background: #ddd; }
.projects-carousel-bs .project-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.projects-carousel-bs .project-card .label {
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.projects-carousel-bs .carousel-control-prev,
.projects-carousel-bs .carousel-control-next { width: 40px; opacity: 1; }
.projects-carousel-bs .carousel-control-prev-icon,
.projects-carousel-bs .carousel-control-next-icon {
  background-color: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  background-size: 18px;
}
.projects-carousel-bs .carousel-control-prev:hover .carousel-control-prev-icon,
.projects-carousel-bs .carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--blue);
}
.projects-indicators { position: relative; margin-top: 24px; margin-bottom: 0; }
.projects-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
  opacity: 1;
}
.projects-indicators .active { background-color: var(--blue); }

/* ---- Upcoming projects ---- */
.upcoming-list { display: flex; justify-content: center; margin-top: 50px; }
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.upcoming-card { border: 1px solid #eee; overflow: hidden; }
.upcoming-card .img-wrap { height: 170px; overflow: hidden; }
.upcoming-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.upcoming-card .label {
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

/* ============================================================
   ABOUT / FOOTFALL
   ============================================================ */
.footfall-section { padding: 80px 100px; background: #fff; }
.footfall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.footfall-title { font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.footfall-subtitle {
  font-size: 30px;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.footfall-text p { font-size: 14px; color: #444; line-height: 1.8; margin-bottom: 30px; }
.footfall-img { width: 100%; height: 200px; overflow: hidden; }
.footfall-img img { width: 100%; height: 100%; object-fit: cover; }
.india-map { position: relative; text-align: center; }
.india-map svg { width: 100%; max-width: 450px; height: auto; }

.corporate-profile { padding: 80px 100px; background: #fff; }
.corporate-profile h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  letter-spacing: 0.5px;
}
.corporate-profile p {
  font-size: 14px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* ============================================================
   LONG-FORM SECTION (Vigil, CSR, Policies)
   ============================================================ */
.vigil-section {
  padding: 60px 100px 80px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}
.vigil-main-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.vigil-section h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #222;
  margin: 36px 0 16px;
  text-transform: uppercase;
}
.vigil-section p,
.vigil-section li {
  font-size: 13.5px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
}
.vigil-section ul { padding-left: 28px; margin-bottom: 14px; }
.vigil-section ul ul { list-style: circle; margin-top: 6px; margin-bottom: 6px; }
.vigil-section ul li { margin-bottom: 8px; }
.vigil-address {
  margin: 10px 0 14px 28px;
  padding: 4px 0;
  font-size: 13.5px;
  color: #333;
  line-height: 1.7;
}
.vigil-address div { margin-bottom: 2px; }

/* ============================================================
   TABLES
   ============================================================ */
.vigil-table-wrapper { overflow-x: auto; margin: 18px 0 24px; }
.vigil-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.vigil-table th,
.vigil-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: #333;
  line-height: 1.5;
}
.vigil-table th { background: #f7f7f7; font-weight: 600; color: #222; }
.vigil-table td.col-narrow { width: 50px; }
.info-line { font-size: 13.5px; color: #333; line-height: 1.8; margin-bottom: 14px; }
.note-box {
  background: #f7f7f7;
  border-left: 3px solid var(--blue);
  padding: 14px 18px;
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin-top: 18px;
  margin-bottom: 18px;
}

/* ============================================================
   MISSION / VISION BLOCKS
   ============================================================ */
.mv-block { padding: 30px 0; border-bottom: 1px solid #ccc; }
.mv-block:last-child { border-bottom: none; }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: var(--bg-light); padding: 60px 100px 80px; }
.team-member { padding: 28px 0; border-bottom: 1px solid #ccc; }
.team-member:last-of-type { border-bottom: none; }
.team-member h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #222;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.team-member p, .team-member li {
  font-size: 13.5px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
}
.team-member ul { padding-left: 28px; margin-top: 6px; }

/* ============================================================
   CAREER
   ============================================================ */
.hero-career {
  height: 460px;
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.85), rgba(20,20,20,0.85)),
    url('../images/hero/hero-career.svg');
  background-size: cover;
  background-position: center;
}
.career-section { padding: 60px 100px 80px; background: #fff; }
.career-section h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.career-tagline {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 28px 0 18px;
  color: #222;
}
.career-section > p {
  font-size: 13.5px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}
.resume-line { margin: 18px 0 28px; font-size: 13.5px; color: #333; }
.resume-line .mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.resume-line .mail::before { content: '✉'; font-size: 14px; color: #555; }
.join-us-title { font-size: 22px; font-weight: 500; margin-top: 40px; margin-bottom: 4px; }
.join-us-sub { font-size: 14px; color: #555; margin-bottom: 18px; }
.career-table th { background: #f0f0f0; font-size: 13px; font-weight: 600; }
.career-table td { font-size: 13px; }
.btn-view {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-view:hover { background: var(--blue-dark); }

/* ============================================================
   FOOD COURTS
   ============================================================ */
.foodcourts-section { padding: 60px 100px 80px; background: #fff; }
.foodcourts-section h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.foodcourts-section > p {
  font-size: 13.5px;
  color: #333;
  line-height: 1.8;
  margin: 18px 0 40px;
}
.foodcourts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.foodcourt-card {
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.3s;
  cursor: pointer;
}
.foodcourt-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.foodcourt-card .img-wrap { width: 100%; height: 220px; overflow: hidden; background: #ddd; }
.foodcourt-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.foodcourt-card:hover img { transform: scale(1.04); }
.foodcourt-card .label {
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

/* ============================================================
   FOOD COURT DETAIL
   ============================================================ */
.fc-detail-section { padding: 60px 100px 80px; background: #fff; }
.fc-detail-image {
  max-width: 600px;
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.fc-detail-image img { width: 100%; height: auto; }
.fc-detail-section h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #222;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.fc-detail-section p { font-size: 13.5px; color: #333; line-height: 1.8; margin-bottom: 18px; }
.fc-detail-section ul { padding-left: 28px; margin-bottom: 22px; }
.fc-detail-section ul li {
  font-size: 13.5px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
}
.know-more {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #222;
  text-transform: uppercase;
  margin-top: 16px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.know-more:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* ============================================================
   MEDIA COVERAGE
   ============================================================ */
.media-section { padding: 60px 100px 80px; background: #fff; }
.media-section h1 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.media-item {
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.media-item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.media-item .img-wrap {
  width: 100%; height: 250px; overflow: hidden;
  background: #f4f4f4; border: 1px solid #eee;
}
.media-item .img-wrap img { width: 100%; height: 100%;  }
.media-item .caption {
  padding: 10px 4px;
  font-size: 12.5px;
  color: #333;
  line-height: 1.5;
  text-align: center;
  font-weight:600;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.lightbox-caption { color: #fff; margin-top: 20px; font-size: 14px; }
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: #fff; color: #000; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   REAL ESTATE / SHOPPING
   ============================================================ */
.realestate-section { padding: 60px 100px 80px; background: #fff; }
.realestate-section h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.realestate-section > p { font-size: 13.5px; color: #333; line-height: 1.8; margin: 18px 0 50px; }
.realestate-section h2 { font-size: 22px; font-weight: 500; color: #222; margin: 30px 0 30px; }
.realestate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.re-card {
  border: 1px solid #eee;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}
.re-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.08); transform: translateY(-2px); }
.re-card .img-wrap { width: 100%; height: 200px; overflow: hidden; background: #ddd; }
.re-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.re-card:hover img { transform: scale(1.04); }
.re-card .label {
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 60px 100px 80px; background: #fff; }
.contact-section h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
  margin-top: 50px;
}
.contact-card { padding: 24px 0; border-top: 1px solid #ccc; }
.contact-card h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: #333;
  line-height: 1.6;
}
.contact-row .ico {
  font-size: 15px;
  color: #555;
  width: 18px;
  text-align: center;
  margin-top: 1px;
}
.contact-row a { color: #333; }
.contact-row a:hover { color: var(--blue); }

/* ============================================================
   CONNECT BAR
   ============================================================ */
.connect-bar {
  background: var(--blue);
  padding: 30px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.connect-bar h3 { font-size: 20px; font-weight: 500; margin: 0; }
.btn-outline {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 60px 100px 30px; background: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1.5fr;
  gap: 50px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.socials { display: flex; gap: 16px; margin-top: 20px; }
.socials a {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: #222; font-size: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 12px; font-size: 13px; color: #333; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-col p { font-size: 13px; color: #333; margin-bottom: 12px; line-height: 1.7; }
.btn-meeting {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 2px;
  text-decoration: none;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 13px;
  color: #555;
}
.footer-bottom a { color: var(--blue); font-weight: 500; }

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   Section padding only, navbar handled by Bootstrap navbar-expand-lg
   ============================================================ */
@media (max-width: 1024px) {
  .what-we-do, .who-we-are, .projects-section, .upcoming-section,
  .connect-bar, footer, .footfall-section, .corporate-profile, .vigil-section,
  .team-section, .career-section, .foodcourts-section, .fc-detail-section,
  .media-section, .realestate-section, .contact-section {
    padding-left: 40px; padding-right: 40px;
  }
  .hero-carousel .hero-content { padding: 0 40px; }
  .projects-carousel-bs { padding: 0 60px; }

  .upcoming-grid, .foodcourts-grid,
  .media-grid, .realestate-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid, .footfall-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-carousel .hero-content h1 { font-size: 34px; }
  .footfall-title { font-size: 28px; }
  .footfall-subtitle { font-size: 22px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  header .navbar { padding: 0px 16px !important; }
  .navbar-brand.logo{padding:0px !important;}
  .logo-main { font-size: 24px; }

  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item { height: 360px !important; }
  .hero-carousel.hero-compact .carousel-inner,
  .hero-carousel.hero-compact .carousel-item { height: 280px !important; }
  .hero-carousel .hero-content { padding: 0 24px; }
  .hero-carousel .hero-content h1 { font-size: 26px; }

  .what-we-do, .who-we-are, .projects-section, .upcoming-section,
  .connect-bar, footer, .footfall-section, .corporate-profile, .vigil-section,
  .team-section, .career-section, .foodcourts-section, .fc-detail-section,
  .media-section, .realestate-section, .contact-section {
    padding-left: 20px; padding-right: 20px;
  }

  .projects-carousel-bs { padding: 0 36px; }
  .projects-carousel-bs .project-card .img-wrap { height: 140px; }
  .projects-carousel-bs .project-card .label { font-size: 11.5px; padding: 12px 10px; }

  .upcoming-grid, .foodcourts-grid,
  .media-grid, .realestate-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .connect-bar { flex-direction: column; gap: 16px; text-align: center; }
}




