:root {
  --primary-color: #143a72; /* Brand Navy */
  --primary-dark: #0a1d3b; /* Darker Navy */
  --accent-color: #ff6b00; /* Action Orange */
  --secondary-color: #f8f9fa;
  --light-bg: #ffffff;
  --light-gray-bg: #f8f9fa;
  --text-color: #333333;
  --text-muted: #6c757d;
  --heading-color: #212529;
  --card-bg: #ffffff;
  --transition: all 0.3s ease;
  --heading-font: "Raleway", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.bg_secondary {
  background-color: var(--primary-color);
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--heading-color) !important;
  font-weight: 600;
  margin-left: 15px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.process-icon-placeholder i {
  color: var(--accent-color);
  font-size: 2rem;
}

.process-step .flaticon-wrapper img {
    height: 200px;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  transition: var(--transition);
  color: #fff;
}

.btn-primary:hover {
  background-color: #e65c00;
  border-color: #e65c00;
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-dark {
  border-color: var(--heading-color);
  color: var(--heading-color);
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
}
.btn-outline-dark:hover {
  background-color: var(--heading-color);
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    255,
    255,
    255,
    0.3
  ); /* Lighter overlay for light theme look, or keep dark if text is white? */
  /* Actually for readability on photos, dark overlay + white text is usually best even in light themes. 
     But let's make it a bit lighter or gradient if we want "light themed". 
     Let's stick to standard readable hero: Dark Overlay + White Text is universally good.
     But to make it feel "lighter", maybe reduce opacity or use a white gradient bottom?
     Let's keep the hero image interaction standard (dark overlay) for contrast, but the rest of the site light.
  */
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 80%;
  margin: 0 auto 30px;
  color: #f0f0f0;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slick-prev,
.slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  opacity: 0.8;
  color: #fff; /* Arrows white on hero */
}

/* Section Common */
section {
  padding: 80px 0;
}

.section-title.side_sect h2::after{
  display: none;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  color: var(--heading-color);
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Services */
.services-section {
  background-color: var(--light-gray-bg);
}

.service-card {
  background-color: var(--card-bg);
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.service-body {
  padding: 25px;
}

.service-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.card-text {
  color: var(--text-muted);
}

/* About */
.about-section {
  background-color: #fff;
}

.about-img img {
  border-radius: 10px;
  box-shadow: 10px 10px 0 var(--primary-color);
}

.about-text {
  color: var(--text-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  color: var(--heading-color);
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-weight: 500;
}

.checklist li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* Gallery */
.gallery-section {
  background-color: var(--light-gray-bg);
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  transition: transform 0.4s ease;
  width: 100%;
  height: 250px; /* Uniform height for grid */
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay Effect */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* Testimonials */
.testimonials-section {
  background-color: #fff;
}

.testimonial-card {
  text-align: center;
  padding: 30px;
  background: var(--light-gray-bg);
  margin: 10px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.client-name {
  margin-top: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

/* Contact */
.contact-section {
  background-color: var(--light-gray-bg);
}

.contact-form .form-control {
  background-color: #fff;
  border: 1px solid #ddd;
  color: var(--heading-color);
  padding: 15px;
}

.contact-form .form-control:focus {
  background-color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}

.map-container {
  height: 100%;
  min-height: 400px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  padding: 50px 0 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* Bootstrap Overrides for Brand Consistency */
.bg-dark {
  background-color: var(--primary-dark) !important;
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--accent-color);
}

/* Responsive */

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .process-step {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .hero-slide {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .flaticon-wrapper {
    width: 70px;
    height: 70px;
  }

  .flaticon-wrapper i {
    font-size: 28px;
  }

  .process-step h5 {
    font-size: 1.1rem;
  }

  /* Stats Bar Mobile */
  .py-5.bg-primary .display-4 {
    font-size: 2.5rem;
  }
}
