/* ========== RESET & GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* ========== HEADER STYLES ========== */
header {
  background: transparent;
  border-bottom: none;
  padding: 10px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.site-logo {
  display: block;
  width: 50%;
  height: 80px;
  background: url("../Images/logo.png") no-repeat center center;
  background-size: contain;
  margin-left: 10%;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  margin-right: 7%;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 3%;
}

.nav-list li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover underline */
.nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #3257a8;
  transition: width 0.3s ease;
}

.nav-list li a:hover {
  color: #3257a8;
}

.nav-list li a:hover::after {
  width: 100%;
}

.nav-list li a.active {
  color: #3257a8;
}

/* Button */
.web-btn a {
  background: #3257a8;
  color: #fff;
  padding: 14px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.web-btn a:hover {
  background: #ffffffd3;
  color: #3257a8;
  border: #3257a8 2px solid;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
  margin-right: 15px;
  align-items: flex-end;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Responsive Menu */
.responsive-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  padding: 60px 20px;
  text-align: left;
}

.responsive-menu.active {
  right: 0;
}

.responsive-menu .menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.responsive-menu ul {
  list-style: none;
  margin-top: 40px;
}

.responsive-menu ul li {
  margin-bottom: 20px;
}

.responsive-menu ul li a {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.responsive-menu ul li a:hover {
  color: #3257a8;
}

.responsive-menu .web-btn {
  margin-top: 30px;
}

/* ========== BANNER SECTION ========== */
.banner-section {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 80px 0;
  min-height: 100vh;
  color: #000;
  overflow: hidden;

  /* background setup */
  background: url('../Images/banner.jpg') no-repeat center center;
  background-size: cover;
  background-color: #ffffff;
}



/* Headings */
.banner-section h1 {
  font-size: 32px;
  margin-bottom: 15px;
  font-family: 'Merriweather', serif;
  color: #000000;
}

.banner-section h1 span {
  color: #3257a8;
}

/* Paragraph */
.banner-section p {
  font-size: 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  color: #000000;

}

/* Banner Button Wrapper */
.banner-btn {
  margin-top: 20px;
  display: inline-block;
}

.banner-btn a {
  background-color: #3257a8;
  border: 2px solid #3257a8;
  font-size: 20px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
}

.banner-btn a:hover {
  background: #fff;
  color: #3257a8;
  border: 2px solid #3257a8;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  color: #3257a8;
  font-size: 12px;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 1;
}



/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.section-title h2 {
  font-size: 38px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

.section-title h2 span {
  color: #3257a8;
  font-weight: 400;
  font-family: 'Merriweather', serif;
}

.about-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 18px;
}

.about-content strong {
  color: #3257a8;
}

/* Bullet Point Styling */
.about-features {
  margin-top: 20px;
}

.feature-item {
  margin-bottom: 20px;
}

.feature-item h5 {
  font-size: 18px;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  color: #000000;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item h5 i {
  color: #2d89ef;
  font-size: 20px;
}

.feature-item p {
  font-size: 15px;
  color: #000000;
  margin: 0;
}

/* Subline */
.about-subline {
  margin-top: 30px;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  border-left: 4px solid #3257a8;
  padding-left: 12px;
  line-height: 1.6;
}

/* Right Side Image */
.about-image {
  width: 90%;
  padding-top: 105%;
  margin-left: 15%;
  background: url('../Images/choose.jpg') no-repeat center center / cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-size: cover;
}

/* ========== SERVICES SECTION ========== */
.service-card-first-sec {
  background: url('../Images/service-bg.jpg') no-repeat center center/cover;
  padding: 80px 0;
  color: #000000;
  position: relative;
  z-index: 0;
}

.service-card-first-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(235, 235, 235, 0.39);
  z-index: 1;
}

.service-card-first-sec * {
  position: relative;
  z-index: 2;
}

/* Section Heading */
.service-heading {
  font-size: 45px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: capitalize;
  position: relative;
}

.service-heading span {
  color: #3257a8;
  font-weight: 400;
  font-family: 'Merriweather', serif;

}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  margin-bottom: 30px;
}

/* Blue Overlay Animate from Bottom */
.service-card::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3257a8;
  transition: bottom 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  bottom: 0;
}

/* Icon Box */
.service-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.service-card-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: invert(28%) sepia(83%) saturate(1500%) hue-rotate(210deg) brightness(92%) contrast(95%);
}

/* Text Box */
.service-card-body {
  padding: 20px;
  text-align: center;
}

.service-card-title {
  font-size: 20px;
  font-family: 'Merriweather', serif;

  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  transition: color 0.3s ease;
}

.service-card-text {
  font-size: 16px;
  color: #080808;
  line-height: 1.6;
  font-weight: 400;
  transition: color 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

.service-card:hover .service-card-title,
.service-card:hover .service-card-text {
  color: #fff;
}

/* Bottom Line Animation */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 4px;
  width: 0;
  background: #fff;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.service-card:hover::after {
  left: 0;
  width: 100%;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  position: relative;
  padding: 80px 0;
  background: url('assets/Images/price-bg.jpg') no-repeat center center/cover;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Dark overlay */
.pricing-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.185);
  z-index: 1;
}

/* Container content */
.pricing-section .container {
  position: relative;
  z-index: 2;
  color: #000000;
}

/* Section title */
.section-title-text {
  font-family: 'Merriweather', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title-text .blue-text {
  color: #3257a8;
  font-family: 'Merriweather', serif;
}

.pricing-section p.lead {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
}

/* Feature Box */
.feature-box {
  background: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 40px 25px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Title inside box */
.feature-title {
  font-size: 25px;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
  transition: color 0.3s ease-in-out;
}

/* Text inside box */
.feature-text {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.3s ease-in-out;
}

/* Hover */
.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.feature-box:hover .feature-title {
  color: #3257a8;
}

.feature-box:hover .feature-text {
  color: #333;
}


/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
  /* font-family: "Open Sans", sans-serif; */
}



.testimonial-header h3 {
  font-size: 20px;
  font-family: 'Merriweather', serif;
  color: #54a3d1;
  margin-top: 50px;
  font-weight: 500;
}

.testimonial-header .test {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: 'Merriweather', serif;
}

.testimonial-header .red-text {
  color: #d80000e0;
  font-family: 'Merriweather', serif;
}

.testimonial-header p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #131313;
  line-height: 1.6;
}

/* Carousel container */
.testimonial-carousel {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 22px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  flex: 0 0 calc(33.333% - 20px);
  box-sizing: border-box;
  text-align: left;
  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.15);
}

.quote-icon img {
  width: 30px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #333;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user .name {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

.stars {
  color: #ffc107;
  font-size: 14px;
}

.blue-text {
  color: #3257a8;
  font-weight: 500;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.contact-box {
  background: linear-gradient(135deg, #2575fc 0%, #080f8b 100%);
  color: #fff;
  border-radius: 15px 0 0 15px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-list li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.areas-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("../Images/arrow.png") no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}

.areas-list li:hover {
  color: #ffdb4a;
  transform: translateX(5px);
}

.areas-list li:hover::before {
  filter: invert(78%) sepia(77%) saturate(746%) hue-rotate(359deg) brightness(102%) contrast(103%);
}

.contact-box h4 {
  font-weight: 700;
  font-family: 'Merriweather', serif;
  text-align: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.contact-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-form {
  background: #fff;
  border-radius: 0 15px 15px 0;
  padding: 40px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 30px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 25px;
  color: #3257a8;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
}

.form-title::after {
  content: "";
  width: 42px;
  height: 3px;
  background: #3257a8;
  position: absolute;
  left: 62.5%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 2px solid #3257a8;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05),
    inset -1px -1px 3px rgba(255, 255, 255, 0.7);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #3257a8;
  box-shadow: 0 0 6px rgba(50, 87, 168, 0.4);
}

.btn-custom {
  background: #3257a8;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-3px);
  background-color: #fcfcfcd7;
  color: #000000;
  border: 2px solid #3257a8;
  box-shadow: 0 5px 15px rgba(1, 101, 250, 0.4);
}

/* ========== FOOTER ========== */
.footer-dark {
  background-color: #0d1b2a;
  /* New dark navy shade */
  font-family: 'Poppins', sans-serif;
}

.footer-logo {
  width: 50%;
  height: 100px;
  background: url('../Images/logo.png') no-repeat center center;
  background-size: contain;
  display: inline-block;
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #0d1b2a;
  font-size: 0.9rem;
  color: #aaa;
}

.text-md-start {
  font-size: 14px;
  color: rgb(255, 255, 255);
}

.footer-bottom a {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-bottom small {
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
  display: inline-flex;
  align-items: center;

}

.footer-bottom a img {
  width: 30px;
  height: 30px;
}

.footer-bottom a:hover img {
  transform: scale(1.1);
}

.footer-bottom img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  /* margin-right: 6px; */
  transition: transform 0.3s ease, opacity 0.3s ease;
}



.whatsapp-icon {
  position: fixed;
  top: 85%;
  left: 1%;
  width: 120px;
  z-index: 9;
  overflow: hidden;
  padding: 0;
  display: block;
}

.whatsapp-icon a img {
  width: 80px;
  height: 80px;
}



.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.form-container {
  background: rgba(255, 255, 255, 0.753);
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-container h2 {
  color: #3257a8;
  font-family: 'Merriweather', serif;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  transition: color 0.3s ease;
}

.form-container h2:hover {
  color: #4a6ec9;
}

.form-container label {
  display: block;
  color: #333;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.form-container label:hover {
  border-bottom-color: #3257a8;
  color: #3257a8;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-container input:hover,
.form-container textarea:hover {
  border-color: #3257a8;
}

.form-container input:focus,
.form-container textarea:focus {
  outline: none;
  border-color: #3257a8;
  box-shadow: 0 0 5px rgba(50, 87, 168, 0.3);
}

.form-container textarea {
  resize: vertical;
  min-height: 100px;
}

.form-container button {
  background: #3257a8;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.form-container button:hover {
  background: #4a6ec9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(50, 87, 168, 0.4);
}

.form-container button:active {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 50px;
  cursor: pointer;
  color: #141414;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #3257a8;
  transform: rotate(90deg);
}



/* ========== RESPONSIVE STYLES ========== */

/* ✅ Extra Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }

  .banner-section h1 {
    font-size: 40px;
  }

  .service-heading {
    font-size: 3rem;
  }
}

/* ✅ Laptop / Small Desktop (1200px–1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
  .container {
    max-width: 1140px;
  }

  .nav-list {
    gap: 20px;
  }

  .nav-list li a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1280px) {
  .banner-section {
    background-size: cover;
    background-position: center top;
    background-color: #fff;
    min-height: 100vh;
    padding: 9% 6%;
  }

  .banner-section h1 {
    font-size: 30px;
    margin-top: 14%;
  }

  .banner-section p {
    font-size: 18px;
    font-weight: 600;
  }

  .banner-btn {
    display: block;

  }
}

/* ✅ Tablet Landscape (992px–1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  .site-logo {
    width: 70%;
  }

  .navbar {
    display: none
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }

  .responsive-menu {
    width: 25%;
  }


  .responsive-menu ul li a {
    font-size: 30px;
  }

  .responsive-menu ul {
    list-style: none;
    margin-top: 0px;
    margin-left: -15%;
  }

  .responsive-menu .menu-close {
    top: 0px;
    right: 20px;
    font-size: 40px;
  }

  .web-btn a {
    background: #3257a8;
    color: #fff;
    padding: 14px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
  }

  .web-btn a:hover {
    background: #ffffffd3;
    color: #3257a8;
    border: #3257a8 2px solid;
  }

  .banner-section {
    background-size: cover;
    background-position: top center !important;
    background-attachment: scroll;
    min-height: 100vh;
    padding: 60px 24px;
  }

  .banner-section h1 {
    font-size: 30px;
  }

  .banner-section p {
    font-size: 18px;
    font-weight: 600;
  }

  .banner-btn {
    display: block;

  }

  .service-card {
    margin-bottom: 25px;
  }

  .form-title::after {
    left: 65%;
  }
}

/* ✅ Tablet Portrait (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }

  /* Hide desktop nav, show mobile menu */
  .navbar {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }

  .site-logo {
    width: 100%;
    margin-left: 5%;
  }

  .responsive-menu {
    width: 30%;
  }

  .responsive-menu ul li a {
    font-size: 30px;
  }

  .responsive-menu ul {
    list-style: none;
    margin-top: 0px;
    margin-left: -15%;
  }

  .responsive-menu .menu-close {
    top: 0px;
    right: 20px;
    font-size: 40px;
  }

  .banner-section {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 60px 25px;
    min-height: 40vh;
  }

  .banner-section h1 {
    font-size: 24px;
    margin-top: 19%;
    margin-bottom: 4px;
    line-height: 1.3;
  }


  .banner-section p {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
  }

  .banner-btn {
    margin-top: 15px;
  }

  .banner-btn a {
    font-size: 16px;
    padding: 8px 18px;
  }

  .slick-dots {
    position: relative !important;
    /* bottom: 12px !important; */
    text-align: center;
  }

  /* Services */
  .service-card {
    margin-bottom: 20px;
  }

  .service-heading {
    font-size: 2rem;
  }

  /* About Section */
  .about-content,
  .about-image {
    text-align: center;
  }

  .about-image {
    margin-left: 0;
    padding-top: 75%;
    width: 100%;
  }

  .about-content p {
    font-size: 18px;
    text-align: justify;
  }

  .section-title h2 {
    font-size: 30px;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(100% / 2);
    margin: 5px;
  }

  /* Contact Section */
  .contact-box,
  .contact-form {
    border-radius: 15px;
    margin-bottom: 30px;
  }

  .section-title-text {
    font-size: 32px;
  }
}

/* ✅ Large Mobile (577px–767px) */
@media (min-width: 100px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }

  /* Header & Navigation */
  .navbar {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }

  .site-logo {
    width: 100%;
    margin-left: 5%;
  }

  /* Responsive Menu */
  .responsive-menu {
    width: 60%;
  }

  .banner-section {
    padding: 50px 20px;
    min-height: 70vh;
  }

  .banner-section h1 {
    font-size: 22px;
  }

  .banner-section p {
    font-size: 15px;
    font-weight: 600;
  }

  .banner-btn a {
    font-size: 15px;
    padding: 8px 14px;
  }

  .slick-dots {
    bottom: 10px !important;
  }

  /* Services */
  .service-card-first-sec {
    padding: 60px 0;
  }

  .service-heading {
    font-size: 1.8rem;
  }

  .service-card {
    margin-bottom: 20px;
  }

  /* About Section */
  .about-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-content,
  .about-image {
    text-align: center;
  }

  .about-image img {
    margin-top: 25px;
    max-width: 85%;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 40px 20px;
    margin-top: -60px;
  }

  .testimonial-header h2 {
    font-size: 28px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    margin: 10px 0;
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 0;
  }

  .contact-box,
  .contact-form {
    border-radius: 15px;
    margin-bottom: 25px;
    padding: 30px 20px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-title::after {
    left: 50%;
  }
}

/* ✅ Small Mobile (100px–576px) */
@media (min-width: 100px) and (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .banner-section {
    min-height: 65vh;
    padding: 40px 0;
  }

  /* Header & Navigation */
  header {
    padding: 8px 0;
  }

  .navbar {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-right: 15px;
  }

  .site-logo {
    width: 100%;
    margin-left: 5%;
  }

  /* Responsive Menu */
  .responsive-menu {
    width: 52%;
  }

  .responsive-menu ul li a {
    font-size: 16px;
  }

  .responsive-menu ul {
    margin-top: -24px;
    padding: 0px;
  }

  .banner-section {
    padding: 9px 23px;
    min-height: 38vh;
  }

  .banner-section h1 {
      margin-top: 26%;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .banner-section p {
    font-size: 12px;
    line-height: 1.4;
    padding-right: 30px;
    font-weight: 600;
  }

  .banner-btn {
    margin-top: 12px;
  }

  .banner-btn a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .slick-dots {
    position: relative !important;
    bottom: -10px !important;
  }

  /* Services */
  .service-card-first-sec {
    padding: 50px 0;
  }

  .service-heading {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .service-card {
    margin-bottom: 15px;
  }

  .service-card-body {
    padding: 15px;
  }

  .service-card-title {
    font-size: 1.1rem;
  }

  /* About Section */
  .about-section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 14px;
  }

  .feature-item h5 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 14px;
  }

  .about-image {
    margin-left: 0;
    padding-top: 75%;
    width: 100%;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 50px 0;
  }

  .pricing-section h2 {
    font-size: 1.8rem;
  }

  .feature-box {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 30px 15px;
    margin-top: -50px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 99%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 12px auto;
    border-radius: 8px;
  }


  .testimonial-header h3 {
    font-size: 18px;
    margin-top: 50px;
  }

  .testimonial-header h2 {
    font-size: 25px;
  }

  .testimonial-header p {
    font-size: 15px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  /* Contact Section */
  .contact-section {
    padding: 30px 0;
  }

  .contact-box h4 {
    font-size: 28px;
  }

  .contact-box p {
    font-size: 16px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-title {
    font-size: 25px;
  }

  .form-title::after {
    left: 71.5%;
  }

  .btn-custom {
    padding: 10px;
    font-size: 15px;
  }

  /* Footer */
  .footer-logo {
    max-height: 50px;
  }
      .section-title-text {
        font-size: 28px;
    }
}

/* ✅ Extra Small Devices (≤375px) */
@media only screen and (min-width: 100px) and (max-width: 375px) {
  .container {
    padding: 0 10px;
  }

  /* Header & Navigation */
  header {
    padding: 5px 0;
  }

  .navbar {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }

  .site-logo {
    width: 100%;
    margin-left: 5%;
  }

  /* Responsive Menu - Full Screen */
  .responsive-menu {
    width: 55%;
  }

  .responsive-menu ul {
    margin-top: -24px;
    padding: 0px;
  }

  .responsive-menu ul li {
    margin-bottom: 15px;
  }

  .responsive-menu ul li a {
    font-size: 15px;
  }

  .responsive-menu .menu-close {
    top: 0px;
    right: 20px;
    font-size: 40px;
  }

  .banner-section {
    padding: 9px 23px;
    min-height: 38vh;
  }

  .banner-section h1 {
      margin-top: 26%;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .banner-section p {
    font-size: 13px;
    line-height: 1.4;
    padding-right: 30px;
    font-weight: 600;
  }

  .banner-btn {
    margin-top: 12px;
  }

  .banner-btn a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .slick-dots {
    position: relative !important;
    bottom: -10px !important;
  }


  .about-image {
    margin-left: 0;
    padding-top: 75%;
    width: 100%;
  }


  /* Services */
  .service-card-first-sec {
    padding: 40px 0;
  }

  .service-heading {
    font-size: 30px;
  }

  .service-card-img {
    padding: 20px;
  }

  .service-card-img img {
    width: 60px;
    height: 60px;
  }

  .pricing-section p.lead {
    font-size: 16px;
  }

  .testimonial-header .test {
    font-size: 23px;
  }

  /* About Section */
  .about-section {
    padding: 40px 0;
  }

  .section-title-text {
    font-size: 28px;
  }

  .about-content p {
    font-size: 13px;
  }

  .about-subline {
    font-size: 15px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 94%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 12px auto;
    border-radius: 8px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 20px 10px;
    margin-top: -40px;
  }

  .testimonial-header h2 {
    font-size: 25px;
  }

  .testimonial-header p {
    font-size: 15px;
  }

  /* Contact Section */
  .contact-box,
  .contact-form {
    padding: 20px 15px;
  }

  .contact-box h4 {
    font-size: 24px;
  }

  .form-title {
    font-size: 25px;
  }

  .form-title::after {
    left: 73.5%;
  }

  .areas-list li {
    font-size: 14px;
    padding-left: 25px;
  }

  /* Footer */
  .footer-bottom a {
    margin: 0 5px;
  }

  .footer-bottom a img {
    width: 25px;
    height: 25px;
  }
   .section-title h2 {
    font-size: 28px;
  }

}

/* ✅ Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover {
    transform: none;
  }

  .nav-list li a:hover::after {
    width: 0%;
  }

  .feature-box:hover {
    transform: none;
  }
}