/* =============================================
   CSS VARIABLES / :ROOT (Colors ke liye)
============================================= */
:root {
  --site-primary: #47629C;          /* Main blue (buttons, links) */
  --site-primary-hover: rgb(6, 85, 204);    /* Hover shade */
  --site-text-dark: #111;           /* Headings */
  --site-text-muted: #555;          /* Paragraph, trusted */
  --site-text-light: #666;          /* Subtle text */
  --site-bg-light: #eef6fe;         /* Hero background */
  --site-white: #ffffff;
  --site-shadow: rgba(0, 0, 0, 0.1);
  --site-border: var(--site-primary);
}

/* Hellix Font (already provided by you - yahan include kiya for completeness) */
@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/hellix/Hellix-Regular.woff2') format('woff2'),
       url('assets/fonts/hellix/Hellix-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/hellix/Hellix-Medium.woff2') format('woff2'),
       url('assets/fonts/hellix/Hellix-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/hellix/Hellix-SemiBold.woff2') format('woff2'),
       url('assets/fonts/hellix/Hellix-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/hellix/Hellix-Bold.woff2') format('woff2'),
       url('assets/fonts/hellix/Hellix-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Body & Global */
body {
  margin: 0;
  font-family: 'Hellix', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--site-bg-light) !important;
}

/* Headings use Hellix Bold */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Hellix', sans-serif;
  font-weight: 700;
}

/* Container (Bootstrap jaisa - max-width aur center) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 50px;
  text-align: center;
  color: var(--site-text-dark);
  background-color: var(--site-bg-light);
}

/* Trusted Row */
.trusted-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--site-text-muted);
}

.avatar-group {
  display: flex;
}

.avatar-hero {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--site-white);
  box-shadow: 0 2px 8px var(--site-shadow);
  margin-left: -18px;
}

.avatar-hero:first-child {
  margin-left: 0;
}

.trusted-text {
  font-size: 1.15rem;
  color: var(--site-text-light);
}

/* Main Heading */
.main-heading {
  font-size: 3.5rem; /* display-3 jaisa feel */
  margin-bottom: 24px;
  color: var(--site-text-dark);
  letter-spacing: -1px;
  line-height: 1.05;
}

/* Paragraph */
.hero-paragraph {
  max-width: 780px;
  margin: 0 auto 40px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--site-text-muted);
  font-weight: 400;
}

/* Buttons Group */
.btn-group-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.h-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 7px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
}

.h-btn-one {
  background-color: var(--site-primary);
  border: 2px solid var(--site-primary);
  color: var(--site-white);
}

.h-btn-one:hover {
  background-color: var(--site-primary-hover);
  border-color: var(--site-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.h-btn-two {
  border: 2px solid var(--site-primary);
  color: var(--site-primary);
  background: transparent;
}

.h-btn-two:hover {
  background-color: var(--site-primary);
  color: var(--site-white);
  transform: translateY(-2px);
}

/* Mobile Adjustments (media query) */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  .main-heading {
    font-size: 2.8rem;
  }
  .hero-paragraph {
    font-size: 1.1rem;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 80%;
    max-width: 300px;
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  .avatar {
    width: 40px;
    height: 40px;
    margin-left: -14px;
  }
}






/* Full Screen Slider Section */
.full-screen-slider {
  margin: 0px 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
  background-color: var(--site-bg-light);
}

#medSpaCarousel,
.carousel-inner,
.carousel-item,
.carousel-item img {
  height: 500px;
  width: 100%;
  border-radius: 15px;
}

.carousel-item img {
  object-fit: cover;           /* Image full cover without distortion */
  object-position: center;
}

/* Fade transition (smooth feel) */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.2s ease-in-out; /* slower fade for luxury feel */
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Arrows styling - improved version */
.carousel-control-prev,
.carousel-control-next {
  width: 8%;                    /* touch area ke liye wider rakha, lekin visual size chhota */
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* Icon wrapper ko customize kar rahe hain */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--site-primary);     /* blue background */
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  
  /* Icon ko center mein perfectly fit karne ke liye */
  background-size: 60% !important;           /* icon ka size circle ke andar chhota (adjust 50% to 70% agar chahiye) */
  background-position: center center !important;
  background-repeat: no-repeat;
  
  /* Extra: shadow for luxury feel (optional) */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  
  /* Position fix - Bootstrap ke default icon ko better center karta hai */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: agar icon bilkul chhota chahiye to yeh add kar sakte ho */
.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  font-size: 1.8rem;   /* arrow symbol ka size adjust (default ~2rem hota hai) */
}

/* Mobile pe arrows thoda chhote */
@media (max-width: 768px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 42px !important;
    height: 42px !important;
    background-size: 55% !important;
  }
}






/* About Section */
.about-section {
  background-color: var(--site-primary); /* Deep blue - adjust if you want lighter like #003366 or #1e3a8a */
  color: var(--site-white);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  /* margin-bottom: 100px; */
}
.left-mark{
  position: absolute;
  left: -60px;
  bottom: -70px;
}
.right-mark{
  position: absolute;
  right: -30px;
  top: 0px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.about-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--site-bg-light);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.about-heading {
  font-family: 'Hellix', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-subtext {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 32px;
  opacity: 0.95;
}

.about-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #d1e8ff; /* light blue-gray for readability */
}

.btn-learn-more {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 2px solid var(--site-white);
  color: var(--site-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: var(--site-white);
  color: var(--site-primary);
  transform: translateY(-3px);
}

/* Arched Frame Image */
.about-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  position: relative;
  text-align: center;
  position: relative;
}
.spark {
  position: absolute;
  top: -30px;                   /* top pe rakhna hai */
  left: 50%;                /* parent ke center mein start */
  transform: translateX(-50%);
  background-color: var(--site-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.arched-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-top-left-radius: 191px;
  border-top-right-radius: 191px;
  overflow: hidden;
  /* background: var(--site-white); */
  padding: 20px;
  border: 1.5px solid var(--site-bg-light);
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.frame-image {
  width: 380px;
  height: 480px;
  display: block;
  border-top-left-radius: 191px;
  border-top-right-radius: 191px;
  object-fit: cover;
}

/* Sparkles / Stars */
.sparkle {
  position: absolute;
  font-size: 1.8rem;
  color: #ffd700; /* gold sparkles */
  opacity: 0.8;
  pointer-events: none;
}

.top-left    { top: -20px; left: -20px; }
.top-right   { top: -20px; right: -20px; }
.bottom-left { bottom: -20px; left: -20px; }
.bottom-right{ bottom: -20px; right: -20px; }

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-heading {
    font-size: 2.8rem;
  }
  .about-subtext {
    font-size: 1.25rem;
  }
  .arched-frame {
    max-width: 380px;
  }
}




/* Services Section */
.services-section {
  background-color: var(--site-bg-light);
  padding: 100px 0;
}

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

.section-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--site-primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-title {
  font-family: 'Hellix', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--site-primary);
}

.section-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--site-text-muted);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.services-grid a{
  text-decoration: none;
  border: none;
  color: inherit;
}
/* Services Card - Image Style (exact match jaisa) */
.service-card {
  border-radius: 20px;               /* card overall rounded corners */
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid ;
  display: flex;
  flex-direction: column-reverse;
  padding: 20px;
  gap: 20px;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Image Container - top rounded, full bleed */
.service-image {
  position: relative;
  height: 260px;                     /* height adjust kar sakte ho */
  overflow: hidden;
  border-radius: 20px;      /* top corners rounded, bottom flat taake content seamlessly connect ho */
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;                 /* image crop nahi hoti, full cover karti hai */
  object-position: center;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);             /* subtle zoom on hover for premium feel */
}

/* Optional: subtle overlay gradient on image (agar dark text readability chahiye to add kar sakte ho) */
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.25) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
  opacity: 1;
}

/* Content part (neeche text) */
.service-content {
  text-align: left;                  /* left align for better readability */
}

.service-title {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--site-text-dark);
}

.service-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--site-text-muted);
  margin: 0;
}
/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .section-description {
    font-size: 1.1rem;
  }
}





.testimonials-section {
  background-color: var(--site-primary);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--site-bg-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
  display: block;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--site-bg-light);
}

.testimonials-description {
  font-size: 1.15rem;
  max-width: 900px;
  margin: 0 auto 40px;
  opacity: 0.95;
  color: var(--site-bg-light);
}

/* Outer most ring (biggest circle) */
.outer-img {
  width: 250px;                    /* thoda bara rakha taake padding comfortable lage */
  height: 250px;
  border: 2px solid var(--site-bg-light);   /* border thoda thick for visibility */
  border-radius: 50%;
  padding: 20px;
  box-sizing: border-box;          /* padding border ke andar count ho */
  display: flex;                   /* flex se inner center */
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 50px;                  /* block level center */
}

/* Middle ring */
.inner-img {
  width: 100%;                     /* parent ke andar full fill */
  height: 100%;
  border: 2px solid var(--site-bg-light);
  border-radius: 50%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Innermost image container */
.immg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--site-bg-light); /* optional - agar background chahiye */
}

/* Actual image */
.immg img {
  width: 100%;
  height: 100%;
  object-fit: cover;               /* face perfectly center aur crop */
  display: block;
}
/* Main container for both sides */
/* .avatars-container {
  position: relative;
  height: 380px;                 
  margin: 0 auto 80px;
  max-width: 1000px;                
} */

/* Left side avatars box */
.avatars-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;             /* text select na ho */
}

/* Right side avatars box */
.avatars-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

/* Common avatar styles */
.avatar {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  transition: all 0.4s ease;
}

.avatar:hover {
  transform: scale(1.15);
  border-color: white;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/* Left side avatars different positions */
/* Left side avatars (tumhare diye gaye - same rakh raha hoon) */
.avatar-l1 {
    top: 22%;
    left: 15%;
}

.avatar-l2 {
    top: 36%;
    left: 43%;
    width: 60px;
    height: 60px;
}

.avatar-l3 {
    top: 55%;
    left: 60%;
    width: 50px;
    height: 50px;
}

.avatar-l4 {
    top: 59%;
    left: 20%;
}

/* Right side avatars - bilkul left jaisa pattern (mirror feel ke saath) */
.avatar-r1 {
    top: 30%;          /* thoda upar se shuru */
    right: 18%;        /* left ke 15% ka mirror ~18% */
}

.avatar-r2 {
    top: 34%;          /* left ke 36% ka close mirror */
    right: 38%;        /* left ke 43% ka mirror style */
    width: 60px;
    height: 60px;
}

.avatar-r3 {
    top: 52%;          /* left ke 55% ka mirror */
    right: 55%;        /* left ke 60% ka mirror */
    width: 50px;
    height: 50px;
}

.avatar-r4 {
    top: 62%;          /* left ke 59% ka close mirror */
    right: 22%;        /* left ke 20% ka mirror */
}


@media (max-width: 992px) {
  .avatars-container {
    height: 320px;
  }

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

  /* Mobile pe positions thodi tight kar di */
  .avatar-l1 { top: 5%;   left: 15%; }
  .avatar-l2 { top: 30%;  left: 5%;  }
  .avatar-l3 { top: 50%;  left: 25%; }
  .avatar-l4 { top: 70%;  left: 10%; }

  .avatar-r1 { top: 10%;  right: 20%; }
  .avatar-r2 { top: 35%;  right: 5%;  }
  .avatar-r3 { top: 55%;  right: 25%; }
  .avatar-r4 { top: 75%;  right: 10%; }
}



/* Slider Container */
.testimonial-slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(20px);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Quote Box */
.testimonial-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px 30px 30px 30px;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.quote-icon {
    font-size: 9rem;
    line-height: 1;
    position: absolute;
    top: -99px;
    left: 90px;
    transform: translateX(-50%);
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.65;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  margin-top: 20px;
}

.author-name {
  font-size: 1.35rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.stars {
  color: #ffd700;
  font-size: 1.6rem;
  letter-spacing: 3px;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2.8rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: #4da6ff;
  transform: translateY(-50%) scale(1.1);
}

.prev { left: -80px; }
.next { right: -80px; }

/* Responsive */
@media (max-width: 992px) {
  .avatars-scatter { height: 280px; }
  .avatar { width: 60px; height: 60px; }
  .testimonial-box { padding: 40px 25px; }
  .quote-icon { font-size: 7rem; top: -40px; }
  .prev, .next { width: 50px; height: 50px; font-size: 2.2rem; }
  .prev { left: -30px; }
  .next { right: -30px; }
}






.consultation-section {
  background-color: #fff;
  padding: 80px 0 100px;
/*   border-bottom: 2px solid var(--site-primary); */
}

.consultation-header {
  margin-bottom: 70px;
}

.consultation-label {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--site-primary);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.consultation-title {
  font-family: 'Hellix', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #111111;
  margin: 0;
}


.form-group {
  margin-bottom: 32px;
}

.form-label {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--site-primary);
  margin-bottom: 10px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--site-primary);
  border-radius: 7px;
  background: transparent;
  font-size: 1.05rem;
  color: #222;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--site-primary);
}

.form-input::placeholder {
  color: #999999;
  opacity: 1;
}

.message-input {
  padding-top: 10px;
  min-height: 130px;
  resize: vertical;
}

/* Button */
.btn-submit {
  background-color: transparent;
  border: 2px solid var(--site-primary);
  color: var(--site-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 48px;
  border-radius: 7px;
  font-size: 1.05rem;
  transition: all 0.35s ease;
  display: inline-block;
  margin-top: 12px;
}

.btn-submit:hover {
  background-color: var(--site-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.25);
}


/* ===== WPForms Custom Styling ===== */

#wpforms-form-1681 {
    max-width: 100%;
}

/* Field Container Spacing */
#wpforms-form-1681 .wpforms-field {
    margin-bottom: 20px;
}

/* Labels */
#wpforms-form-1681 .wpforms-field-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

/* Inputs & Textarea */
#wpforms-form-1681 input[type="text"],
#wpforms-form-1681 input[type="email"],
#wpforms-form-1681 input[type="number"],
#wpforms-form-1681 textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    background-color: #f9f9f9 !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

/* Focus Effect */
#wpforms-form-1681 input:focus,
#wpforms-form-1681 textarea:focus {
    border-color: var(--site-primary) !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 2px rgba(200,155,123,0.2);
    outline: none;
}

/* Textarea Height */
#wpforms-form-1681 textarea {
    min-height: 120px;
}

/* Submit Button */
#wpforms-submit-1681 {
    width: 100%;
    padding: 15px;
    background: var(--site-primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button Hover */
#wpforms-submit-1681:hover {
    background: var(--site-bg-light);
    color: var(--site-primary);
    transform: translateY(-2px);
}

/* Error Message */
#wpforms-form-1681 .wpforms-error {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    #wpforms-submit-1681 {
        padding: 14px;
    }
}


/* Tall Image - exact size feel */
.consultation-image {
  height: 670px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.consult-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .consultation-row {
    flex-direction: column-reverse;
  }
  
  .consultation-image {
    height: 520px;
    max-width: 100%;
    margin-bottom: 50px;
  }
  
  .consultation-form {
    max-width: 100%;
  }
  
  .section-title {
    font-size: 2.6rem;
  }
}




.contact-section {
  background-color: transparent; /* light gray-white jaise screenshot */
  padding: 80px 0;
  position: relative;
}

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

.contact-label {
  font-size: 1.15rem;
  font-weight: 500;
  color: #111111;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.contact-title {
  font-family: 'Hellix', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Cards */
.contact-card {
  background: #47629C1A;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  /* height: 100%; */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.right-card {
  background: #47629C1A;
  padding: 40px;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px !important;
  color: #222;
}

.card-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item a{
  text-decoration: none;
  display: flex;
}

.icon {
  font-size: 1.2rem;
  margin-right: 16px;
  color: var(--site-primary);
  min-width: 30px;
  background-color: var(--site-bg-light);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info strong {
  display: block;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 4px;
}

.info span {
  font-size: 1rem;
  color: #666;
}

/* Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primaryy {
  background:var(--site-primary) !important;
  border: 2px solid var(--site-primary) !important;
  color: white !important;
}

.btn-primaryy:hover {
  background: #0b5ed7 !important;
  border-color: #0b5ed7 !important;
}

.btn-outlinee {
  background: transparent;
  border: 2px solid var(--site-primary) !important;
  color: var(--site-primary) !important;
}

.btn-outlinee:hover {
  background: var(--site-primary) !important;
  color: white;
}

/* Right Image */
.contact-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

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

/* Responsive */
@media (max-width: 992px) {
  .contact-row {
    flex-direction: column;
  }
  
  .contact-card {
    padding: 32px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}