:root {
  --brand-green: #81C98D;
  --brand-green-darker: #00B67A;
  /* --brand-green-darker: #81C98D; */
  --subtitle-green: #70dca4;
  --process-bg-green: #a3cfb4;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --background-color: #ffffff;
  --font-family-main: "Poppins", sans-serif;
}




/* Semibold */
@font-face {
  font-family: 'Sharp Sans';
  src: url('/font/sharp-sans/Sharp\ Sans\ Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}


@font-face {
  font-family: 'Domine';
  src: url('/font/domine/Domine-Regular.ttf') format('opentype');
  font-weight: 400;
  font-style: normal;
}


@font-face {
  font-family: 'Sharp Sans';
  src: url('/font/sharp-sans/Sharp\ Sans\ Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}




@font-face {
  font-family: 'Inter-Regular';
  src: url('/font/inter/Inter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}


@font-face {
  font-family: 'Inter-Regular';
  src: url('/font/inter/Inter-Regular.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}


@font-face {
  font-family: 'Inter-Regular';
  src: url('/font/inter/Inter-Regular.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}




body {
  font-family: var(--font-family-main);
  background-color: var(--background-color);
  color: #333333;
  overflow-x: hidden;
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-nav {
  padding: 2rem 0;
}

.logo {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
}

.logo-text {
  margin-left: 0.5rem;
}

.logo svg {
  width: 52px;
  height: 52px;
}

.nav-links .nav-link {
  color: #333333;
  padding: 0;
  transition: color 0.2s ease-in-out;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.nav-links .nav-link:hover {
  color: #333333;
}

.nav-links .nav-link.active {
  color: var(--subtitle-green);
}

.btn-contact {
  background-color: var(--brand-green);
  color: white;
  font-weight: 500;
  border-radius: 20px;
  padding: 8px 24px;
  transition: background-color 0.2s ease-in-out;
}

.btn-contact:hover {
  background-color: var(--brand-green-darker);
  color: white;
}
.hero-section {
  /* padding-top: 3.5rem; */
  /* padding-bottom: 3.5rem; */
  /* YEH NAYE STYLES HAIN */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-family: "Sharp Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0;
}

.hero-subtitle {
  font-family: "Sharp Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: var(--subtitle-green);
  /* MARGINS HATA DIYE HAIN */
  margin: 0; 
}

.about-header {
  /* Add these properties to create the spacing */
  display: flex;
  flex-direction: column;
  align-items: center; /* This keeps your text-center alignment */
  gap: 40px;           /* This creates the 40px gap between each item */
}
.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  /* MARGINS HATA DIYE HAIN */
  margin: 0; 
}

.hero-description strong {
  color: #333333;
  font-weight: 600;
}

.btn-cta {
  background-color: var(--brand-green);
  color: white;
  border-radius: 25px;
  padding: 14px 40px;
  transition: background-color 0.2s ease-in-out;
  /* MARGINS HATA DIYE HAIN */
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-cta:hover {
  background-color: var(--brand-green-darker);
  color: white;
}

.benefits-container {
  /* MARGINS HATA DIYE HAIN */
  margin: 0; 
}

.benefit-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
}

.benefit-item svg {
  color: #10b981;
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.image-slider-wrapper {
  margin-top: 3rem;
}

.slider-image-container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  max-height: 620px;
  object-fit: cover;
  /* CHANGE THIS LINE: Match the JS duration */
  transition: opacity 0.4s ease-in-out; /* Changed from 0.5s to 0.4s */
}

.before-after-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(25, 25, 25, 0.25);
  backdrop-filter: blur(5px);
  border-radius: 18px;
  padding: 4px;
  display: flex;
  font-size: 0.9rem;
  font-weight: 500;
}

.before-after-toggle .toggle-btn {
  padding: 6px 16px;
  border-radius: 14px;
  color: white;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.before-after-toggle .toggle-btn.active {
  background-color: var(--brand-green);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  border: none;
  font-size: 1.5rem;
  color: #333333;
}

.slider-arrow:hover {
  background-color: white;
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  border: none;
}

.slider-dots .dot.active {
  background-color: white;
}

.testimonial-teaser {
  color: #333333;
  font-weight: 400;
  padding: 2rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  margin-top: 1rem;
}

.testimonial-teaser strong {
  color: #333333;
}

.process-section {
  width: 100%;
  /* margin-top: 3rem; */
}

.partner-logos-banner {
  background-color: #81C98D;
  padding: 2rem 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.partner-logos-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 barabar columns banayega */
  grid-template-rows: repeat(2, 1fr);    /* 2 barabar rows banayega */
  gap: 4rem 6rem; /* Vertical gap 4rem, Horizontal gap 6rem */
  max-width: 900px; /* Optional: container ki max width set karega */
  margin: 0 auto;
  align-items: center; /* Logos ko vertically center karega */
  justify-items: center; /* Logos ko horizontally center karega */
}

.partner-logos-container img {
  max-height: 85px;
  /* filter: brightness(0) invert(1) opacity(0.8); */
}

.process-title {
  font-family: 'Sharp Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #333333;
}

.process-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
}

.process-layout-wrapper {
  position: relative;
  margin: 4rem auto 15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12rem 4rem;
  align-items: flex-start;
}

.process-step {
  max-width: 515px;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-family: 'Sharp Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #333333;
  margin: 1rem 0;
}

.process-step p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
}

.process-step p strong {
  color: #333333;
}

.step-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.step-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.consultation-icon {
  border: 2.5px dashed var(--subtitle-green);
}

.consultation-icon svg {
  fill: var(--subtitle-green);
}

.send-photos-icon,
.staging-completed-icon {
  background-color: #eefbf5;
}

.send-photos-icon svg,
.staging-completed-icon svg {
  fill: var(--subtitle-green);
}

.send-photos {
  justify-self: end;
  text-align: left;
}

.staging-completed {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  justify-self: end;
  text-align: start;
}

.dotted-line {
  position: absolute;
  z-index: 1;
  fill: none;
  stroke: #ccc;
  stroke-width: 2;
  display: block !important;
}

.line-1 {
  /* width: 25%; */
  /* height: 90px; */
  top: 100px;
  left: 41%;
}

.line-2 {
  /* width: 20%; */
  /* height: 78px; */
  top: 13rem;
  left: 67%;
  /* transform: translateX(-50%) rotate(90deg); */
}

.floating-image {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: block !important;
  z-index: 2;
}

.floating-image img {
  width: 100%;
  display: block;
}

.floating-image .caption {
  /* position: absolute; */
  bottom: -2px;
  left: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #333333;
  z-index: 9999;
}

.image-2 {
  width: 385px;
  top: 28rem;
  left: 12rem;
  transform: translateX(-50%);
  z-index: 111;
}

.image-3 {
  width: 417px;
  top: 16rem;
  left: 20rem;
}

.image-4 {
  width: 320px;
  top: 47rem;
  left: 4rem;
}

.image-5 {
  width: 350px;
  left: 25rem;
  top: 39rem;
}

.calendar {
  width: 275px;
  top: 32rem;
  right: 3rem;
}

.features-pricing-section {
  /* padding: 3rem 0; */
}

.project-image {
  transition: opacity 0.4s ease-in-out; /* This is the key for the smooth effect */
}

.section-title {
  font-family: 'Sharp Sans', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #333333;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  margin: 0 auto;
  line-height: 1.9;
}

.feature-item {
  padding: 0 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: #eefbf5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4f4e6;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--subtitle-green);
}

.feature-title {
  font-family: 'Sharp Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #333333;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.projects-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.project-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.project-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #333333;
  opacity: 0.7;
  transition: opacity 0.2s;
  cursor: pointer;
}

.project-arrow:hover {
  opacity: 1;
}

.project-arrow.prev {
  left: -50px;
}

.project-arrow.next {
  right: -50px;
}

.pricing-card-container {
  margin: 3rem auto 0;
}

.pricing-card {
  display: flex;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #a3cfb4;
}

.pricing-card-content {
  flex-grow: 1;
  padding: 2rem 4.5rem;
}

.price-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-label {
  font-weight: 500;
  color: #333333;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #333333;
}

.pricing-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  column-count: 3;
  column-gap: 3rem;
}

.pricing-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
}

.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-size: 1.25rem;
  line-height: 1;
}


.btn-contact-pricing {
  background-color: var(--brand-green);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-contact-pricing:hover {
  background-color: var(--brand-green-darker);
  color: white;
}

.featured-banner {
  background-color: #81C98D;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-text {
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
}

.contact-testimonials-section {
  /* padding: 3rem 0; */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.form-control {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #d1d5db;
  padding: 0.5rem 0;
  background-color: transparent;
  font-size: 1rem;
  resize: none; /* Textarea ka size badalne waala icon hata dega */
}



.shadow-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem; /* Card ke andar spacing */
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.08); /* Khoobsurat sa shadow */
  border: 1px solid #f0f0f0; /* Bahut halka sa border */
}

/* Responsive adjustments for the card */
@media (max-width: 767.98px) {
  .shadow-card {
      padding: 2rem;
  }
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--brand-green);
  background-color: transparent;
}

.btn-form-submit {
  background-color: var(--brand-green);
  color: white;
  font-weight: 500;
  border-radius: 25px;
  padding: 12px 35px;
  font-size: 1rem;
  transition: background-color 0.2s ease-in-out;
  border: none;
  margin-top: 1rem;
}

.btn-form-submit:hover {
  background-color: var(--brand-green-darker);
  color: white;
}

.contact-info {
  padding-top: 0.5rem;
}

.info-text {
  color: #333333;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 6rem;
  display: flex;
  gap: 2.5rem;
}

.detail-item .detail-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-bottom: 0.25rem;
}

.detail-item .detail-value {
  color: #333333;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  margin: 0;
  color: #333333;
  font-family: 'Domine', serif;
  font-weight: 400;
  font-size: 16px;
}

.author-title {
  margin: 0;
  color: #333333;
  font-family: 'Domine', serif;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-divider {
  border: 0;
  border-top: 1px dashed #d1d5db;
  margin: 1rem 0;
}

.testimonial-quote {
  line-height: 1.7;
  color: #333333;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.section-title-new {
  font-family: 'Sharp Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #333333;
  margin-bottom: 0.75rem;
}

.faq-section {
  /* padding-top: 4rem; */
}

/* CHANGE: Use border-top on all items to create separators */
.faq-item-new {
  border-top: 1px solid #333333;
}


.faq-container .col-lg-6 .faq-item-new:last-child {
  border-bottom: 1px solid #333333;
}
.faq-question-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  min-height: 95px;
}

.faq-text-new {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
}

.faq-icon-new {
  background-color: #d1fae5;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon-new svg {
  width: 16px;
  height: 16px;
  fill: #10b981;
  transition: transform 0.3s ease-out;
}

.faq-item-new.active .faq-icon-new svg {
  transform: rotate(180deg);
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-bottom 0.3s ease-out;
}

.faq-answer-new p {
  color: #333333;
  line-height: 1.7;
  margin: 0;
  padding-left: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 10px !important;
}

.faq-item-new.active .faq-answer-new {
  padding-bottom: 1.25rem;
}

.final-cta-section-new {
  max-width: 775px;
  margin: 4rem auto;
}

.final-cta-section-new p {
  color: #333333;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.final-cta-section-new p strong {
  color: #333333;
}

.btn-cta-new {
  background-color: #22c55e;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  border-radius: 999px;
  padding: 14px 40px;
  text-decoration: none;
  transition: background-color 0.2s;
  box-shadow: 0 4px 14px -4px #22c55e;
}

.btn-cta-new:hover {
  background-color: #16a34a;
}

.benefits-container-footer-new {
  padding-bottom: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item-new {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
  display: flex;
  align-items: center;
}

.benefit-item-new::before {
  content: '✓';
  color: #22c55e;
  font-weight: bold;
  margin-right: 8px;
  font-size: 1.2rem;
}

.site-footer-new {
  background-color: #81C98D;
  padding: 3rem 0;
  color: white;
}

.footer-logo-new {
  text-decoration: none;
  color: white;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-logo-new svg {
  width: 52px;
  height: 52px;
  margin-right: 0.5rem;
}

.copyright-text-new {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.footer-contact-new p {
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-contact-new a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-contact-new a:hover {
  opacity: 1;
}

.footer-nav-new {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  justify-content: end;
  justify-content: md-end;
}

.footer-nav-new a {
  color: white;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-nav-new a:hover {
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .image-1 {
    left: -40px;
  }
  .image-4 {
    right: -20px;
  }
}

@media (max-width: 991.98px) {
  .nav-links {
    display: none;
  }
  .process-layout-wrapper {
    display: none;
  }
  .project-arrow {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 2rem;
    margin-top: -0.5rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .benefits-container {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem !important;
  }
  .pricing-card {
    flex-direction: column;
  }
  .featured-banner {
    width: 100%;
    padding: 1rem;
    order: -1;
  }
  .pricing-card-content {
    padding: 1.5rem;
  }
  .pricing-features {
    column-count: 1;
  }
  .pricing-card::before {
    display: none;
  }
  .faq-answer p {
    padding-left: 0;
  }
}

.calendar-container {
  background-color: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
}

.calendar-header {
  font-size: 0.8rem;
  font-weight: 500;
  color: #333333;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
  text-align: center;
  font-size: 0.8rem;
  padding: 0.3rem;
}

.calendar-table th {
  font-weight: 600;
  color: #333333;
  padding-bottom: 0.5rem;
}

.calendar-table td {
  font-weight: 500;
  color: #333333;
}

.highlighted-day {
  background-color: var(--brand-green);
  color: white !important;
  border-radius: 50%;
  padding: 4px 8px;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .nav-links {
    display: none !important;
  }
  .navbar-toggler {
    display: block;
    border: none;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .process-layout-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin: 4rem auto;
  }
  .process-step {
    max-width: 450px;
    text-align: center !important;
    justify-self: center !important;
    grid-column: auto;
    grid-row: auto;
  }
  .step-icon-wrapper {
    margin: 0 auto 1rem;
  }
  /* .dotted-line,
  .floating-image {
    display: none !important;
  } */
  .project-arrow {
    display: none;
  }
  .footer-nav-new {
    justify-content: center;
  }
  .footer-contact-new {
    justify-content: center !important;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .benefits-container {
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
    gap: 1rem !important;
  }
  .partner-logos-container {
    gap: 2rem;
  }
  .partner-logos-container img {
    max-height: 40px;
  }
  .partner-logos-banner {
    padding: 3rem 1rem;
  }
  .process-title,
  .section-title,
  .section-title-new {
    font-size: 1.8rem;
  }
  .pricing-card {
    flex-direction: column;
  }
  .featured-banner {
    width: 100%;
    padding: 0.8rem;
    order: -1;
  }
  .pricing-card-content {
    padding: 1.5rem;
  }
  .pricing-features {
    column-count: 1;
  }
  .pricing-card::before {
    display: none;
  }
  .faq-answer-new p {
    padding-left: 0;
  }
  .faq-question-new {
    min-height: auto;
    padding: 1rem 0;
  }
  .site-footer-new .text-md-end,
  .site-footer-new .text-md-start {
    text-align: center !important;
  }
  .footer-logo-new {
    justify-content: center !important;
  }
}

.main-head {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
}

.main-head2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
}

.page-title-section {
  padding: 3rem 0;
}

.page-title {
  font-family: 'Sharp Sans', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #333333;
}

.page-title .text-green {
  color: #32d48e;
}

.service-section,
.image-grid-section {
  padding-bottom: 3rem;
}

.service-content h2.service-heading {
  font-family: 'Sharp Sans', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #333333;
  margin-bottom: 1.5rem;
}

.service-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

.service-content p strong {
  color: #333333;
  font-weight: 600;
}

.styled-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.12);
}

.image-grid-section .d-flex.flex-column {
  align-self: stretch;
}

.image-grid-section .d-flex.flex-column img {
  flex: 1;
  min-height: 0;
}

@media (max-width: 991.98px) {
  .page-title {
    font-size: 40px;
  }
  .service-content h2.service-heading {
    font-size: 34px;
    text-align: center;
  }
  .service-content {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .page-title {
    font-size: 32px;
  }
  .service-section,
  .image-grid-section {
    padding-bottom: 3rem;
  }
}

.feature-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 25px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  
  /* --- ALIGNMENT & SPACING FIXES --- */
  height: 100%;                 /* 1. Makes all cards in a row the same height */
  display: flex;                /* 2. Activates Flexbox */
  flex-direction: column;       /* 3. Stacks items vertically */
  align-items: center;          /* 4. Centers items horizontally */
  justify-content: flex-start;  /* 5. Aligns content to the top (we'll add padding) */
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.12);
}

/* Style the div containing the icon image */
.feature-card > div:first-child {
  margin-bottom: 1.5rem; /* Space between icon and title */
}

/* Style the icon image itself */
.feature-card img {
  height: 48px; /* A good size for icons */
  width: auto;
}

/* Style the title */
.feature-card-title {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 20px;
color: #333333;
margin-top: 0;
margin-bottom: 1rem; /* Space between title and description */
}

/* Style the description text */
.feature-card-description {
font-family: 'Inter', sans-serif;
font-size: 15px;
color: #333333;
line-height: 1.7;
margin-bottom: 0; /* Remove default paragraph margin */
}

.restyling-section {}

.restyling-header {
  margin: 0 auto 4rem auto;
}

.restyling-header p {
  font-family: 'Inter', sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

.image-pair-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333333;
  margin-bottom: 0.5rem;
}

.restyling-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333333;
  margin-bottom: 1.25rem;
}

.benefits-list svg {
  width: 20px;
  height: 20px;
  color: #34d399;
  margin-right: 1rem;
  flex-shrink: 0;
}

.pricing-box {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-content {
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-label {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
}


.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #333333;
}

.btn-contact-pricing {
  background-color: #34d399;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-contact-pricing:hover {
  background-color: #10b981;
  color: white;
}

.pricing-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  width: 100px;
  height: 100%;
  background-color: #e6f7f0;
  transform: skewX(-15deg);
  z-index: 0;
}

.rendering-header {
  margin: 0 auto 3rem auto;
}

.rendering-header p {
  font-family: 'Inter', sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

.rendering-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.custom-pricing-card {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.card-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pricing-details h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  margin: 0 0 0.5rem 0;
}

.coming-soon-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

.custom-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  width: 60px;
  height: 100%;
  background-color: #e6f7f0;
  transform: skewX(-15deg);
  z-index: 0;
}

.about-us-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-header {
  max-width: 830px;
  margin: 0 auto 3rem auto;
}

.about-main-title {
  font-family: "Sharp Sans", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #333333;
}

.about-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #86C894;
  margin-top: -10px;
}

.about-description {
  font-family: 'Inter', sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.about-description strong {
  color: #333333;
}

.stat-box {
  background-color: #86C894;
  color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
}

.stat-label {
  font-family: "Sharp Sans", sans-serif;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}




.stat-value {
  font-family: "Sharp Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 767.98px) {
  .about-main-title {
    font-size: 40px;
  }
  .about-subtitle {
    font-size: 32px;
  }
  .stat-value {
    font-size: 40px;
  }
}

.clients-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.clients-header {
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

.clients-main-title {
  font-family: "Sharp Sans", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #333333;
  margin-bottom: 1.5rem;
}

.clients-description {
  font-family: 'Inter', sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

.clients-description strong {
  color: #333333;
  font-weight: 600;
}

.client-logo {
  max-width: 220px;
  height: auto;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 767.98px) {
  .clients-main-title {
    font-size: 40px;
  }
}

.section-header {
  max-width: 975px;
  margin: 0 auto 3rem auto;
}

.section-main-title {
  font-family: "Sharp Sans", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #333333;
  margin-bottom: 1rem;
}

.section-header {
  /* Add these properties to create the spacing */
  display: flex;
  flex-direction: column;
  align-items: center; /* Keeps the text centered */
  gap: 10px;           /* Creates the 10px gap */
}
.section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

.section-description strong {
  color: #333333;
  font-weight: 600;
}

.benefit-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.15);
}

.benefit-divider {
  border: 0;
  border-top: 3px solid #000000;
  margin-bottom: 2rem;
  max-width: 100%;
}
.numbered-list {
  list-style: none;
  padding-left: 0;
}

.numbered-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.numbered-list li:last-child {
  margin-bottom: 0;
}

.number-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: #d1fae5;
  color: #065f46;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-right: 1.5rem;
}

.numbered-list p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
}

.checkmark-list {
  list-style: none;
  padding-left: 0;
  /* max-width: 850px; */
  margin: 2rem auto 0 auto;
}

.checkmark-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.checkmark-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: #34d399;
  margin-right: 1.5rem;
}

.checkmark-list p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 767.98px) {
  .section-main-title {
    font-size: 36px;
  }
}

.gallery-hero-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gallery-header {
  /* max-width: 800px; */
  margin: 0 auto 4rem auto;
}

.gallery-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #333333;
}

.gallery-header {
  /* Add these properties to create the spacing */
  display: flex;
  flex-direction: column;
  align-items: center; /* Keeps the text centered */
  gap: 40px;           /* Creates the 40px gap */
}

.gallery-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #a3cfb4;
  margin-top: -10px;
}

.gallery-description {
  font-family: 'Inter', sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 1.5rem;
  max-width: 710px;
}

.gallery-description strong {
  color: #333333;
  font-weight: 600;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0 auto;
}

.world-map-image {
  width: 100%;
  height: auto;
}

.map-overlay-text {
  position: absolute;
  top: 48%;
  right: 28%;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .map-overlay-text {
    font-size: 16px;
    right: 25%;
  }
}

@media (max-width: 767.98px) {
  .gallery-main-title {
    font-size: 36px;
  }
  .gallery-subtitle {
    font-size: 28px;
  }
  .map-overlay-text {
    font-size: 12px;
    right: 50%;
    top: 45%;
    transform: translate(50%, -50%);
  }
}

.image-gallery-section {
  /* padding-top: 5rem; */
  /* padding-bottom: 5rem; */
}

.gallery-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  padding: 1rem 1.25rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-center.mb-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pya-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.pyas-5 {
  padding-top: 2rem !important;
  /* padding-bottom: 4rem !important; */
}

.pyaa-5{
  padding-top: 5rem !important;
}


.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.pricing-header-gap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* Icon aur text ke beech ka gap */
}

.contact-link svg {
    width: 20px;
    height: 20px;
}


.site-footer-new {
  background-color: #81C98D;
  padding: 4rem 0;
  color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Wraps items on small screens */
    gap: 2rem; /* Adds space when items wrap */
}

.footer-left {
    text-align: center; /* Center on small screens */
}

.footer-logo-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-logo-new svg {
  width: 40px;
  height: 40px;
}

.copyright-text-new {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.9;
  margin-left: 1rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center on small screens */
}

.footer-contact-new {
    display: flex;
    flex-direction: column; /* Stacked by default */
    align-items: flex-start; /* Aligns items to the left within the column */
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-nav-new {
  display: flex;
  gap: 2rem;
}

.footer-nav-new a {
  color: white;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-nav-new a:hover {
  opacity: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 1;
}

.contact-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments for the new layout */
@media (min-width: 992px) {
    .footer-left {
        text-align: left; /* Align to the left on large screens */
    }
    .footer-right {
        align-items: flex-end; /* Align to the right on large screens */
    }
    .footer-contact-new {
        align-items: flex-end; /* Aligns text to the right inside the column */
    }
}


.spain{
  position: relative;
  left: 18rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #333333;
}

.pyt-5{
  padding-top: 3rem;
}

/* --- STYLES FOR WORLD MAP TEXT OVERLAY --- */

/* 1. Make the map container the reference for positioning */
.map-container {
  position: relative; /* This is essential for the overlay to work */
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* 2. Style and position the overlay text */
.map-overlay-text {
  position: absolute;
  top: 24%;
  left: 63%;
  transform: translate(-50%, -50%); /* Helps center the text block precisely */
  
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px; /* Font size for large screens */
  line-height: 1.4;
  color: #333333;
  text-align: center;
  white-space: nowrap; /* Prevents text from wrapping on its own */
}

/* 3. Hide the text on tablets and smaller devices where it would be too cluttered */
@media (max-width: 991.98px) {
  .map-overlay-text {
    display: none;
  }
}


/* =================================================================== */
/* ==============   MOBILE RESPONSIVE STYLES START HERE   ============== */
/* =================================================================== */

/* ------------------------------------------------------------------- */
/* STYLES FOR MOBILE DEVICES (768px wide and below)
/* ------------------------------------------------------------------- */
@media (max-width: 767.98px) {

  /* --- HEADER --- */
  /* Hide the desktop navigation links and contact button */
  .header-nav .nav-links,
  .header-nav .btn-contact {
      display: none !important;
  }

  /* Add this class to your hamburger menu icon in the HTML */
  .mobile-menu-toggle {
      display: block; /* This makes it visible on mobile */
      cursor: pointer;
      /* You can add more styles for the icon here */
  }

  /* --- HERO SECTION --- */
  .hero-section {
      gap: 25px; /* Tighter vertical spacing */
      padding: 2rem 0;
  }

  /* Reduce font sizes for mobile */
  .hero-title {
      font-size: 36px;
  }

  .hero-subtitle {
      font-size: 30px;
  }
  
  .hero-description {
      font-size: 16px;
  }

  /* --- "GET IN TOUCH" BUTTON --- */
  /* Make the button larger and more pill-shaped */
  .btn-cta {
      padding: 16px 45px;
      border-radius: 50px;
      font-size: 1.1rem;
  }

  /* --- BENEFITS LIST --- */
  /* Stack the benefits vertically and align them left */
  .benefits-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem !important; /* Consistent vertical spacing */
      max-width: 300px; /* Prevents long text from looking awkward */
      margin: 1.5rem auto 0; /* Center the whole block */
  }
}

/* ------------------------------------------------------------------- */
/* STYLES FOR VERY SMALL PHONES (400px wide and below)
/* ------------------------------------------------------------------- */
@media (max-width: 400px) {
  .hero-title {
      font-size: 30px;
  }

  .hero-subtitle {
      font-size: 24px;
  }
}


/* ============================================== */
/* =========== MOBILE NAVIGATION STYLES =========== */
/* ============================================== */

/* --- 1. Hamburger Button Style --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 0;
  color: #333333; /* Icon color */
}

/* --- 2. The Mobile Navigation Panel (Overlay) --- */
.mobile-nav {
  position: fixed; /* Stays in place when scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98); /* White background with slight transparency */
  backdrop-filter: blur(5px);
  z-index: 1000; /* Sits on top of everything */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* Hidden by default, slides in from the right */
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

/* --- 3. The "Open" State --- */
/* JavaScript will add this class to show the menu */
.mobile-nav.open {
  transform: translateX(0%);
}

/* --- 4. The Close Button (X) --- */
.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333333;
}

/* --- 5. The Links inside the Mobile Menu --- */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  text-decoration: none;
  font-family: 'Sharp Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--brand-green);
}

/* --- 6. The "Contact Us" Button inside the Mobile Menu --- */
.btn-contact-mobile {
  background: var(--brand-green);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
}

/* =================================================================== */
/* ==============   FIX FOR HORIZONTAL OVERFLOW & CENTERING   ============== */
/* =================================================================== */

.partner-logos-banner,
.contact-testimonials-section,
.site-footer-new {
    width: 100%; 
    position: static; 
    left: auto;
    transform: none;
}

/* --- HIDE DECORATIVE ARROWS ON MOBILE --- */
@media (max-width: 767.98px) {


   .arrow-image {
    display: none !important;
  }
  .image-4 {
    right: 0px;
}
.process-step h3{
  font-size: 26px;
}
.process-step p{
  font-size: 14px;
}
.process-step {
  max-width: 283px;
}

.consultation{
  position: relative;
  left: -2rem;
}
.send-photos{
  position: relative;
  right: -2rem;
}
.staging-completed{
  position: relative;
  left: -2rem;
}


}




/* =================================================================== */
/* ==============   MOBILE STYLES FOR PROCESS SECTION   ============== */
/* =================================================================== */

@media (max-width: 767.98px) {

  /* --- 1. Reset the main wrapper for a simple vertical stack --- */
  .process-layout-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center; /* Center everything horizontally */
      gap: 2rem;           /* Add space between each item */
  }

  /* --- 2. This is the key part: Reset the floating images --- */
  .floating-image {
      /* A. Put the images back into the normal document flow */
      position: relative !important; /* Override 'absolute' positioning */
      top: auto !important;
      left: auto !important;
      transform: none !important;

      /* B. Make them a sensible, responsive size */
      width: 100%;
      max-width: 450px; /* Prevents them from being too wide on tablets */
  }
  
  /* --- 3. Fix the image captions for the new layout --- */
  .floating-image .caption,
  .floating-image .spain {
      position: static;     /* No longer need absolute positioning */
      display: block;       /* Put the caption on its own line */
      text-align: center;   /* Center the caption text */
      margin-top: 0.75rem;  /* Add space between the image and the caption */
      left: auto;           /* Reset any leftover positioning */
  }
}


/* =================================================================== */
/* ==============   MOBILE RESPONSIVE STYLES FOR FOOTER   ============== */
/* =================================================================== */

@media (max-width: 767.98px) {

  /* --- 1. Main Footer Container --- */
  /* Stack the left (logo) and right (contact/nav) sections vertically */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem; /* Adds space between the logo part and the contact part */
  }

  /* --- 2. Left & Right Sections --- */
  /* Ensure both sections are centered now that they are stacked */
  .footer-left,
  .footer-right {
    align-items: center;
    width: 100%;
  }

  /* --- 3. Contact Info Section --- */
  /* Stack the phone number and email vertically */
  .footer-contact-new {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem; /* Space between contact info and nav links */
  }
  
  /* --- 4. Navigation Links --- */
  /* Center the nav links and allow them to wrap on very small screens */
  .footer-nav-new {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}


/* =================================================================== */
/* ==============   TABLET STYLES FOR PROCESS SECTION   ============== */
/* =================================================================== */

@media (min-width: 768px) and (max-width: 991.98px) {

  /* --- 1. Hide the complex desktop arrows --- */
  /* .arrow-image {
    display: none !important;
  } */

  /* --- 2. Change the wrapper to a simple 2-column grid --- */
  .process-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Create two equal columns */
    gap: 2rem;
    margin: 4rem auto; /* Reset margin for consistency */
  }

  /* --- 3. Make the text steps span the full width --- */
  .process-step {
    grid-column: 1 / -1; /* This makes the element span both columns */
    justify-self: center; /* Center the step within the full width */
    max-width: 600px;
  }

  /* --- 4. Reset the floating images to act like normal grid items --- */
  .floating-image {
    position: relative !important; /* Override absolute positioning */
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%; /* Make the image fill its grid column */
  }
  
  /* --- 5. Fix the image captions for the new grid layout --- */
  .floating-image .caption,
  .floating-image .spain {
    position: static;
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    left: auto;
  }
}

@media (max-width: 767.98px) {
  .featured-banner {
      width: 100%;
      padding: 3.8rem;
      order: -1;
  }
}


/* =================================================================== */
/* ==============   TABLET STYLES FOR PRICING CARD      ============== */
/* =================================================================== */

@media (min-width: 768px) and (max-width: 991.98px) {

  /* --- 1. Adjust the padding inside the card to give more space --- */
  .pricing-card-content {
    padding: 2rem; /* Reduces side padding from 4.5rem to 2rem */
  }

  /* --- 2. Change the 3-column list to a 2-column list --- */
  /* This is the main fix to prevent the text from squishing */
  .pricing-features {
    column-count: 2;
    column-gap: 2rem;
  }

}


/* =================================================================== */
/* ==============   TABLET STYLES FOR FOOTER            ============== */
/* =================================================================== */

@media (min-width: 768px) and (max-width: 991.98px) {

  /* --- 1. Restore the side-by-side layout for the main container --- */
  .footer-container {
    flex-direction: row;
    text-align: left;
  }

  /* --- 2. Ensure the left (logo) section is aligned left --- */
  .footer-left {
    text-align: left;
  }

  /* --- 3. This is the key part: Right-align the content in the right section --- */
  .footer-right {
    align-items: flex-end; /* This aligns all items inside to the right */
    text-align: right;
  }

  /* --- 4. Ensure contact info is also aligned to the right --- */
  .footer-contact-new {
    align-items: flex-end;
  }

  /* --- 5. Push the navigation links to the far right --- */
  .footer-nav-new {
    justify-content: flex-end;
  }

}


/* --- RESPONSIVE FIX FOR BENEFITS LIST (LEFT-ALIGNED) --- */
@media (max-width: 767.98px) {

  .benefits-container {
    align-items: flex-start !important; /* This forces left-alignment, overriding Bootstrap */
    flex-direction: column;             /* This stacks the items vertically */

    /* The following lines center the entire left-aligned block on the screen */
    margin-left: auto;
    margin-right: auto;
    max-width: 300px; /* You can adjust this width if you want */
  }
  
}



/* =================================================================== */
/* ==============   FINAL FIX FOR MOBILE-ONLY ARROWS    ============== */
/* =================================================================== */

/* --- 1. Hide the CSS arrows on DESKTOP by default --- */
.process-step.consultation::after,
.process-step.send-photos::after {
    display: none;
}


/* --- 2. SHOW and position the arrows ONLY on MOBILE screens --- */
@media (max-width: 767.98px) {

    /* Prepare the text steps to be the positioning anchors */
    .process-step.consultation,
    .process-step.send-photos {
        position: relative;
    }

    /* Arrow #1: After "Consultation" */
    .process-step.consultation::after {
        display: block; /* ★★★ THIS IS THE KEY FIX: Makes it visible on mobile ★★★ */
        content: url(./image/home/mobile1.png);
        position: absolute;
        z-index: -1;
        top: 90%;
        right: 10rem;
        margin-top: 1.5rem;
    }

    /* Arrow #2: After "Send Photos" */
    .process-step.send-photos::after {
        display: block; /* ★★★ THIS IS THE KEY FIX: Makes it visible on mobile ★★★ */
        content: url(./image/home/mobile2.png);
        position: absolute;
        z-index: -1;
        top: 77%;
        left: 9rem;
        margin-top: 1.5rem;
        transform: skew(338deg);
    }

    .pyab-5 {
      padding-top: 0rem !important;
      padding-bottom: 4rem !important;
  }

  .half-col {
    /* flex: 0 0 50%; */
    max-width: 50%;
    /* display: flex;  */
  }
  .stat-value {
    font-size: 22px;
}

  .stat-label{
    font-size: 18px;
  }
  .about-header{
    gap: 10px;
  }
  .fix2{
    margin-bottom: 2rem !important;
  }
  .fiz2{
    padding-top: 1rem !important;
  }
  .fiz3{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pyt-5{
    padding-top: 4rem !important;
  }
  .round {
    padding: 12px;
    margin: 30px;
    font-size: 16px;
  
}

  

}


@media (min-width: 768px) and (max-width: 991.98px) {

.line-1 {
  top: 13rem;
  left: 0%;
  rotate: 22deg;
}

.line-2 {
  top: 19rem;
  left: 76%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-around;
}

.col-md-4 {
  flex: 0 0 auto;
  width: 80%;
}

.row2 {
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column; */
  /* align-content: space-around; */
}

.py-5 {
  padding-top: 0rem !important;

}
.about-header{
  gap: 10px;
}
.rowa{
  flex-direction: row;
}
.service-content {
  padding-bottom: 1rem;
}
.ser{
  width: 100% !important;
}
.featured-banner
{
  width: 100%;
  height: 6rem !important;
}
.pricing-card{
  flex-direction: column-reverse;
}
.fiz6{
  flex-direction: row;
}
.fiz3{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
  
  

}

@media (min-width: 992px) and (max-width: 1400px) {

  .row3{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-around;
}
.col-md-4 {
  flex: 0 0 auto;
  width: 80%;
}
.line-1{
  top: 34px;
  left: 41%;
  transform: scaleY(-1);
}
.line-2 {
  left: 77%;
 
}
.image-3 {
  width: 320px;
  top: 16rem;
  left: 20rem;
}
.image-4 {
  /* width: 320px; */
  top: 38rem;
  /* left: 20rem; */
}
.image-2 {
  width: 295px;
  top: 16rem;
  left: 9rem;
}
.image-5 {
  width: 320px;
  left: 25rem;
  top: 45rem;
}
.spain {
  position: relative;
  left: 12rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #333333;
}

.fiz{
  padding-left: 1rem !important;
}
.fiz3{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pyac-5 {
  padding-top: 0rem !important;
  /* padding-bottom: 4rem !important; */
}
.pba-5{
  padding-bottom: 4rem !important;
}


}

.hero-title2{
  font-size: 40px;
}



.round {
  border: 2px solid #81C98D;
  border-radius: 100px;
  display: inline-block;
  padding: 25px;
  margin: 30px;
  /* cursor: pointer; */
}

.work-header {
  max-width: 1280px;
  margin: 0 auto 3rem auto;
}

/* ======================= SLIDER STYLES ======================= */

.before-after-slider-section {
  
  /* overflow: hidden;  */
}

.slider-container {
  width: 100%;
}

.controls-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

.nav-btn {
  background: white;
  color: #0f172a;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.dot-indicators {
  display: flex;
  gap: 8px;
}

.dot {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: rgba(100, 116, 139, 0.5); /* A slightly darker dot for better visibility on light backgrounds */
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 0;
}

.dot:hover {
  background: rgba(51, 65, 85, 0.7);
}

.dot.active {
  width: 48px;
  background: #0f172a; /* Darker active color */
  box-shadow: 0 0 10px rgba(15, 23, 42, 0.3);
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: grab;
  user-select: none;
}

.slider-wrapper.dragging {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  background-color: #f8fafc; 
}

.image-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
@media (min-width: 768px) {
  .image-container img {
      height: 600px;
  }
}

.image-container:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%); */
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-text {
  color: white;
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-container:hover .overlay-text {
  opacity: 1;
}

.badge {
  position: absolute;
  top: 16px;
  z-index: 10;
  padding: 8px 16px;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 14px;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.badge-before {
  left: 16px;
  background-color: #f43f5e; /* Rose 500 */
}

.badge-after {
  right: 16px;
  background-color: #10b981; /* Emerald 500 */
}

.slide-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 32px;
  text-align: center;
  pointer-events: none;
}

.slide-title h2 {
  color: white;
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}
@media (min-width: 768px) {
  .slide-title h2 {
      font-size: 2.25rem; /* 36px */
  }
}

/* --- Lightbox Styles --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 1200px;
  width: 100%;
}

.lightbox-image {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  display: flex;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pyc-5{
  padding-top: 2rem !important;
}
.pyd-5{
  padding-top: 3rem !important;
}


/* New styles for the simple image slider */
.simple-image-slider-section {
  padding-top: 3rem !important;
  /* overflow: hidden; */
}

.simple-slider-container {
  width: 100%;
}

.simple-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: grab;
  user-select: none;
}

.simple-slider-wrapper.dragging {
  cursor: grabbing;
}

.simple-slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.simple-slide {
  min-width: 100%;
  position: relative;
  /* background-color: #f8fafc; */ /* Removed background as per previous fix */
}

.simple-slide img {
  width: 100%;
  height: 400px; /* Adjust height as needed */
  object-fit: cover; /* Ensures image covers the area, cropping if necessary */
  transition: transform 0.7s ease; /* Optional: smooth zoom on hover */
}

@media (min-width: 768px) {
  .simple-slide img {
    height: 600px; /* Larger height for larger screens */
  }
}

/* Reusing existing .controls-wrapper and .nav-buttons styles */
.simple-slider-container .controls-wrapper {
    display: flex;
    justify-content: center; /* Center the buttons if only buttons are present */
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 15px;
}

.simple-slider-container .nav-buttons {
    display: flex;
    gap: 12px;
}

/* Ensure the reused nav-btn styles also apply to the simple slider's buttons */
#simplePrevBtn, #simpleNextBtn {
    /* Your existing .nav-btn styles will apply here,
       no need to duplicate them unless you want specific overrides. */
    background: white;
    color: #0f172a;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

#simplePrevBtn:hover, #simpleNextBtn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}