/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Poppins:wght@300;400;500;600;700&display=swap');

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #af6f24 !important;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Poppins', sans-serif;
line-height: 1.5;
color: #333;
max-width: 100%;
overflow-x: hidden;
background-color: #ffffff;
}

body.scrolled {
padding-top: 90px;
}

/* Navbar Styles */
.navbar {
border-radius: 40px;
padding: 0.75rem 1.5rem;
background-color: white;
width: 100%;
max-width: 1320px;
margin: 0 auto;
transition: all 0.3s ease;
font-family: 'Poppins', sans-serif;
}

.navbar.fixed-top {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1030;
max-width: 100%;
border-radius: 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
width: 50px;
height: auto;
}

.nav-link {
position: relative;
color: black !important;
margin: 0 10px;
transition: color 0.3s ease;
font-family: 'Poppins', sans-serif;
}

.nav-link:hover {
opacity: 0.8;
}

.nav-link.active::after {
content: "";
position: absolute;
bottom: 4px;
left: 0;
width: 100%;
height: 2px;
background-color: black;
@media (max-width: 575.98px) {
  width: 19%;
}
}

/* Custom hamburger to X icon */
.navbar-toggler {
border: none;
background: transparent;
padding: 0;
}

.navbar-toggler:focus {
box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
background-image: none;
position: relative;
height: 24px;
width: 30px;
transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after,
.navbar-toggler .navbar-toggler-icon .middle-bar {
content: '';
position: absolute;
width: 100%;
height: 3px;
background-color: #333;
border-radius: 2px;
left: 0;
transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon:before {
top: 0;
}

.navbar-toggler .navbar-toggler-icon .middle-bar {
top: 50%;
transform: translateY(-50%);
}

.navbar-toggler .navbar-toggler-icon:after {
bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
transform: rotate(45deg);
top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .middle-bar {
opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
transform: rotate(-45deg);
bottom: 10px;
}

/* Contact Heading Styles */
.contact-heading {
font-family: 'Roboto', sans-serif;
font-size: 32px;
font-weight: 500;
color: #B58042;
margin-bottom: 1rem;
}

/* Section Title Styles */
.section-title {
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 18px;
color: #B58042;
margin-bottom: 0.5rem;
}

/* Content Styles */
p, li, ul, ol, span, div, strong, em, i, b {
font-family: 'Poppins', sans-serif;
}

p, li {
font-size: 16px;
padding-bottom: 8px;
}

/* Button Styles */
.btn {
font-family: 'Poppins', sans-serif;
}

/* Footer Styles */
footer {
background-color: #b1783b;
color: white;
padding: 20px 0;
margin-top: 50px;
font-family: 'Poppins', sans-serif;
}

.icon-box i {
font-size: 1.5rem;
color: #b1783b;
}
.icon-box {
margin-bottom: 1.5rem;
}
.form-control, .form-label {
font-size: 0.9rem;
font-family: 'Poppins', sans-serif;
}
.form-section {
border: 1px solid #f0ad4e;
border-radius: 10px;
padding: 25px;
}
.btn-custom {
background-color: #b1783b;
color: white;
border-radius: 8px;
}
.btn-custom:hover {
background-color: #965f2d;
color: white;
}
.contact-card {
border: 1px solid #f0ad4e;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
background-color: #fff;
min-height: 200px;
display: flex;
flex-direction: column;
}
.contact-number {
background-color: #f0ad4e;
color: white;
border-radius: 8px;
padding: 5px 12px;
font-weight: bold;
display: inline-block;
margin-bottom: 15px;
align-self: flex-start;
}
.contact-card h6 {
font-weight: 600;
color: #333;
margin-bottom: 10px;
font-size: 0.9rem;
line-height: 1.6;
font-family: 'Roboto', sans-serif;
}
.contact-card p {
font-size: 0.9rem;
color: #666;
margin-bottom: 0;
font-family: 'Poppins', sans-serif;
}

/* Map Styles */
.map-container {
border: 1px solid #f0ad4e;
border-radius: 10px;
overflow: hidden;
margin-top: 2rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
width: 100%;
height: 300px;
border: none;
}

/* Banner Styles */
.banner-container {
position: relative;
width: 100%;
height: 500px;
overflow: hidden;
margin-bottom: 30px;
}

.banner-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.incentives-link {
position: absolute;
bottom: 20px;
right: 20px;
background-color: rgba(255, 255, 255, 0.9);
padding: 10px 15px;
border-radius: 8px;
font-weight: 600;
color: #b1783b;
text-decoration: none;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.incentives-link:hover {
background-color: #b1783b;
color: white;
}

/* Responsive adjustments */
@media (max-width: 767px) {
.section-title {
font-size: 1.4rem;
}
.icon-box {
flex-direction: column;
text-align: center;
align-items: center;
}
.icon-box i {
margin-bottom: 10px;
}
.form-section {
padding: 20px;
}
.contact-card {
min-height: auto;
}
.banner-container {
height: 500px;
}
.incentives-link {
  font-size: 0.9rem;
  padding: 8px 12px;
  margin-right: 12px;
}
.map-container iframe {
height: 250px;
}
.contact-heading {
font-size: 28px;
}
}

@media (max-width: 575px) {
.section-title {
font-size: 1.2rem;
}
.icon-box {
margin-bottom: 1rem;
}
.form-section {
padding: 15px;
}
.email-break {
word-break: break-all;
}
.banner-container {
height: 320px;
}
.incentives-link {
font-size: 0.8rem;
padding: 6px 10px;
bottom: 10px;
right: 10px;
}
.map-container iframe {
height: 200px;
}
.contact-heading {
font-size: 24px;
}
}

.banner-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.814);
  z-index: 1;
  pointer-events: none;
}

.aboutus-banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 50px;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 20px;
}

.aboutus-banner-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.685);
  margin-bottom: 0.5rem;
  pointer-events: auto;
  font-family: 'Roboto', sans-serif;
}

.aboutus-breadcrumb {
  font-size: 1.2rem;
  pointer-events: auto;
  font-family: 'Poppins', sans-serif;
}

.aboutus-breadcrumb .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

.aboutus-breadcrumb-link {
  color: #f7c873;
  text-decoration: underline;
  transition: color 0.2s;
}

.aboutus-breadcrumb-link:hover,
.aboutus-breadcrumb-link:focus {
  color: #af6f24;
  text-decoration: underline;
}

.aboutus-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "→";
  color: #fff;
  padding: 0 0.5em;
  font-size: 1.1em;
}

.aboutus-breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

/* Tablet optimization */
@media (max-width: 991.98px) {
  .aboutus-banner-overlay {
    top: 60%;
  }
  
  .aboutus-banner-title {
    font-size: 2.5rem;
  }
  
  .aboutus-breadcrumb {
    font-size: 1.1rem;
  }
}

/* Mobile optimization */
@media (max-width: 767.98px) {
  .aboutus-banner-overlay {
    top: 65%;
  }
  
  .aboutus-banner-title {
    font-size: 2rem;
  }
  
  .aboutus-breadcrumb {
    font-size: 1rem;
  }
  
  .aboutus-banner-overlay {
    padding: 0 15px;
  }
}

/* Small mobile optimization */
@media (max-width: 575.98px) {
  .aboutus-banner-overlay {
    top: 70%;
  }
  
  .aboutus-banner-title {
    font-size: 1.5rem;
  }
  
  .aboutus-breadcrumb {
    font-size: 0.9rem;
  }
  
  .aboutus-banner-overlay {
    padding: 0 10px;
  }
}

/* Extra small mobile optimization */
@media (max-width: 375px) {
  .aboutus-banner-overlay {
    top: 75%;
  }
  
  .aboutus-banner-title {
    font-size: 1.2rem;
  }
  
  .aboutus-breadcrumb {
    font-size: 0.8rem;
  }
}
  
  .banner-container .incentives-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: #b1783b;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
    z-index: 3;
  }
  
  .banner-container .incentives-link:hover {
    background-color: #b1783b;
    color: #fff;
  }

/* Add a class for the custom heading color used in 'Send us a Message' */
.heading-custom {
  color: #B58042;
  /* This matches the .guideline-title and .accordion-button color from incentives.css */
}

/* Apply to section titles and labels */
.section-title,
.fw-bold,
.icon-box strong,
.icon-box i,
.form-section h5 {
  color: #B58042 !important;
  font-family: 'Roboto', sans-serif;
}

/* Update form section heading */
.form-section h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #B58042;
}

/* Update footer headings */
footer h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

/* Update footer content */
footer p, footer li, footer a {
  font-family: 'Poppins', sans-serif;
}