/********** Template CSS **********/
:root {
  --primary: #002d32;
  --light: #f0fbfc;
  --dark: #181d38;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 12%;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  padding-top: 75px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Inter", sans-serif;
}

.fw-medium {
  font-weight: 600 !important;
}

/*** Our Works Carousel ***/

.fw-semi-bold {
  font-weight: 700 !important;
}

.whatsapp-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50px;
  padding: 12px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}

.whatsapp-btn:hover {
  padding: 12px 20px 12px 14px;
  gap: 10px;
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  height: 28px;
  width: 28px;
  flex-shrink: 0;
}

.whatsapp-text {
  font-size: 0;
  font-weight: 100;
  white-space: nowrap;
  opacity: 0;
  transition:
    font-size 0.3s ease,
    opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-text {
  font-size: 0.95rem;
  opacity: 1;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: 0.5s;
  border-radius: 6px;
  /* max-height: 48px; */
}

.btn-primary {
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
}
.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
  border: none;
}

/*** Navbar ***/
.navbar {
  background-color: #002d32;
  /* padding: 0% 15%; */
}

@media (max-width: 992px) {
  .mobile-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0% 5%;
  }
}

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

  .navbar > .container {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #000000;
  font-size: 15px;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #ff5151;
}

.logo {
  height: 40px;
}

.navbar-light .navbar-brand {
  height: 75px;
}

.navbar-light a.btn {
  height: auto;
  align-self: center;
}

.navbar-light .navbar-nav .nav-link {
  font-weight: 500;
  color: #ffffff;
}

.navbar-light.fixed-top {
  top: 0;
  z-index: 1030;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .dropdown-menu.fade-down {
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
    color: #002d32;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
    background-color: #ffffff;
  }
  .btn-light {
    background-color: #002d32;
    border-color: #000000;
    color: #ffffff;
    border-radius: 8px;
  }
  .btn-light :hover {
    border-color: #002d32;
  }
}
.hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .hero-overlay {
    /* background: linear-gradient(
      to bottom,
      rgba(36, 33, 33, 0.5),
      rgba(0, 0, 0, 0.1)
    ); */
    z-index: 100;
  }
}

.header-carousel .owl-carousel-item .btn .btn-primary :hover {
  background: #002d32 !important;
  color: #ffffff !important;
}

/*** Header carousel ***/
.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 120;
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
  }

  .header-carousel .owl-carousel-item img {
    position: relative;
    width: 100%;
    height: 80vh;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item > div {
    position: relative !important;
    top: -80vh !important;
    left: auto !important;
    width: 100% !important;
    height: 80vh !important;
    /* background: #111111 !important; */
    padding: 40px 22px 50px !important;
    /* align-items: flex-start !important; */
  }

  .header-carousel .owl-carousel-item .head-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
    margin-bottom: 20px !important;
  }

  .header-carousel .owl-carousel-item .fs-5 {
    font-size: 0.88rem !important;
    line-height: 1.6;
    color: #aaa !important;
    margin-bottom: 28px !important;
    padding-bottom: 0 !important;
  }

  .header-carousel .owl-carousel-item .btn.btn-primary {
    background: white !important;
    border: none !important;
    color: #000000 !important;
    padding: 10px 22px !important;
    font-size: 0.7rem;
    border-radius: 8px !important;
    -webkit-tap-highlight-color: transparent;
    transition:
      background-color 0.15s ease,
      color 0.15s ease,
      transform 0.15s ease;
  }

  .header-carousel .owl-carousel-item .btn.btn-primary:active,
  .header-carousel .owl-carousel-item .btn.btn-primary.touch-active {
    background-color: #002d32 !important;
    color: #ffffff !important;
    border-color: #002d32 !important;
    transform: scale(0.96);
  }

  .header-carousel .owl-nav {
    padding: 0 12px;
    width: 100%;
  }

  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .header-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 120;
  }

  .no-js .owl-carousel .owl-carousel.owl-loaded {
    height: 80vh !important;
  }
  .owl-carousel .owl-stage-outer {
    max-height: 80vh !important;
  }
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.header-carousel .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 120;
}
@media (max-width: 768px) {
  .header-carousel .owl-dots {
    bottom: 28px;
  }
}
.header-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.header-carousel .owl-dots .owl-dot.active span,
.header-carousel .owl-dots .owl-dot:hover span {
  width: 28px;
  border-radius: 20px;
  background: #ffffff;
  border-color: #ffffff;
}

.head-title {
  font-size: 52px;
  line-height: 56px;
  font-weight: 100;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-style: normal;
}
.page-header {
  background:
    linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
    url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** Service ***/
.service-item {
  background: var(--light);
  transition: 0.5s;
}

.service-item:hover {
  margin-top: -10px;
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
  transition: 0.5s;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.1);
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/*** Visualize Before You Decide ***/
.visualize-container {
  position: relative;
  overflow: hidden;
}
.visualize-container h1 {
  font-weight: lighter !important;
}
.visualize-video-item {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.visualize-video-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.visualize-play-btn {
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.visualize-video-item:hover .visualize-play-btn {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: scale(1.1);
}

/* Visualize Slider */
.viz-slider {
  padding: 0 46px;
}

.viz-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 4px 12px;
}

.viz-slider-viewport::-webkit-scrollbar {
  display: none;
}

.viz-slider-viewport.dragging {
  cursor: grabbing;
}

.viz-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.viz-slide {
  flex: 0 0 auto;
  width: calc((92vw - 48px) / 3);
  max-width: 400px;
}

@media (max-width: 991.98px) {
  .viz-slide {
    width: calc((92vw - 24px) / 2);
  }
}

@media (max-width: 767.98px) {
  .viz-slide {
    width: 78vw;
  }
  .viz-slider {
    padding: 0 40px;
  }
}

.viz-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #1a3c34;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.viz-slider-arrow:hover {
  background: #1a3c34;
  color: #fff;
}

.viz-arrow-left {
  left: 0;
}

.viz-arrow-right {
  right: 0;
}

/*** Testimonials Section ***/
.testimonials-section {
  background-color: #fdf8ed;
  overflow: hidden;
}

.testimonials-header {
  padding: 140px 0 40px;
}

.testimonials-header h2 {
  font-weight: 700;
  line-height: 1.3;
}

.testimonials-header p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.testimonials-cards {
  padding-bottom: 60px;
}

.testimonial-card-img {
  border-radius: 15px 15px 0 0;
}

.testimonial-card-img img {
  height: 260px;
  object-fit: cover;
}

.testimonial-play-btn {
  left: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.testimonial-play-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.testimonial-play-btn i {
  font-size: 0.8rem;
  color: #333;
  margin-left: 3px;
}

.testimonial-card-body {
  background-color: #ffffff;
  border-radius: 0 0 15px 15px;
}

.testimonial-card-body h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.testimonial-card-body p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
}

.btn-view-more {
  border: 2px solid #333;
  border-radius: 12px;
  font-weight: 600;
  color: #333;
  background: #d7ffd5;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.btn-view-more:hover {
  background: #333;
  color: #fff;
}

/*** Transformations Section ***/
.transformations-section {
  background-color: #f5ddd3;
  padding: 80px 0;
  overflow: hidden;
}

.transformations-section h1 {
  font-weight: 700;
}

.transformation-card {
  border-radius: 15px;
  position: relative;
}

.transformation-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, transparent 40%);
  border-radius: 0 0 15px 15px;
  pointer-events: none;
  z-index: 2;
}

.transformation-card img {
  /* height: 480px; */
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .transformations-section h1 {
    font-weight: 500;
    font-size: 28px;
  }

  .transformation-card img {
    aspect-ratio: auto;
    height: 440px;
  }

  .transformation-card::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, transparent 60%);
  }
}

/* Transformation Slider */
.tf-slider {
  position: relative;
  overflow: hidden;
}

/* Slider Arrow Navigation */
.tf-slider-arrow {
  position: absolute;
  top: 50%;
  /* left: 50%;
  transform: translate(-50%, -50%); */
  z-index: 6;
  width: 42px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.tf-slider:hover .tf-slider-arrow {
  opacity: 1;
}

.tf-slider-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%) scale(1.08);
}

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

/* .tf-slider-arrow.tf-arrow-left {
  left: 46%;
  transform: translateY(-50%);
}

.tf-slider-arrow.tf-arrow-right {
  right: 46%;
  transform: translateY(-50%);
} */

.tf-slider-arrow.tf-arrow-left {
  left: 20px;
  transform: translateY(-50%);
}

.tf-slider-arrow.tf-arrow-right {
  right: 20px;
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {
  .tf-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    opacity: 1;
  }
  .tf-slider-arrow.tf-arrow-left {
    left: 8px;
  }
  .tf-slider-arrow.tf-arrow-right {
    right: 8px;
  }
}

.tf-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.tf-slider-track img {
  flex: 0 0 100%;
  width: 100%;
}

.tf-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.tf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.tf-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.tf-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.transformation-card-overlay {
  background: none;
  border-radius: 0 0 15px 15px;
  z-index: 3;
  position: relative;
  padding: 6% 5%;
}

.transformation-card-overlay h3 {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .transformation-card-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
}
@media (max-width: 767.98px) {
  .transformation-card-overlay {
    padding: 12% 5%;
  }
}
/*** Contact Section ***/
.contact-section {
  background-color: #fdf8ed;
  padding: 80px 0;
  overflow: hidden;
}

.contact-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #1a1a1a;
}

.contact-label {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.contact-input {
  border: 1.5px solid #ddd;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #333;
  background-color: #fff;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-input:focus {
  border-color: #1a1a1a;
  box-shadow: none;
  outline: none;
}

.contact-input::placeholder {
  color: #999;
}

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

.contact-phone-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.contact-phone-wrapper:focus-within {
  border-color: #1a1a1a;
}

.contact-phone-prefix {
  padding: 12px 12px 12px 16px;
  font-size: 0.95rem;
  color: #333;
  border-right: 1.5px solid #ddd;
  background-color: #fff;
  white-space: nowrap;
}

.contact-phone-input {
  border: none !important;
  border-radius: 0 !important;
  padding-left: 12px;
}

.contact-phone-input:focus {
  box-shadow: none !important;
}

.contact-submit-btn {
  background-color: #1a3c34;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 36px;
  border-radius: 10px;
  border: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #142e28;
  color: #fff;
  transform: translateY(-2px);
}

/*** Design Journey Section ***/
.design-journey-section {
  background-color: #fdf8ed;
  padding: 80px 0;
  overflow: hidden;
}

.design-journey-title {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #1a1a1a;
}

.journey-card {
  position: relative;
  border-radius: 15px;
  padding: 30px 25px;
  height: 100%;
  transition: transform 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-5px);
}

.journey-card-blue {
  background-color: #dbe6ff;
}

.journey-card-cyan {
  background-color: #d4f2f6;
}

.journey-card-teal {
  background-color: #d6f0ed;
}

.journey-card-purple {
  background-color: #e8d8f4;
}

.journey-card-amber {
  background-color: #fbe8c9;
}

.journey-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #002d32;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.journey-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.journey-card-icon i {
  font-size: 1.6rem;
  color: #333;
}

.journey-card-icon img {
  height: 32px;
  width: auto;
}

.journey-card-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.journey-card-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Design Journey Slider */
.journey-slider {
  position: relative;
  padding: 0 46px;
}

.journey-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 4px 12px;
}

.journey-slider-viewport::-webkit-scrollbar {
  display: none;
}

.journey-slider-viewport.dragging {
  cursor: grabbing;
}

.journey-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.journey-slide {
  flex: 0 0 auto;
  width: calc((92vw - 72px) / 4);
  max-width: 320px;
}

@media (max-width: 1199.98px) {
  .journey-slide {
    width: calc((92vw - 48px) / 3);
  }
}

@media (max-width: 767.98px) {
  .journey-slide {
    width: calc((92vw - 24px) / 2);
  }
  .journey-slider {
    padding: 0 40px;
  }
}

@media (max-width: 575.98px) {
  .journey-slide {
    width: 78vw;
  }
}

@media (max-width: 1199.98px) {
  .journey-slide {
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

@media (max-width: 767.98px) {
  .journey-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .journey-slider {
    padding: 0 40px;
  }
}

@media (max-width: 575.98px) {
  .journey-slide {
    flex: 0 0 82%;
  }
}

.journey-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #1a3c34;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.journey-slider-arrow:hover {
  background: #1a3c34;
  color: #fff;
}

.journey-arrow-left {
  left: 0;
}

.journey-arrow-right {
  right: 0;
}

/*** Stats Section ***/
.stats-section {
  background-color: #fdf8ed;
  padding: 60px 0;
  border-top: 1px solid #f0ead8;
}

.stat-item {
  padding: 10px 0;
}

.stat-icon {
  margin-bottom: 16px;
}

.stat-icon i {
  font-size: 2rem;
  color: #1a3c34;
}

.stat-number {
  font-weight: 700;
  font-size: 1.35rem;
  color: #1a3c34;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
}

.odometer-wrapper {
  display: inline-flex;
  align-items: flex-end;
}

.odometer-digit {
  display: inline-block;
  height: 1.15em;
  overflow: hidden;
  line-height: 1.15em;
  vertical-align: bottom;
}

.odometer-digit-inner {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.odometer-digit-inner span {
  display: block;
  height: 1.15em;
  line-height: 1.15em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.odometer-suffix {
  margin-left: 2px;
  white-space: nowrap;
  font-size: 0.85em;
  line-height: 1.15em;
  vertical-align: bottom;
}

.stat-label {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .stats-section {
    padding: 40px 0;
  }
  .stat-item {
    text-align: center;
    padding: 15px 5px;
  }
  .stat-icon i {
    font-size: 1.6rem;
  }
  .stat-number {
    font-size: 1.6rem;
    justify-content: center;
  }
  .stat-label {
    font-size: 0.78rem;
  }
}

/*** Furniture Gallery Section ***/
.furniture-gallery-section {
  background-color: #fdf8ed;
  padding: 40px 0 60px;
  overflow: hidden;
}

.furniture-gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.furniture-gallery-scroll::-webkit-scrollbar {
  display: none;
}

.furniture-gallery-scroll.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.furniture-gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.furniture-gallery-item {
  flex: 0 0 auto;
  pointer-events: none;
}

.furniture-gallery-item img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Mobile gallery adjustments */
@media (max-width: 768px) {
  .furniture-gallery-track {
    gap: 12px;
  }
  .furniture-gallery-item img {
    width: 200px;
    height: 280px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .furniture-gallery-track {
    gap: 10px;
  }
  .furniture-gallery-item img {
    width: 160px;
    height: 230px;
    border-radius: 12px;
  }
}

/*** Who We Are Section ***/
.who-we-are-section {
  background-color: #fdf8ed;
  padding: 80px 0;
  overflow: hidden;
}

.who-we-are-title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #1a1a1a;
}

.who-we-are-img {
  height: 100%;
  overflow: hidden;
  border-radius: 15px 0 0 15px;
}

.who-we-are-img img {
  object-fit: cover;
  min-height: 450px;
}

.who-we-are-content {
  background-color: #eaeaea;
  padding: 50px 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 15px 15px 0;
}

.who-we-are-subtitle {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.who-we-are-text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .who-we-are-img {
    border-radius: 15px 15px 0 0;
  }
  .who-we-are-content {
    border-radius: 0 0 15px 15px;
    padding: 30px 25px;
  }
}

/*** Promises Section ***/
.promises-section {
  background-color: #fdf8ed;
  padding: 60px 0;
  border-top: 1px solid #f0ead8;
}

@media (min-width: 992px) {
  .promises-container {
    max-width: 1360px;
  }
}

.promise-item {
  padding: 10px 0;
}

@media (min-width: 992px) {
  .promise-item {
    padding: 10px 8px;
  }

  .promise-title {
    font-size: 1rem;
  }

  .promise-text {
    font-size: 0.82rem;
  }
}

.promise-icon {
  margin-bottom: 18px;
}

.promise-icon i {
  font-size: 2rem;
  color: #1a3c34;
}

.promise-icon img {
  height: 34px;
  width: auto;
}

.promise-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a3c34;
  margin-bottom: 8px;
}

.promise-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .promise-item {
    padding: 10px 12px;
  }
}

/*** Pricing Section ***/
.pricing-section {
  background-color: #e3f1ef;
  padding: 80px 0;
  overflow: hidden;
}

/*** Pricing Section ***/
#pricings-section {
  padding: 80px 0;
}

.pricing-section-bg {
  /* background: linear-gradient(135deg, #f5d4e6 0%, #e8c5db 50%, #f5d4e6 100%); */
  padding: 80px 0;
  border-radius: 0;
}

.pricing-title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 20px;
}

/* Old pricing card styles - kept for backward compatibility */
.pricing-card {
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card-img {
  border-radius: 18px;
  overflow: hidden;
}

.pricing-card-img img {
  height: 340px;
  object-fit: cover;
}

.pricing-card-body {
  padding: 20px 5px 0;
}

.pricing-card-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.pricing-card-desc {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
}

/* New Pricing Cards */
.pricing-card-new {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 100%;
  border: 2px solid transparent;
}

.pricing-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card-new.featured {
  border: 2px solid #f5ad4d;
  background: #fdf5eb;
  transform: scale(1.02);
}

.pricing-card-new.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f5ad4d;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-header {
  margin-bottom: 20px;
}

.package-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f5ad4d;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.price {
  margin-bottom: 8px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  vertical-align: super;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.price-note {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.price-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-get-started {
  width: 100%;
  background-color: #002d32;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background-color: #001a1f;
  transform: scale(1.02);
}

.price-features {
  cursor: pointer;
}

.feature {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature i {
  color: #27ae60;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.feature small {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 4px;
}

.view-all-details {
  display: block;
  text-align: center;
  color: #002d32;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.view-all-details:hover {
  color: #f5ad4d;
}

/* Modal Styling */
.modal-package-content {
  padding: 20px 0;
}

.modal-package-content .feature-section {
  margin-bottom: 20px;
}

.modal-package-content h6 {
  font-weight: 700;
  color: #002d32;
  margin-bottom: 8px;
  font-size: 1rem;
}

.modal-package-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
}

.modal-header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 12px 12px 0 0;
}

.modal-title {
  font-weight: 700;
  color: #002d32;
}

.modal-footer .btn-primary {
  background-color: #002d32;
  border-color: #002d32;
}

.modal-footer .btn-primary:hover {
  background-color: #001a1f;
  border-color: #001a1f;
}

/* Modal backdrop fix */
.modal-backdrop {
  opacity: 0 !important;
  transition: opacity 0.35s linear;
}

.modal-backdrop.show {
  opacity: 0.5 !important;
}

.modal.show .modal-backdrop {
  display: block;
}

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

  .pricing-title {
    font-size: 1.8rem;
  }

  .pricing-card-new.featured {
    transform: scale(1);
  }

  .pricing-card-new.featured:hover {
    transform: translateY(-8px);
  }

  .amount {
    font-size: 2rem;
  }

  .feature {
    gap: 10px;
  }
}

/*** FAQ Section ***/
.faq-section {
  background-color: #fdf8ed;
  padding: 80px 0;
  overflow: hidden;
}

.faq-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #1a1a1a;
}

.faq-list {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
}

.faq-question i {
  font-size: 1.3rem;
  color: #555;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

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

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

.faq-answer p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/*** Connect With Us Section ***/
.connect-us-section {
  background-color: #ffffff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.connect-us-label {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000;
}
.connect-us-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.2;
}
.connect-us-section .btn {
  font-size: 1rem;
  font-weight: 500;
}
.connect-us-section .btn-lg {
  width: 184px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.connect-us-section .call-btn {
  background-color: #002d32;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
@media (max-width: 767px) {
  .connect-us-title {
    font-size: 1.6rem;
  }
}

/*** New Footer ***/
.site-footer {
  background-color: #f8f8f8;
  padding: 60px 0 0;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 24px;
}

.footer-address p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 2px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 30px;
  margin-top: 28px;
}

.footer-social a {
  color: #8e8e93;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #d4956a;
}

.footer-heading {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links li a {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #d4956a;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #d4956a;
}

.footer-divider {
  margin: 0 10px;
  color: #bbb;
}

.container-wrapper {
  position: relative;
  height: 0;
  overflow: visible;
  max-width: 100%;
}

.floating-img-left {
  position: absolute;
  left: -520px;
  top: -140px;
  z-index: 10;
  height: 280px;
}
.floating-img-right {
  position: absolute;
  right: -520px;
  top: -140px;
  z-index: 10;
  height: 280px;
}
@media (max-width: 1200px) {
  .floating-img-left,
  .floating-img-right {
    display: none;
  }
}

.hero-db-button {
  padding: 16px 32px !important;
  font-size: 14px !important;
}
.hero-db-button:hover {
  background-color: #002d32 !important;
  color: #ffffff !important;
  border-color: #002d32 !important;
}
.hero-db-button:active {
  background-color: #002d32 !important;
  color: #ffffff !important;
  border-color: #002d32 !important;
  transform: scale(0.96);
  transition: all 0.15s ease;
}
.hero-db-image {
  height: calc(100vh - 60px);
}
@media (max-width: 767.98px) {
  .text-align-left {
    text-align: left !important;
    font-size: 28px;
    font-weight: 500;
  }
  .text-align-center {
    text-align: center !important;
    font-size: 28px;
    font-weight: 500;
  }
}

/*** Popular Blogs Section ***/
.popular-blogs-section {
  background-color: #fdf8ed;
  padding: 80px 0;
}

.popular-blogs-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 18px 20px 22px;
}

.blog-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4caf8d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 10px;
}

.blog-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0;
}

.btn-see-all-blogs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #002d32;
  color: #002d32;
  background: transparent;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
}

.btn-see-all-blogs:hover {
  background: #002d32;
  color: #fff;
}

@media (max-width: 767.98px) {
  .popular-blogs-title {
    font-size: 1.8rem;
  }
  .blog-card-img {
    height: 180px;
  }
}
