* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "FuturaNowHeadline", sans-serif;
}
/* Custom Navigation Bar Styles */
.custom-navbar {
  background: radial-gradient(
      97.57% 210.75% at 0.9% 2.98%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  border-bottom: 1px solid;

  border-image-source: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 167.31%
  );

  backdrop-filter: blur(20px);

  width: 100%;
  height: 104px;
  opacity: 1;
  padding: 0 160px;
  gap: 24px;
  border-bottom-width: 1px;
}

/* Navigation Links Container */
.nav-links-container {
  display: flex;
  gap: 12px;
  align-items: center;
  height: 64px;
}

/* Navigation Links */
.nav-link {
  color: #ffffff;
  padding: 10px 14px;
  text-decoration: none;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.15px;
  transition: color 0.3s ease;
  padding: 10px 14px;
}
.nav-link-coming-soon {
  width: 137px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-link:hover {
  color: #e8ac12;
}

/* Logo Container */
.logo-container {
  width: 126.99px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Action Buttons Container */
.action-buttons-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.action-buttons-container .btn {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  text-align: center;
  line-height: 16px;
  /* max-height: 60px; */
}
/* Schedule Appointment Button */
.btn-appointment {
  background: #e8ac12;
  color: #000000;
  /* border: none; */
  border-radius: 0px;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 16px;
  /* gap: 20px; */
  min-width: auto;
}

.btn-appointment:hover {
  background: #d49d10;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 172, 18, 0.4);
}

/* Sign Up Button */
.btn-signup {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-family: "FuturaNowHeadline", sans-serif;
  border-radius: 0px;
  font-weight: 500;
  /* line-height: 16px; */
  transition: all 0.3s ease;
  /* gap: 8px; */
  min-width: auto;
}

.btn-signup:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Desktop Navigation Styles */
.desktop-nav {
  display: flex;
  width: 100%;
  height: 104px;
  justify-content: space-between;
  align-items: center;
}

.nav-menu-section {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.action-buttons-section {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Mobile Navigation Styles */
.mobile-nav {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo-section {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.mobile-menu-toggle-section {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hamburger-menu {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  z-index: 10014;
}

/* Hide hamburger when menu is open */
.mobile-menu-overlay.active ~ .mobile-logo-section .hamburger-menu {
  opacity: 0;
  pointer-events: none;
}

.mobile-nav-header-open .hamburger-menu {
  opacity: 0;
  pointer-events: none;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(50deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-50deg) translate(8px, -8px);
}

.btn-appointment-mobile {
  background: #e8ac12;
  color: #000000;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  /* border-radius: 4px; */
  transition: all 0.3s ease;
}

.btn-appointment-mobile:hover {
  background: #d49d10;
  transform: translateY(-1px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
  width: 120px;
  height: 80px;
}

.mobile-menu-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close svg {
  width: 35px;
  height: 35px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-close:hover svg {
  color: #e8ac12;
}

.mobile-menu-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 300px);
  padding: 40px 30px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "FuturaNowHeadline", sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
  padding: 10px 20px;
}

.mobile-nav-link:hover {
  color: #e8ac12;
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.btn-appointment-mobile {
  background: #e8ac12;
  color: #000000;
  border: none;
  padding: 16px 28px;
  font-family: "FuturaNowHeadline", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  transition: all 0.3s ease;
  min-width: 240px;
  display: block;
}

.btn-appointment-mobile:hover {
  background: #d49d10;
  transform: translateY(-2px);
}

.btn-signup-mobile {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 16px 28px;
  font-family: "FuturaNowHeadline", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  transition: all 0.3s ease;
  min-width: 240px;
  display: block;
}

.btn-signup-mobile:hover {
  background: #ffffff;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .action-buttons-container .btn {
    padding: 14px 16px;
    font-size: 14px;
  }
  .nav-link {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .custom-navbar {
    padding-right: 80px;
    padding-left: 80px;
  }
}

@media (max-width: 992px) {
  .custom-navbar {
    padding-right: 40px;
    padding-left: 40px;
  }

  .nav-links-container {
    gap: 16px;
  }

  .action-buttons-container {
    gap: 12px;
  }

  .btn-appointment,
  .btn-signup {
    padding: 14px 16px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-nav {
    display: flex !important;
  }

  .custom-navbar {
    padding: 0 60px;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .mobile-menu-overlay {
    width: 100vw;
    height: 100vh;
  }

  .mobile-menu-links {
    gap: 20px;
  }

  .mobile-nav-link {
    font-size: 20px;
    padding: 8px 16px;
  }

  .mobile-menu-buttons {
    margin-top: 25px;
  }

  .btn-appointment-mobile,
  .btn-signup-mobile {
    min-width: 220px;
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Mobile Hero Layout */
  .hero-main-content {
    flex-direction: row;
    /* text-align: center; */
    /* justify-content: flex-end; */
    align-items: center;
  }

  .hero-text-area {
    flex: 1;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .hero-social-area {
    flex: 1;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .social-icons {
    gap: 20px !important;
  }
  .social-icon {
    height: 24px !important;
    width: 24px !important;
  }
  .social-line {
    /* height: 24px !important; */
    width: 76px !important;
  }

  .hero-text-content {
    padding-left: 60px;
    padding-right: 60px;
  }

  .nav-controls {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .custom-navbar {
    padding: 0 40px;
  }

  .mobile-menu-header {
    padding: 15px 20px;
  }

  .mobile-menu-logo {
    width: 120px;
    height: 100px;
  }

  .mobile-menu-content {
    padding: 30px 20px;
  }

  .mobile-menu-links {
    gap: 18px;
  }

  .mobile-nav-link {
    font-size: 20px;
    padding: 6px 14px;
  }

  .mobile-menu-buttons {
    margin-top: 20px;
  }

  .btn-appointment-mobile,
  .btn-signup-mobile {
    min-width: 200px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-text-content {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-main-content {
    flex: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-text-area {
    flex: 0;
    justify-content: center;
    align-items: center;
  }
  .hero-social-area {
    flex: 0;
  }
  .nav-controls {
    padding: 0 40px;
  }
}

@media (max-width: 576px) {
  .custom-navbar {
    padding: 0 10px;
  }

  .mobile-menu-header {
    padding: 12px 15px;
  }

  .mobile-menu-logo {
    width: 1200px;
    height: 80px;
  }

  .mobile-menu-content {
    padding: 20px 15px;
  }

  .mobile-menu-links {
    gap: 15px;
  }

  .mobile-nav-link {
    font-size: 18px;
    padding: 5px 12px;
  }

  .mobile-menu-buttons {
    margin-top: 18px;
    gap: 12px;
  }

  .btn-appointment-mobile,
  .btn-signup-mobile {
    min-width: 180px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-text-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-controls {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .custom-navbar {
    padding: 0 8px;
  }

  .mobile-menu-header {
    padding: 10px 12px;
  }

  .mobile-menu-logo {
    width: 100px;
    height: 80px;
  }

  .mobile-menu-content {
    padding: 15px 12px;
  }

  .mobile-menu-links {
    gap: 12px;
  }

  .mobile-nav-link {
    font-size: 16px;
    padding: 4px 10px;
  }

  .mobile-menu-buttons {
    margin-top: 15px;
    gap: 10px;
  }

  .btn-appointment-mobile,
  .btn-signup-mobile {
    min-width: 160px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .hero-text-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-controls {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .custom-navbar {
    padding: 0 10px !important;
  }

  .nav-links-container {
    justify-content: center;
    margin-bottom: 15px;
  }

  .action-buttons-container {
    margin-top: 10px;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
  .nav-links-container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .logo-ddr {
    font-size: 20px;
  }

  .logo-select {
    font-size: 10px;
  }
  .custom-navbar {
    padding: 0 10px !important;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 94vh;
  overflow: hidden;
  z-index: 1;
}

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: radial-gradient(
      97.57% 210.75% at 0.9% 2.98%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  border-bottom: 1px solid;

  border-image-source: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 167.31%
  );
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease-out;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  background: #000000b2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  /* opacity: 1; */
  opacity: 1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

/* Hero Main Content Layout */
.hero-main-content {
  display: flex;
  align-items: center;
  min-height: 95vh;
}

.hero-text-area {
  flex: 2.6;
  display: flex;
  justify-content: flex-start;
}

.hero-social-area {
  flex: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
}

/* Carousel Navigation Container */

/* Hero Text Content */
.hero-text-content {
  padding-left: 160px;
  padding-right: 0px;
}

.hero-headline {
  margin-bottom: 40px;
  display: block;
  font-family: "FuturaNowHeadline", sans-serif;
  font-size: clamp(32px, 5vw, 96px);

  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  /* margin-bottom: 0; */
}

.hero-headline span {
  color: #e8ac12;
}

.hero-description {
  font-family: "FuturaNowHeadline", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 150%;
  margin-bottom: 40px;
  max-width: 50%;
}

.btn-hero-appointment {
  background: #e8ac12;
  color: #000000;
  border: none;
  padding: 18px 22.5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 0px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero-appointment:hover {
  background: #d49d10;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 172, 18, 0.4);
}

/* Social Media Section */
.social-media-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  height: 100%;
}

.social-line {
  width: 100px;
  margin-top: 45px;
  margin-bottom: 45px;
  border-bottom: 2px solid;
  filter: invert(47%) sepia(6%) saturate(29%) hue-rotate(165deg) brightness(95%)
    contrast(92%);
  transform: rotate(90deg);
}

.social-icon-img {
  width: 30px !important;
  height: 30px !important;
  filter: invert(47%) sepia(6%) saturate(29%) hue-rotate(165deg) brightness(95%)
    contrast(92%);
  transition: all 0.3s ease;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.social-icon img {
  width: 100%;
  height: 100%;

  transition: all 0.3s ease;
}

.social-icon:hover img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(95%) saturate(1351%)
    hue-rotate(351deg) brightness(98%) contrast(92%);
  transform: scale(1.2);
}

.social-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: -1;
}

.social-icon:hover::before {
  transform: scale(1.2);
  /* background: rgba(232, 172, 18, 0.1); */
}

/* Features Section */
.features-section {
  padding: 80px 160px;
  /* gap: 10px; */
}

.features-container {
  background: #ffffff;
  box-shadow: 0px 4px 80px 0px #00000014;
  padding: 40px;
  gap: 80px;
  /* border-radius: 8px; */
}

.features-cards {
  display: grid;
  grid-template-columns:
    minmax(0, 292px)
    minmax(0, 321px)
    minmax(0, 292px)
    minmax(0, 321px);
  justify-content: center;
  gap: 80px;
  /* max-width: 1546px; */
}

.feature-card {
  border: 1px solid #969698;
  opacity: 1;
  padding: 24px 23px;
  display: flex;
  width: fit-content;
  flex-direction: column;
  gap: 30px;
  /* border-radius: 8px; */
  background: #ffffff;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-icon {
  width: 88px;
  height: 88px;
  background: #e8ac12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  /* margin-bottom: 10px; */
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-title {
  color: #e8ac12;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 0px;
}

.feature-description {
  color: #515152;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  margin: 0;
}

/* ============================================
   Features Section Responsive Styles
   ============================================ */

@media (max-width: 1600px) {
  .features-section {
    padding-left: 110px;
    padding-right: 110px;
  }

  .features-cards {
    gap: 40px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
  }

  .feature-title {
    font-size: 28px;
  }

  .feature-description {
    font-size: 18px;
  }
}

@media (max-width: 1440px) {
  .features-section {
    padding-left: 90px;
    padding-right: 90px;
  }

  .features-cards {
    gap: 35px;
  }

  .feature-icon {
    width: 75px;
    height: 75px;
  }

  .feature-title {
    font-size: 26px;
  }

  .feature-description {
    font-size: 17px;
  }
}

@media (max-width: 1200px) {
  .features-section {
    padding-left: 70px;
    padding-right: 70px;
  }

  .features-cards {
    gap: 30px;
  }

  .feature-card {
    padding: 20px;
    gap: 15px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .feature-title {
    font-size: 24px;
  }

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

@media (max-width: 992px) {
  .features-section {
    padding: 60px 30px;
  }

  .features-container {
    padding: 30px;
    gap: 50px;
  }

  .features-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .feature-card {
    padding: 20px;
    gap: 15px;
    width: 100%;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  .feature-title {
    font-size: 22px;
  }

  .feature-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 50px 20px;
  }

  .features-container {
    padding: 25px;
    gap: 40px;
  }

  .features-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 20px;
    gap: 15px;
    text-align: center;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 40px 15px;
  }

  .features-container {
    padding: 20px;
    gap: 30px;
  }

  .features-cards {
    gap: 15px;
  }

  .feature-card {
    padding: 15px;
    gap: 12px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px auto;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 13px;
  }
}

/* Hero Navigation Controls */
.hero-navigation {
  position: absolute;
  bottom: 40px;
  /* max-width: 1600px; */
  /* max-height: 40px; */
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  z-index: 20;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.nav-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 160px;
  /* max-width: 1920px; */
  /* margin: 0 auto; */
  /* padding: 0 160px; */
}

/* Slide Counter */
.slide-counter {
  color: #ffffff;
  font-size: 18px;
  padding-right: 50px;
  font-weight: 500;
}

.current-slide {
  color: #e8ac12;
  font-weight: 700;
}

/* Navigation Dots */
.navigation-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.navigation-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ededed;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navigation-dots .dot.active {
  border: 2px solid #e8ac12;
  background: #e8ac12;
  background: transparent;
  transform: scale(1.5);
}

.navigation-dots .dot:hover {
  background: rgba(232, 172, 18, 0.8);
}

/* Navigation Arrows */
.navigation-arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  background: transparent;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.nav-arrow img {
  width: 24px;
  height: 24px;
}

.next-arrow:hover {
  border-color: #e8ac12;
  background: rgba(232, 172, 18, 0.1);
}
.prev-arrow {
  border: none;
  /* border-radius: 50%; */
}

.next-arrow {
  border: 2px solid rgba(232, 172, 18, 0.3);
  border-radius: 50%;
}

/* Progress Ring for Right Arrow */
.progress-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top: 2px solid #e8ac12;
  transform: rotate(-90deg);
  transition: transform 0.1s linear;
}

/* Responsive Hero Section */
@media (max-width: 1850px) {
  .custom-navbar {
    padding-left: 120px;
  }
  .hero-text-content {
    padding-left: 120px;
  }
  .nav-controls {
    padding: 0 120px;
  }
}
@media (max-width: 1440px) {
  .social-line{
    width: 45px !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .social-icons{
    gap: 15px !important;
  }
  .social-icon{
    width: 22px !important;
    height: 22px !important;
  }
  .social-icon-img{
    width: 22px !important;
    height: 22px !important;
  }
}

@media (max-width: 1350px) {
  .custom-navbar {
    padding: 0 80px;
  }
  .hero-text-content {
    padding-left: 70px;
  }
  .hero-social-area {
    padding-right: 0px;
  }

  .nav-controls {
    padding: 0 80px;
  }
}
@media (max-width: 1200px) {
  .custom-navbar {
    padding: 0 60px;
  }
  .hero-text-content {
    padding-left: 50px;
  }
  .hero-social-area {
    padding-right: 0px;
  }

  .nav-controls {
    padding: 0 60px;
  }
  .logo-section {
    width: 100px;
    height: 60px;
  }
}

@media (max-width: 992px) {
  .hero-text-content {
    padding-left: 40px;
    padding-right: 20px;
  }

  .nav-controls {
    padding: 0 40px;
    gap: 30px;
  }

  .social-icons {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 90vh;
  }

  .hero-text-content {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .social-media-section {
    display: none;
  }

  .nav-controls {
    padding: 0 20px;
    gap: 20px;
  }

  .slide-counter {
    font-size: 16px;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .nav-arrow svg {
    width: 16px;
    height: 16px;
  }

  .hero-navigation {
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-text-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-controls {
    padding: 0 15px;
    gap: 15px;
  }

  .navigation-dots {
    gap: 12px;
  }

  .navigation-dots .dot {
    width: 10px;
    height: 10px;
  }

  .navigation-arrows {
    gap: 6px;
  }

  .nav-arrow {
    width: 36px;
    height: 36px;
  }

  .nav-arrow svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .hero-line1,
  .hero-line2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-description {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  .btn-hero-appointment {
    padding: 14px 24px;
    font-size: 16px;
  }
}

/* Services Section */
.services-section {
  padding-top: 120px;
  padding-right: 160px;
  padding-bottom: 120px;
  padding-left: 160px;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-container {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

/* Left Content - Images */
.services-left {
  flex: 0 1 50%;
}
/* Right Content - Text */
.services-right {
  flex: 0 1 50%;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-title {
  color: #2c2c2c;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin: 0;
}

.services-title .highlight {
  color: #e8ac12;
}

.services-description {
  color: #515152;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.services-divider {
  display: flex;
  gap: 8px;
}

.divider-line {
  width: 36px;
  height: 4px;
  background: #e8ac12;
}

.services-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 40px;
  padding-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-item img {
  width: 32px;
  height: 32px;
  color: #e8ac12;
  flex-shrink: 0;
}

.benefit-item span {
  color: #515152;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 20px;
}

.btn-schedule-appointment {
  align-self: flex-start;
  padding: 18px 20px;
  background: #e8ac12;
  color: #2c2c2c;
  border: none;
  font-style: medium;
  box-shadow: 4px 4px 0px 0px #000000;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-schedule-appointment:hover {
  background: #d49d10;
  transform: translateY(-2px);
}

.experience-badge {
  position: absolute;
  right: 80px;
  bottom: 60px;
}
.experience-badge img {
  width: 206px;
  height: 206px;
}
.services-right {
  position: relative;
}

/* ============================================
   Services Section Responsive Styles
   ============================================ */

@media (max-width: 1440px) {
  .services-section {
    padding-left: 120px;
    padding-right: 120px;
  }
  .experience-badge img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 1200px) {
  .services-section {
    padding-left: 80px;
    padding-right: 80px;
  }

  .services-container {
    gap: 50px;
  }

  .services-title {
    font-size: 48px;
  }
  .experience-badge img {
    width: 150px;
    height: 150px;
  }

  .services-description {
    font-size: 18px;
  }

  .benefit-item span {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 80px 40px;
  }

  .services-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .services-content {
    gap: 15px;
  }

  .services-left {
    flex: none;
    width: 100%;
    max-width: 500px;
  }

  .services-right {
    flex: none;
    width: 100%;
    text-align: center;
  }
  .services-divider {
    justify-content: center;
  }
  .services-benefits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    padding: 10px 0;
    margin: 0 auto;
    max-width: fit-content;
  }

  .services-title {
    font-size: 42px;
  }

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

  .benefit-item {
    /* justify-content: left; */
    align-items: left;
    display: flex;
    justify-content: flex-start;
  }

  .benefit-item span {
    font-size: 16px;
  }

  .btn-schedule-appointment {
    align-self: center;
  }

  .experience-badge {
    position: static;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
}

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

  .services-container {
    gap: 30px;
  }

  .services-title {
    font-size: 36px;
  }

  .services-description {
    font-size: 15px;
  }

  .benefit-item {
    gap: 10px;
  }

  .benefit-item img {
    width: 28px;
    height: 28px;
  }

  .benefit-item span {
    font-size: 15px;
  }

  .btn-schedule-appointment {
    padding: 15px 30px;
    font-size: 15px;
  }

  .services-divider {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 50px 20px;
  }

  .services-container {
    gap: 25px;
  }

  .services-title {
    font-size: 28px;
  }

  .services-description {
    font-size: 14px;
  }

  .services-content {
    gap: 15px;
  }

  .services-benefits {
    gap: 10px;
    padding: 15px 0;
  }

  .benefit-item {
    gap: 8px;
  }

  .benefit-item img {
    width: 24px;
    height: 24px;
  }

  .benefit-item span {
    font-size: 14px;
  }

  .btn-schedule-appointment {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

  .divider-line {
    width: 30px;
    height: 3px;
  }

  .services-divider {
    gap: 6px;
  }
}

/* Quality Section */
.quality-section {
  padding: 80px 160px;
  padding-bottom: 160px;
  background: #ffffff;
}

.quality-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* Upper Div - Text Content */
.quality-upper {
  display: flex;
  gap: 0px;
  align-items: flex-start;
}

/* Left Column - Heading */
.quality-left-column {
  flex: 0 0 57%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: fit-content;
}

.quality-subheading {
  color: #e8ac12;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0;
}

.quality-main-heading {
  color: #2c2c2c;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 56px;
  width: fit-content;
  line-height: 1.2;
  margin-bottom: 5px;
}

.quality-main-heading .highlight-text {
  color: #e8ac12;
}

.quality-divider {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.quality-divider .divider-line {
  width: 36px;
  height: 4px;
  background: #e8ac12;
}

/* Right Column - Text and Button */
.quality-right-column {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.quality-description {
  color: #515152;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.btn-quality-appointment {
  align-self: flex-start;
  padding: 18px 20px;
  background: #e8ac12;
  color: #2c2c2c;
  box-shadow: 4px 4px 0px 0px #000000;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-quality-appointment:hover {
  background: #d49d10;
  transform: translateY(-2px);
}

/* Lower Div - Video Thumbnail */
.quality-lower {
  width: 100%;
}

.quality-lower .video-thumbnail {
  position: relative;
  max-width: 1600px;
  max-height: 900px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.quality-lower .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-lower .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.quality-lower .play-button {
  width: 80px;
  height: 80px;
  /* background: rgba(255, 255, 255, 0.9); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quality-lower .play-button svg {
  width: 32px;
  height: 32px;
  color: #2c2c2c;
  margin-left: 4px; /* Slight offset to center the triangle */
}

.quality-lower .play-button:hover {
  /* background: rgba(255, 255, 255, 1); */
  transform: scale(1.1);
}

/* Call to Action Hero Section */
.cta-hero-section {
  position: relative;
  min-height: 600px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("images/long.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}

.cta-hero-content {
  text-align: center;
  max-width: 837px;
  gap: 24px;
  /* padding: 0 20px; */
}

.cta-hero-heading {
  color: #ffffff;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.cta-hero-heading .highlight-text {
  color: #e8ac12;
}

.cta-hero-description {
  color: #ededed;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  /* margin: 0 0 30px 0; */
}

.cta-hero-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 30px;
  margin-top: 26px;
}

.cta-hero-divider .divider-line {
  width: 36px;
  height: 4px;
  background: #e8ac12;
}

.cta-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 10.5px 20px;
  background: #e8ac12;
  color: #ffffff;
  border: none;
  border-radius: 0px;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: #d49d10;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  padding: 17px 20px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0px;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: #ffffff;
  color: #2c2c2c;
  transform: translateY(-2px);
}

/* Craftsmanship Section */
.craftsmanship-section {
  padding-top: 120px;
  padding-bottom: 200px;
  background: #ffffff;
  overflow: hidden;
}

.craftsmanship-container {
  /* margin: 0 auto; */

  padding: 0 160px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* Override container width for slider */
.craftsmanship-lower {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}

/* Upper Div - Text Content */
.craftsmanship-upper {
  text-align: center;
  max-width: 800px;

  margin: 0 auto;
}

.craftsmanship-heading {
  color: #000000;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.craftsmanship-heading .highlight-text {
  color: #e8ac12;
}

.craftsmanship-description {
  color: #515152;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 400;
  max-width: 540px;
  font-size: 20px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 30px;
}

.craftsmanship-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.craftsmanship-divider .divider-line {
  width: 36px;
  height: 4px;
  background: #e8ac12;
}

/* Lower Div - Image Slider */
.craftsmanship-lower {
  width: 100%;
  /* overflow: hidden; */
}

.image-slider {
  width: 100%;
  /* overflow: hidden; */
  position: relative;
}

.slider-track {
  display: flex;
  align-items: flex-end; /* Align slides to bottom for alternating heights */
  width: calc(200% + 20px); /* Double width for seamless loop */
}

.slide {
  flex: 0 0 20%; /* Each slide takes 20% of container width */
  margin-right: 20px;
  border-radius: 0px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Alternating heights for wave effect */
.slide-down {
  max-width: 385px;
  height: 400px;
  transform: translateY(60px); /* Move down */
}

.slide-up {
  max-width: 385px;
  height: 400px;
  transform: translateY(-60px); /* Move up */
}

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

/* Smooth sliding animation */
.slider-track {
  animation: slideWave 50s linear infinite;
}

/* Infinite sliding animation with wave effect */
@keyframes slideWave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move by half the track width */
  }
}

/* Trusted Companies Section */
.trusted-section {
  padding: 120px 0;
  background: #ededed;
  overflow: hidden;
}

.trusted-container {
  /* max-width: 1600px; */
  /* margin: 0 auto; */
  /* padding: 0 160px; */
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Upper Div - Text Content */
.trusted-upper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trusted-heading {
  color: #2c2c2c;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 30px 0;
}

.trusted-heading .highlight-text {
  color: #e8ac12;
}

.trusted-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.trusted-divider .divider-line {
  width: 36px;
  height: 4px;
  background: #e8ac12;
}

/* Lower Div - Logo Slider */
.trusted-lower {
  width: 100%;
  /* overflow: hidden; */
}

.logo-slider {
  width: 100%;
  /* overflow: hidden; */
  position: relative;
}

.logo-track {
  display: flex;
  align-items: left;
  animation: slideLogos 50s linear infinite;
  width: calc(200% + 0px); /* Double width for seamless loop */
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move by half the track width */
  }
}

.logo-item {
  flex: 0 0 auto;
  max-height: 120px;
  max-width: 120px;
  margin-right: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

/* Infinite sliding animation for logos */
@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move by half the track width */
  }
}

/* Transformation Gallery Section */
.transformation-section {
  padding: 120px 0;
  background: #ffffff;
}

.transformation-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Upper Div - Text Content */
.transformation-upper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.transformation-heading {
  color: #2c2c2c;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.transformation-heading .highlight-text {
  color: #e8ac12;
}

.transformation-description {
  color: #515152;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 22px 0;
}

.transformation-divider {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.transformation-divider .divider-line {
  width: 36px;
  height: 4px;
  background: #e8ac12;
}

/* Lower Div - Interactive Gallery */
.transformation-lower {
  display: flex;
  gap: 40px;
}

.transformation-left,
.transformation-right {
  flex: 1;
}

.before-after-container {
  position: relative;
  width: 100%;
  max-height: 733px;
  height: 733px;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.before-after-wrapper {
  position: relative;
  width: 100%;
  max-height: 733px;
  height: 100%;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.before-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.after-image img {
  width: 100%;
  height: 100%;
  /* object-position: ; */
  object-fit: cover;
}

.before-image {
  position: relative; /* needed for absolute child */
}

.before-image::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: #000000b2; /* semi-transparent overlay */
  z-index: 1;
  opacity: var(--overlay-opacity, 1);
  transition: opacity 0.3s ease;
}

.after-image {
  width: 50%;
  clip-path: inset(0 0 0 0);
  left: 50%;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.slider-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-button img {
  width: 7px;
  height: 14px;
}

.arrow-left {
  margin-right: 2px;
}

.arrow-right {
  margin-left: 2px;
}

/* Clients Testimonial Section */
.testimonial-section {
  padding: 120px 0;
  background: #f8f8f8;
}

.testimonial-container {
  max-width: 1600px;
  margin: 0 auto;
  /* padding: 0 160px; */
  display: flex;
  flex-direction: column;
  gap: 74px;
}

/* Upper Div - Text Content */
.testimonial-upper {
  width: 100%;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.testimonial-text-content {
  flex: 0 0 45%;
}

.testimonial-subtitle {
  color: #e8ac12;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
}

.testimonial-heading {
  color: #2c2c2c;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.testimonial-heading .highlight-text {
  color: #e8ac12;
}

.testimonial-divider {
  display: flex;
  gap: 8px;
}

.testimonial-divider .divider-line {
  width: 36px;
  height: 4px;
  margin-top: 5px;
  background: #e8ac12;
}

.btn-see-all-reviews {
  padding: 18px 23.5px;
  background: #e8ac12;
  color: #2c2c2c;
  border: none;
  border-radius: 0px;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  align-self: flex-end;
}

.btn-see-all-reviews:hover {
  background: #d49d10;
  transform: translateY(-2px);
}

/* Lower Div - Testimonial Cards */
.testimonial-lower {
  width: 100%;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
}

.testimonial-track {
  position: relative;
  width: 100%;
  height: 330px; /* Fixed height to prevent overflow */
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1514px;
  height: 100%;
  opacity: 0;
  transform: translateY(100%); /* Start from bottom */
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0); /* Slide to center */
  pointer-events: auto;
}

.testimonial-card.prev {
  transform: translateY(-100%); /* Slide to top when leaving */
}

/* Responsive transition durations for testimonial cards */
@media (max-width: 480px) {
  .testimonial-card {
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .testimonial-card {
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .testimonial-card {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (min-width: 1201px) {
  .testimonial-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.card-content {
  background: #ffffff;
  border-radius: 0px;
  padding: 60px 110px;
  box-shadow: 0px 0px 20px 0px #0000001f;
  display: flex;
  gap: 60px;
  max-height: 322px;
  align-items: flex-start;
  max-width: 1514px;
  margin: 0 auto;
}

.card-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: -200px; */
}

.client-photo {
  width: 188px;
  height: 188px;
  border-radius: 50%;
  /* overflow: hidden; */
  flex-shrink: 0;
  border: 2px solid #e0e0e0;
}

.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-icon {
  position: relative;
  width: 60px;
  height: 60px;
  color: #e8ac12;
  display: flex;
  align-items: flex-top;
  justify-content: flex-start;
  top: -40px;
}

.quote-icon img {
  width: 100%;
  height: 100%;
}

.card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rating {
  display: flex;
  gap: 4px;
}

.star {
  color: #e8ac12;
  font-size: 32px;
  line-height: 1.5;
}

.testimonial-text {
  color: #515152;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.client-name {
  color: #2c2c2c;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

.client-title {
  color: #515152;
  font-family: "FuturaNowHeadline", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}

/* Navigation Dots */
.testimonial-dots {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 12px; */
}

.testimonial-dots .dot {
  width: 22px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.testimonial-dots .dot-inner {
  width: 10px;
  height: 10px;
  z-index: 11;
  background: #e8ac12;
}

.testimonial-dots .dot.active {
  background: #d0d0d0;
}

/* .testimonial-dots .dot:hover {
  background: #e8ac12;
} */

/* Responsive Services Section */
@media (max-width: 1800px) {
  .experience-badge {
    right: 40px;
    bottom: 30px;
  }
}
@media (max-width: 1750px) {
  .services-left {
    flex: 0 1 50%;
  }
  .services-right {
    flex: 0 1 50%;
  }
  .services-left img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1600px) {
  .services-left {
    flex: 0 1 50%;
  }
  .services-right {
    flex: 0 1 53%;
  }
  .services-container {
    gap: 65px;
  }
  .experience-badge {
    right: 10px;
    bottom: 35px;
  }
  .experience-badge img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 1440px) {
  .experience-badge {
    right: -10px;
    bottom: 35px;
    /* width: 60px;
    height: 60px; */
  }
  .services-title {
    font-size: 42px;
  }
  .services-description {
    font-size: 18px;
  }
  .benefit-item span {
    font-size: 18px;
  }
  .btn-schedule-appointment {
    font-size: 18px;
  }
  .divider-line {
    width: 30px;
    height: 3px;
  }
}

@media (max-width: 1200px) {
  .experience-badge {
    right: -15px;
    bottom: 60px;
    /* width: 60px;
    height: 60px; */
  }
  .experience-badge img {
    width: 150px;
    height: 150px;
  }
  .services-title {
    font-size: 38px;
  }
  .services-description {
    font-size: 16px;
  }
  .benefit-item span {
    font-size: 16px;
  }
  .btn-schedule-appointment {
    font-size: 16px;
  }
  .divider-line {
  }
}
@media (max-width: 1024px) {
  .experience-badge {
    bottom: 105px;
  }
  .experience-badge img {
    width: 120px;
    height: 120px;
  }
}

/* Responsive Quality Section */
@media (max-width: 1600px) {
  .quality-container {
    padding: 0 0px;
    gap: 50px;
  }
}

@media (max-width: 1440px) {
  .quality-section {
    padding: 80px 120px;
  }
  .quality-container {
    padding: 0 0px;
  }

  .quality-main-heading {
    font-size: 42px;
  }
}

@media (max-width: 1200px) {
  .quality-section {
    padding: 120px 80px;
  }
  .quality-container {
    padding: 0 0px;
  }

  .quality-upper {
    gap: 0px;
  }

  .quality-main-heading {
    font-size: 38px;
  }

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

@media (max-width: 992px) {
  .quality-section {
    padding: 80px 40px;
  }
  .quality-container {
    /* padding: 0 30px; */
  }

  .quality-upper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .quality-left-column,
  .quality-right-column {
    flex: none;
    align-items: center;
    text-align: center;
  }
  .btn-quality-appointment {
    align-self: center;
  }

  .quality-main-heading {
    font-size: 36px;
  }

  .quality-lower .video-thumbnail {
    height: 400px;
  }
  .slider-button {
    gap: 8px;
  }
  .slider-button img {
    width: 7px;
    height: 12px;
  }
}

@media (max-width: 768px) {
  .quality-container {
    padding: 0 20px;
  }

  .quality-section {
    padding: 40px 0;
  }

  .quality-container {
    gap: 60px;
  }

  .quality-main-heading {
    font-size: 32px;
  }

  .quality-description {
    font-size: 15px;
  }

  .quality-lower .video-thumbnail {
    height: 300px;
  }

  .quality-lower .play-button {
    width: 60px;
    height: 60px;
  }

  .quality-lower .play-button svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .quality-section,
  .transformation-section,
  .testimonial-section {
    padding: 30px 0px !important;
  }
}
/* Responsive CTA Hero Section */
@media (max-width: 1200px) {
  .cta-hero-heading {
    font-size: 48px;
  }

  .cta-hero-description {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .cta-hero-section {
    min-height: 500px;
    padding: 80px 0;
  }

  .cta-hero-heading {
    font-size: 42px;
  }

  .cta-hero-description {
    font-size: 16px;
  }

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

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .cta-hero-section {
    min-height: 450px;
    padding: 60px 0;
  }

  .cta-hero-heading {
    font-size: 36px;
  }

  .cta-hero-description {
    font-size: 15px;
  }

  .cta-hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .cta-hero-heading {
    font-size: 32px;
  }

  .cta-hero-description {
    font-size: 14px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 16px 24px;
    font-size: 15px;
  }
}

/* Responsive Craftsmanship Section */
@media (max-width: 1600px) {
  .craftsmanship-container {
    padding: 0 110px;
  }
}

@media (max-width: 1440px) {
  .craftsmanship-container {
    padding: 0 90px;
  }

  .craftsmanship-heading {
    font-size: 42px;
  }
}

@media (max-width: 1200px) {
  .craftsmanship-container {
    padding: 0 70px;
  }

  .craftsmanship-heading {
    font-size: 38px;
  }

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

  .slide-down {
    height: 370px;
  }

  .slide-up {
    height: 370px;
  }
}

@media (max-width: 992px) {
  .craftsmanship-container {
    padding: 0 30px;
  }

  .craftsmanship-section {
    padding: 80px 40px;
    padding-bottom: 120px !important;
  }

  .craftsmanship-container {
    gap: 60px;
  }

  .craftsmanship-heading {
    font-size: 36px;
  }

  .slide-down {
    height: 350px;
  }

  .slide-up {
    height: 350px;
  }

  .slide {
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .craftsmanship-container {
    padding: 0 20px;
  }

  .craftsmanship-heading {
    font-size: 32px;
  }

  .craftsmanship-description {
    font-size: 15px;
  }

  .slide-down {
    height: 300px;
  }

  .slide-up {
    height: 300px;
  }

  .slide {
    margin-right: 10px;
  }

  .slider-track {
    animation-duration: 15s; /* Faster animation on mobile */
  }
}

@media (max-width: 576px) {
  .craftsmanship-heading {
    font-size: 28px;
  }

  .craftsmanship-description {
    font-size: 14px;
  }

  .slide-down {
    height: 150px;
  }

  .slide-up {
    height: 120px;
  }

  .slide {
    margin-right: 8px;
  }

  .slider-track {
    animation-duration: 12s; /* Even faster on small screens */
  }
}
@media (max-width: 480px) {
  .slide-down {
    height: 150px;
  }
  .slide-up {
    height: 150px;
  }
  .slide {
    margin-right: 8px;
  }
}

/* Responsive Craftsmanship Section */
/* Ensure slider stays full width on all screen sizes */
@media (max-width: 1600px) {
  .craftsmanship-lower {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

@media (max-width: 1440px) {
  .craftsmanship-lower {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

@media (max-width: 1200px) {
  .craftsmanship-lower {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

@media (max-width: 992px) {
  .craftsmanship-lower {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

@media (max-width: 768px) {
  .craftsmanship-lower {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

@media (max-width: 576px) {
  .craftsmanship-lower {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

/* Responsive Trusted Companies Section */
@media (max-width: 1600px) {
  .trusted-container {
    padding: 0 110px;
  }
}

@media (max-width: 1440px) {
  .trusted-container {
    padding: 0 90px;
  }

  .trusted-heading {
    font-size: 42px;
  }
}

@media (max-width: 1200px) {
  .trusted-container {
    padding: 0 70px;
  }

  .trusted-heading {
    font-size: 38px;
  }

  .logo-item {
    height: 70px;
    margin-right: 30px;
  }

  .logo-item img {
    max-width: 100px;
  }
}

@media (max-width: 992px) {
  .trusted-container {
    padding: 0 30px;
  }

  .trusted-section {
    padding: 80px 0;
  }

  .trusted-container {
    gap: 60px;
  }

  .trusted-heading {
    font-size: 36px;
  }

  .logo-item {
    height: 60px;
    margin-right: 25px;
  }

  .logo-item img {
    max-width: 80px;
  }
}

@media (max-width: 768px) {
  .trusted-container {
    padding: 0 20px;
  }

  .trusted-heading {
    font-size: 32px;
  }

  .logo-item {
    height: 50px;
    margin-right: 20px;
  }

  .logo-item img {
    max-width: 70px;
  }

  .logo-track {
    animation-duration: 25s; /* Faster animation on mobile */
  }
}

@media (max-width: 576px) {
  .trusted-heading {
    font-size: 28px;
  }

  .logo-item {
    height: 40px;
    margin-right: 15px;
  }

  .logo-item img {
    max-width: 60px;
  }

  .logo-track {
    animation-duration: 20s; /* Even faster on small screens */
  }
}

/* Responsive Transformation Gallery Section */
@media (max-width: 1600px) {
  .transformation-container {
    padding: 0 110px;
  }
}

@media (max-width: 1440px) {
  .transformation-container {
    padding: 0 90px;
  }

  .transformation-heading {
    font-size: 42px;
  }
}

@media (max-width: 1200px) {
  .transformation-container {
    padding: 0 70px;
  }

  .transformation-heading {
    font-size: 38px;
  }

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

  .before-after-container {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .transformation-container {
    padding: 0 30px;
  }

  .transformation-section {
    padding: 80px 0;
  }

  .transformation-container {
    gap: 60px;
  }

  .transformation-heading {
    font-size: 36px;
  }

  .transformation-lower {
    flex-direction: column;
    gap: 30px;
  }

  .before-after-container {
    height: 650px;
  }

  .slider-button {
    width: 45px;
    height: 45px;
  }

  .slider-button svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .transformation-container {
    padding: 0 20px;
  }

  .transformation-heading {
    font-size: 32px;
  }

  .transformation-description {
    font-size: 15px;
  }

  .before-after-container {
    height: 250px;
  }

  .slider-button {
    width: 40px;
    height: 40px;
  }

  .slider-button svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 576px) {
  .transformation-heading {
    font-size: 28px;
  }

  .transformation-description {
    font-size: 14px;
  }

  .before-after-container {
    height: 200px;
  }
  .slide {
    max-height: 225px;
  }

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

  .slider-button svg {
    width: 10px;
    height: 10px;
  }

  /* Alternating heights for wave effect */
  .slide-down {
    max-width: 385px;
    height: 400px;
    transform: translateY(30px); /* Move down */
  }

  .slide-up {
    max-width: 385px;
    height: 400px;
    transform: translateY(-30px); /* Move up */
  }
}

/* Responsive Testimonial Section */
@media (max-width: 1600px) {
  .testimonial-container {
    padding: 0 110px;
  }
  .card-content {
    max-width: 1200px;
  }
}

@media (max-width: 1440px) {
  .testimonial-container {
    padding: 0 90px;
  }

  .testimonial-heading {
    font-size: 42px;
  }
  .card-content {
    max-width: 1000px;
  }
}

@media (max-width: 1200px) {
  .testimonial-container {
    padding: 0 70px;
  }

  .testimonial-heading {
    font-size: 38px;
  }

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

  .testimonial-track {
    height: 280px;
  }

  .card-content {
    padding: 30px;
    gap: 25px;
    max-width: 830px;
  }

  .client-photo {
    width: 100px;
    height: 100px;
    border: 2px solid #e0e0e0;
  }

  .quote-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 992px) {
  .testimonial-container {
    padding: 0 30px;
  }

  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-container {
    gap: 60px;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  .testimonial-divider {
    justify-content: center;
  }
  .btn-see-all-reviews {
    align-self: center;
  }

  .testimonial-heading {
    font-size: 36px;
  }
  .testimonial-track {
    height: 450px;
  }
  .testimonial-carousel {
    width: 100%;
    height: 500px;
  }

  .card-content {
    flex-direction: column;
    text-align: center;
    padding: 25px;
    width: 100%;
    max-height: 450px;
    height: 450px;
    gap: 0px;
  }

  .card-left {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    align-items: center;
  }
  .rating {
    justify-content: center;
  }

  .client-photo {
    width: 140px;
    height: 140px;
    display: flex;

    border: 2px solid #e0e0e0;
    /* justify-content: center; */
  }

  .quote-icon {
    width: 60px;
    height: 60px;
    height: 100%;
  }

  .testimonial-dots {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 0 20px;
  }

  .testimonial-heading {
    font-size: 32px;
  }

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

  .card-content {
    padding: 20px;
  }

  .client-name {
    font-size: 20px;
  }

  .client-title {
    font-size: 14px;
  }
  .card-right {
    height: max-content;
  }

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

@media (max-width: 576px) {
  .testimonial-heading {
    font-size: 28px;
  }

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

  .card-content {
    padding: 15px;
  }

  .client-photo {
    width: 70px;
    height: 70px;
    border: 2px solid #e0e0e0;
  }

  .quote-icon {
    width: 35px;
    height: 35px;
  }

  .client-name {
    font-size: 18px;
  }

  .client-title {
    font-size: 13px;
  }

  .star {
    font-size: 50px;
  }

  .btn-see-all-reviews {
    padding: 15px 30px;
    font-size: 15px;
  }
}

/* responsive css */
@media (max-width: 1740px) {
  .features-section {
    padding-left: 130px;
    padding-right: 130px;
  }
  .features-cards {
    gap: 30px;
  }
}
@media (max-width: 1600px) {
  .features-section {
    padding-left: 110px;
    padding-right: 110px;
  }
  .features-cards {
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .features-section {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media (max-width: 1200px) {
  .features-section {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 992px) {
  .features-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .features-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .features-card {
    width: 100%;
  }
}

.features-container,
.services-container {
  max-width: 1600px;
}

/* ============================================
   FAQ Section Styles
   ============================================ */

.faq-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.faq-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.faq-left {
  flex: 0.8;
}

.faq-text-content {
  max-width: 540px;
}

.faq-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #e8ac12;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.faq-heading {
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 30px;
}
.highlight-text {
  color: #e8ac12;
}
.faq-description {
  font-size: 20px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.faq-divider {
  display: flex;
  gap: 8px;
  margin-bottom: 37px;
}

.faq-divider .divider-line {
  width: 36px;
  height: 4px;
  background-color: #e8ac12;
}

.btn-faq-appointment {
  background-color: #e8ac12;
  color: #000000;
  box-shadow: 4px 4px 0px 0px #000000;

  padding: 15px 30px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
}

.btn-faq-appointment:hover {
  background-color: #d19a0f;
  border-color: #d19a0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 172, 18, 0.3);
}

.faq-right {
  flex: 1.2;
  width: 100%;
}

.faq-accordion {
  max-width: 905px;
}

.faq-item {
  border-top: 1.5px solid #969698;
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 150%;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-question:hover h3 {
  color: #e8ac12;
}

.faq-arrow {
  width: 42.66767120361328px;
  height: 42.66767120361328px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-arrow svg {
  width: 32px;
  height: 32px;
  color: #666666;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: #e8ac12;
}

.faq-item.active .faq-arrow svg {
  color: #e8ac12;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-size: 20px;
  font-weight: 400;
  color: #515152;
  line-height: 1.5;
  margin: 0 0 25px 0;
  padding-right: 40px;
  font-family: "FuturaNowHeadline", sans-serif;
}

/* ============================================
   FAQ Section Responsive Styles
   ============================================ */

@media (max-width: 1200px) {
  .faq-container {
    gap: 60px;
  }

  .faq-heading {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .faq-section {
    padding: 80px 0;
  }

  .faq-container {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .faq-text-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .faq-heading {
    font-size: 38px;
  }

  .faq-accordion {
    max-width: 100%;
  }

  .btn-faq-appointment {
    margin: 0 auto;
    display: block;
  }
}

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

  .faq-container {
    padding: 0 15px;
    gap: 40px;
  }

  .faq-heading {
    font-size: 32px;
  }

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

  .faq-question {
    padding: 20px 0;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 15px;
    padding-right: 20px;
  }

  .btn-faq-appointment {
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-heading {
    font-size: 28px;
  }

  .faq-question {
    padding: 15px 0;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-arrow {
    width: 42.66767120361328px;
    height: 42.66767120361328px;
  }

  .faq-arrow svg {
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    font-size: 14px;
    padding-right: 15px;
  }

  .btn-faq-appointment {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ============================================
   Contact Section Styles
   ============================================ */

.contact-section {
  padding: 100px 25px;
  background: #000000cc;
  background-image: url(images/background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(images/background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.3;
}

.contact-container {
  max-width: 1600px;
  margin: 0 auto;
  /* padding: 0 20px; */
  display: flex;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.contact-left {
  flex: 1;
}

.contact-text-content {
  max-width: 675px;
}

.contact-heading {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 30px;
}

.contact-description {
  font-size: 20px;
  color: #f3f6f9;
  line-height: 1.6;
  /* font-style: italic; */
  margin-bottom: 0;
}

.contact-right {
  flex: 1;
}

.contact-form {
  max-width: 790px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 30px;
}

.form-group {
  flex: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background-color: #515152;
  border: 1px solid #666666;
  border-radius: 0px;
  color: #ffffff;
  font-size: 20px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #969698;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e8ac12;
  box-shadow: 0 0 0 2px rgba(232, 172, 18, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-send-email {
  background-color: #e8ac12;
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
  width: 100%;
}

.btn-send-email:hover {
  background-color: #d19a0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 172, 18, 0.3);
}

.btn-send-email:active {
  transform: translateY(0);
}

/* ============================================
   Contact Section Responsive Styles
   ============================================ */

@media (max-width: 1200px) {
  .contact-container {
    gap: 60px;
  }

  .contact-heading {
    font-size: 42px;
  }
  .contact-section {
    padding: 100px 25px;
  }
}

@media (max-width: 992px) {
  .contact-section {
    padding: 80px 25px;
  }

  .contact-container {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 0px 10px;
    text-align: center;
  }

  .contact-text-content {
    max-width: 100%;
    text-align: center;
  }

  .contact-heading {
    font-size: 38px;
  }

  .contact-form {
    max-width: 100%;
  }
}

/*  */

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 10px;
  }

  .contact-heading {
    font-size: 28px;
  }
  .contact-right {
    width: 80%;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .btn-send-email {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ============================================
   CTA Section Styles
   ============================================ */

.cta-section {
  padding: 120px 160px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  max-width: 1600px;
  /* margin: 0 auto; */
  width: 100%;
  /* padding: 0 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-content {
  /* max-width: 800px; */
  width: 100%;
  text-align: center;
  padding: 60px 80px;
  background-color: #ffffff;
  border: 1.51px solid #969698;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
}

.cta-heading {
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cta-description {
  font-size: 20px;
  color: #515152;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.cta-divider .divider-line {
  width: 36px;
  height: 4px;
  background-color: #e8ac12;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-cta-primary {
  background-color: #e8ac12;
  color: #000000;
  border: 2px solid #e8ac12;
  padding: 10.5px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
}

.btn-cta-primary:hover {
  background-color: #d19a0f;
  border-color: #d19a0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 172, 18, 0.3);
}

.btn-cta-secondary-1 {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
  padding: 10.5px 19.5px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
}

.btn-cta-secondary-1:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CTA Section Responsive Styles
   ============================================ */

@media (max-width: 1200px) {
  .cta-content {
    padding: 50px 60px;
  }

  .cta-heading {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .cta-section {
    padding: 80px 40px;
  }

  .cta-content {
    padding: 40px 50px;
  }

  .cta-heading {
    font-size: 38px;
  }

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

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

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

  .cta-container {
    padding: 0 15px;
  }

  .cta-content {
    padding: 30px 40px;
  }

  .cta-heading {
    font-size: 32px;
  }

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

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-content {
    padding: 25px 30px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-description {
    font-size: 15px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ============================================
   Footer Section Styles
   ============================================ */

.footer-section {
  background-color: #000000;
  padding: 80px 0 0 0;
}

.back-to-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 80px;
}

.back-to-top-btn {
  background: none;
  border: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 26px;
  transition: color 0.3s ease;
}
.back-to-top-icon {
  width: 30px;
  height: 30px;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

.back-to-top-icon img {
  width: 100%;
  height: 100%;
}
.back-to-top-icon:hover {
  animation-play-state: paused;
}

.back-to-top-text:hover {
  color: #e8ac12;
}

.back-to-top-btn img {
  width: 30px;
  height: 15px;
}
.back-to-top-text {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  /* padding: 0 20px; */
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 126px;
  width: 200px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social-link img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-social-link:hover img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(95%) saturate(1351%)
    hue-rotate(351deg) brightness(98%) contrast(92%);
  transform: scale(1.2);
}

.footer-middle {
  flex: 1;
}

.footer-heading {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22.5px;
}

.footer-links li {
  /* margin-bottom: 30px; */
  font-size: 20px;
  line-height: 1.5;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #e8ac12;
  padding-left: 5px;
}

.footer-link:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e8ac12;
}

.footer-link.active {
  color: #e8ac12;
}

.footer-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e8ac12;
}

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.newsletter-form {
  display: flex;
  gap: 30px;
  max-width: 463px;
  /* margin-bottom: 15px; */
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  background-color: #000000;
  border: 1px solid #666666;
  border-radius: 0px;
  color: #ffffff;
  font-size: 14px;
}

.newsletter-input::placeholder {
  color: #aaaaaa;
}

.newsletter-input:focus {
  outline: none;
  border-color: #e8ac12;
}

.newsletter-btn {
  background-color: #e8ac12;
  color: #000000;
  border: none;
  padding: 12.5px 30px;
  /* border-radius: 6px; */
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #d19a0f;
}

.newsletter-description {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding: 21px 0px;
}

.footer-bottom-container {
  max-width: 1600px;
  margin: 0 auto;
  /* padding: 0 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.legal-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #e8ac12;
}

/* ============================================
   Footer Section Responsive Styles
   ============================================ */

@media (max-width: 1200px) {
  .footer-container {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .footer-section {
    padding: 40px 0 0 0;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer-middle {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer-container {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer-social-link {
    width: 40px;
    height: 40px;
  }
  .footer-social-link img {
    width: 30px;
    height: 30px;
  }
  .footer-heading {
    font-size: 35px;
  }
  .footer-link {
    font-size: 25px;
  }
  .footer-copyright p {
    font-size: 15px;
  }
  .footer-right {
    width: 50%;
  }
  .back-to-top {
    margin-bottom: 40px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
  .footer-link{
    font-size: 20px;
  }
  .footer-heading{
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
    gap: 30px;
  }

  .footer-heading {
    font-size: 20px;
  }

  .footer-link {
    font-size: 16px;
  }

  .footer-social-link {
    width: 35px;
    height: 35px;
  }

  .footer-social-link img {
    width: 18px;
    height: 18px;
  }

  .newsletter-input,
  .newsletter-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .newsletter-description {
    font-size: 13px;
  }

  .footer-copyright p,
  .legal-link {
    font-size: 13px;
  }

  .footer-legal {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 30px 0 0 0;
  }
  .footer-right {
    width: 76%;
  }

  .back-to-top {
    margin-bottom: 30px;
  }

  .footer-container {
    margin-bottom: 30px;
  }

  .footer-logo img {
    height: 120px;
  }

  .footer-social {
    gap: 15px;
  }

  .footer-social-link {
    width: 32px;
    height: 32px;
  }

  .footer-social-link img {
    width: 22px;
    height: 22px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-container {
    padding: 0 15px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}
