* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at 10% 15%, rgba(255, 209, 102, 0.18), transparent 14%),
              radial-gradient(circle at 90% 12%, rgba(63, 130, 255, 0.14), transparent 18%),
              radial-gradient(circle at 70% 90%, rgba(26, 94, 42, 0.08), transparent 20%),
              linear-gradient(180deg, #f3f8ff 0%, #eaf4ff 100%);
  background-size: 220% 220%, 220% 220%, 220% 220%, auto;
  background-position: 0% 0%, 100% 0%, 100% 100%, 50% 50%;
  color: #10243f;
  overflow-x: hidden;
  animation: backgroundGlow 24s ease infinite;
}

/* Navigation */
.navbar {
  background:
    radial-gradient(circle at top left, rgba(26, 94, 65, 0.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(8, 22, 46, 0.12), transparent 40%),
    rgba(244, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(16, 36, 63, 0.12);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: 0.3s;
}
.navbar.scrolled {
  padding: 8px 0;
  background:
    radial-gradient(circle at top left, rgba(26, 94, 65, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(8, 22, 46, 0.14), transparent 40%),
    rgba(248, 252, 250, 0.98);
  box-shadow: 0 5px 25px rgba(16, 36, 63, 0.14);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 95px;
  width: auto;
  transition: height 0.3s ease;
}
.navbar.scrolled .logo img {
  height: 65px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #183b2a;
  font-weight: 600;
  font-size: 0.8rem;
  transition: 0.3s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #1a5e2a;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}
.nav-links a:hover, .nav-links a.active {
  color: #1a5e2a;
}
.nav-links a i {
  font-size: 0.9rem;
}
.nav-links a:hover::after, .nav-links a.active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav-right-section {
  display: flex;
  align-items: center;
}
.header-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-left: 30px; /* Space between nav links and contact info */
}
.header-contact-info a {
  color: #4e6c5b;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap; /* Prevent wrapping */
  display: flex;
  align-items: center;
}
.header-contact-info a:hover {
  color: #1a5e2a;
}
.header-contact-info i {
  margin-right: 5px;
  color: #1a5e2a;
  font-size: 0.85rem;
}
.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #1a5e2a;
}

/* Hero Section with Background Image */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  color: white;
  overflow: hidden;
  background: transparent;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.15), transparent 16%),
              radial-gradient(circle at 80% 15%, rgba(38, 198, 218, 0.12), transparent 15%);
  pointer-events: none;
  opacity: 1;
  animation: floatGlow 14s ease-in-out infinite;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%, rgba(26,94,42,0.12));
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}
.hero-slider {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  z-index: 2; /* Ensure slider content is above the overlay */
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden; /* Prevent interaction when slide is not active */
  pointer-events: none; /* Ensure clicks pass through to the active slide */
  transform: scale(1.08);
  transition: opacity 1s ease, transform 12s ease; /* Removed visibility transition to make it clickable instantly */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible; /* Show and allow interaction */
  pointer-events: auto; /* Enable button clicks */
  transform: scale(1);
}
.hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Darken background to make buttons and text pop */
  z-index: 1; /* Keep overlay below slider content */
  pointer-events: none; /* Allow clicks to pass through */
}
.hero-grid {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  pointer-events: none; /* Allow interaction with dots behind if needed */
}
.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 10; /* Ensure content is above everything else in the hero */
  animation: heroFadeIn 1.2s ease forwards;
  pointer-events: auto; /* Explicitly allow pointer events */
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 22px;
  border-radius: 999px;
  color: #f7f7f7;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 9vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 28px;
  color: white;
  text-shadow: 0 10px 40px rgba(0,0,0,0.4);
  letter-spacing: -0.03em;
}
.hero-content h1 b {
  font-weight: 900;
  text-transform: uppercase;
}
.hero-content h1 span {
  color: #ffd166;
  display: block;
  font-weight: 600;
  font-style: italic;
  font-size: 0.72em;
  letter-spacing: 1px;
  margin-top: 12px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.hero-content p {
  color: rgba(255,255,255,0.95);
  margin: 0 auto 35px;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 750px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 35px;
  pointer-events: auto; /* Ensure container allows clicks */
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd166 0%, #ff9f00 100%);
  color: #10243f;
  padding: 16px 38px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 18px 40px rgba(255, 177, 27, 0.28);
  position: relative;
  overflow: hidden;
  opacity: 0; /* Initial state for entrance animation */
}
.hero-slide.active .hero-btn {
  animation: fadeInUp 0.8s ease forwards;
}
.hero-slide.active .hero-btn:nth-child(2) {
  animation-delay: 0.2s; /* Staggered entrance for the second button */
}
.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s;
}
.hero-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 26px 55px rgba(255, 177, 27, 0.38);
  filter: brightness(1.03);
}
.hero-btn:hover::before {
  left: 100%;
}
.hero-btn.outline {
  background: transparent;
  border: 2px solid #ffd166;
  color: #ffd166;
  box-shadow: none;
  padding: 14px 36px;
}
.hero-btn.outline:hover {
  background: #ffd166;
  color: #10243f;
}
.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  animation: floatImage 10s ease-in-out infinite;
  transform: translateY(0);
}
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s;
  animation: pulseDot 2.8s ease-in-out infinite;
}
.hero-dot.active {
  background: linear-gradient(135deg, #ffd166 0%, #ff7f50 100%);
  transform: scale(1.3);
  border-color: transparent;
  animation: none;
}

@media (max-width: 900px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    max-width: 90%;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #ffb703, #fb5607);
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}
.section-title p {
  color: #6c7a89;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8faf8 100%);
}
.about-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}
.about-text {
  flex: 1;
}
.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #4a5a6a;
  font-size: 0.9rem;
  text-align: justify;
}
.about-text h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1a5e2a;
}
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}
.stat-box {
  text-align: center;
}
.stat-box h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a5e2a;
}
.stat-box p {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c7a89;
}
.about-image {
  flex: 1;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Marquee Styles */
.marquee-bar {
  background: #10243f;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 3px solid #1a5e2a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.marquee-inner {
  display: inline-block;
  animation: marquee-scroll 35s linear infinite;
}
.marquee-inner span {
  display: inline-block;
  padding: 0 60px;
  color: #ffd166;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.marquee-inner i {
  margin-right: 12px;
  color: #fff;
}
@keyframes marquee-scroll {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* About Page Specific Styles */
.subpage-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  background: url('pages/page2.jpeg') no-repeat center center/cover;
  margin-top: 80px;
  color: white;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16, 36, 63, 0.9), rgba(26, 94, 42, 0.7));
}
.subpage-hero .container {
  position: relative;
  z-index: 2;
}
.about-page-details {
  padding: 100px 0;
  position: relative;
}

/* Modern About Page Enhancements */
.about-main-content {
  padding: 120px 0 80px; /* Adjust padding for navbar */
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  background: #10243f;
}

.about-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Darkened animated overlay to ensure content is in foreground and readable */
.about-main-content .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(16, 36, 63, 0.78), rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

/* Force content container to the very front */
.about-container {
  position: relative;
  z-index: 2;
}

.about-hero-content-image-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr; /* Content left, image right */
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.about-hero-content-only {
  grid-template-columns: 1fr;

  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-text-col {
  padding: 34px;
  background: rgba(16, 36, 63, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.about-hero-content-only .about-text-col {
  padding: 46px;
}

.about-hero-content-only .about-title {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.about-hero-content-only .about-intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.12rem;
}

.about-hero-content-only .about-text-col p:not(.about-intro) {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.about-title,
.about-title span,
.about-intro,
.about-text-col p,
.why-choose-us-title,
.why-choose-us-title span,
.about-cta h3,
.about-cta p {
  color: #fff;
}

.about-title span,
.why-choose-us-title span {
  color: #ffd166;
}

.about-text-col p {
  line-height: 1.8;
  margin-bottom: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

/* Modern About Page Enhancements */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(26, 94, 42, 0.1);
  transition: 0.4s;
  text-align: center; /* Center content in pillar items */
}

.pillar-item:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 25px 50px rgba(16, 36, 63, 0.1);
}

.pillar-item i {
  font-size: 2.5rem;
  color: #1a5e2a;
  margin-bottom: 20px;
}

.pillar-item h3 {
  color: #10243f;
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.pillar-item p {
  font-size: 0.95rem;
  color: #5a6b7d;
  line-height: 1.7;
}

.feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid #f0f4f8;
}

.feature-item i {
  color: #1a5e2a;
  flex: 0 0 auto;
  margin-top: 2px;
}

.feature-item span {
  display: block;
  color: #10243f;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.feature-item p {
  color: #5a6b7d;
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 0;
}

.why-choose-us,
.about-cta {
  background: rgba(16, 36, 63, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 42px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.about-cta {
  margin-top: 50px;
  text-align: center;
}

.why-choose-us {
  text-align: center;
}

.why-choose-us-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.why-choose-us-text {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.8;
}

.why-choose-us .feature-item {
  text-align: left;
}

.about-cta .hero-btn {
  opacity: 1;
}

@media (max-width: 992px) {
  .about-hero-content-image-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .about-hero-content-only .about-text-col {
    padding: 30px 22px;
  }
}

/* Our Business Section */
.business {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.business-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Moves video behind the overlay */
  pointer-events: none;
}
.business::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay for text readability */
  z-index: -1; /* Sits on top of the video but behind the content */
  pointer-events: none; /* Ensure clicks pass through */
}
.business-slider-container {
  width: 100%;
  overflow: hidden;
}
.business-grid {
  display: flex;
  gap: 30px;
  padding: 20px 0 40px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.business-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  border-radius: 28px;
  text-align: left;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(16, 36, 63, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex: 0 0 calc((100% - 60px) / 3);
}
.business-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.business-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  z-index: 10;
  pointer-events: none;
}
.business-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(16, 36, 63, 0.15);
  background: rgba(255, 255, 255, 0.9);
  border-color: #1a5e2a33;
}
.business-card:hover::after {
  left: 150%;
  transition: left 0.8s ease-in-out;
}
.business-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.business-card:hover img {
  transform: scale(1.1);
}
.business-card-content {
  padding: 25px 30px 35px;
  transition: transform 0.4s ease;
}
.business-card:hover .business-card-content {
  transform: translateY(-5px);
}
.business-card h3 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.4;
  color: #10243f;
  transition: color 0.4s ease, transform 0.4s ease;
}
.business-card:hover h3 {
  color: #1a5e2a;
  transform: translateX(5px);
}
.business-card p {
  color: #5a6b7d;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Business Slider Dots */
.business-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.business-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: 0.3s;
}
.business-dot.active {
  background: #1a5e2a;
  transform: scale(1.3);
}

/* Business Page Specific Styles */
.business-main-content {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    background: #10243f;
}
.business-page-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.business-page-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 209, 102, 0.12), transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(26, 94, 42, 0.16), transparent 25%),
        linear-gradient(135deg, rgba(16, 36, 63, 0.82) 0%, rgba(0, 0, 0, 0.68) 100%);
    z-index: 1;
    pointer-events: none;
}
.business-page-container {
    position: relative;
    z-index: 3;
}
.business-main-content::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 209, 102, 0.12);
    border-radius: 50%;
    top: -150px;
    left: -120px;
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}
.business-main-content::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(26, 94, 42, 0.15);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    filter: blur(90px);
    z-index: 2;
    pointer-events: none;
}
.business-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}
.business-header h2 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: 15px;
}
.business-header h2 span {
    color: #f6c44b;
    font-weight: 300;
}
.business-header p {
    color: #c5d1dc;
    font-size: 1.2rem;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}
.service-item {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.service-item:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: rgba(246, 196, 75, 0.65);
    box-shadow: 0 26px 58px rgba(0,0,0,0.26);
}
.service-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #eef3f7;
}
.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
    filter: brightness(1.04) contrast(1.04);
}
.service-item:hover .service-img-box img {
    transform: scale(1.08);
}
.service-info {
    padding: 26px 28px 30px;
    background: #fff;
    flex: 1;
}
.service-info h3 {
    color: #10243f;
    font-size: 1.08rem;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 12px;
}
.service-info p {
    color: #5a6b7d;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* QHSE Page Specific Styles */
.qhse-main-content {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    background: #10243f;
}

.qhse-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.qhse-page-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 209, 102, 0.12), transparent 25%),
        radial-gradient(circle at 88% 12%, rgba(26, 94, 42, 0.16), transparent 25%),
        linear-gradient(135deg, rgba(16, 36, 63, 0.82) 0%, rgba(0, 0, 0, 0.68) 100%);
    z-index: 1;
    pointer-events: none;
}

.qhse-page-container {
    position: relative;
    z-index: 3;
}

/* Animated Glow Circles - Matches About Page Style */
.qhse-main-content::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 209, 102, 0.12);
    border-radius: 50%;
    top: -150px;
    left: -120px;
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}

.qhse-main-content::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(26, 94, 42, 0.15);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    filter: blur(90px);
    z-index: 2;
    pointer-events: none;
}

.qhse-text-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    position: relative;
    z-index: 10;
}

.qhse-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.qhse-card-detailed {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
}

.qhse-card-detailed:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
}

.qhse-card-detailed i {
    color: #f6c44b;
    font-size: 3rem;
    margin-bottom: 20px;
}

.qhse-card-detailed h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.qhse-card-detailed p {
    color: #c5d1dc;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media(max-width: 991px) {
    .qhse-grid-detailed { grid-template-columns: 1fr; }
    .qhse-text-container { padding: 30px; }
}

/* CTA Background Pulse Animation */
@keyframes ctaBackgroundPulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8faf8;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('pages/page5.jpeg') no-repeat center center/cover;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}
.contact-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.contact-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #1a2a3a;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-detail i {
  width: 45px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a5e2a;
  font-size: 1.1rem;
}
.contact-detail p {
  color: #4a5a6a;
  font-size: 0.9rem;
  line-height: 1.5;
}
.map-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: #d4e0d4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border-radius: 12px;
}
.map-placeholder i {
  font-size: 2.5rem;
  color: #1a5e2a;
  margin-bottom: 15px;
}
.map-placeholder p {
  font-size: 0.85rem;
  color: #4a5a6a;
  text-align: center;
}

/* Footer */
.footer {
  background: radial-gradient(circle at top left, rgba(26, 94, 65, 0.45), transparent 26%),
              radial-gradient(circle at bottom right, rgba(8, 22, 46, 0.55), transparent 30%),
              #10243f;
  color: #d7e7f5;
  padding: 40px 0 20px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-col h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 0.95rem;
  font-weight: 700;
}
.footer-col p, .footer-col li {
  font-size: 0.75rem;
  margin: 8px 0;
  color: #a0b0c0;
  line-height: 1.5;
}
.footer-col ul {
  list-style: none;
}
.footer-col i {
  width: 25px;
  color: #1a5e2a;
}
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2c3e50;
  font-size: 0.7rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #1a5e2a;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(20px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #ffd166;
  color: #10243f;
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(255, 209, 102, 0.3);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes backgroundGlow {
  0%, 100% { background-position: 0% 0%, 100% 0%, 100% 100%, 50% 50%; }
  50% { background-position: 5% 10%, 95% 5%, 85% 95%, 50% 50%; }
}
@keyframes floatGlow {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-18px) scale(1.02); }
}
@keyframes floatImage {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bgSlowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background:
      radial-gradient(circle at top left, rgba(26, 94, 65, 0.16), transparent 36%),
      radial-gradient(circle at bottom right, rgba(8, 22, 46, 0.12), transparent 42%),
      rgba(248, 252, 250, 0.98);
    padding: 20px;
    border-radius: 15px;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    border: 1px solid rgba(26, 94, 42, 0.1);
    box-shadow: 0 18px 35px rgba(16, 36, 63, 0.15);
  }
  .nav-links.show {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .container {
 
  }
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .header-contact-info {
    display: none; /* Hide contact info on small screens */
  }
  .nav-right-section {
    gap: 0; /* Remove gap when contact info is hidden */
  }
}
