
/* --- Services Section --- */
#service-sections {
  background-color: #27ecf717;
  border-radius: 20px;
  padding: 50px 0;
}

#service-sections h2 {
  font-weight: 700;
  color: #222;
  text-align: center;
}

#service-sections p {
  color: #444;
  font-size: 18px;
}

.service-grp {
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
}

.service-grp:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Logo */
.service-logo {
  border-radius: 10px;
  background-color: #3783f475;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Headings and text */
.service-grp h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 15px 0 10px;
  color: #111;
}

.service-grp p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .service-grp h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  #service-sections {
    padding: 30px 10px;
  }

  .service-grp {
    padding: 20px;
  }

  .service-grp h3 {
    font-size: 1.1rem;
  }

  .service-grp p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  #service-sections h2 {
    font-size: 1.4rem;
  }

  .service-logo {
    width: 60px;
    height: 60px;
  }

  .service-grp h3 {
    font-size: 1rem;
  }

  .service-grp p {
    font-size: 0.9rem;
  }
}




#hero{
  background-image: url(../../assets/image/Group\ 9.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  margin-top: 100px;
}

/* ------------------- BASE STYLES ------------------- */
body {
  background: #f8f9fa;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}
p{
  font-size: 18px;
  
}

h2 {
  text-align: center;
  padding-top: 20px;
  font-weight: 700;
  color: #333;
  font-size: 30px;
}

#title-p {
  font-size: 22px;
}

#hero h1 {
  font-size: 60px;
}

/* ------------------- NAVBAR ------------------- */
#navbar {
  height: auto;
  width: 100%;
  
}

.navbar {
  height: 98px;
  transition: all 0.3s ease;
  
}



.navbar-brand img {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  margin-left: 90px;
  
}

/* Navbar links */
.nav-link {
  font-weight: 500;
  padding: 8px 15px;
  color: #333 !important;
}

.nav-link:hover {
  color: #0d6efd !important;
}

/* Quote buttons */

#navbar .btn-warning{
  width: 150px;
  height: 40px;
}

.btn-warning {
  background-color: #ff8707;
  border: none;
  font-weight: 650;
  color: white;
  
  
}
  #get-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 60px;
  }

.btn-warning:hover {
  background-color: #fea03c;
  color: white;

}

.btn-outline-warning {
  border-radius: 20px;
  font-weight: 500;
}
#toggle-button{
  margin-right: 20px;
}

/* ------------------- RESPONSIVE STYLES ------------------- */

/* Tablets and smaller devices */
@media (max-width: 992px) {
  #hero h1 {
  font-size: 42px;
}
  #navbar .btn-warning{
  width: 119px;
  height: 40px;
}
  .navbar {
    height: auto;
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 55px;
    margin-left: 0px;
  }

  .navbar-collapse {
    text-align: center;
    padding-top: 15px;
  }

  .nav-link {
    padding: 10px 0;
    display: block;
  }
  #toggle-button{
    margin-right: 0px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 45px;
  }

  .btn-outline-warning {
    font-size: 14px;
    padding: 6px 12px;
  }

  .btn-warning {
    font-size: 14px;
    padding: 6px 14px;
  }

  .navbar-toggler {
    border: none;
  }
}

/* ------------------- CLIENT LOGO SLIDER ------------------- */
.customer-logos .slide {
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.customer-logos img {
  width: 100%;
  max-width: 140px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.customer-logos img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

/* Slick fix */
.slick-slide {
  margin: 0 15px;
}

.slick-list {
  padding: 10px 0;
}

/* Hero Section */

#hero-section {
  padding: 20px 15px; /* padding for smaller devices */
  
}

/* Hero title */
#title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) { /* tablets */
  #title {
    font-size: 2.5rem;
    text-align: center;
  }

  #hero-section .col-lg-6:first-child {
    min-height: auto; /* don't force full height on tablets */
    margin-bottom: 30px;
  }

  #hero-section .d-flex > div {
    flex-direction: column; /* stack service boxes vertically */
  }
}

@media (max-width: 576px) { /* mobile phones */
  #title {
    font-size: 2rem;
  }

  #hero-section p {
    font-size: 0.9rem;
    text-align: center;
  }

  #hero-section .d-flex > div {
    flex-direction: column;
    gap: 10px; /* spacing between service blocks */
  }

  #hero-section form input,
  #hero-section form select,
  #hero-section form .btn {
    font-size: 0.9rem;
  }

  #hero-section .w-75 {
    width: 100%; /* form takes full width on mobile */
  }

  #hero-section .bg-white {
    padding: 30px 15px; /* smaller padding on mobile */
  }
}



/* Default icon size (desktop) */
.service-icon {
    font-size: 1.75rem; /* approximate size of fa-2xl */
}

/* Tablets and smaller devices */
@media (max-width: 992px) {
    .service-icon {
        font-size: 1.5rem; /* smaller */
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .service-icon {
        font-size: 1.25rem; /* fa-xl equivalent */
    }
}


/* seperator  */

.separator {
  display: flex; /* Enables flexbox for centering and alignment */
  align-items: center; /* Vertically centers the text */
  text-align: center;
  margin: 20px 0; /* Add space above and below */
}

.separator::before,
.separator::after {
  content: ''; /* Required for pseudo-elements */
  flex-grow: 1; /* Makes the lines take up all available space */
  background: #ccc; /* Color of the line */
  height: 1px; /* Thickness of the line */
  font-size: 0; /* Ensures the line is only 1px tall */
  line-height: 0;
}

.separator span {
  padding: 0 10px; /* Spacing around the 'OR' text */
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
}


/* about section  */

#about {
  background-color: white;
}

#about h2 {
  font-weight: 700;
  color: #333;
}

#about p {
  color: #555;
  line-height: 1.6;
  font-size: 18px;
}

.info-box {
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.info-box:hover {
  background-color: #f0f8ff;
  transform: translateY(-3px);
}

/* ✅ Responsive tweaks */

@media (max-width: 992px) {
  #about h2 {
    text-align: center;
  }
  .info-box {
    justify-content: center;
  }
  
}

/* --- Uniform height fix for About section --- */
#about .row .col-6 {
  display: flex;
}

#about .info-box {
  background-color: #ffffff;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 8px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Optional hover effect */
#about .info-box:hover {
  background-color: #f0f8ff;
  transform: translateY(-3px);
}

/* --- Tablet view (max-width: 768px) --- */
@media (max-width: 768px) and (min-width: 577px) {
  #about h2 {
    text-align: center;
    font-size: 1.6rem;
  }

  #about p {
    font-size: 1rem;
    text-align: center;
  }

  #about .row {
    display: flex;
    flex-wrap: wrap; /* allow wrapping */
    justify-content: center;
    gap: 15px; /* spacing between boxes */
  }

  #about .col-6 {
    flex: 0 0 48%; /* two columns per row */
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }

  #about .info-box {
    background-color: #ffffff;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 8px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
    
  }

  .info-box i {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .info-div {
    width: 100%;
  }


}


@media (max-width: 576px) {
  .info-box i {
    font-size: 1.5rem;
  }
  #about p {
    font-size: 0.95rem;
  }
  #get-btn {
    width: 100%;
  }
  #about .info-box {
    justify-content: center;
    text-align: center;
  }
  .info-div{
    width: 100%;
  }
}


/* why choose us section  */

/* --- WHY CHOOSE US SECTION --- */
#why-choose-us {
  background-color: #f8f9fa;
  padding: 60px 15px;
  border-radius: 20px;
}

#why-choose-us h2 {
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 15px;
}

#why-choose-us p {
  color: #444;
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Grid container */
#why-choose-us .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px; /* nice spacing between items */
}

/* Each card */
#why-choose-us .col-lg-4 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  flex: 0 0 31%; /* 3 per row on large screens */
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px;
}

#why-choose-us .col-lg-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Icons */
#why-choose-us i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

/* Headings and text */
#why-choose-us h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

#why-choose-us p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- TABLETS (iPad Landscape & Medium devices) --- */
@media (max-width: 992px) {
  #why-choose-us .col-lg-4 {
    flex: 0 0 45%; /* 2 per row */
    min-height: 260px;
  }

  #why-choose-us h2 {
    font-size: 1.8rem;
  }

  #why-choose-us i {
    font-size: 2.2rem;
  }
}

/* --- SMALL TABLETS & iPAD MINI (Portrait) --- */
@media (max-width: 768px) {
  #why-choose-us .col-lg-4 {
    flex: 0 0 47%; /* still 2 per row */
    padding: 25px 15px;
    min-height: 240px;
  }

  #why-choose-us h2 {
    font-size: 1.6rem;
  }

  #why-choose-us h3 {
    font-size: 1.1rem;
  }

  #why-choose-us i {
    font-size: 2rem;
  }
}

/* --- MOBILE PHONES --- */
@media (max-width: 576px) {
  #why-choose-us {
    padding: 40px 10px;
  }

  #why-choose-us .row {
    gap: 15px;
  }

  #why-choose-us .col-lg-4 {
    flex: 0 0 100%; /* 1 per row */
    min-height: auto;
    padding: 20px 15px;
  }

  #why-choose-us h2 {
    font-size: 1.4rem;
  }

  #why-choose-us p {
    font-size: 0.9rem;
  }

  #why-choose-us h3 {
    font-size: 1rem;
  }

  #why-choose-us i {
    font-size: 1.8rem;
  }
}


/* --- Testimonials Section --- */
#testimonials {
  background-color: #f0f6fb;
  padding: 60px 0;
  border-radius: 20px;
}

#testimonials h2 {
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 10px;
}

.rating-star{
  display: flex;
  justify-content: center;
}

#testimonials p {
  text-align: center;
  color: #555;
  font-size: 18px;
}

.testimonial-slider {
  width: 100%;
  margin: 0 auto;
}

.testimonial-div {
  height: 100%;
  min-height: 320px; /* base height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial-item {
  display: flex !important;
  justify-content: center;
  align-items: stretch;
  padding: 10px;
}

.testimonial-item .border {
  border-radius: 12px;
  min-height: 250px;
  transition: all 0.3s ease;
}

.testimonial-item .border:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
  font-size: 0.95rem;
  color: #333;
}

/* Adjust font and spacing on small devices */
@media (max-width: 992px) {
  .testimonial-div {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .testimonial-div {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .testimonial-div {
    min-height: 260px;
  }
}


@media (max-width: 768px) {
  #testimonials {
    padding: 40px 15px;
  }

  .testimonial-item p {
    font-size: 0.9rem;
  }

  .testimonial-item .border {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  #testimonials h2 {
    font-size: 1.5rem;
  }
  .testimonial-item p {
    font-size: 0.9rem;
  }
}







#service-locations {
  text-align: center;
  background: #ffffff;
}

#service-locations h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

#service-locations p {
  max-width: 700px;
  color: #555;
}

/* --- Location Box Style --- */
.location-box {
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.location-box:hover {
  background-color: #f0f8ff;
  transform: translateY(-5px);
}

/* --- Icon Animation --- */
.location-box i {
  color: #242927;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.location-box:hover i {
  color: #b80300;
  transform: translateY(-5px);
  animation: bounce 0.8s ease;
  /* text-shadow: 0 0 8px rgba(11, 17, 15, 0.5); */
}

/* --- Bounce Keyframes --- */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- Responsive Grid --- */
@media (max-width: 991px) {
  #service-locations .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #service-locations .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .location-box {
    padding: 1.5rem;
  }

  .location-box i {
    font-size: 1.6rem;
  }
}


/* ===== FAQ Section ===== */
#FAQs {
    background-color: #f8f9fa;

  padding: 60px 20px;
}

#FAQs h2 {
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

#FAQs .row {
  margin-bottom: 10px;
}

/* FAQ Button */
#FAQs button {
  width: 100%;
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

#FAQs button:hover {
  background: #eafaf5;
  border-color: #63E6BE;
  color: #000;
  transform: translateY(-2px);
}

/* Arrow Animation */
#FAQs button i {
  transition: transform 0.3s ease;
}

#FAQs button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* FAQ Answer */
#FAQs p {
  background-color: #ffffff;
  border-left: 4px solid #63E6BE;
  border-radius: 0 0 10px 10px;
  margin: 0;
  padding: 15px 20px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Responsiveness ===== */

/* Tablet */
@media (max-width: 991px) {
  #FAQs {
    padding: 50px 15px;
  }

  #FAQs h2 {
    font-size: 1.8rem;
  }

  #FAQs button {
    font-size: 0.95rem;
    padding: 14px 18px;
  }

  #FAQs p {
    font-size: 0.9rem;
  }
}

/* Mobile & iPad Mini */
@media (max-width: 767px) {
  #FAQs {
    padding: 40px 10px;
  }

  #FAQs h2 {
    font-size: 1.6rem;
  }

  #FAQs button {
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  #FAQs p {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
}

/* Small iPhones */
@media (max-width: 480px) {
  #FAQs h2 {
    font-size: 1.4rem;
  }

  #FAQs button {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  #FAQs p {
    font-size: 0.85rem;
  }
}
/* CONTACT SECTION BASE STYLES */
#contact {
  padding: 80px 0;
  background-color: white;
  /* background-color: #f8f9fa; */
}

#contact h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

#contact h3{
  font-size: 1.5rem;
}

#contact p {
  
  color: #555;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
}

#get-in-touch-bg {
  background-color: #fff;
  border-radius: 10px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#get-in-touch-bg h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 75px;
}

#get-in-touch-bg .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
}

#get-in-touch-bg i {
  font-size: 1.6rem;
  color: #198754;
  margin-top: 5px;
}

#get-in-touch-bg h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#get-in-touch-bg p {
  font-size: 16px;
  color: #555;
  margin: 0;
}
#get-in-touch-bg button {
  font-size: 16px;
    
    
  
}

/* FORM SECTION */
#contact form {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#contact form input,
#contact form textarea {
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

#contact form input[type="submit"] {
  width: fit-content;
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
      width: 120px;
    height: 45px;
    font-size: large;
}

/* EQUAL HEIGHT FOR BOTH COLUMNS */
#contact .row.w-100 {
  align-items: stretch;
}

/* GRID LAYOUT FOR CONTACT INFO */
#get-in-touch-bg .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* RESPONSIVENESS */

/* Tablets (max 991px) */
@media (max-width: 991px) {
  #contact {
    padding: 60px 0;
  }

  #contact .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #get-in-touch-bg,
  #contact form {
    margin-top: 20px;
  }

  #contact form {
    padding: 25px;
  }
}

/* Small devices (up to 767px) — make contact info single column */
@media (max-width: 767px) {
  #contact {
    padding: 50px 10px;
  }

  #contact .min-vh-100 {
    min-height: auto;
  }

  #contact h2 {
    font-size: 1.5rem;
  }

  #get-in-touch-bg h3,
  #contact form h3 {
    text-align: center;
  }

  #get-in-touch-bg .contact-grid {
    grid-template-columns: 1fr;
  }

  #get-in-touch-bg i {
    font-size: 1.4rem;
  }

  #contact form {
    padding: 20px;
  }
}

/* Extra small devices (below 480px) */
@media (max-width: 480px) {
  #contact h2 {
    font-size: 1.3rem;
  }

  #contact form input,
  #contact form textarea {
    font-size: 0.85rem;
  }

  #get-in-touch-bg h5 {
    font-size: 0.95rem;
  }

  #get-in-touch-bg p {
    font-size: 0.85rem;
  }

  #contact form input[type="submit"] {
    width: 100%;
  }
}

/* ===== FOOTER SECTION ===== */
#footer {
  background-color: #111;
  color: #ddd;
}

#footer h5 {
  color: #fff;
  font-size: 1.2rem;
}

#footer p,
#footer li,
#footer a {
  font-size: 0.95rem;
}

#footer a:hover {
  color: #198754;
  text-decoration: underline;
}

#footer ul {
  padding-left: 0;
  margin: 0;
}

#footer hr {
  opacity: 0.2;
}

/* Ensure proper spacing between columns */
#footer .row > div {
  min-height: 100%;
}

/* ===========================
   1️⃣ Large Devices (≥992px)
   =========================== */
@media (min-width: 992px) {
  #footer {
    text-align: left;
  }
  #footer img {
    width: 180px;
  }
}

/* ===========================
   2️⃣ Tablets (768px–991px)
   Includes iPad, iPad Mini, etc.
   =========================== */
@media (min-width: 768px) and (max-width: 991px) {
  #footer {
    text-align: left;   
    padding: 50px 30px;
  }

  #footer img {
    width: 160px;
    margin: 0 auto 10px;
  }

  #footer h5 {
    font-size: 1.15rem;
    margin-top: 15px;
  }

  #footer ul li {
    font-size: 0.9rem;
  }

  #footer ul li i {
    font-size: 1rem;
  }

  /* Keep two-column layout for tablets and iPad Mini */
  #footer .row {
    justify-content: center;
  }

  #footer .col-lg-4,
  #footer .col-lg-3,
  #footer .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
  }

  /* Add a little breathing space */
  #footer p,
  #footer ul {
    margin-bottom: 15px;
  }
}

/* ===========================
   3️⃣ Mobile Devices (≤767px)
   =========================== */
@media (max-width: 767px) {
  #footer {
    text-align: left;
    padding: 40px 15px;
  }

  #footer img {
    width: 150px;
    margin: 0 auto 10px;
  }

  #footer h5 {
    font-size: 1.1rem;
  }

  #footer p,
  #footer ul li {
    font-size: 0.9rem;
  }

  #footer ul li {
    padding: 3px 0;
  }

  #footer ul li i {
    font-size: 1rem;
  }

  #footer .col-lg-4,
  #footer .col-lg-3,
  #footer .col-lg-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===========================
   4️⃣ Extra Small Devices (≤480px)
   =========================== */
@media (max-width: 480px) {
  #footer h5 {
    font-size: 1rem;
  }

  #footer p,
  #footer ul li {
    font-size: 0.85rem;
  }

  #footer img {
    width: 140px;
  }

  #footer .small {
    font-size: 0.75rem;
  }
}


































/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 2s infinite;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Responsive Sizing */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 12px;
    right: 12px;
  }
}


/* Floating WhatsApp Button */
.call-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 998;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 2s infinite;
}

/* Hover effect */
.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.5);
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Responsive Sizing */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 12px;
    right: 12px;
  }
}



/* Fix modal center alignment on all devices */
.modal.show .modal-dialog .modal-header {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.modal-lg{
  max-width: 600px;
}

/* Separator style */
.separator {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ccc;
  line-height: 0.1em;
  margin: 20px 0;
}
.separator span {
  background: #fff;
  padding: 0 10px;
  color: #666;
  font-weight: 600;
}
.modal-content{
  min-width: 100%;
  
  
}

/* Responsive widths */
@media (max-width: 992px) {
  .modal-dialog {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .modal-dialog {
    max-width: 95%;
  }
}
@media (max-width: 480px) {
  .modal-content {
    border-radius: 12px;
  }
  .modal-body form {
    max-width: 100%;
  }
}

/* seo section  */

#SEO-content p{
  font-size: 14px;
}

#SEO-content h2{
  font-size: 20px;
  text-align: start;
}

/* CTA section  */

#CTA{
  background-image: url(../../assets/image/hero-blue.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}
#CTA h2{
  color: white;
}