/* Root Variables for Colors */
:root {
    --primary-red: #3d9142;
    --primary-yellow: #FFFF00;
    --primary-blue: #141417;
    --white: #FFFFFF;
  }
  
  /* Global Body Styles */
  body {
    background-color: var(--white);
    color: var(--primary-blue);
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    color: var(--primary-blue);
     
    font-size: 2.2rem;
    font-weight: 700;
  }
  p, a, li, span, button, input, textarea, label {
    font-family: 'Roboto', sans-serif;
  }
  
  /* Custom Navbar Styling */
.custom-navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 0.8rem 1rem;
  transition: all 0.3s ease-in-out;
}

.custom-navbar .navbar-brand span {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 12px;
  padding: 8px 0;
  position: relative;
  color: var(--primary-blue) !important;
  transition: all 0.3s ease-in-out;
}

/* Hover underline animation */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: var(--primary-red);
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-red) !important;
}

/* Inquiry Button */
.inquiry-btn {
  background-color: var(--primary-red);
  color: var(--white) !important;
  border-radius: 20px;
  padding: 6px 20px;
  transition: all 0.3s ease-in-out;
}

.inquiry-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white) !important;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }
}

  
  /* Banner Section */
  .banner .carousel-caption.custom-caption {
    width: 100%;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 250px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; /* Ensure the caption is above the image */
  }
  .banner .carousel-caption.custom-caption h2 {
    font-size: 70px;
    color: var(--white);
     
  }
  .banner .carousel-caption.custom-caption p {
    font-size: 1.2rem;
    color: var(--white);
  }
  
  /* Mobile adjustments for Carousel Caption */
  @media (max-width: 768px) {
    .banner .carousel-item img {
      height: 400px;
      object-fit: cover;
    }
  
    .banner .carousel-caption.custom-caption {
      padding: 60px 20px;
      bottom: 0;
      top: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: rgba(0, 0, 0, 0.4);
    }
  
    .banner .carousel-caption.custom-caption h2 {
      font-size: 1.8rem;
    }
  
    .banner .carousel-caption.custom-caption p {
      font-size: 1rem;
    }
  }
  
  
  /* About Section */

   
  .about h2 {
    margin-bottom: 20px;
  }
  .about p {
    line-height: 1.6;
  }
  
  /* Services Section */

  .services {
    background-color: aliceblue;
  }
  .service-card {
    border: none;
    transition: transform 0.3s;
  }
  .service-card:hover {
    transform: translateY(-10px);
  }
  .service-card .card-title {
    color: var(--primary-red);
  }
  .service-card .card-text {
    color: var(--primary-blue);
  }

  .testimonials-section {
    background: linear-gradient(90deg, #7de783, #44cca6);
  }
  
  .testimonials-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
  }
  
  .testimonials-section .highlight-text {
    
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-block;
  }
  
  .testimonial-box {
    max-width: 720px;
    margin: auto;
  }
  
  .testimonial-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  
  
  
  /* Gallery Section */
  .gallery img {
    border-radius: 5px;
  }
  
  /* Inquiry Form */
  .inquiry-full-section {
    width: 100%;
    background-color: #f8f9fa;
  }
  
  .img-fixed-size {
    width: 500px;
    height: 400px;
    object-fit: cover;
  }
  
  /* Responsive for small screens */
  @media (max-width: 768px) {
    .img-fixed-size {
      width: 100%;
      height: auto;
    }
  }
  
  
  
  /* Footer Styling */
  .custom-footer {
    background-color: #002f5b; /* Dark navy blue background */
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .custom-footer h5 {
    color:#f7ab00;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.25rem;
  }

  .footer-logo {
    height: 40px;
    margin-bottom: 15px;
  }

  .footer-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .footer-links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-contact p,
  .footer-contact a {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
  }

  .newsletter-form .form-control {
    border-radius: 0;
    border: none;
    margin-bottom: 10px;
  }

  .newsletter-form .btn-subscribe {
    background-color: #ffaf00; /* Example accent color */
    border: none;
    border-radius: 0;
    font-weight: 600;
    color: #000;
    width: 100%;
  }

  .footer-section {
    background-color: #003a1e;
  }
  
  .footer-heading {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #f7ab00;
  }
  
  .footer-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #f7ab00;
  }
  
  .footer-social a {
    font-size: 1.2rem;
    margin-right: 12px;
    color: #ffffff;
  }
  
  .footer-social a:hover {
    color: #f7ab00;
  }
  
  .btn-subscribe {
    background-color: #f7ab00;
    border: none;
    font-weight: 600;
    width: 100%;
    color: #000;
  }
  
  .footer-bottom {
    color: #ccc;
    font-size: 0.85rem;
  }
   

  /* Floating Inquiry/Call Button */
  .floating-inquiry {
    position: fixed;
    right: 20px;
    bottom: 50px;
    background-color: #ffaf00;
    color: #000;
    border-radius: 25px;
    padding: 10px 16px;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  .floating-inquiry:hover {
    text-decoration: none;
    opacity: 0.9;
  }


  /* Section Spacing */
  .blog-section {
    padding: 60px 0;
  }

  /* Section Heading */
  .blog-section .section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .blog-section .section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
  }

  /* Blog Card Styling */
  .blog-card {
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .blog-card:hover {
    transform: translateY(-5px);
  }
  .blog-card .card-img-top {
    border-radius: 0;
    height: 220px;
    object-fit: cover;
  }
  .blog-card .card-body h5.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .blog-card .card-body .badge {
    font-size: 0.8rem;
    background-color: #1f4c7a; /* Adjust to match your brand color */
  }
  .blog-card .card-body .btn-link {
    color: #0062cc;
    font-weight: 500;
  }
  .blog-card .card-body .btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  /* Floating Call Button (Optional) */
  .floating-call-btn {
    position: fixed;
    right: 20px;
    bottom: 50px;
    background-color: #f7ab00; /* Adjust to match your brand color */
    color: #000;
    border-radius: 25px;
    padding: 10px 16px;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none;
  }
  .floating-call-btn:hover {
    opacity: 0.9;
    text-decoration: none;
  }

  .map-container {
    width: 1080px;
    height: 500px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .map-container {
      width: 100%;
      height: 300px;
    }
  
    .map-container iframe {
      width: 100%;
      height: 100%;
    }
  }


  /* Projects Section Styling */
.projects-section {
  background-color: #e9f8e5; /* light green */
}

.projects-section .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}

.projects-section .highlight-text {
  background: linear-gradient(90deg, #3d9142, #a3d977);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  display: inline-block;
}

.projects-section .section-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  color: #444;
  margin-top: 10px;
}

.project-card {
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.project-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3d9142;
  margin-bottom: 10px;
}

.project-location,
.project-status {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: #555;
}

/* Project Image Styling */
.project-img {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.btn-know-more {
  background-color: #3d9142;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  padding: 6px 16px;
  font-weight: 600;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background-color: #1c5e20;
  color: #fff;
}

     