* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Poppins", system-ui, Arial, sans-serif;
  line-height: 1.6;
}






.nav-link {
    color: #000;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

.nav-link:hover {
    color: #107AB0;
}

#book-btn {
    background-color: #107AB0;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.logo img {
  height: 90px;
  width: auto;
  margin-left: 20px;
  max-width: 100%;
}



.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 16px;
}

.btn{
    background-color: #107AB0;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
.hero-content,
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}


.hero-actions {
    flex-direction: row;
    gap: 14px;
}


.hero-content h1 {
    color: #fff;
    font-size: clamp(36px, 6vw, 64px);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    color: #e5e7eb;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.footer-logo img {
      height: 120px;
    width: auto;
    margin-left: 20px;
}

.footer_wrapper a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

.footer_wrapper h6 {
  letter-spacing: 0.3px;
}

.about h2 ,
.services h2,
.whyus h2,
#process{
    color: #107ab0;
}

.about p{
    text-align: justify;
}

.about .row {
    justify-content: space-between;
}

.services p{
    text-align: justify;
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
}

.services h4{
    color: #04224e;
}

/* .card {
    padding-top: 10px;
    border: 2px solid #0d6efd;
    
} */

.whyus{
    padding-top: 90px;
}


.process-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #107AB0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 122, 176, 0.08), transparent);
  opacity: 0;
  transition: 0.3s ease;
}

.process-card:hover::before {
  opacity: 1;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.process-step {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #107ab0;
  background: rgba(16, 122, 176, 0.1);
}

.services {
  background: #f9fbfd;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .service-img {
    height: 160px;
  }
  .about p{
    font-size: 14px;
  }

  .services p{
    font-size: 15px;
  }
  .whyus p{
    font-size: 14px;
  }
}

/* Mobile-only fixed Call Now button */
.call-now-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .call-now-mobile {
    display: flex;
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1080;
    background: #107AB0;
    color: #fff;
    padding: 10px 18px;
    border-radius: 40px;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(16,122,176,0.18);
    text-decoration: none;
    font-weight: 700;
    max-width: 92%;
    justify-content: center;
  }

  .call-now-mobile i {
    font-size: 1.05rem;
  }
}

#reviews {
    background: #f9fbff;
}

.review-slider {
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    gap: 20px;
    animation: scrollReviews 30s linear infinite;
}

.review-card {
    min-width: 300px;
    max-width: 300px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
}

.review-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-card h6 {
    font-weight: 700;
    margin: 0;
    color: #107ab0;
}

.review-card span {
    font-size: 13px;
    color: #888;
}

.review-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollReviews 40s linear infinite;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.review-slider:hover .review-track {
    animation-play-state: paused;
}

#reviews h2{
  color: #107ab0;
} 

/* Mobile responsive */
@media (max-width: 768px) {
    .review-card {
        min-width: 260px;
        max-width: 260px;
    }
}


#faq {
    background: #f7faff;
    color: #107ab0;
}

.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background:#107ab0;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 18px;
    margin: 0;
    color: #000;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}
