/* ============================================================
   StudyNest — style.css
   Modern, minimal design for a Study Library landing page
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #e05c2a;
  --primary-dark: #c44d1f;
  --accent: #f08c4a;
  --dark: #2a2a2a;
  --dark-2: #3a3a3a;
  --text: #4a3f3a;
  --text-light: #7a6a62;
  --bg-light: #f7f2ee;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s ease;
  --font-body: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ---------- Utility ---------- */
.section-padding {
  padding: 96px 0;
}

.bg-light-custom {
  background: var(--bg-light);
}

.accent {
  color: var(--accent);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(224, 92, 42, 0.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

.section-body {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 14px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  transition: var(--transition);
  z-index: 1050;
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

/* Navbar brand wrapper */
.navbar-brand {
  gap: 2px;
}

/* Navbar logo image */
.navbar-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Footer logo image */
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Logo icon circle (kept for fallback) */
.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  background-color: black;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
}

.navbar-nav .nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

/* CTA button in nav */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(224, 92, 42, 0.35);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 92, 42, 0.45);
  color: var(--white) !important;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
#hero {
  position: relative;
}

.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


.slide-1 {
  background-image: url("images/slider1.png");
}

.slide-2 {
  background-image: url("images/slide2.png");
}
.slide-3 {
  background-image: url("images/slide3.png");
}

.slide-4 {
  background-image: url("images/slider4.png");
}

/* Slide 4 — smaller font for long Hindi/mission text */
.slide-4-title {
  font-size: clamp(1rem, 2vw, 1.5rem) !important;
  font-weight: 600;
  line-height: 1.6;
  max-width: 780px;
}

@media (max-width: 768px) {
  .slide-4-title {
    font-size: 0.72rem !important;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .slide-4 .hero-badge {
    display: inline-block;
    font-size: 0.68rem;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .slide-4 .hero-sub {
    font-size: 0.72rem;
    margin-bottom: 8px;
  }

  .slide-4 .mt-4 {
    margin-top: 8px !important;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(42, 42, 42, 0.85) 0%,
      rgba(224, 92, 42, 0.5) 100%);
}

/* Custom caption (replaces Bootstrap .carousel-caption) */
.carousel-caption-custom {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  animation: fadeInUp 0.9s 0.35s ease both;
}

/* Hero buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 6px 24px rgba(224, 92, 42, 0.45);
  transition: var(--transition);
  animation: fadeInUp 1s 0.5s ease both;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(224, 92, 42, 0.55);
  color: var(--white);
}
.btn-hero-primary i{
  margin-top: 5px;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  transition: var(--transition);
  animation: fadeInUp 1s 0.6s ease both;
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 58px;
  height: 58px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
}

.carousel-ctrl-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.carousel-control-prev:hover .carousel-ctrl-icon,
.carousel-control-next:hover .carousel-ctrl-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-control-prev {
  left: 24px;
}

.carousel-control-next {
  right: 24px;
}

/* Indicators */
.carousel-indicators {
  gap: 8px;
  margin-bottom: 14px;
  align-items: center;
}

.carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  min-width: 8px;
  border-radius: 50% !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0;
  background: #999999 !important;
  opacity: 1 !important;
  box-sizing: border-box !important;
  transition: background 0.3s ease;
}

.carousel-indicators button.active {
  background: var(--primary) !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  opacity: 1 !important;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 52px 0;
}

.stat-item {
  padding: 10px 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0;
}

/* ============================================================
   ABOUT US
   ============================================================ */
.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 80%;
  background: #f0eeec;
  border-radius: 24px;
  overflow: visible;
}

.about-main-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  display: block;
  background: transparent;
}

.about-badge-card {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.about-badge-card i {
  font-size: 2rem;
  color: var(--primary);
}

.about-badge-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}

.about-badge-card small {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Checklist */
.about-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-checklist li i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--icon-color) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.7rem;
  color: var(--icon-color);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: var(--icon-color);
  color: var(--white);
  transform: scale(1.08) rotate(-5deg);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================================
   WHAT YOU WILL GET — NEW LAYOUT
   ============================================================ */
.wyg-section {
  background: #000;
  padding: 96px 0;
}

.wyg-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}

.wyg-card {
  background: transparent;
  border: none;
  text-align: center;
}

.wyg-card:hover {
  transform: none;
}

.wyg-card-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.wyg-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wyg-card:hover .wyg-card-img {
  transform: scale(1.04);
}

.wyg-card-body {
  padding: 0 8px;
}

.wyg-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wyg-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.wyg-card-info {
  font-size: 0.85rem;
  color: #fff;
  margin: 0;
}

/* Parking card icon placeholder */
.wyg-parking-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 60%, #e05c2a22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 6rem;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.wyg-card:hover .wyg-parking-placeholder {
  transform: scale(1.04);
}

@media (max-width: 576px) {
  .wyg-parking-placeholder {
    height: 200px;
    font-size: 4rem;
  }
}

/* ============================================================
   FAMILY SUITE
   ============================================================ */
.suite-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.suite-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.suite-floating-tag {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

/* Suite feature list */
.suite-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.suite-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.suite-feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(224, 92, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.suite-feat-item strong {
  display: block;
  font-size: 0.97rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.suite-feat-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ============================================================
   FACILITIES GRID
   ============================================================ */
#facilities {
  background: #f5f0ea;
}

.facility-card {
  background: var(--white);
  border-radius: 18px;
  padding: 34px 14px 26px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: none;
  transition: var(--transition);
  cursor: default;
  height: 100%;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.facility-icon {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
  transition: var(--transition);
}

.facility-card:hover .facility-icon {
  color: var(--accent);
  transform: scale(1.2);
}

.facility-img-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
  border: 2px solid #2da8c8;
  border-radius: 14px;
  padding: 10px;
  transition: transform 0.3s ease;
  background: var(--white);
}

.facility-card:hover .facility-img-icon {
  transform: scale(1.1);
}

.facility-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.55;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* ============================================================
   ENQUIRY FORM SECTION
   ============================================================ */
.enquiry-section {
  background: var(--bg-light);
}

.enquiry-img-wrap {
  position: relative;
  border-radius: 20px;
  width: 80%;
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
}

.enquiry-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.enquiry-img-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to top,
    rgba(42, 42, 42, 0.65) 0%,
    transparent 55%
  ); */
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.enquiry-overlay-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--white);
}

.enquiry-overlay-card i {
  font-size: 1.8rem;
  color: var(--accent);
}

.enquiry-overlay-card strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

.enquiry-overlay-card small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.enquiry-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.enquiry-input {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  width: 100%;
}

.enquiry-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224, 92, 42, 0.15);
}

textarea.enquiry-input {
  resize: vertical;
  min-height: 110px;
}

.enquiry-btn {
  padding: 13px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
}

/* Inline field error text */
.enq-error {
  display: none;
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 4px;
}

.enquiry-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.enquiry-input.is-invalid ~ .enq-error {
  display: block;
}

/* Status message box */
.enq-status {
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.enq-status--success {
  background: #d1fadf;
  color: #155724;
  border: 1px solid #a3d9b1;
}

.enq-status--warning {
  background: #fff3cd;
  color: #7d4e00;
  border: 1px solid #ffc107;
}

/* WhatsApp fallback link inside status */
.enq-wa-link {
  font-weight: 700;
  color: #25d366;
  text-decoration: underline;
  margin-left: 4px;
}

.enq-wa-link:hover {
  color: #128c4e;
}

/* Required field validation feedback (legacy) */
.enquiry-form.was-validated .enquiry-input:invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.enquiry-form.was-validated .enquiry-input:valid {
  border-color: #198754;
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-section {
  background: var(--bg-light);
  padding: 32px 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  white-space: nowrap;
  padding: 0 15px;
}

.mq-highlight {
  background: linear-gradient(90deg, #e05c2a, #f08c4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mq-accent {
  background: linear-gradient(90deg, #e8317a, #e05c2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mq-muted {
  color: #d0cbc7;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.logo-icon-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 0;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer headings & links */
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* Footer contact */
.footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list li i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list a:hover {
  color: var(--accent);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(224, 92, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  z-index: 999;
}

@media (max-width: 767.98px) {
  .scroll-top-btn {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    bottom: 12px;
    right: 12px;
  }
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) !important;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SECTION REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 72px 0;
  }

  .about-badge-card {
    right: 0;
  }

  .suite-floating-tag {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 56px 0;
  }

  #about.section-padding {
    padding-top: 0px;
  }

  .hero-slide {
    min-height:300px ;
    height: auto;
    background-size: cover;
    background-position: top center;
    background-color: #1a1a1a;
  }

  .about-main-img,
  .suite-main-img {
    height: 320px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-badge-card {
    position: static;
    margin-top: 18px;
    display: inline-flex;
  }

  .suite-floating-tag {
    position: static;
    display: inline-flex;
    margin-bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Enquiry section — hide image on mobile */
  .enquiry-img-wrap {
    display: none;
  }

  /* About section — hide image on mobile */
  #about .about-img-wrapper {
    display: none;
  }

  /* About section — center text on mobile */
  #about .col-lg-6:last-child {
    text-align: center;
  }

  #about .section-eyebrow {
    display: inline-block;
    text-align: center;
  }

  #about .section-title,
  #about .section-body {
    text-align: center;
  }

  #about .about-checklist {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
  }

  #about .btn-primary-custom {
    display: inline-block;
  }

  /* Enquiry section — center all content on mobile */
  #enquiry .col-lg-6:last-child {
    text-align: center;
  }

  #enquiry .section-eyebrow {
    text-align: center;
    display: inline-block; /* shrinks to text width */
  }

  #enquiry .section-title,
  #enquiry .section-body {
    text-align: center;
    display: block;
  }

  /* Form rows & labels — force left-aligned */
  #enquiry .enquiry-form,
  #enquiry .form-group,
  #enquiry .form-label,
  #enquiry .enquiry-input,
  #enquiry .enq-error {
    text-align: left;
  }

  /* Footer columns — center everything on mobile */
  .footer-section .col-lg-4,
  .footer-section .col-sm-6 {
    text-align: center;
  }

  .footer-section .footer-logo-img {
    margin: 0 auto 12px;
  }

  .footer-section .social-icons {
    justify-content: center;
  }

  .footer-section .footer-contact-list li {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  /* .carousel-indicators {
    display: none;
  } */

  .hero-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.96) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.1) 100%);
  }

  .carousel-caption-custom {
    justify-content: flex-end;
    padding: 0 20px 50px;
  }

  .hero-badge {
    /* display: none; */
    margin-top: 10px;
  }

  .hero-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: 0.82rem;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 8px 14px;
    font-size: 0.78rem;
    width: auto;
    text-align: center;
    display: flex;
  }
}



@media (max-width: 575.98px) {
  .navbar-logo-img {
    height: 62px;
    position: relative;
  }

  #mainNav {
    padding: 4px 0;
  }

  #mainNav .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .navbar-brand {
    gap: 0px;
    margin-left: -19px;
  }

  .hero-title {
    font-size: 1.1rem;
  }
}





.ramraj {
  /* font-size: 1.35rem; */
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 2px;
  font-family: var(--font-display), sans-serif;
  white-space: nowrap;
  margin-left: -28px;
  font-size: 24px;
}

.ramraj span:nth-child(1) {
  color: #fd7e14; /* Red */
}

.ramraj span:nth-child(2) {
  color: #fd7e14; /* Black (dark heavy feel) */
}

.ramraj span:nth-child(3) {
  color: #000;
}

@media (max-width: 575.98px) {
  .ramraj {
    /* font-size: 0.95rem; */
    letter-spacing: 1px;
  }
}



