* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, system-ui, sans-serif;
  padding-top: 60px;
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  padding: 8px 0;
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.call-now-mobile i {
  transform: rotate(180deg) !important;
}
.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: #2d3a4b;
  font-size: 1.05rem;
  transition: 0.3s;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: #0d6efd;
}

.call-now-btn {
  background: #0d6efd;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(13, 110, 253, 0.25);
}

.call-now-btn:hover {
  background: #0b5ed7;
  color: white !important;
}

.mobile-menu-icon {
  display: none;
  font-size: 1.8rem;
  color: #0d6efd;
  cursor: pointer;
}

.offcanvas {
  max-width: 280px;
  background-color: white;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
}

.offcanvas-body {
  padding: 1.5rem 1rem;
}

.offcanvas-body .nav-link {
  color: #2d3a4b;
  font-size: 1.2rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 500;
}

.offcanvas-body .nav-link:hover {
  background-color: #e9f0ff;
  color: #0d6efd;
}

.offcanvas-body .call-now-mobile {
  background: #0d6efd;
  color: white !important;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 14px !important;
  border-radius: 60px;
  font-weight: 600;
}

.hero-slider {
  width: 100%;
  margin-top: 0;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
  min-height: 500px;
}

.hero-slider .carousel-item {
  background-color: #eef2f7;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 1.2rem;
  background-size: 60% 60%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.75);
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }

  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    height: calc(100vh - 80px);
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
  .navbar-custom {
    padding: 4px 0;
  }
  .logo-img img {
    height: 42px;
  }
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    height: calc(100vh - 70px);
    min-height: 350px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 0.8rem;
  }
}

.container {
  max-width: 1280px;
}

.hero-info-section {
  background: #f4f6f9;
}

.hero-info-section h1 {
  font-size: 2.5rem;
  line-height: 1.4;
  color: #333;
}

.hero-info-section p {
  max-width: 700px;
  margin: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-info-section h1 {
    font-size: 1.7rem;
  }

  .hero-info-section p {
    font-size: 0.95rem;
  }

  .hero-info-section .btn {
    width: 100%;
    max-width: 260px;
  }
}

.about-section {
  background: #f5f6f8;
}

.about-img img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* heading */
.about-section h2 {
  font-size: 2.4rem;
  color: #2d3a4b;
  line-height: 1.3;
}

/* underline line */
.heading-line {
  width: 100%;
  max-width: 420px;
  height: 4px;
  background: #0d6efd;
  border-radius: 10px;
}

/* paragraph */
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-section h2 {
    font-size: 1.8rem;
  }

  .heading-line {
    max-width: 250px;
  }

  .about-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }

  .heading-line {
    margin-left: auto;
    margin-right: auto;
  }
}

.why-choose-section {
  background: #f5f6f8;
}

.why-choose-section h2 {
  font-size: 2.4rem;
  color: #2d3a4b;
  line-height: 1.3;
}

.why-img img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* reuse same line */
.heading-line {
  width: 100%;
  max-width: 420px;
  height: 4px;
  background: #0d6efd;
  border-radius: 10px;
}

/* features */
.why-choose-section span {
  font-size: 1rem;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-choose-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    text-align: center;
  }

  .heading-line {
    margin: auto;
  }

  .why-choose-section .row > div {
    justify-content: center;
  }
}

.services-section {
  background: #f5f6f8;
}

.services-section h2 {
  font-size: 2.4rem;
  color: #2d3a4b;
}

/* cards */
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d6efd;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* responsive */
@media (max-width: 992px) {
  .services-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .service-card img {
    height: 180px;
  }
}

.usp-section {
  background: #f5f6f8;
}

/* card */
.usp-card {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 20px;
  transition: 0.3s ease;
  height: 100%;
}

/* icon box */
.usp-icon {
  width: 80px;
  height: 80px;
  background: #e6f0ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.usp-icon i {
  font-size: 28px;
  color: #0d6efd;
}

/* text */
.usp-card h5 {
  font-weight: 600;
  color: #0d6efd;
  line-height: 1.4;
}

/* hover */
.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .usp-card {
    padding: 30px 15px;
  }

  .usp-icon {
    width: 65px;
    height: 65px;
  }

  .usp-icon i {
    font-size: 22px;
  }

  .usp-card h5 {
    font-size: 0.95rem;
  }
}

.how-work-section {
  background: #f5f6f8;
}

.how-work-section h2 {
  font-size: 2.4rem;
  color: #2d3a4b;
}

/* card */
.process-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  position: relative;
  height: 100%;
  transition: 0.3s ease;
}

/* step number circle */
.step-number {
  width: 60px;
  height: 60px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* icon */
.process-icon {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 15px;
}

/* text */
.process-card h5 {
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* connecting line */
.process-line {
  position: absolute;
  top: 60px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: #0d6efd;
  z-index: 0;
}

/* hover */
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .how-work-section h2 {
    font-size: 1.8rem;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-card {
    padding: 30px 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
.testimonials-section {
  background: #f5f6f8;
}

.testimonials-section h2 {
  font-size: 2.4rem;
  color: #2d3a4b;
}

/* card */
.testimonial-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  height: 100%;
  text-align: left;
  transition: 0.3s ease;
}

/* text */
.testimonial-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
}

/* footer */
.testimonial-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-footer i {
  font-size: 20px;
}

/* hover */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* responsive */
@media (max-width: 992px) {
  .testimonials-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    text-align: center;
  }

  .testimonial-footer {
    justify-content: center;
    gap: 10px;
  }
}

.contact-section {
  background: linear-gradient(180deg, #a6cbe0, #8fbcd3);
  color: #2d3a4b;
}

/* card */
.contact-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 18px;
  gap: 15px;
  height: 100%;
  transition: 0.3s ease;
}

/* icon */
.contact-icon {
  font-size: 26px;
  color: #0d6efd;
  margin-top: 5px;
}

/* text */
.contact-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.contact-card a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* hover */
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* responsive */
@media (max-width: 768px) {
  .contact-card {
    text-align: left;
  }
}
.footer-section {
  background: #0b3a5b;
  color: #d1e3f0;
}

.footer-brand img {
  height: 40px;
}

.footer-brand h5 {
  color: #4ea3ff;
  font-weight: 700;
}

.footer-brand span {
  color: #ff4d4d;
}

/* headings */
.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #4ea3ff;
  display: block;
  margin-top: 6px;
}

/* links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d1e3f0;
  text-decoration: none;
}

.footer-links a:hover {
  color: #4ea3ff;
}

/* contact */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

.footer-contact i {
  color: #4ea3ff;
  margin-top: 4px;
}

.footer-contact a {
  color: #d1e3f0;
  text-decoration: none;
}

/* bottom */
.footer-bottom hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.privacy-link {
  color: #4ea3ff;
  text-decoration: none;
}

/* responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* buttons */
.call-btn,
.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  text-decoration: none;
}

.call-btn {
  background: #0d6efd;
}

.whatsapp-btn {
  background: #25d366;
}

/* hover */
.call-btn:hover {
  background: #0b5ed7;
  transform: scale(1.1);
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* mobile */
@media (max-width: 576px) {
  .call-btn,
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}
