/* Root Variables for Colors */
:root {
    --primary-red: #FF0000;
    --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: 'Open Sans', sans-serif;
    color: var(--primary-blue);
  }
  p, a, li, span, button, input, textarea, label {
    font-family: 'Roboto', sans-serif;
  }
  
  /* Navbar Styling */
  .navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .navbar-brand {
    font-weight: bold;
    color: var(--primary-blue);
  }
  .nav-link {
    color: var(--primary-blue) !important;
    margin-right: 30px;
    font-weight: 600;

  }
  .inquiry-btn {
    background-color: var(--primary-red);
    color: var(--white) !important;
    border-radius: 20px;
    padding: 3px 20px;
  }

  .inquiry-btn:hover{
    background-color: #141417;
  }
  
  /* 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: 2.5rem;
    color: var(--white);
    margin-top: 45px;
  }
  .banner .carousel-caption.custom-caption p {
    font-size: 1.2rem;
    color: var(--white);
  }
  
  /* Mobile adjustments for Carousel Caption */
  @media (max-width: 768px) {
    .banner .carousel-caption.custom-caption {
      padding: 10px;
      margin: 0;
      bottom: 0px;
    }
    .banner .carousel-caption.custom-caption h2 {
      font-size: 1.8rem !important;
      display: block !important;
      opacity: 1 !important;
    }
    .banner .carousel-caption.custom-caption p {
      font-size: 1rem !important;
      display: block !important;
      opacity: 1 !important;
    }
  }
  
  /* 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 */
  .testimonials h2 {
    color: var(--primary-blue);
  }
  .testimonial {
    padding: 20px;
    border-radius: 5px;
  }
  .testimonial p {
    font-style: italic;
  }
  .testimonial-img {
    width: 100px;      /* Adjust the width as needed */
    height: 100px;     /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image covers the container */
  }
  
  /* Gallery Section */
  .gallery img {
    border-radius: 5px;
  }
  
  /* Inquiry Form */
  #inquiry form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  /* 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%;
  }

  /* Bottom Bar */
  .footer-bottom {
    background-color: #001f3c; /* Slightly darker shade */
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
    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-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    height: 0;
  }
  
  .map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }