/* ========================================
   INVISSIBLE GRILL - Main Stylesheet
   Theme: Navy Blue & Gold
   Font: Playfair Display + DM Sans
======================================== */

/* ---- CSS Variables ---- */
:root {
  --navy-dark: #06101e;
  --navy: #0d1f3c;
  --navy-mid: #112d5a;
  --navy-light: #1a3a6e;
  --navy-pale: #e8eef7;
  --gold: #c9a227;
  --gold-light: #e2be5e;
  --gold-pale: #fdf5e0;
  --white: #ffffff;
  --light-grey: #f5f7fa;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --border-light: rgba(201, 162, 39, 0.2);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 4px 16px rgba(13, 31, 60, 0.08);
  --shadow-md: 0 8px 32px rgba(13, 31, 60, 0.14);
  --shadow-lg: 0 16px 56px rgba(13, 31, 60, 0.22);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 15.5px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  line-height: 1.25;
}

input,
select,
textarea,
button {
  font-family: var(--font-body);
}

/* ---- Utility ---- */
.gold-text {
  color: var(--gold);
}

.text-gold {
  color: var(--gold);
}

.section-padding {
  padding: 90px 0;
}

.border-gold {
  border: 1px solid var(--gold) !important;
}

/* ---- Section Labels & Titles ---- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--border-light);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 600;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 26px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.4);
}

.btn-outline-light {
  border-radius: var(--radius-sm);
  padding: 10px 26px;
  font-weight: 500;
}

.btn-lg {
  padding: 13px 34px;
  font-size: 15px;
}


/* ==============================
   TOP BAR
============================== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.topbar-link:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--navy-dark);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}


/* ==============================
   HEADER / NAVBAR
============================== */
#mainHeader {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13, 31, 60, 0.08);
  transition: var(--transition);
}

#mainHeader.scrolled {
  box-shadow: 0 4px 30px rgba(13, 31, 60, 0.15);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.brand-text span {
  color: var(--gold);
}

/* Toggler */
.navbar-toggler {
  border: none;
  background: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.toggler-icon {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Nav Links */
.nav-link {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--navy) !important;
  padding: 7px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 14px 0;
    border-top: 1px solid var(--navy-pale);
    margin-top: 12px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link {
    padding: 9px 4px !important;
    border-bottom: 1px solid var(--navy-pale);
    border-radius: 0;
  }

  .gap-lg-1 {
    gap: 0 !important;
  }
}


/* ==============================
   HERO CAROUSEL
============================== */

#heroCarousel {
  background: var(--navy-dark);
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

/* Tablet */
@media (max-width: 767px) {
  .hero-img {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero-img {
    height: 380px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-img {
    height: 340px;
  }
}

/* ==============================
   Gradient Overlay
============================== */

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 16, 30, 0.85) 0%,
    rgba(6, 16, 30, 0.55) 55%,
    rgba(6, 16, 30, 0.2) 100%
  );
  z-index: 1;
}

/* ==============================
   Caption Area
============================== */

.carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 7%;
  padding-right: 7%;
  z-index: 10;
  left: 0;
  right: 0;
}

.caption-inner {
  max-width: 600px;
  position: relative;
  z-index: 11;
}

.caption-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.carousel-caption h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.carousel-caption p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.7;
}

.caption-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==============================
   Carousel Controls
============================== */

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 1;
  z-index: 20;
}

.carousel-prev-icon,
.carousel-next-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.carousel-control-prev:hover .carousel-prev-icon,
.carousel-control-next:hover .carousel-next-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* ==============================
   Indicators
============================== */

.carousel-indicators {
  margin-bottom: 0.5rem;
  z-index: 20;
}

.carousel-indicators button {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--gold);
  width: 44px;
}

/* ==============================
   Mobile View Fix
   (Text image ke andar se chipka hua na lage)
============================== */

@media (max-width: 575px) {
  .carousel-caption {
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .caption-inner {
    max-width: 100%;
    margin-top: 20px;
  }

  .caption-badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 14px;
  }

  .carousel-caption h1 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .carousel-caption p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .caption-btns {
    justify-content: center;
    gap: 10px;
  }

  .caption-btns .btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  /* arrows ko side se thoda bahar */
  .carousel-control-prev {
    left: -6px;
  }

  .carousel-control-next {
    right: -6px;
  }

  .carousel-prev-icon,
  .carousel-next-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* Extra Small Mobile */

@media (max-width: 420px) {
  .carousel-caption h1 {
    font-size: 26px;
  }

  .carousel-caption p {
    font-size: 13px;
  }

  .caption-btns .btn {
    font-size: 13px;
    padding: 9px 16px;
  }
}


/* ==============================
   MARQUEE
============================== */
.marquee-section {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-content .sep {
  color: var(--gold);
  font-size: 9px;
  padding: 0 4px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}


/* ==============================
   ABOUT US
============================== */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.main-about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border-light);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--navy-dark);
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.about-stat-card {
  position: absolute;
  top: 24px;
  left: -16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.about-stat-card i {
  color: var(--gold);
  font-size: 18px;
}

.section-desc {
  color: #4a5568;
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.feature-pill {
  background: var(--navy-pale);
  color: var(--navy);
  border: 1px solid var(--border-light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.feature-pill i {
  color: var(--gold);
  font-size: 13px;
}

.feature-pill:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.feature-pill:hover i {
  color: var(--navy-dark);
}

@media (max-width: 991px) {
  .about-badge {
    bottom: 10px;
    right: 10px;
  }

  .about-stat-card {
    left: 10px;
    top: 10px;
  }
}


/* ==============================
   SERVICES
============================== */
.services-section {
  background: var(--light-grey);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 31, 60, 0.07);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 30, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-body {
  padding: 22px 24px 26px;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
}

.service-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.service-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--navy);
  gap: 10px;
}


/* ==============================
   COUNTER SECTION
============================== */
.counter-section {
  background: var(--navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
}

.counter-card {
  padding: 30px 16px;
  position: relative;
}

.counter-icon {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.85;
}

.counter-number {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  display: inline;
  line-height: 1;
}

.counter-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
  line-height: 1;
}

.counter-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.col-6.col-md-3:not(:last-child) .counter-card {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 767px) {
  .col-6.col-md-3 .counter-card {
    border-right: none !important;
  }
}


/* ==============================
   WHY CHOOSE US
============================== */
.why-section {
  background: var(--white);
}

.why-card {
  background: var(--white);
  border: 1.5px solid rgba(13, 31, 60, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  margin: 0 auto 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--navy);
  color: var(--gold);
}

.why-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}


/* ==============================
   GALLERY
============================== */
.gallery-section {
  background: var(--light-grey);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(13, 31, 60, 0.07);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 30, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 16px;
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  margin-bottom: 12px;
}

.gallery-info span {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 4px;
}

.gallery-info p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.gallery-hover i {
  font-size: 24px;
  color: var(--white);
}


/* ==============================
   FAQs
============================== */
.faq-section {
  background: var(--white);
}

.faq-item {
  border: none;
  border-bottom: 1px solid rgba(13, 31, 60, 0.08);
  margin-bottom: 0;
  background: transparent;
}

.faq-item:first-child {
  border-top: 1px solid rgba(13, 31, 60, 0.08);
}

.faq-btn {
  background: transparent !important;
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 8px 18px 0;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
}

.faq-btn:not(.collapsed) {
  color: var(--gold) !important;
}

.faq-btn::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 18px;
  margin-left: auto;
  transform: none;
  background-image: none !important;
  color: var(--gold);
  transition: var(--transition);
}

.faq-btn.collapsed::after {
  content: '\F282';
  transform: rotate(0deg);
}

.faq-btn:not(.collapsed)::after {
  content: '\F286';
}

.faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--gold-pale);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-body);
}

.faq-btn:not(.collapsed) .faq-num {
  background: var(--gold);
  color: var(--navy-dark);
}

.faq-body {
  color: #4a5568;
  font-size: 14.5px;
  line-height: 1.8;
  padding: 4px 0 18px 48px;
}


/* ==============================
   CONTACT
============================== */
.contact-section {
  background: var(--light-grey);
}

.contact-info-block {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  height: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-value {
  color: var(--white);
  font-size: 14.5px;
  font-weight: 500;
  display: block;
}

a.contact-value:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 36px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(13, 31, 60, 0.06);
}

.contact-form-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--navy-pale);
}

.form-group-custom label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.custom-input {
  background: var(--light-grey);
  border: 1.5px solid rgba(13, 31, 60, 0.1);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
}

.custom-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

textarea.custom-input {
  resize: vertical;
}

.form-success {
  text-align: center;
  padding: 30px;
  color: var(--navy);
}

.form-success i {
  font-size: 48px;
  color: #28a745;
  display: block;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 575px) {

  .contact-info-block,
  .contact-form-card {
    padding: 28px 20px;
  }
}


/* ==============================
   MAP
============================== */
.map-section {
  border-top: 1px solid var(--navy-pale);
}

.map-header {
  background: var(--navy);
  padding: 16px 0;
}

.map-header h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.map-container iframe {
  display: block;
}


/* ==============================
   FOOTER
============================== */
.main-footer {
  background: var(--navy-dark);
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin: 18px 0 22px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 11px;
  color: var(--gold);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-contact i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin: 0;
}

.footer-bottom strong {
  color: var(--gold);
}


/* ==============================
   FLOATING ICONS (LEFT SIDE)
============================== */
.floating-icons {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: visible;
}

.float-icon:hover {
  transform: scale(1.12) translateX(4px);
}

.float-call {
  background: var(--navy);
  border: 2px solid var(--gold);
}

.float-whatsapp {
  background: #25d366;
}

.float-email {
  background: var(--gold);
  color: var(--navy-dark) !important;
}

.float-quote {
  background: var(--navy-mid);
  border: 2px solid rgba(201, 162, 39, 0.4);
}

.float-tooltip {
  position: absolute;
  left: 58px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.float-tooltip::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--navy-dark);
  border-left: none;
}

.float-icon:hover .float-tooltip {
  opacity: 1;
  left: 62px;
}

@media (max-width: 767px) {
	.cu-ds-nn{
		Display:none!important
	}
  .floating-icons {
    right: 10px;
  }

  .float-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .float-tooltip {
    display: none;
  }
}


/* ==============================
   BACK TO TOP
============================== */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 30px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}


/* ==============================
   AOS-LIKE ANIMATIONS (CSS Only)
============================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].animated {
  opacity: 1;
  transform: none;
}

[data-aos][data-aos-delay="100"].animated {
  transition-delay: 0.1s;
}

[data-aos][data-aos-delay="200"].animated {
  transition-delay: 0.2s;
}

[data-aos][data-aos-delay="300"].animated {
  transition-delay: 0.3s;
}

[data-aos][data-aos-delay="400"].animated {
  transition-delay: 0.4s;
}


/* ==============================
   CAROUSEL CAPTION ANIMATION
============================== */
.carousel-item.active .animate-slide .caption-badge {
  animation: slideInUp 0.5s 0.1s ease both;
}

.carousel-item.active .animate-slide h1 {
  animation: slideInUp 0.6s 0.25s ease both;
}

.carousel-item.active .animate-slide p {
  animation: slideInUp 0.6s 0.4s ease both;
}

.carousel-item.active .animate-slide .caption-btns {
  animation: slideInUp 0.6s 0.55s ease both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==============================
   RESPONSIVE ADJUSTMENTS
============================== */
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .about-img-wrap {
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 55px 0;
  }

  .social-icons {
    justify-content: center;
  }

  .col-6.col-md-3:nth-child(2n) .counter-card {
    border-right: none;
  }

  .contact-form-card {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.6rem;
  }

  .top-bar {
    text-align: center;
  }

  .footer-top {
    padding: 40px 0 28px;
  }
}