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

body {
  font-family: 'Hellix', sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
/* main {
  padding: 0 20px;
} */

/* Header */
header {
  /* background: rgba(255, 255, 255, 0.95); */
  background: white;
  /* backdrop-filter: blur(10px); */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); */
}

h1,
h2,
h3 {
  font-family: "Helix", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  /* color: #2c3e50; */
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 3px;
}

/* Create animated underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.35s ease; /* Smooth animation */
}

/* Hover effect */
.nav-links a:hover::after {
  width: 100%; /* Expands smoothly left → right */
}

.book-btn {
  background: #47629c;
  color: white;
  padding: 12px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s;
}

.hero-avatars {
  display: flex;
  margin-left: -10px;
}

.hero-avatar {
  /* width: 40px; */
  border-radius: 50%;
  margin-left: -10px;
}
.hero-avatar img {
  object-fit: contain;
  border-radius: 14px;
}

.trust-text {
  font-size: 18px;
  color: black;
  font-weight: 400;
}

h1 {
  font-size: 64px;
  /* color: #0000; */
  margin-bottom: 25px;
  line-height: 1.2;
  animation: fadeInUp 0.8s;
  font-family: 500;
}

.hero-subtitle {
  font-size: 24px;
  color: black;
  max-width: 1150px;
  margin: 0 auto 40px;
  line-height: 1.2;
  animation: fadeInUp 0.8s 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s both;
}

.cta-primary {
  background: #47629c;
  color: white;
  padding: 12px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.cta-secondary {
  border: 1px solid #47629c;
  color: #47629c;
  padding: 12px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

/* Slider */
.slider-container {
  position: relative;
  /* max-width: 1200px; */
  margin: 60px auto 0;
  /* border-radius: 30px; */
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  padding: 0 10px;

}

.slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid white;
}

.slider-dot.active {
  background: white;
  width: 40px;
  border-radius: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #2c3e50;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  /* background: white; */
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 20px;
  font-size: 50px;
  color: white;
}

.slider-arrow.next {
  right: 20px;
  font-size: 50px;
  color: white;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  h1 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 16px;
  }

  .slider {
    height: 400px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-primary,
  .cta-secondary {
    text-align: center;
  }

  .slider {
    height: 300px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }
}

/* ========== STATS BAR ========== */

.stats {
  background-color: #FFFFFF;
  padding: 2.5rem 0;
}

.stats__grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.stats__item {
  flex: 1 1 160px;
  text-align: center;
}

.stats__number {
  font-size: 3rem;
  font-weight: 500;
  color: #47629c;
}

.stats__label {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5f6475;
}

/* ========== ABOUT SECTION ========== */

.about {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4.75rem;
  background-color: #47629c;
  color: #ffffff;
}

/* Subtle pattern shapes */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 0 40%,
      rgba(255, 255, 255, 0.04),
      transparent 60%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(255, 255, 255, 0.05),
      transparent 65%
    );
  opacity: 0.6;
  pointer-events: none;
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

/* Left column */

.about__content {
  max-width: 520px;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
  margin: 0 0 0.9rem;
}

.about__eyebrow-icon {
  font-size: 0.8rem;
}

.about__title {
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.about__title span {
  display: block;
}

.about__lead {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 1.4rem;
  max-width: 33rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.about__body {
  font-size: 1.5rem;
  line-height: 1.9;
  margin: 0 0 2.1rem;
  max-width: 34rem;
}

/* Button */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.9rem;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

/* Right column: arch image */

.about__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.bg_img {
  position: absolute;
  top: -23px;
  background: none;
}
.about__arch {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}

.about__arch--outer {
  border: 1px solid white;
  padding: 1.6rem;
  width: min(360px, 100%);
  background: transparent;
}

.about__arch--inner {
  background: #e7ecf7;
}

.about__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sparkles at the top of arch */
.about__sparkles {
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
}

.about__sparkles span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: #ffffff;
  transform: rotate(45deg);
  border-radius: 2px;
}

.about__sparkles span:nth-child(2) {
  width: 0.35rem;
  height: 0.35rem;
  opacity: 0.85;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 960px) {
  .about__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .about__content {
    max-width: none;
    text-align: left;
  }

  .about__image-wrapper {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .stats {
    padding: 2rem 0;
  }

  .stats__grid {
    justify-content: center;
  }

  .stats__item {
    flex: 0 1 45%;
  }

  .about {
    padding: 3.5rem 0 3.75rem;
  }

  .about__content {
    text-align: left;
  }

  .about__title {
    font-size: 1.9rem;
  }

  .about__lead,
  .about__body {
    max-width: none;
  }

  .about__arch--outer {
    width: min(320px, 100%);
  }
}

@media (max-width: 480px) {
  .stats__item {
    flex: 1 1 100%;
  }

  .about__title {
    font-size: 1.75rem;
  }
}

/* ===== Services Section ===== */

.services {
  /* background-color: #f4f6fb; */
  padding: 4rem 0 4.5rem;
  text-align: center;
}

.services__eyebrow {
  font-size: 1.2rem;
  color: #6070a5;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4;
}
.services__eyebrow span {
  margin-left: 6px;
}

.services__title {
  font-size: clamp(2rem, 2.6vw, 3rem);
  color: #47629c;
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.services__subtitle {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #303030;
}

/* Grid */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Card */

.service-card {
  background-color: #ffffff;
  border-radius: 28px;
  border: 1px solid #000000;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.service-card__text {
  text-align: left;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1c2539;
  margin: 0 0 0.35rem;
}

.service-card__desc {
  font-size: 0.8rem;
  line-height: 1.3;
  color: #303030;
  font-weight: 400;
  margin: 0;
}

/* image */

.service-card__image-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.service-card__image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .services {
    padding: 3.5rem 0 4rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card__image {
    height: 190px;
  }
}

/* ===== Testimonials Section ===== */

.testimonials-section {
  background: #47629c;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}


/* Decorative background circles */
.testimonials-section::before,
.testimonials-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.05); */
}

.section-header {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 15px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2rem, 2.6vw, 3rem);
  color: white;
  margin-bottom: 20px;
  font-weight: 500;
}
.title {
  font-size: clamp(2rem, 2.6vw, 3rem);
  /* color: #47629c; */
  margin: 0 0 0.75rem;
  font-weight: 500;
}
.subtitle {
  font-size: clamp(2rem, 2.6vw, 3rem);
  color: #47629c;
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.section-description {
  font-size: 18px;
  color: white;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonial Container */
.testimonial-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Floating Avatars */
.floating-avatars {
  position: relative;
  height: 400px;
}

.avatar {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
  transition: all 0.3s ease;
  cursor: pointer;
}

.avatar:hover {
  transform: scale(1.1);
  border-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Avatar Positions */
.avatar-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 5%;
}

.avatar-2 {
  width: 90px;
  height: 90px;
  top: 10%;
  left: 20%;
}

.avatar-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
}

.avatar-4 {
  width: 70px;
  height: 70px;
  bottom: 30%;
  left: 25%;
}

.avatar-5 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 5%;
}

.avatar-6 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 15%;
}

.avatar-7 {
  width: 85px;
  height: 85px;
  bottom: 25%;
  right: 8%;
}

.avatar-8 {
  width: 55px;
  height: 55px;
  top: 35%;
  right: 25%;
}

/* Center Avatar with Rings */
.center-avatar-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.avatar-rings {
  position: relative;
  width: 200px;
  height: 200px;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.ring-1 {
  width: 180px;
  height: 180px;
  animation: pulse 3s ease-in-out infinite;
}

.ring-2 {
  width: 200px;
  height: 200px;
  animation: pulse 3s ease-in-out infinite 0.5s;
}

.center-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}
.testimonial-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  color: #5b7db1;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Testimonial Card - New Design */
.testimonial-card {
  background: rgba(90, 110, 150, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 45px 55px;
  max-width: 650px;
  width: 88%;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-left {
  position: absolute;
  top: -45px;
  left: 35px;
  font-size: 70px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 0;
  font-family: Georgia, serif;
}

.quote-right {
  position: absolute;
  bottom: 25px;
  right: 35px;
  font-size: 70px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 0;
  font-family: Georgia, serif;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.testimonial-text {
  color: white;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
  padding: 0 25px;
}

.testimonial-author {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 22px;
}

.star {
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.star.empty {
  color: rgba(255, 255, 255, 0.25);
}

/* Navigation Arrows - New Design */

.nav-arrow:hover {
  background: #f8f9fa;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.nav-arrow.prev {
  left: 20px;
}

.nav-arrow.next {
  right: 20px;
}

/* Fade animation for testimonials */
.testimonial-card {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 80px 20px;
  }

  .section-title {
    font-size: 40px;
  }

  .floating-avatars {
    height: 350px;
  }

  .nav-arrow.prev {
    left: 15px;
  }

  .nav-arrow.next {
    right: 15px;
  }

  .testimonial-card {
    padding: 40px 45px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 15px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 16px;
  }

  .floating-avatars {
    height: 300px;
  }

  .avatar-rings {
    width: 160px;
    height: 160px;
  }

  .ring-1 {
    width: 140px;
    height: 140px;
  }

  .ring-2 {
    width: 160px;
    height: 160px;
  }

  .center-avatar {
    width: 110px;
    height: 110px;
  }

  .avatar {
    width: 60px !important;
    height: 60px !important;
  }

  .avatar-2 {
    width: 70px !important;
    height: 70px !important;
  }

  .testimonial-card {
    padding: 40px 35px;
    bottom: -20px;
    width: 90%;
  }

  .testimonial-text {
    font-size: 15px;
    padding: 0 15px;
  }

  .quote-left,
  .quote-right {
    font-size: 55px;
  }

  .quote-left {
    top: 20px;
    left: 25px;
  }

  .quote-right {
    bottom: 20px;
    right: 25px;
  }

  .nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .nav-arrow.prev {
    left: 10px;
  }

  .nav-arrow.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .floating-avatars {
    height: 350px;
  }

  .avatar {
    width: 50px !important;
    height: 50px !important;
  }

  .avatar-1,
  .avatar-5 {
    width: 55px !important;
    height: 55px !important;
  }

  .testimonial-card {
    padding: 35px 25px;
    width: 92%;
  }

  .testimonial-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .testimonial-author {
    font-size: 16px;
  }

  .star-rating {
    font-size: 20px;
  }

  .quote-left,
  .quote-right {
    font-size: 25px;
    top: -52px;
  }

  .nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .nav-arrow.prev {
    left: 5px;
  }

  .nav-arrow.next {
    right: 5px;
  }
}

/* ===== Consultation Section ===== */

.consultation {
  padding: 4.5rem 0 5rem;
  background-color: #f4f6fb;
}

.consultation__header {
  text-align: center;
  margin-bottom: 3rem;
}

.consultation__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.9rem;
  color: #303030;
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.consultation__icon {
  font-size: 0.75rem;
  margin-right: 0.35rem;
}

.consultation__title {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 2.4rem);
  font-weight: 500;
  color: #222a3b;
}

/* grid: form + image */
.consultation__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}

/* ===== Form ===== */
.consultation__form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #47629C;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  border: 1px solid #47629C;
  background-color: #f9fbff;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1f2533;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: black;
}

.field input:focus,
.field textarea:focus {
  border-color: #4a67c2;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(74, 103, 194, 0.12);
}

/* Button */
.btn-outline {
  align-self: flex-start;
  margin-top: 0.6rem;
  padding: 0.7rem 2.2rem;
  border-radius: 12px;
  border: 1px solid #47629C;
  background: transparent;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  color: #47629C;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.1s ease;
}
/* 
.btn-outline:hover {
  background-color: #4a67c2;
  color: #ffffff;
  box-shadow: 0 15px 25px rgba(74, 103, 194, 0.25);
  transform: translateY(-1px);
} */

/* ===== Image ===== */

.consultation__image-wrapper {
  display: flex;
  justify-content: center;
}

.consultation__image {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: contain;
  display: block;
  height: 550px;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .consultation__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .consultation__image-wrapper {
    order: -1; /* image on top for tablets/phones, remove if you want form first */
  /* height: 473px; */
  }

  .btn-outline {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .consultation {
    padding: 3.5rem 0 4rem;
  }
.consultation__image {
  height: 400px;
}
  .consultation__title {
    font-size: 1.8rem;
  }

  .field input,
  .field textarea {
    font-size: 0.88rem;
  }
}


/* ====== Section ====== */

.contact-section {
  padding: 3.5rem 0 4rem;
  position: relative;
}
.bg-img{
  position: absolute;
  bottom: 0;
  left: 0;
}
.bg-img img{
  width: 200px;
}
/* Top headings */

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-tag {
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #303030;
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.contact-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 600;
  color: #303030;
}

.contact-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #303030;
}

/* ====== Cards Grid ====== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.75rem;
}

/* Card */

.contact-card {
  background-color: #47629C1A;
  border-radius: 22px;
  color: white;
  padding: 1.75rem 1.9rem 1.9rem;
  box-shadow: 0 18px 35px rgba(23, 37, 84, 0.08);
}

.card-title {
  margin: 0 0 1.4rem;
  font-size: 2rem;
  font-weight: 500;
  color: #303030;
}

/* ====== Left Card: info list ====== */

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.icon-wraper{
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 999px;
  padding: 15px;
  height: 48px;

}
.icon-wraper img{
  object-fit: contain;
  width: 20px;
  height: 20px;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #f0f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-text {
  font-size: 0.9rem;
}

.info-label {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
  color: #303030;
}

.info-value {
  color: #303030;
  line-height: 1.5;
  font-weight: 400;

}

/* ====== Right Card: booking ====== */

.card-description {
  font-size: 0.9rem;
  color: #303030;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.btn {
  border-radius: 12px;
  padding: 0.65rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.15s ease;
}

/* primary button */
.btn-primary {
  background-color: #47629C;
  color: #ffffff;
  border-color: #47629C;
}

.btn-primary:hover {
  background-color: #47629C;
  border-color: #47629C;
  box-shadow: 0 14px 28px rgba(37, 64, 142, 0.35);
  transform: translateY(-1px);
}

/* outline button */
.btn-outline {
  background-color: #ffffff;
  color: #3f5da9;
  border-color: #3f5da9;
  width: 100%;
}

.btn-outline:hover {
  background-color: #e7ecff;
}

/* image */

.appointment-image {
  border-radius: 18px;
  overflow: hidden;
}

.appointment-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== Responsive ====== */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.6rem 1.5rem 1.7rem;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding-top: 2.5rem;
  }

  .contact-subtitle {
    padding: 0 0.75rem;
  }

  .contact-card {
    border-radius: 18px;
  }
}




/* --- Footer base --- */

.footer {
  background-color: #3f5da9; /* blue like the design */
  color: #ffffff;
  padding: 3rem 1.5rem;
  margin-top: -50px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr) minmax(0, 1.2fr);
  align-items: flex-start;
}

/* --- Brand block --- */

.footer__brand {
  max-width: 380px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer__logo img{
  width: 136px;
  height: 109px;
  object-fit: contain;
}

/* Placeholder logo – replace with your image if you have one */
.footer__logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer__logo-text {
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.1rem;
}

/* Text */

.footer__description {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 1.8rem;
}

/* Social buttons */

.footer__socials {
  display: flex;
  gap: 0.9rem;
}

.footer__social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
  background: #FFFFFF33;
  padding: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.2s ease;
}

.footer__social-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.footer__social-btn img{
  width: 18px;
  height: 18px;
}

/* --- Columns --- */

.footer__column {
  min-width: 0;
  margin-top: 70px;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.footer__list li + li {
  font-weight: 400 !important;
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.footer__list a {
  font-size: 0.95rem;
  color: #e5ecff;
  text-decoration: none;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
  text-underline-offset: 3px;
}

.footer__list a:hover {
  text-decoration: underline;
  opacity: 0.9;
}
.footer__info{
   margin-top: 20px;
}
.footer__info p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.footer__info p:last-child {
  margin-bottom: 0;
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }

.footer__column {
  min-width: 0;
  margin-top:0;
}
}

@media (max-width: 640px) {
  .footer {
    padding: 2.5rem 1.25rem;
    margin-top: 0;
  }

.footer__column {
  min-width: 0;
  margin-top: 0;
}
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer__brand {
    max-width: none;
  }

  .footer__socials {
    justify-content: flex-start;
  }
}
