:root {
  --green: #0F9964;
  --blue: #003049;
    --yellow: rgb(196, 182, 160);
    --gold: #9D8B63;

    --red: #CA4D4A;
    --color1: #242d3c;
    --color2: #89919c;
    --color3: #fff;
  }

  * {
    box-sizing: border-box;
    margin: 0;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* White top section */
.white-top {
  background-color: #ffffff;
}

/* Top bar styles */
.top-bar {
  background-color: rgb(88, 89, 91);
  color: #ffffff;
  font-size: 0.9rem;
}

.top-bar i {
  color: #8dc63f;
}

/* Icon wrapper */
.top-bar .icon-circle {
  background-color: #8dc63f;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.top-bar .icon-circle i{
  color: white;
}
/* Navbar styles */
.navbar {
  background-color: #ffffff;
}

.navbar-brand {
  font-weight: bold;
  color: #58595B;
}

.navbar-nav .nav-link {
  color: #58595B;
  font-weight: 500;
  margin: 0 10px;
}

.navbar-nav .nav-link:hover {
  color: #8dc63f;
}

.get-quote {
  background-color: #228B22;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
}

.get-quote:hover {
  background-color: #1a6f1a;
  color: #ffffff;
}

.call-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555556;
}

.logo{
  width: 180px;
}
.dropdown-menu a{
  color: #58595B;
}

.navbar-nav{
  padding-top: 1%;
}

.contact-text a{
  color: white;
  text-decoration: none;
}

/* Custom toggle button background and icon color */
.navbar-toggler {
  background-color: #8DC63F;
  border: none;
  padding: 8px;
  border-radius: 5px;
}

/* Custom white bars inside the toggle */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.social-div{
  display: flex;
  flex-direction: row;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .top-bar .container {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }

  .top-bar .social-div{
      flex-direction: row;
  }
  .navbar-nav {
      text-align: center;
  }
  .call-box {
      justify-content: center;
      margin-top: 1rem;
  }
}



/* Hero Section */
.hero-section h1 {
  font-size: 2.5rem;
}

.hero-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Green Call Button */
.call-btn {
  background-color: #8DC63F;
  color: #ffffff;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.call-btn:hover {
  background-color: #7AB934;
  color: #ffffff;
}

/* Make sure image covers fully */
.hero-section img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Make left hero section full height */
.hero-left {
  min-height: 75vh;
}

/* Subtitle */
.subtitle-text {
font-weight: 500;
font-size: 0.85rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 1px;
}

/* Shorter line next to subtitle */
.subtitle-line {
width: 60px;
height: 2px;
background-color: #ffffff;
opacity: 0.6;
border: none;
}

/* Highlighted word */
.text-green {
color: #8DC63F;
}

/* Text-muted override for dark bg */
.text-muted {
color: rgba(255, 255, 255, 0.7) !important;
}

/* Call button */
.call-btn {
background-color: #8DC63F;
color: #ffffff;
font-weight: bold;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
display: inline-block;
width: fit-content;
}

.call-btn:hover {
background-color: #7ab934;
}




/* More left padding on larger screens */
@media (min-width: 992px) {
  .ps-lg-7 {
      padding-left: 7rem !important;
  }
}

/* Left side styles */
.info-stats-section{
  margin-bottom: 2%;
}
.stats-year {
  color: #006EB8;
  font-size: 2.5rem;
  font-weight: 700;
}


@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.stats-year {
  animation: pulse 1.5s infinite;
}

.stats-year:hover {
  animation: pulse 1.5s;
}

.stats-title {
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.stats-line {
  height: 2px;
  background-color: #333;
  opacity: 0.4;
  border: none;
  width: 40px;
}

.stats-subtitle {
  color: #333;
  font-size: 0.95rem;
}

/* Floating yellow cards */
.floating-stats-box {
  position: absolute;
  top: -80px;
  left: 20px;
  right: 20px;
  display: flex;
  width: auto; /* fill space from left to right */
  z-index: 5;
  height: 130px;
}

.stats-card {
  flex: 1; /* equally divides space */
  background-color: #FFD700;
  color: #333;
  padding: 1rem;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

/* remove border between cards or keep optional */
.stats-card + .stats-card {
  border-left: 1px solid rgba(0,0,0,0.1);
  margin-left: 0;
}
@media (max-width:991px) {
  .hero-left{
    padding: 3%;
  }
}

@media (max-width:767px) {
  .info-stats-section {
height: 300px;
}

.floating-stats-box {

  top: 50px;

}
}

/* start 24hour */







.about-section .subtitle-text {
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  font-size: 1rem;
}

.about-section .subtitle-line {
  height: 2px;
  background: #333;
  opacity: 0.4;
  border: none;
  width: 40px;
}

.about-section .main-title {
  font-size: 2rem;
  font-weight: 700;
}

.about-section .yellow-bg {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #FFD700;
  width: 80%;
  height: 80%;
  z-index: 1;
}

.about-section .back-image {
  position: relative;
  width: 100%;
  z-index: 2;
}

.about-section .front-image {
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 60%;
  border: 8px solid #fff;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-section .testimonial-box {
  background-color: #f5f5f5;
  border-left: 5px solid #006EB8;
  border-radius: 4px;
}

.about-section .text-yellow {
  color: #FFD700;
}

.call-btn {
  background-color: #FFD700;
  color: #333;
  font-weight: bold;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

.call-btn:hover {
  background-color: #e6c200;
  color: #333;
}


.testimonial-box {
  background-color: #f5f5f5;
  border-left: 5px solid #006EB8;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 5%;
}

.image-stack{
  background-image: url(../images/rapid-service.webp);
  background-position: center;
  background-size: cover;
  height: 800px;
}

/* Make left column narrower */
.testimonial-text {
  flex: 0 0 75%;  /* 75% width */
}

/* Icon column takes remaining space */
.testimonial-icon {
  flex: 1;
  text-align: right;
}

/* Make icon large & yellow without background */
.testimonial-icon i {
  font-size: 5rem;
  color: #006EB8;
}


/* end 24hour */


/* start Get Back  */

.key-fob-section {
  background: url('../images/key-fob-programming.webp') no-repeat center center/cover;
  position: relative;
  color: #fff;
  padding: 5% 5% 10%; /* Increased bottom padding for better overlap space */
  margin-bottom: 10%;
  background-attachment: fixed;
}

.key-fob-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(88, 89, 91, 0.8);
  z-index: 1;
}

.key-fob-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fob-list li{
  font-size: 21px;
}
.subtitle-text {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
}

.key-fob-section .subtitle-line {
  height: 2px;
  background: #FFD700;
  opacity: 0.5;
  border: none;
  width: 50px;
  display: inline-block;
  vertical-align: middle;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
}

.main-paragraph {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

.left-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #fff;
}

.stat-box {
  text-align: center;
  color: #fff;
}

.stat-icon {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
 
}

.stat-title {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* --- CHOOSE CARDS --- */
.choose-cards {
  position: absolute;
  bottom: -7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 1000px;
  padding: 0 1rem; /* add padding for edges on mobile */
}

.choose-card {
  background: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  color: #000;
  border-radius: 0;
  width: 300px;
  max-width: 90%;
  min-height: 100px;
}

.icon-circle-getback {
  background: #FFD700;
  color: black;
  padding: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  border-radius: 50%;
  flex-shrink: 0; /* prevent icon shrinking */
}

.choose-card h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 0 0.75rem;
  flex: 1;
}

.choose-card p {
  font-size: 0.85rem;
  margin: 0 0 0 0.75rem;
  flex: 1;
}

/* ----- RESPONSIVENESS ----- */
@media (max-width: 991.98px) {
  .main-title {
    font-size: 1.8rem;
  }
  .choose-card {
    width: 45%;
  }
  .key-fob-section {
    padding: 10% 5% 15%;
   height: 800px;

  }
}



@media (max-width: 767.98px) {
  .key-fob-section {
    padding: 10% 5% 15%;
   height: 1200px;
   
  }
  .choose-cards {
    position: static;
    transform: none;
    bottom: auto;
    margin-top: 1.5rem;
  }
  .choose-card {
    width: 100%;
    justify-content: flex-start;
  }
  .main-title {
    font-size: 1.5rem;
  }
  .main-paragraph {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .subtitle-line {
    width: 35px;
  }
  .icon-circle-getback {
    font-size: 1.5rem;
    padding: 5%;
  }
  .choose-card h5 {
    font-size: 0.95rem;
  }
  .choose-card p {
    font-size: 0.8rem;
  }
}

/* end Get Back  */

/* start second get back */
.services-grid .special-card {
  background: none;
  box-shadow: none;
  color: #000;
}

.services-grid .service-card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  border-radius: 8px;
  color: #000;
}


.subtitle-text {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.subtitle-line {
  height: 2px;
  background: #8DC740;
  width: 50px;
  border: none;
  opacity: 1;
}

.main-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.call-btn {
  background: #FFD700;
  color: #333;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border: none;
  font-size: 22px;
}
/* Make special-card fill the height */
.services-grid .special-card,
.services-grid .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ensures button sticks to bottom */
}
/* Set background + white text for second card */
.service-card.dark-card {
  background: #58595B;
  color: #fff;
}



.service-card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  border-radius: 8px;
  
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* this aligns all children LEFT */
  text-align: left; /* also reset any inherited center */
}


/* Icon left-aligned */
.services-grid .icon-circle {

  color: #006EB8;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  
  /* REMOVE centering margin completely */
  margin-bottom: 1rem;
}

/* Left-align title + paragraph */
.service-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.service-card p {
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
}

/* See More link */
.see-more-link {
  color: #8DC63F;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.see-more-link i {
  margin-left: 5px;
}




/* end second get back */
























  /* start brand */
  .marquee {width:100%;
    background-color: #F1F1F1;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 50s linear infinite;
    color:#fff;}
  
  .marquee:hover {animation-play-state: paused}
  
  
  .brands{
    background-color: #F1F1F1;
  padding:  0 ;
  margin-bottom: 1%;
  
  }
  @keyframes marquee {0%   { text-indent: 27.5em }100% { text-indent: -105em }}
    /* brands */
  .info-item a{
    color: black;
  }
  
  .brands-section{
    background-color:white;
    margin-bottom: 1%;
    padding:  0;
  }
  .brand-img{
    padding: 1%;
  }
  .brand-img img{
    filter: grayscale(100%);
    margin-right: 5%;
    width: 75px;
  }
  /* end brand */


  /*start commercial  */
  .commercial-section {
    background: #F1F1F1;
  }
  .commercial-section img {
    width: 80%;       /* full width of column */
    height: 500px;     /* fixed height */
    object-fit: cover; /* crops extra parts */
    display: block;    /* removes inline spacing */
  }

    .residential-section img {
    width: 80%;       /* full width of column */
    height: 600px;     /* fixed height */
    object-fit: cover; /* crops extra parts */
    display: block;    /* removes inline spacing */
  }
  
  
  .subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #8DC63F;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .main-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .middle-title {
    font-size: 1.75rem;
    font-weight: 700;
  }
  
  .btn-call {
    background: #FFD700;
    color: black;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .btn-call:hover {
    background: #7AB934;
  }
  
  .commercial-section .service-card {
    text-align: left; /* center icon and text */
    display: flex;
    flex-direction: column;
   
    padding: 1rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-height: 220px; 
  }
  
  
  .change-rekey .service-card {
    text-align: left; /* center icon and text */
    display: flex;
    flex-direction: column;
   
    padding: 1rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-height: 320px; 
  }
  
  .service-card h5 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
  }
  
  .bottom-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  


  /*end commercial  */

/* start FQA */

.faq-section {
  background-color: #fff;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
}

.faq-text {
  margin-bottom: 1rem;
  color: #333;
}

.btn-primary {
  background-color: #8DC63F;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
}

.accordion-button {
  font-weight: bold;
  color: #333;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border: none;
  margin-bottom: 0.5rem;
}
.faq-section .faq-txt{
  margin: auto;
}
@media (max-width: 768px) {
.faq-section .faq-txt{
  margin-bottom: 5%;
}
}



/* end FQA */


/* start choose */
.icon-box {
  background-color: #8DC63F;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
.d-flex.align-items-start {
  align-items: center; /* vertically center icon with text */
}

.icon-square {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.icon-text {
  font-size: 0.95rem;
  line-height: 1.3;
}

.residential-choose .img-fluid {
  height: 600px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}

.commercial-choose .img-fluid {
  height: 800px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}


.automotive-choose .img-fluid {
  height: 800px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}

.emergency-choose .img-fluid {
  height: 700px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}

.lockout-choose .img-fluid {
  height: 600px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 1200px) {
  .residential-choose .img-fluid {
    height: 700px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
  }}


/* end choose */

/* start lockout */

.bg-light-gray {
  background-color: #555556;

}

.lockout .subtitle-text {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: black;
}

.subtitle-line {
  width: 40px; /* ↓ decreased from 60px */
  height: 2px;
  background-color: #000;
  opacity: 0.5;
  border: none;
}


.lockout-col{
  border-right: 2px solid #8DC740;
}


.image-box-section {
  display: flex;
  gap: 50px; /* adjust the spacing you want */
  height: 500px;
}


.image-column {
  flex: 3; /* image takes 3 parts */
  background-image: url('../images/Locked-out-of-your-vehicle.webp');
  background-size: cover;
  background-position: center;
  width: 75%;

}


.contact-box {
  flex: 1;
  background-color: #FFD700;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: auto;          /* ✅ allow flexible width */
  max-width: 300px;     /* ✅ increase max width */
  color: #000;

}

.custom-btn {
  background-color: #fff;
  color: #555556;
  border: none;
  border-radius: 5px;
  font-size: 0.75rem;     /* smaller text */
  padding: 0.25rem 0.5rem; /* smaller padding */
  white-space: nowrap;     /* keeps text in single line */
}


.contact-box button {
  background-color: #fff;
  color: #555556;

}

.contact-box button:hover {
  background-color: #555556;
  color: #fff;
}


/* Existing styles remain the same */

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .lockout-col {
    border-right: none;      /* remove right border on smaller screens */
    border-bottom: 2px solid #8DC740;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  @media (max-width: 992px) {
    .image-box-section {
      flex-direction: column;
      height: auto;
      gap: 20px;
    }
  
    .image-column {
      flex: none;             /* 👈 cancel flex for stacked layout */
      width: 100%;
      height: 300px;          /* 👈 keep a visible height */
    }
  
    .contact-box {
      max-width: 100%;
      width: 100%;
    }
  }
  
  
}

@media (max-width: 768px) {
  .container.position-relative.py-5 {
    padding: 2rem 1rem;       /* tighter padding */
  }

  .lockout .subtitle-text {
    font-size: 0.8rem;        /* slightly smaller */
  }

  .main-title, h2.fw-bold {
    font-size: 1.5rem;        /* reduce headline size */
  }

  .contact-box h5, .contact-box h3 {
    font-size: 1rem;
  }

  .custom-btn {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 576px) {
  .image-column {
    height: 200px;           /* even smaller on mobile */
  }

  .lockout-col {
    border-bottom: none;      /* remove all borders */
  }

  .custom-btn {
    font-size: 0.65rem;
    padding: 0.15rem 0.3rem;
  }
}


/* end lockout */

/* start second lockout */
.lockout-article{
  width: 65%;
}
hr {
  margin: 0;
}
.top-text h2 {
  font-size: 2rem;
}

.text-box {
  background-color: #555556;
}

.lockout-img {
 height: 320px; /* or any height you prefer */
  width: 100%;
  object-fit: cover;
  display: block;
}


.lockout-txt {

  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .lockout-article{
    width: 100%;
  }
  .lockout-txt {
    width: 100%;
    align-items: left;
    display: block;

  }

   .lockout-txt p {
    margin-bottom: 2%;
  }
}

@media (max-width: 991.98px) {
  .lockout-txt {
    width: 100%;
    margin-bottom: 1rem;
   
  }
}

.lockout .subtitle-line {
  width: 50px;
  height: 2px;
  background: #000;
  opacity: 0.5;
  border: none;
}



hr {
  margin: 0;
}

.top-text h2 {
  font-size: 2rem;
}

.text-box {
  background-color: #555556;
}




/* 🟢 Responsive adjustments */
@media (max-width: 767.98px) {
  .top-text h2 {
    font-size: 1.6rem;
  }

  .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start;
  }

  .lockout-txt {
    flex-direction: column;
    width: 100%;
  }
  
  
  



  .text-box {
    padding: 1rem;
  }

  .text-box p {
    font-size: 0.95rem;
  }

  .btn.fw-bold {
    width: 100%;
    text-align: center;
  }

  .btn.fw-bold a {
    display: inline-block;
    width: 100%;
  }

  .col-md-6 {
    margin-bottom: 1rem;
  }

  .top-text .d-flex.align-items-center {
    flex-direction: row;         /* stack vertically */
    align-items: flex-start;        /* align left */
    gap: 0.5rem;                    /* spacing between subtitle & hr */
  }

  .subtitle-line {
    width: 40px;                    /* adjust width for small screens */
  }

  .subtitle-text {
    font-size: 0.85rem;             /* reduce font size slightly */
  }
}


/* end second lockout */

/* start contact */

.contact.contact-section {
  position: relative;
  background: white;
  height: 1200px; 
  margin-bottom: 7%;
}

.bg-image {
  background-image: url('../images/contact-us.webp');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 1000px;
  position: absolute;
  top: 0;
  left: 0;
  background-attachment: fixed;
}

.bg-image::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(85, 85, 86, 0.8); /* adjust opacity */
}


.floating-box {
  position: absolute;
  top: 60%;  /* center vertically */
  left: 50%; /* center horizontally */
  transform: translate(-50%, -50%);
  background: white;
  /* border-radius: 8px; */
  overflow: hidden;
  /* max-width: 900px; */
  width: 80%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 10px; 

}




.section-header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.contact-section .subtitle-line {
  width: 40px;
  border-top: 2px solid white;
}

.subtitle {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.main-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.floating-box h4, .floating-box ul li{
  color: black;
}


.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 14px;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0071ce;
  box-shadow: none;
}

.contact-form button {
  padding: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

/* 🟢 Make floating-box behave as block on small screens */
@media (max-width: 991.98px) {
  .contact-section {
    height: 1200px; /* let content define height */
  }


  .floating-box {

    height: 900px;
  }
  

  .floating-box .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }


}

/* 🟢 Adjust header spacing on smaller screens */

@media (max-width: 1199px) {

.contact.contact-section {
    height: 1500px; /* let content define height */
  }
.contact-map{
height: 400px;
}

}


@media (max-width: 1000px) {

.contact.contact-section {
    height: 1500px; 
    margin-bottom: 10%;
  }

  .floating-box {
    position: absolute;
    top: 60%;  /* center vertically */
    left: 50%; /* center horizontally */
    transform: translate(-50%, -50%);
    background: white;
    /* border-radius: 8px; */
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 10px; 
height: 1300px;
  }


  
}



@media (max-width: 768px) {
  .contact-section {
    height: auto; 
  }

  .section-header .main-title {
    font-size: 1.5rem;
  }

  .section-header .subtitle-line {
    width: 30px;
  }

  .contact-section .subtitle {
    font-size: 0.85rem;
  }

  .contact-section {
    height: 1200px; /* let content define height */
  }
  .floating-box {
    position: absolute;
    top: 60%;  /* center vertically */
    left: 50%; /* center horizontally */
    transform: translate(-50%, -50%);
    background: white;
    /* border-radius: 8px; */
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 10px; 

  }
  
}


@media (max-width: 400px) {
.contact.contact-section {
    height: 1500px; 
    margin-bottom: 25%;
  }

  .floating-box {

height: 1350px;
  }

}

/* send contact */



/* start footer */
footer{
  background-color: #555556;
  color: white;
}
/* end footer */


  .custom-btn a{
    text-decoration: none;
    color: black;
   }
     .custom-btn a:hover{
      color: white;
        background-color: #555556;
     }


