body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  overflow-x: hidden !important;
  padding-top: 60px;

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

#mainNav {
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  /* important */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
  width: 46px;
}

.navbar-icons {
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.navbar-icons:hover {
  color: #000000;
}

.navbar-nav .nav-link {
  padding: 8px 12px !important;
}

.enquire-btn {
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 6px;
  white-space: nowrap;
}

.active-nav .navbar-icons {
  color: #000000;
  border-bottom: 2px solid #170553;
  padding-bottom: 2px;
}

/* Mobile nav */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 12px 4px;
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
  }

  .navbar-nav .nav-link {
    padding: 10px 4px !important;
  }

  .enquire-btn {
    margin-top: 8px;
    width: fit-content;
  }
}


/* HERO */

.servicepage-hero {
  background: #1f355e;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.servicepage-hero-title{
    font-family: 'Playfair Display', serif;
}

.servicepage-hero-content {
  max-width: 800px;
  margin: auto;
}

.servicepage-hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.servicepage-hero p {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.7;
}



/* SERVICES */

/* ── SERVICES SECTION ── */
.servicepage-services {
  padding: 100px 20px 120px;
  background: #f5f4f0;
  position: relative;
}

.servicepage-services::before {
  content: 'SERVICES';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 300;
  color: rgba(31, 53, 94, 0.04);
  letter-spacing: 20px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.servicepage-container {
  max-width: 1180px;
  margin: auto;
}

/* ── SERVICE CARD ── */
.servicepage-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 80px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.servicepage-service:hover {
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.servicepage-service:last-child {
  margin-bottom: 0;
}

/* ── IMAGE SIDE ── */
.servicepage-image {
  position: relative;
  overflow: hidden;
  height: 460px;
}

.servicepage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.servicepage-service:hover .servicepage-image img {
  transform: scale(1.06);
}

.servicepage-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 53, 94, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

/* ── TEXT SIDE ── */
.servicepage-text {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1f355e;
  margin-bottom: 16px;
  opacity: 0.65;
}

.servicepage-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.servicepage-text p {
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 32px;
  font-size: 15px;
}

/* ── DIVIDER ── */
.text-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #1f355e, #4b7bec);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ── FEATURE LIST ── */
.servicepage-text ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.servicepage-text li {
  font-size: 13.5px;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.servicepage-text li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f355e;
  margin-top: 6px;
}

/* ── REVERSE LAYOUT ── */
.servicepage-reverse {
  direction: ltr;
}

.servicepage-reverse .servicepage-image {
  order: 2;
}

.servicepage-reverse .servicepage-text {
  order: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .servicepage-service {
    grid-template-columns: 1fr;
  }

  .servicepage-image {
    height: 260px;
  }

  .servicepage-reverse .servicepage-image,
  .servicepage-reverse .servicepage-text {
    order: unset;
  }

  .servicepage-text {
    padding: 36px 28px;
  }

  .servicepage-text h2 {
    font-size: 28px;
  }

  .servicepage-text ul {
    grid-template-columns: 1fr;
  }

  .servicepage-services::before {
    display: none;
  }
}

/* FOOTER */

.contact-footer {
  background: #1b2c4a;
  color: white;
  padding: 70px 20px 30px;
}

.contact-footer-container {
  max-width: 1200px;
  margin: auto;
}

.contact-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.contact-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-logo span {
  background: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
}

.contact-footer-description {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.contact-socials span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2b3e63;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.contact-footer-links h4 {
  margin-bottom: 18px;
}

.contact-footer-links ul {
  list-style: none;
  padding: 0;
}

.contact-footer-links li {
  margin-bottom: 10px;
  color: #cbd5e1;
  font-size: 14px;
}

.contact-footer-links a {
  text-decoration: none;
  color: #cbd5e1;
}

.contact-footer-links a:hover {
  color: white;
}

.contact-footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #cbd5e1;
}

/* RESPONSIVE */

@media(max-width:900px) {

  .contact-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-cta-title {
    font-size: 32px;
  }

}

@media(max-width:500px) {

  .servicepage-hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .servicepage-hero p {
    font-size: 16px;
  }
}

/* floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  animation: pulse 2s infinite;

  /* hidden by default */
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float.whatsapp-visible {
  opacity: 1;
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.call-float {
  position: fixed;
  bottom: 96px;
  /* sits just above the whatsapp button (24 + 58 + 14 gap) */
  right: 24px;
  z-index: 9999;
  background: #dadeff;
  color: rgb(217, 0, 0);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  animation: callPulse 2s infinite;

  /* hidden by default */
  opacity: 0;
  pointer-events: none;
}

.call-float.call-visible {
  opacity: 1;
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5);
}

.call-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.7);
  color: rgb(38, 6, 223);
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}