/** Shopify CDN: Minification failed

Line 911:28 Unexpected "{"

**/
/* Page Item Start */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
/* Page Item Ends */

/* Hero Section Start */
  .hero__section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: url("/cdn/shop/files/Design-Services_header.jpg?v=1754094404") center/cover no-repeat;
  }

  .hero__section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);  
    z-index: 1;
    pointer-events: none;
  }

  .hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    max-width: 1660px;
    width: 100%;
    margin: 0 auto;
    padding: 96px 0;
  }

  .hero__container h1 {
    font-size: 45px;
    margin: 0 0 5px;
  }

  .hero__container h2 {
    font-size: 25px;
    margin: 0;
  }

  .hero__container p {
    line-height: 30px;
    margin: 15px 0 0;
    max-width: 850px;
    letter-spacing: 1px;
    font-size: 18.6px;
  }
/* Hero Section Ends */

/* Hero Section - Responsiveness Start */
  @media (max-width: 1770px) {
    .hero__container {
      padding: 64px;
      max-width: none;
    }
  }

  @media (max-width: 1200px) {
    .hero__container {
      padding: 32px;
    }
  }

  @media (max-width: 770px) {
    .hero__container {
      padding: 32px;
      text-align: center;
    }

    .hero__container h1 {
      font-size: 35px;
      margin-bottom: 8px;
    }

    .hero__container h2 {
      font-size: 20px;
    }

    .hero__container p {
      font-size: 16px;
      line-height: 20px;
    }
  }

/* Hero Section - Responsiveness Ends */

/* Quote Section Start */
  .quote__section {
    padding: 2% 7%;
    max-width: 1600px;
    margin: 0 auto;
  }

  .quote__mark--top,
  .quote__mark--bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
  }

  .divider {
    flex-grow: 1;
    border: none;
    height: 1px;
    background-color: #d3d3d3;
  }

  .quote__container {
    text-align: center;
  }

  .quote__container p {
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    max-width: 1250px;
    letter-spacing: 0.5px;
  }
/* Quote Section End */

/* Quote Section - Responsiveness Start */
    @media (max-width: 770px) {
      .left-quote, .right-quote {
        width: 40px;
      }
    }
/* Quote Section - Responsiveness Start */

/* Showcase Section Start */
  .showcase__section {
    position: relative;
    background-image: url('/cdn/shop/files/Piscataway_Showroom.jpg?v=1754145768');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 0;
    gap: 3%;
  }

  .showcase__section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);  
    z-index: 1;
    pointer-events: none;
  }

  .showcase__container {
    display: flex;
    z-index: 2;
    flex-wrap: nowrap;    
    gap: 64px;
    margin: 0 auto;
    max-width: 1660px;
    box-sizing: border-box;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .showcase__image {
    max-width: 700px;
    height: 450px; 
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .showcase__content {
    flex: 2 1 500px;    
    min-width: 350px;  
    max-width: 1000px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    padding: 0 16px;
  }

  .button-primary {
    flex-wrap: wrap;
  }

  .showcase__content h2, .showcase__content h3 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  }

  .showcase__content h2 {
    font-size: 30px;
    margin: 0;
  }

  .showcase__content p {
    font-size: 16px;
    line-height: 30px;
  }

  .showcase__content .button-primary {
    align-self: center;
    width: auto;
    margin-top: 30px;
    display: inline-block; 
  }
/* Showcase Section End */

/* Showcase Responsiveness Start */
  @media screen and (max-width: 1770px) {
    .showcase__container {
      padding: 0 64px;
      max-width: none;
    }

    .showcase__image {
      width: clamp(450px, 40vw, 750px); 
      min-width: 400px;
      height: 450px;
      overflow: hidden;
      position: relative;
      flex-shrink: 2; 
      transition: width 0.3s ease;
    }

    .showcase__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .showcase__content {
      flex-grow: 1;
      flex-shrink: 0;        
      flex-basis: 500px;
      min-width: 500px;   
      max-width: 1000px;
      box-sizing: border-box;
      color: #fff;
      text-align: center;
      padding: 0 16px;
      transition: min-width 0.3s ease;
    }

    .showcase__content h2 {
      font-size: 26px;
    }

    .showcase__content p {
      font-size: 14px;
      line-height: 27px;
    }
  }

  @media screen and (max-width: 1200px) {
    .showcase__container {
      gap: 2%;
      padding: 0 32px;
    }
  }

  @media screen and (max-width: 1000px) {
    .showcase__section {
      padding: 0;
    }

    .showcase__container {
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 48px 32px;
    }

    .showcase__image {
      width: clamp(150px, 90vw, 500px) !important; 
      min-width: 0 !important; 
      max-width: 100% !important;
      height: auto;   
      padding-top: 0;  
      overflow: visible; 
      position: relative; 
    }

    .showcase__image img {
      position: static; 
      width: 100% !important;
      height: auto;     
      object-fit: contain; 
      object-position: center;
      display: block;
    }

    .showcase__text {
      width: 100%;
    }

    .showcase__content {
      flex: 1 1 auto;
      min-width: 0;
      text-align: center;
      padding: 16px 0 0;
    }

    .showcase__content h2 {
      font-size: 26px;
    }

    .showcase__content p {
      font-size: 14px;
      line-height: 23px;
    }

    .showcase__content p:last-child {
      margin-bottom: 0;
    }
  }
/* Showcase Responsiveness End */

/* Next Project Section Start */
  /* Next Project Section - Project Text Start */
    .accordion-carousel__section {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1660px;
      width: 100%;
      margin: 96px auto 112px auto;
    }

    .accordion-text__wrapper {
      flex: 2;
      display: flex;
      align-items: center;
      justify-content: left;
    }
    
    .accordion-text__container {
      flex: 2;
      max-width: 900px;
      display: flex;
      flex-direction: column;
      margin-bottom: 64px;
    }

    .accordion-text__container h2 {
      margin: 0;
      font-size: 30px;
      color: #222222;
    }

    .accordion-text__container h3 {
      margin-top: 4.8px;
      font-weight: 400;
      color: #564b43;
    }

    .accordion__text {
      margin-bottom: 16px;
    }

    .accordion-text__container p {
      line-height: 1.6;
    }

    .accordion-text__header {
      margin-bottom: 8px;
    }
  /* Next Project Section - Project Text Ends */

  /* Next Project Section - Accordion Section Start */
    .dropdown__divider {
      border: none;
      height: 1px;
      background-color: #dfdede;
      width: 100%;
      margin: 8px 0;
    }

    .toggle-service {
      all: unset; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      text-align: left;
      cursor: pointer;
      gap: 8px;
    } 

    .toggle-service:focus-visible {
      outline: 2px solid #ef4036;
      outline-offset: 2px;
    }

    .toggle-service:focus:not(:focus-visible) {
      outline: none; 
    }

    .toggle-service span {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .designservice__line span {
      margin: 16px 0 8px 0;
    }

    .arrow {
      font-size: 16px;
      color: #ef4036;
      transition: transform 0.3s ease;
      flex-shrink: 0; 
    }

    .arrow.rotate {
      transform: rotate(90deg);
    }

    .hidden-box {
      max-height: 0;
      overflow: hidden;
      display: none;
      transition: max-height 0.4s ease, display 0.4s ease;
    }

    .hidden-box.visible {
      display: block;
      max-height: 1000px; 
    }

    .hidden-box.visible {
      display: block;
    }

    .hidden-box a {
      font-size: 13px;
    }

    .select__locations {
      font-style: italic;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .project__section .select__locations {
      margin-bottom: 24px;
    }

    .schedule-wrapper {
      color: #ef4036 !important;
    }

    .project-text__container .schedule-wrapper {
      margin-bottom: 32px;    
    }

    .book-btn {
      color: #d93a32;
    }

    .cabinetry-menu {
      list-style: none;
      padding-left: 0;      
      margin-left: 0; 
    }
  /* Next Project Section - Accordion Section Ends */

  /* Next Project Section - Carousel Section Start */
    .carousel__section {
      flex: 1;
      display: flex;
      justify-content: flex-end; 
    }

    .carousel__wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 80vw;      
      max-width: 700px;   
      box-sizing: border-box;
    }

  #slider {
    width: 100%;
    position: relative;
    text-align: center;
    box-sizing: border-box;
  }

  #slider input[type="radio"] {
    position: absolute;
    left: -9999px;
  }

#slides {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 500px; /* 👈 set the carousel height here */
}

#slides .slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%; /* 👈 make slides fill the container */
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#slides .slide img {
  width: 100%;
  height: 100%; /* 👈 force it to fill the slide */
  object-fit: cover; /* 👈 crops left/right instead of letterboxing */
  object-position: center; /* 👈 keeps crop centered (change to left/right if you want bias) */
  display: block;
}
  #slide1:checked ~ #slides .slide:nth-child(1) {
    transform: translateX(0%);
  }
  #slide2:checked ~ #slides .slide:nth-child(2) {
    transform: translateX(-100%);
  }
  #slide3:checked ~ #slides .slide:nth-child(3) {
    transform: translateX(-200%);
  }

  #bullets {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  #bullets .carousel-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
  }

  #bullets .carousel-bullet:focus {
    outline: 2px solid #333;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.6);
    transform: scale(1.05);
  }

  #slide1:checked ~ #bullets .carousel-bullet:nth-child(1),
  #slide2:checked ~ #bullets .carousel-bullet:nth-child(2),
  #slide3:checked ~ #bullets .carousel-bullet:nth-child(3) {
    background: #ef4036;
  }

  .carousel-btn__hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  /* Next Project Section - Carousel Section Ends */
/* Next Project Section Ends */ 

/* Next Project Section - Responsiveness Start */
  @media (max-width: 1770px) {
    .accordion-carousel__section {
      max-width: 100%; 
      padding: 0 64px; 
      gap: 32px;
    }

    .accordion-text__wrapper {
      flex: 2 1 600px;  
      min-width: 600px; 
    }

    .carousel__section {
      flex: 1 1 40vw;   
      max-width: 700px; 
      min-width: 350px;
      justify-content: flex-end;
    }

    .carousel__wrapper {
      width: 100%; 
      max-width: 100%; 
    }

    #overflow {
      height: 70vh; 
      max-height: 700px; 
      width: 100%; 
    }
  }

@media (max-width: 1200px) {
  .accordion-carousel__section {
    flex-direction: row; /* 👈 keep side by side */
    align-items: flex-start;
    margin: 48px auto;
    padding: 0 32px;
    gap: 24px;
  }

  .accordion-text__wrapper {
    flex: 2 1 auto;  /* 👈 text will shrink as needed */
    max-width: 65%;  /* 👈 controls how wide text can be */
    min-width: 300px; /* 👈 stop it from collapsing too far */
    height: auto;
  }

  .carousel__section {
    flex: 1 1 35%; /* 👈 reserve space for carousel */
    max-width: 500px; 
    min-width: 280px; /* 👈 so it doesn’t get too small */
    justify-content: flex-end;
  }

  .carousel__wrapper {
    width: 100%;
    max-width: 100%;
  }

  #slides {
    aspect-ratio: 4 / 5; /* 👈 keeps image ratio */
    height: auto;
  }
}

  @media screen and (max-width: 770px) {
    .accordion-carousel__section {
      flex-direction: column;
      align-items: center;
      padding: 0 32px;
      margin: 48px auto 0;
      box-sizing: border-box;
      overflow-x: hidden; 
      max-width: 100%;
      gap: 0;
    }

    .carousel__section {
      order: 0;
      width: 100%;
      max-width: 100%;
      margin: 0 auto 16px auto;
      min-width: 0; 
      overflow-x: hidden;
    }

    .carousel__wrapper {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto;
      box-sizing: border-box;
      min-width: 0; 
      overflow-x: hidden;
    }

    #overflow {
      width: 100% !important;
      aspect-ratio: 16 / 9;
      min-height: 220px; 
      height: auto !important;
      overflow: hidden !important;
      position: relative;
      min-width: 0;
    }


    .accordion-text__wrapper {
      order: 1;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      min-width: 0; 
      overflow-x: hidden;
    }

    .accordion-text__container h2 {
      margin: 0;
      padding-top: 16px;
    }

    #slides {
      aspect-ratio: auto;
    }

    #slides .slide img {
      width: 100%;
      height: auto;
    }

    #bullets {
      width: 100%;
      max-width: 100%;
      margin-top: 18px;
      gap: 10px;
      flex-wrap: wrap; 
      min-width: 0; 
      overflow-x: hidden;
    }
  }
/* Next Project Section - Responsiveness Ends */

/* Features Section Start */
  .features__section {
    background-color: #f5f5f5;
  }

  .features__content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1660px;
    width: 100%;
    margin: 0 auto;
    gap: 32px;
    height: auto;
    flex-wrap: wrap;
  }

  .features__text {
    display: flex;
    flex: 2;
    flex-wrap: wrap;
    gap: 64px;
    padding: 64px 0;
  }

  .features--left__content,
  .features--right__content {
    flex: 1 1 500px;
    max-width: 650px;
  }

  .designer__image {
    flex: 1;
    align-self: flex-end;
    max-width: 700px;
  }

  .designer__image img {
    display: block;
    height: auto;
    max-width: 700px;
    width: 100%;
    object-fit: contain;
    margin-left: auto;
  }

  .features__section h3 {
    line-height: 1.25;
    font-weight: 400 !important;
  }

  .feature1, .feature3 {
    margin-bottom: 32px;
  }

  .feature2, .feature4 {
    margin-bottom: 20px;
  }

  .features__section p {
    line-height: 25px;
  }

  .features__section strong {
    color: #D93A31;
  }

  .features--link__wrapper {
    margin-top: 24px;
  }

  .features--link__wrapper a {
    color: #005696;
    font-weight: 400;
    font-size: 14px;
  }
/* Features Section End */

/* Features Section Responsiveness Start */
    @media (max-width: 1770px) {
      .features__content-wrapper {
        flex-wrap: nowrap;    
        max-width: 100%;
        gap: 32px;
        padding: 48px 64px 0;
      }

      .features__text {
        display: flex;         
        flex-wrap: nowrap;
        gap: 32px;             
        flex-shrink: 1;        
        min-width: 0;          
        width: 100%;          
        padding: 0;
      }

      .features--left__content,
      .features--right__content {
        flex: 1 1 50%;         
        min-width: 0;          
        max-width: none;      
      }

      .designer__image {
        flex-shrink: 0;        
        max-width: 700px;
        width: auto;
      }

      .feature2, .feature4 {
        margin-bottom: 64px;
      }
    }
    
    @media (max-width: 1200px) {
      .features__content-wrapper {
        flex-wrap: wrap;         
        gap: 1px;
        padding: 32px 32px 0 32px;
      }

      .features__text {
        display: flex;
        width: 100%;
      }

      .features--left__content,
      .features--right__content {
        flex: 1 1 50%;
        min-width: 0;
      }

      .feature2, .feature4 {
        margin-bottom: 16px;
      }

      .designer__image {
        flex-basis: 100%;
        max-width: 100%;
        order: 2;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        width: fit-content;
      }

      .designer__image img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
      }

      .features__text {
        order: 1;
      }
    }

    @media (max-width: 770px) {
      .features__content-wrapper {
        gap: 1px;
      }

      .feature1, .feature3, {
        margin: 32px;
      }

      .feature2 {
        margin-bottom: 16px;
      }

      .features__text {
        display: flex;
        flex-wrap: nowrap; /* prevent wrapping */
        flex-direction: column; /* stack vertically */
        gap: 0;
      }

      .features--left__content,
      .features--right__content {
        flex: 1 1 100%;  /* full width */
        max-width: 100%;
      }
    }

/* Features Section Responsiveness End */


/* Logos Slideshow Start */
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }

  .logos-slideshow__section {
    overflow: hidden;
    margin: 64px auto;
    background: white;
    white-space: nowrap;
    position: relative;
    max-width: 1660px;
  }

  .logos-slideshow__section:before,
  .logos-slideshow__section:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
  }

  .logos-slideshow__section:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }

  .logos-slideshow__section:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }

  .logos-slideshow__section:hover .logos__slideshow {
    animation-play-state: paused;
  }

  .logos__slideshow {
    display: inline-block;
    animation: 120s slide infinite linear;
  }

  .logos__slideshow img {
    height: 100px;
    margin: 0 32px;
  }
/* Logos Slideshow End */

/* Logos Slideshow Responsiveness Start */
  @media screen and (max-width: 770px) {
    .logos-slideshow__section {
      margin: 32px auto;
    }

    .logos-slideshow__section:before {
      background: linear-gradient(to left, rgba(255, 255, 255, 0) 0px, white 30px);
    }

    .logos-slideshow__section:after {
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0px, white 30px);
    }

    .logos-slideshow__section:before,
    .logos-slideshow__section:after {
      width: 40px;
    }
  }

/* Logos Slideshow Responsiveness End */

/* Design Steps Tab Section Start */
  .tab__header {
    text-align: center;
    margin-bottom: 32px;
  }

  .tab__header h2 {
    margin-bottom: 0;
    font-size: 30px;
  }

  .tab__header h3 {
    margin-top: 4.8px;
    font-size: 20px;
    color: #564b43;
  }

  .tab__section {
    margin: 0 auto 96px auto;
  }

  .tab__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
  }

.tab__buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px; /* or whatever your container width is */
  margin: 0 auto;
}

.tab__buttons-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;

  /* max width to prevent buttons under arrows */
  max-width: calc(100% - 80px); /* arrow width left + right */
  margin: 0 auto;
}

  .tablink {
    background-color: white;
    color: black;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    transition: all 0.2s ease;
  }

  .tablink.active {
    position: relative;
    font-weight: bold;
  }

  .tablink.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: #ef4036;
    border-radius: 2px;
  }

  .tab__content {
    background-color: #fcf5f4;
    display: flex;
    max-width: 1660px;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .steps__content {
    display: none;
  }

  .tabcontent__inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .tab__image {
    width: 650px;
    height: 450px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .tab__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tab__text {
    margin: 0 5%;
  }

  .steps__color {
    color: #ef4036;
    margin: 0;
  }

  .steps__title {
    font-size: 24px;
    font-weight: 400;
    margin-top: .32px;
  }

  .tab__text .button-primary.header-btn_schedule {
    display: inline-block !important; 
    line-height: 14px;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 32px;    
  }

  .tab__text p {
    line-height: 1.75;
  }

  .tab__text .button-primary {
    margin-top: 32px;
  }

  .tab__buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .tab__buttons-track::-webkit-scrollbar {
    display: none;
  }

  .tab__buttons {
    display: inline-flex;
    gap: 16px;
    padding: 0;
    margin: 0;
  }

.tab__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: white; /* cover what's underneath */
  border: none;
  cursor: pointer;
}

.tab__arrow--left {
  left: 0;
  display: none;
}

.tab__arrow--right {
  right: 0;
  display: none;
}
  .slide-number {
    color:rgb(160, 160, 160);
    font-weight: bold;
    letter-spacing: 10px;   
    padding: 0 8px 0 16px;
  }
  
  .tab__selector {
    display: flex;
    align-items: center;  
    justify-content: center;  
  }

  .arrow-left, .arrow-right {
    display: flex;
    align-items: center;
    font-size: 48px;
    color: #ef4036;
    margin-bottom: 10px;
  }
/* Design Steps Tab Section End */ 

/* Design Steps Responsiveness Start */ 
  @media screen and (max-width: 1770px) {
    .designsteps__section {
      padding: 0 64px;
    }

    .tab__section {
      margin: 0 auto 64px auto;
    }

    .tabcontent__inner {
      display: flex;
      align-items: stretch;
    }

    .tab__text {
      padding: 32px 16px;
      }

    .tab__image {
      flex-shrink: 0;
      width: 550px;
      height: auto;
      overflow: hidden;
    }

    .tab__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
  }

  @media screen and (max-width: 1200px) {
    .tabcontent__inner {
      flex-direction: column;
      align-items: center;
    }

    .designsteps__section {
      padding: 0 32px;
    }

    .tab__image {
      width: 100%;
      max-height: 400px;
      height: auto;
    }

    .tab__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .tab__text {
      max-width: 90%;
      text-align: left;
    }

    .tab__buttons {
      flex-wrap: nowrap;
    }
      .tab__buttons-track {
      overflow-x: auto;       
      scrollbar-width: none;    
      -ms-overflow-style: none; 
    }

    .tab__buttons-track::-webkit-scrollbar {
      display: none; 
    }

  }

  @media screen and (max-width: 1000px) {
  .tab__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    color: #ef4036;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }

    .tab__arrow--left {
      margin-right: 8px;
    }

    .tab__arrow--right {
      margin-left: 8px;
    }
  }

  @media screen and (max-width: 770px) {
    .drop-span-1100 {
      display: block;
    }




  }

 
/* Design Steps Responsiveness End */ 










/* ---------------------------
   Card Styles
--------------------------- */
.card .card-image {
  position: relative;
}
.card .card-image img {
  padding: 10px;
  width: 100%;          /* fill card width */
  height: 350px;        /* set your preferred height */
  object-fit: cover;    /* crop edges if needed */
  object-position: top center; 
  border-radius: 10px;
}

.card__carousel {
  position: relative;
  background-color: #f5f5f5;
}

.card .card-image .card-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 0.75rem;
  color: #6366f1;
  padding: 5px 15px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 25px 25px;
}
.card .card-content .card-title {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.card__subtitle {
  font-weight: 400;
  color: #564b43;
  margin: 0.3rem 0 0;
}

.card .card-content .card-text {
  color: #747474;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card .card-footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  padding-top: 15px;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.card .card-footer .card-profile {
  display: flex;
  align-items: center;
}
.card .card-profile .card-profile-info {
  display: flex;
  flex-direction: column;
}
.card .card-profile .card-profile-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #202020;
}
.card .card-profile .card-profile-role {
  font-size: 0.8rem;
  color: #7A7A7A;
}
.card .card-profile img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card .card-button {
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.81rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
}
.card .card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(99, 102, 241, 0.3);
}

/* ---------------------------
   Swiper Container
--------------------------- */
.swiper {
  max-width: 1460px;
  margin: 0 auto;
  position: relative;
  overflow: visible; /* allow arrows outside */
}

.swiper-slide {
  height: auto;
  box-sizing: border-box;
}

/* Card spacing */
.wrapper .card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.swiper .swiper-wrapper {
  width: 100%; /* allow Swiper to manage slide widths */
}

 
.wrapper .card:hover {
  transform: translateY(-10px);
}

/* ---------------------------
   Swiper Pagination
--------------------------- */
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #B1B3F8;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #a4a7fd;
}

/* ---------------------------
   Swiper Arrows
--------------------------- */
.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999; /* make sure it's on top */
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.custom-prev:hover,
.custom-next:hover {
  background: #8b5cf6;
}
.custom-prev { left: 130px; }
.custom-next { right: 130px; }

.links__section {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.location-wrapper a {
  color: #d93a32;
}

/* ---------------------------
   Responsive Adjustments
--------------------------- */
@media (max-width: 768px) {
  .swiper {
    padding: 0 10px; /* less padding on mobile */
  }
  .wrapper :where(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }
}












/* FAQ Section Start */
  .faq__section {
    display: flex;
    justify-content: center;
    margin-top: 64px;
    padding: 0 64px;
  }

  .faq__header {
    text-align: center;
    margin-bottom: 32px;
  }

  .faq__text {
    max-width: 1660px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }

  .faq__text h2 {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 400;
    color: #222222;
  }

  .faq__text h3 {
    margin-top: 8px;
    font-weight: 400;
    color: #564b43;
  }

  .faq__text strong {
    color: #ef4036;
  }

  .faq__content {
    margin-bottom: 8px;
  }

  .faq__answers {
    line-height: 1.6;
  }

  .faq__line span {
    margin: 16px 0 8px 0;
  }

  .faq__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .faq__line span {
    margin-bottom: 8px;
  }

  .arrow {
    font-size: 16px;
    color: #ef4036;
    transition: transform 0.3s ease;
  }

  .arrow.rotate {
    transform: rotate(90deg);
  }
/* FAQ Section Ends */

/* FAQ Section Responsiveness Start */
  @media screen and (max-width: 1200px) {
    .faq__section {
      margin-top: 32px;
      padding: 0 32px;
    }
  }
/* FAQ Section Responsiveness Ends */


