body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f4f6fb;
  color: #222;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.text-primary {
  color: #0074B7 !important;
}
.text-orange {
  color: #F15A29 !important;
}

.btn-orange {
  background: #F15A29;
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(241,90,41,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-orange:hover, .btn-orange:focus {
  background: #d94e1f;
  color: #fff;
  box-shadow: 0 8px 32px rgba(241,90,41,0.18);
  transform: translateY(-2px) scale(1.03);
}

.footer-main {
  background-color: #2c3e50;
  /* Dark grey background */
  color: #fff;
  padding: 40px 0;
}

.footer-main a {
  color: #fff;
  text-decoration: none;
}

.footer-main a:hover {
  color: #F15A29;
  /* Newland orange hover */
}

.footer-bottom {
  background-color: #0074B7;
  /* Newland blue strip */
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.footer-logo {
  max-width: 230px;
}

.btn-footer {
  background-color: #F15A29;
  color: white;
  border: none;
  padding: 8px 16px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 3px;
}

.btn-footer:hover {
  background-color: #d94d21;
}

 .gallery-item {
   display: none;
 }

 .gallery-item.show {
   display: block;
 }

/* Hero Section Styles */
.quote-hero-section {
  background-image: url('your-image.jpg');
  /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  color: #000;
}

/* .quote-hero-overlay { */
  /* background-color: rgba(255, 255, 255, 0.85); */
  /* White overlay */
  /* padding: 60px 20px; */
/* } */

.about-banner-section {
  background: url('../images/about-banner.jpg') no-repeat center center;
  background-size: cover;
  height: 250px;
  /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-products-section {
  background: url('../images/product-banner.jpg') no-repeat center center;
  background-size: cover;
  height: 250px;
  /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-gallery-section {
  background: url('../images/gallery-banner.jpg') no-repeat center center;
  background-size: cover;
  height: 250px;
  /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-contact-section {
  background: url('../images/contact-banner.jpg') no-repeat center center;
  background-size: cover;
  height: 250px;
  /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay-content {
  background: white;
  padding: 20px 40px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}

.subtitle {
  font-style: italic;
  color: #888;
  margin-bottom: 10px;
}

.underline {
  height: 4px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(to right, #F15A29, #0074B7);
  /* green + teal */
}

.form-input {
  border: 2px solid #0074B7;
  padding: 10px 20px;
  min-width: 220px;
  font-weight: bold;
}

.submit-btn {
  background-color: #66A100;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-weight: bold;
  min-width: 150px;
}

.btn-outline-primary {
  border-color: #0074B7;
  color: #0074B7;
  border-radius: 2rem;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: #0074B7;
  border-color: #0074B7;
  color: #fff;
}

.badge.bg-orange {
  background: #F15A29 !important;
  color: #fff;
  font-size: 1rem;
  padding: 0.5em 1em;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(241,90,41,0.10);
}

.navbar {
  box-shadow: 0 4px 24px rgba(0,116,183,0.08);
  background: #fff !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  font-size: 2rem;
  font-weight: 800;
  color: #0074B7 !important;
  letter-spacing: 1px;
}
.nav-link {
  font-weight: 600;
  color: #222 !important;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-bottom 0.2s, background 0.2s;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.5rem 1rem 0.3rem 1rem;
  margin: 0 0.2rem;
}
.nav-link:hover, .nav-link:focus {
  color: #0074B7 !important;
  background: #f4f6fb;
  border-bottom: 3px solid #0074B7;
}
.nav-link.active {
  color: #0074B7 !important;
  border-bottom: 3px solid #0074B7;
  background: #f4f6fb;
}

.hero-section {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(120deg, #e3f0fa 0%, #f4f6fb 100%);
  padding: 4rem 0 2rem 0;
}
.hero-section .container {
  z-index: 2;
  position: relative;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0074B7;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.hero-section p.lead {
  color: #555;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.section-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,116,183,0.08);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  border-left: 6px solid #0074B7;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.section-card:hover {
  box-shadow: 0 16px 48px rgba(0,116,183,0.13);
  border-left: 6px solid #F15A29;
}

.service-card {
  background: #fff;
  border: 1.5px solid #e3e6ea;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,116,183,0.07);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 2rem;
}
.service-card:hover {
  border-color: #F15A29;
  box-shadow: 0 8px 32px rgba(241,90,41,0.15);
  background: #f4f6fb;
  transform: translateY(-4px) scale(1.03);
}

.gallery-img-wrapper {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  background: #fff;
  margin-bottom: 1.5rem;
}
.gallery-img {
  transition: transform 0.3s;
  height: 275px;
    width: 100%;
    object-fit: cover;
}
.gallery-img-wrapper:hover .gallery-img {
  transform: scale(1.08);
}

.form-control-blue {
  border-radius: 1rem;
  border: 1.5px solid #0074B7;
  background: #f4f6fb;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control-blue:focus {
  border-color: #F15A29;
  box-shadow: 0 0 0 0.2rem rgba(241,90,41,0.08);
}

footer.footer {
  background: #0074B7;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(0,116,183,0.10);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  margin-top: 3rem;
}
.footer-link {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-link:hover, .footer-link:focus {
  color: #F15A29;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-list li {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-list li:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-in-list li:nth-child(2) {
  animation-delay: 0.4s;
}

.fade-in-list li:nth-child(3) {
  animation-delay: 0.6s;
}

.fade-in-list li:nth-child(4) {
  animation-delay: 0.8s;
}

.promise-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  cursor: default;
}

.promise-card:hover {
  transform: translateY(-10px) scale(1.02);
  background-color: rgba(255, 255, 255, 0.15);
  /* slight change to background */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* .promise-card:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
} */

 .glass-card {
   background: #0074B7;
   border-radius: 16px;
   padding: 24px;
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   /* transition: all 0.3s ease; */
    transition: transform 0.4s ease, opacity 0.4s ease;
 }

 .glass-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
 }

 .service-icon img {
   filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
 }

 .testimonial-card {
   background: rgba(255, 255, 255, 0.6);
   border-radius: 16px;
   padding: 24px;
   backdrop-filter: blur(8px);
   -webkit-backdrop-filter: blur(8px);
   border: 1px solid rgba(255, 255, 255, 0.25);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .testimonial-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
 }

 /* .text-second {
   color: #d1d5db !important;
 } */


.promise-card:hover h5,
.promise-card:hover p,
.promise-card:hover i {
  color: #fff;
  filter: brightness(1.2);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .navbar-brand {
    font-size: 1.2rem !important;
  }
  .section-card {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 40vh;
    padding: 2rem 0 1rem 0;
  }
  .service-card {
    padding: 1.5rem 1rem;
  }
  .gallery-img-wrapper {
    margin-bottom: 1rem;
  }
  .navbar-brand img {
    height: 32px !important;
  }
  .section-card {
    padding: 1rem 0.5rem;
  }
} 