/* Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #222;
  background-color: #fdfdfd;
}
/* White Navbar — Always solid */
/* Slim White Navbar */
.navbar {
  background-color: #ffffff !important;
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0; /* Reduced from 20px */
  font-size: 0.95rem;
}

.navbar .navbar-brand {
  font-size: 1.1rem;
  color: #111 !important;
}

.navbar .nav-link {
  color: #333 !important;
  padding: 6px 12px;
  margin: 0 2px;
  transition: background-color 0.2s ease;
  border-radius: 6px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  background-color: #f5f5f5;
  color: #000 !important;
}

/* Toggler icon alignment */
.navbar-toggler {
  padding: 4px 6px;
}




/* Hero Section with Safe Background */
/* Hero Section with Background Image */
.hero-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
              url('images/hero.jpeg') center/cover no-repeat;
  min-height: 95vh;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Hero Text */
.hero-section h1 {
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-section p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  color: #f0f0f0;
}

/* CTA Buttons */
.hero-section .btn {
  border-radius: 8px;
  font-weight: 500;
  min-width: 150px;
  transition: all 0.3s ease;
}

.hero-section .btn-light:hover {
  background-color: #f1f1f1;
}

.hero-section .btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

.hero-section .btn-primary {
  background-color: #005f73;
  border: none;
}

.hero-section .btn-primary:hover {
  background-color: #003d4b;
}

/* Animation */
.animate-hero {
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* About Section */
#about i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}


/* Who We Are */
.who-we-are h2 {
  font-size: 2rem;
  color: #222;
}

.who-we-are p {
  font-size: 0.98rem;
  color: #555;
}

.who-we-are i {
  color: #414b4d;
}
/* Services Preview */
.services-preview {
  background-color: #fafafa;
}

.services-preview h2 {
  font-size: 2rem;
  color: #222;
}

.services-preview p {
  font-size: 0.96rem;
  color: #555;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
/* Why Choose Us Section */
.why-choose-us {
  background-color: #ffffff;
}

.why-choose-us h2 {
  font-size: 2rem;
  color: #222;
}

.why-choose-us p {
  font-size: 0.96rem;
  color: #555;
}

.core-value-card {
  border-radius: 10px;
  background-color: #fdfdfd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
/* CTA Banner – White/Grey Version */
.cta-banner {
  background-color: #f8f9fa; /* light grey */
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.cta-banner h2 {
  font-size: 2rem;
  color: #222;
}

.cta-banner p {
  font-size: 1.1rem;
  color: #555;
}

.cta-banner .btn {
  border-radius: 8px;
  font-weight: 500;
  min-width: 160px;
  transition: all 0.3s ease;
}

.cta-banner .btn-dark:hover {
  background-color: #333;
}

.cta-banner .btn-outline-dark:hover {
  background-color: #222;
  color: #fff;
}

.service-card .btn {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
}

.office-gallery {
  background-color: #f8f9fa;
}

.office-gallery h2 {
  font-size: 2rem;
  color: #222;
}

.office-gallery .image-wrapper {
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-gallery img {
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.office-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.button-class{
  background-color: #414b4d;
  border: none;
}

.office-gallery .gallery-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}