
body {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400;
  color: #222;
}

/* Optional: fine-tune headings for a consistent look */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.btn, .nav-link, input, select, textarea, label {
  font-family: 'Poppins', sans-serif;
}



/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-weight: 600;
}

/* Add spacing between nav links */
.navbar-nav .nav-link {
  margin: 0 10px;
  color: #000;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Active menu style */
.navbar-nav .nav-link.active {
  color: #007bff !important;
  font-weight: 600;
  border-bottom: 2px solid #007bff;
  padding-bottom: 6px;
}

/* Reduce placeholder font size + lighten color */
::placeholder {
    font-size: 13px;
    color: #b5b5b5 !important;
    opacity: 1; /* ensures color applies on all browsers */
}

/* For older browsers */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-size: 13px;
    color: #b5b5b5 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-size: 13px;
    color: #b5b5b5 !important;
}


/* Button style - applies to all .btn elements */
.btn {
  padding: 7px 22px; /* ⬅️ Extra left-right padding */
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Dark button specific (Get a Quote) */
.btn.btn-dark {
  background-color: #000;
  color: #fff;
  border: none;
}

.btn.btn-dark:hover {
  background-color: #333;
  color: #fff;
}


    /* Hero Section */
    .hero {
      text-align: center;
      padding: 120px 20px 80px;
    }
    .hero p {
      color: #6c757d;
    }
    .hero h1 {
      font-weight: 700;
      font-size: 3rem;
    }
    .hero .btn {
      margin: 8px;
      border-radius: 6px;
      padding: 7px 22px;
    }
    .btn-dark {
      background-color: #000;
      border: none;
    }

    /* Image Grid */
    .image-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
    }

    /* About Section */
    .about-section {
      padding: 80px 0;
    }

    /* Animated Gradient Background for Why Section */
.why-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(301deg, rgba(18, 35, 110, 1) 23%, rgba(17, 168, 166, 1) 97%);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
}
.why-section img {

    width: 100%;
    height: auto;
    object-fit: cover;
    }

/* Gradient animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Optional styling for inner cards */
.why-section h2 {
  font-weight: 700;
}

.why-section p {
  color: rgba(255, 255, 255, 0.85);
}

.why-section .bg-light {
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.why-section .bg-light:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}


    /* Products */
    .products-section, .services-section {
      padding: 80px 0;
      text-align: center;

    }
    .products-section h2, .services-section h2 {
      font-weight: 700;
      margin-bottom: 40px;
    }
    .product-card, .service-card {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e5e5e5;
      transition: all 0.3s;
      background: #fff;
      height: 100%;
      margin: 10px;
    }
    .product-card:hover, .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .product-card img, .service-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .product-card .card-body, .service-card .card-body {
      text-align: left;
      padding: 20px;

    }

    /* === Our Services Section Custom CSS === */
.our-services {
  background-color: #f5f5f5;
}

.our-services .service-item {
  transition: all 0.3s ease;
}

.our-services .service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.our-services .service-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .our-services .service-item {
    flex-direction: column;
    text-align: center;
  }
  .our-services .service-thumb {
    margin-bottom: 10px;
  }
}


/* === Get a Quote Modal Styling === */
#quoteModal .modal-content {
  border-radius: 16px;
  background: #ffffff;
}

#quoteModal .form-control, 
#quoteModal .form-select {
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

#quoteModal .form-control:focus,
#quoteModal .form-select:focus {
  border-color: #12236e;
  box-shadow: 0 0 0 0.2rem rgba(18, 35, 110, 0.15);
}

#quoteModal .btn-dark {
  background: linear-gradient(301deg, rgba(18, 35, 110, 1) 23%, rgba(17, 168, 166, 1) 97%);
  border: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#quoteModal .btn-dark:hover {
  transform: scale(1.03);
  opacity: 0.9;
}


    /* CTA Section */
    .cta-section {
      background: #12236e;
background: linear-gradient(301deg, rgba(18, 35, 110, 1) 23%, rgba(17, 168, 166, 1) 97%);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }
    .cta-section .btn-light {
      background: #fff;
      color: #000;
      font-weight: 600;
      border-radius: 8px;
      padding: 12px 28px;
    }

    /* Footer */
    footer {
      background: #fff;
      padding: 60px 0;
      font-size: 0.95rem;
      color: #666 ;
    }
    footer a {
      text-decoration: none;
      color: #666;
      padding: 10px 0px 10px 0px !important;

    }

    @media (max-width: 768px) {
      .hero {
        padding: 80px 15px 60px;
      }
      .hero h1 {
        font-size: 2rem;
      }
      .image-grid img {
        height: 200px;
      }
    }
/* Banner Section */
    .contact-banner {
      background-color:#fff;
      color: #fff;
      text-align: center;
      padding: 120px 20px 100px;
      position: relative;
    }
    

    .contact-banner h1 {
      font-weight: 700;
      font-size: 2.8rem;
      margin-bottom: 15px;
    }

    .contact-banner p {
      font-size: 1.1rem;
      max-width: 650px;
      margin: 0 auto;
      opacity: 0.95;
    }

    /* Decorative bottom line for banner */
    .contact-banner::after {
      content: "";
      position: absolute;
      bottom: -35px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 4px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 10px;
    }

    /* Contact Section */
    .contact-section {
      padding: 100px 0 80px;
       background: linear-gradient(301deg, rgba(18,35,110,1) 23%, rgba(17,168,166,1) 97%);
    }

    .contact-form {
      background: #fff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .contact-form .form-control {
      border-radius: 10px;
      padding: 12px 15px;
    }

    .btn-submit {
      background: linear-gradient(301deg, rgba(18,35,110,1) 23%, rgba(17,168,166,1) 97%);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 12px 40px;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* Contact Info */
    .contact-info {
      background: #fff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .contact-info img{ width:100%; height:auto; }

    .contact-info h3 {
      font-weight: 600;
    }

    .info-item {
      margin-bottom: 25px;
    }

    .info-item i {
      color: rgba(17,168,166,1);
      font-size: 22px;
      margin-right: 10px;
    }

    @media (max-width: 768px) {
      .contact-banner {
        padding: 100px 20px 80px;
      }

      .contact-banner h1 {
        font-size: 2rem;
      }

      .contact-form, .contact-info {
        margin-bottom: 30px;
      }
    }

/* Auto Scrolling Image Grid */
.image-grid {
  overflow: hidden;
  position: relative;
}

.scroll-container {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.scroll-content {
  display: flex;
  animation: scroll-left 40s linear infinite;
}

.scroll-content img {
  width: 350px;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 15px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-content img {
    width: 250px;
    height: 180px;
    margin: 0 10px;
  }
  .scroll-content {
    animation: scroll-left 25s linear infinite;
  }
}