        :root {
            --sage-green: #7E9479;
            --dark-green: #546351;
            --warm-green: #f7f3ee;
            --light-gray: #f8f9fa;
            --dark-gray: #333;
            --medium-gray: #666;
            --button-padding: 9px 30px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background: #FAFAF8;
        }

        /* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

        .learn-dropdown i {
    color: #7e9479 !important;
}

        .learn-dropdown {
      position: absolute;
      top: 100%;
      left: -233px;
      width: 818px;
      background: #fff;
      padding: 20px;
      /* display: none; */
      opacity: 0;
      z-index: -1;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      /* z-index: 1000; */
      transition: .3s;
    }

    .nav-item.learn-menu:hover .learn-dropdown {
      /* display: block; */
      opacity: 1;
      z-index: 1111;
    }

    /* Grid layout for content */
    .learn-dropdown .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .learn-card {
      background: #7e9479;
      padding: 20px;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: transform 0.2s ease-in-out;
      color: white;
    }

    .learn-card:hover {
      transform: translateY(-5px);
    }

    .learn-card strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .learn-card img {
      width: 70px;
      height: auto;
    }

    .learn-card ul {
     margin: 0;
    padding: 0px 10px;
    list-style: none;
    display: flex
;
    flex-wrap: wrap;
    gap: 2px 24px;
    }
    .learn-card ul li {
      font-size: 0.9rem;
      margin-bottom: 5px;
    }

    ul.dropdown-ul li {
    list-style: disc;
    /* padding: 10px 7px; */
}
ul.dropdown-ul li a {
    font-size: 12px;
    font-weight: 500;
    color: white;
}
ul.dropdown-ul li a:hover{
    color: rgb(252, 252, 252);
}

.mobile-dropdown .dropdown-content {
  display: none;
  padding-left: 1rem;
}
.mobile-dropdown .dropdown-content.show {
  display: block;
}
.icon img {
    width: 100%;
}
    


        /* Unique dropdown container */
.custom-products-dropdown {
    position: relative;
    display: inline-block;
}

.custom-products-btn {
    background: none;
    border: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: #000;
    font-size: 16px;
}

.custom-products-btn:hover {
    color: #000;
}

.custom-products-menu {
    /* display: none; */
    position: absolute;
    top: 100%;
    left: -116px;
    background-color: #ffffff;
    min-width: 443px;
    padding: 20px;
    border-radius: 10px;
    z-index: -1;
    box-shadow: 0 5px 15px rgb(0 0 0 / 4%);
    gap: 24px;
    opacity: 0;
}


.custom-products-menu-content {
    display: flex;
    gap: 47px;
}

.custom-products-menu .explore-products {
    font-weight: 500;
    margin-bottom: 15px;
    width: 201px;
    background: #7e9479;
    color: white;
    padding: 20px;
    border-radius: 16px;
}

.custom-products-menu .explore-products ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 20px;
}
.category-item div {
    white-space: nowrap;
}

.custom-products-menu .explore-products ul li {
    margin: 5px 0;
}

.custom-products-menu .popular-category {
    display: grid
;
    flex-wrap: wrap;
    gap: 13px 29px;
    margin-top: 10px;
    grid-template-columns: auto auto auto auto;
}

.custom-products-menu .popular-category .category-item {
    text-align: center;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
}

.custom-products-menu .popular-category .category-item img {
    width: 40px;
    margin-bottom: 5px;
    /* height: ; */
    height: 46px;
    object-fit: contain;
}

.custom-products-menu .bottom-text {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
}

/* Show dropdown on hover */
.custom-products-dropdown:hover .custom-products-menu {
    display: block;
    opacity: 1;
    z-index: 1000;
    transition: all .3s ease-in-out;
}

        /* Top Banner */
        .top-banner {
            background: #F7F3EE;
            text-align: center;
            padding: 12px 0;
            font-size: 20px;
            color: var(--medium-gray);
            border-bottom: 1px solid #e9ecef;
            font-weight: 600;
        }

        /* Navigation */
        .navbar-custom {
            background: #FAFAF8;
            padding: 5px 18px;
            box-shadow: none;
            /* border: 1px solid #7E9479; */
            margin: 11px 47px;
            border-radius: 16px;
            box-shadow: #7e947933 0px 1px 6px 0px;
        }
        a.navbar-brand-custom img {
    width: 211px;
}

        .navbar-brand-custom {
            font-size: 32px;
            font-weight: 300;
            color: var(--dark-gray) !important;
            text-decoration: none;
            font-style: italic;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .nav-menu li a:hover {
            color: var(--sage-green);
        }

        .btn-start-designing {
            background: transparent;
            border: 1px solid #7E9479;
            color: #7E9479;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-start-designing:hover {
            border-color: var(--sage-green);
            color: var(--sage-green);
        }

        /* Hero Section */
        .hero-section {
            background: #fff; 
            padding: 0px 100px 80px 100px;
            position: relative;
            overflow: hidden;
            /* height: 90vh; */
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        /* .hero-content {
            flex: 1;
            max-width: 500px;
        } */

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 5.9rem);
            font-weight: 700;
            line-height: 1.1;
            color: var(--dark-gray);
            margin-bottom: 40px;
            letter-spacing: -1px;
        }

        .hero-features {
            list-style: none;
            margin-bottom: 40px;
            padding: 0;
        }

        .hero-features li {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 16px;
            color: var(--medium-gray);
            gap: 10px;
        }

        .hero-features .icon {
            width: 31px;
            height: 31px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            margin-top: 2px;
            padding: 5px;
        }

        .hero-features .icon i {
            font-size: 12px;
            color: var(--medium-gray);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .btn-get-started {
            background: var(--sage-green);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: background 0.3s ease;
        }

        .btn-get-started:hover {
            background: var(--dark-green);
            color: white;
        }

        .btn-instant-quote {
            background: transparent;
            color: var(--sage-green);
            border: 2px solid var(--sage-green);
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .btn-instant-quote:hover {
            border-color: var(--sage-green);
            color: var(--sage-green);
            background: var(--warm-green);
            
        }

        .hero-image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            /* max-width: 500px; */
        }

        .hero-bg-circle {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 100%;
            height: 100%;
            background: var(--sage-green);
            border-radius: 50%;
            z-index: 1;
        }

        .hero-people-img {
            position: relative;
            z-index: 2;
            width: 100%;
            height: auto;
            border-radius: 0;
        }

        .color-palette {
            position: absolute;
            bottom: -20px;
            right: 20px;
            z-index: 3;
            display: flex;
            gap: 4px;
            background: white;
            padding: 8px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .color-swatch {
            width: 20px;
            height: 20px;
            border-radius: 3px;
        }

        .color-black { background: #000; }
        .color-red { background: #e74c3c; }
        .color-blue { background: #3498db; }
        .color-yellow { background: #f1c40f; }

        /* Categories Section */
        .categories-section {
            background: #F7F3EE;
            padding: 80px 0;
        }

        .categories-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .categories-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .categories-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /* width: 40px; */
            /* height: 40px; */
            /* background: var(--sage-green); */
            border-radius: 9px;
            margin-bottom: 20px;
            padding: 7px 23px;
            gap: 6px;
            border: 1px solid #494949;
            border-radius: 35px;
            text-transform: uppercase;
            color: #9c9c9c;
            font-weight: 700;
            font-size: 13px;
        }

        .categories-icon i {
            color: white;
            font-size: 18px;
        }

        .categories-title {
            font-size: clamp(1.2rem, 5vw, 2.7rem);
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .categories-subtitle {
            font-size: clamp(0.2rem, 3vw, 1.1rem);
            color: var(--medium-gray);
            /* max-width: 600px; */
            margin: 0 auto;
            line-height: 1.6;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .category-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        /* .category-image {
            background: #000;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .category-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid #333;
            border-radius: 8px;
        } */
         .category-image img{
            width: 100%;
         }

        .category-text {
            color: white;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
            z-index: 2;
            position: relative;
        }

        .category-footer {
            background: var(--sage-green);
            color: white;
            padding: 14px 6px;
            margin-top: -91px;
            position: relative;
            text-align: center;
            border-radius: 23px 23px 12px 12px;
        }

        .category_name {
    position: absolute;
    top: 13px;
    left: 15px;
    background: #FCFAF7;
    padding: 6px 15px;
    border-radius: 9px;
    font-size: 18px;
    box-shadow: #7e947933 0px 1px 6px 0px;
}

.category_title_name {
    font-weight: 700;
    font-size: 17px;
}

        .category-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .category-details {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 5px;
        }

        .category-price {
            font-size: 16px;
            font-weight: 600;
        }

        .btn-create-mockup {
            background: var(--sage-green);
            color: white;
            border: none;
            padding: 9px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s ease;
        }

        .btn-create-mockup:hover {
            background: var(--dark-green);
            color: white;
        }

        /* How It Works Section */
.how-it-works-section {
    background: #fff; 
    padding: 80px 0;
}
.products-section {
    background: #f7f3ee;
    padding: 35px 0px 27px 0px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--sage-green);
    padding: 7px 20px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid var(--sage-green);
}

.section-badge i {
    font-size: 12px;
}

.section-title {
    font-size: clamp(1.2rem, 5vw, 2.7rem);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    /* width: clamp(200px, 100vw, 800px); */
    margin: auto;   
}

.section-subtitle {
    font-size: 16px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 180px;
    margin-bottom: 50px;
    position: relative;
}

.step-item {
    flex: 1;
    /* max-width: 300px; */
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--sage-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.step-description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--sage-green) 0,
        var(--sage-green) 5px,
        transparent 5px,
        transparent 10px
    );
    margin-top: 30px;
    flex-shrink: 0;
}

.btn-success-stories {
    background: var(--sage-green);
    color: white;
    border: none;
    padding: var(--button-padding);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-success-stories:hover {
    background: var(--dark-green);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    background: #f7f3ee;; 
    padding: 80px 0;
}

.testimonial-photos {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.photo-grid {
    position: relative;
    width: 600px;
    height: 400px;
}

.testimonial-photo {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.photo-1 { top: 20px; left: 50px; }
.photo-2 { top: 120px; left: 20px; }
.photo-3 { top: 60px; left: 180px; }
.photo-4 { top: 20px; right: 180px; }
.photo-5 { top: 80px; right: 50px; }
.photo-6 { top: 200px; left: 120px; }
.photo-7 { top: 180px; right: 120px; }
.photo-8 { top: 280px; right: 20px; }

/* Features Section */
.features-section {
    background: #fff;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    /* width: 60px;
    height: 60px;
    background: var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; */
    margin: 0 auto 20px auto;
    /* color: white;
    font-size: 20px; */
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
    background: white;
    padding: 80px 0;
}

.review-content {
    display: flex;
    /* align-items: center; */
    gap: 40px;
    margin-top: 60px;
}

.review-image {
    flex: 1;
}

.team-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    height: 100% !important;
    object-fit: cover;
}

.review-details {
    flex: 1;
}

.review-card {
    background: var(--sage-green);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.reviewer-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.review-stars {
    font-size: 20px;
    color: #ffd700;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.review-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--sage-green);
    color: white;
    padding: 25px;
    border-radius: 15px;
    /* text-align: center; */
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    margin-top: 80px;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card.active {
    animation: fadeIn 0.5s ease-in-out;
}

/* Footer Section */
.footer-section {
    background: var(--sage-green);
    color: white;
    padding: 60px 17px 40px 17px;
}

.footer-content {
    display: flex;
    gap: 60px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
}
.footer-logo img {
    filter: invert(1);
    width: 100%;   
}

.business-hours p {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 124px;
}

.footer-column h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    list-style: disc;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-links-right {
    margin-top: 0 !important;
}

.category_name {
    position: absolute;
    top: 13px;
    left: 15px;
    background: #FCFAF7;
    padding: 6px 15px;
    border-radius: 9px;
    font-size: 18px;
    box-shadow: #7e947933 0px 1px 6px 0px;
}

.section_between_line1 {
    position: absolute;
    left: 205px;
    /* width: 94px; */
    top: -20px;
}

.section_between_line1 img {
    width: 78%;
}

.section_between_line2 {
    position: absolute;
    right: 205px;
    /* width: 94px; */
    top: 42px;
    rotate: 180deg;
}

.testimonial_grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.main_image_div .single_image_div {
    margin-top: 14px;
    height: 203px;
}

.single_image_div img {
    width: 100%;
}

.section_between_line2 img {
    width: 79%;
}
.testimonial_mobile_grid {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
    margin-bottom: 14px;
    display: none;
}

.single_team_img img {
    width: 100%;
}


/* FAQ CSS */
.faq-custom-section {
  background-color: #f7f3ee;
  padding: 80px 0;
}

.faq-custom-header {
  margin-bottom: 50px;
}

.faq-custom-label {
  font-size: 14px;
  color: #8b7355;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.faq-custom-title {
  font-size: 42px;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.2;
  margin-bottom: 0;
}

.faq-custom-accordion {
  border: none;
  margin-top: 200px;
}

.faq-custom-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0ddd8;
  margin-bottom: 0;
}

.faq-custom-item:last-child {
  border-bottom: none;
}

.faq-custom-header-item {
  margin-bottom: 0;
}

.faq-custom-button {
  background: transparent;
  border: none;
  padding: 25px 0;
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2c;
  box-shadow: none;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  position: relative;
}

.faq-custom-button:not(.collapsed) {
  background: transparent;
  color: #2c2c2c;
  box-shadow: none;
}

.faq-custom-button:focus {
  box-shadow: none;
  border: none;
}

/* .faq-custom-button::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid #8b7355;
  border-bottom: 2px solid #8b7355;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
} */

.faq-custom-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-custom-number {
  color: #8b7355;
  font-size: 16px;
  font-weight: 500;
  margin-right: 20px;
  min-width: 25px;
}

.faq-custom-question {
  flex: 1;
  margin-right: 20px;
}

.faq-custom-body {
  padding: 0 0 25px 45px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-custom-title {
    font-size: 32px;
  }

  .single_testimonial_logo {
    min-width: 156px !important;
}
  
  .faq-custom-button {
    font-size: 16px;
    padding: 20px 0;
  }
  
  .faq-custom-body {
    padding: 0 0 20px 35px;
    font-size: 15px;
  }
  
  .faq-custom-number {
    margin-right: 15px;
    min-width: 20px;
  }
}


/* Responsive Design */
@media (max-width: 1400px) {
    .section_between_line1{
    position: absolute;
    left: 167px;
    /* width: 94px; */
    top: -16px;
    }
    .section_between_line1 img {
        width: 70%;
    }
    .section_between_line2{
        position: absolute;
        right: 170px;
        /* width: 94px; */
        top: 42px;
        rotate: 180deg;
    }
    .section_between_line2 img {
        width: 70%;
    }

}
@media (max-width: 1300px) {
    .nav-menu{
        gap: 20px;
    }
    a.navbar-brand-custom img {
    width: 164px;
}
.btn-get-started{
    padding: 10px 15px;
    font-size: 15px;
}

.nav-menu li a{
    font-size: 15px;    
}
.custom-products-btn{
    font-size: 15px;
    font-weight: normal;
}

}
@media (max-width: 1200px) {
    .section_between_line1{
    position: absolute;
    left: 129px;
    /* width: 94px; */
    top: -16px;
    }
    .section_between_line1 img {
        width: 60%;
    }
    .section_between_line2{
        position: absolute;
        right: 129px;
        /* width: 94px; */
        top: 42px;
        rotate: 180deg;
    }
    .section_between_line2 img {
        width: 60%;
    }

}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    
    .step-connector {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .review-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .photo-grid {
        width: 100%;
        height: 300px;
    }
    
    .testimonial-photo {
        width: 60px;
        height: 60px;
    }
}
.mobile-navbar {
    display: none;
  }

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-custom-accordion{
        margin-top: 0;
    }
    .mobile-navbar {
    display: block;
  }
  .navbar-custom{
    display: none;
  }
    .hero-section{
        height: auto;
    }
    .hero-image{
        display: none;
    }
    .section_between_line1{
    position: absolute;
    left: 138px;
    /* width: 94px; */
    top: -17px;
    }
    .section_between_line1 img {
        width: 68%;
    }
    .testimonial_grid{
        display: none;
    }
    .testimonial_mobile_grid{
        display: grid;
    }
    .section_between_line2{
        position: absolute;
        right: 135px;
        /* width: 94px; */
        top: 38px;
        rotate: 180deg;
    }
    .steps-container{
        gap: 30px;
    }
    .section_between_line2 img {
        width: 68%;
    }
    
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            .section_between_line1, .section_between_line2{
                display: none;
            }

            .hero-title {
                font-size: 36px;
            }

            .categories-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .nav-menu {
                display: none;
            }

            .hero-bg-circle {
                width: 300px;
                height: 300px;
            }
        }

        a.mobile-logo img {
    width: 174px;
    height: auto;
}

        @media (max-width: 992px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 567px) {
            .hero-section{
                padding: 44px 12px !important;
            }   
            .top-banner{
                font-size: 13px;
            }
            .hero-title{
                font-size: 30px;
            }
            .navbar-custom{
                margin: 0;
            }
            .btn-instant-quote{
                padding: 6px 24px;
                font-size: 12px;
            }
            .btn-get-started{
                padding: 6px 24px;
                font-size: 12px;
            }
            .categories-grid{
            grid-template-columns: repeat(1, 1fr) !important;
    }
            ul.hero-features div {
    font-size: 12px;
}
        }

        

/* Mobile navbar */
.mobile-navbar {
  background: #fafaf8;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 999;
}

.hamburger-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
    color: #000000;
}

/* Menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  overflow: auto;
  /* padding-top: 60px; */
}
ul.mobile-nav-links {
    padding: 9px 15px;
    height: 90vh;
    overflow: auto;
}
button.dropdown-toggle {
    background: none;
    border: none;
    color: #000000;
    font-size: 18px;
}

.mobile-menu-overlay.open {
  left: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}

.mobile-nav-links li {
  margin: 20px 0;
    border-bottom: 1px solid #bbbbbb;
    padding: 9px 0px;
}

.mobile-nav-links a {
  font-size: 1.25rem;
  color: #333;
  text-decoration: none;
}

.mobile-nav-links .btn-start-designing {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

/* Products Page Css */
        /* Product Catalog Styles */
.product-catalog-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.product-hero-section {
    background: url('/static/shop/img/page_header_bg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.product-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.6);
}

.product-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.product-hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    /* max-width: 600px; */
    margin: 0 auto;
}

/* Main Content */
.product-main-content {
    padding: 40px 0;
    background: #f8f9fa;
}

/* Sidebar Filters */
.product-filters-sidebar {
    /* background: white; */
    border-radius: 8px;
    padding: 0;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.filter-section {
    border-bottom: 1px solid #e9ecef;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.filter-header:hover {
    background: #f8f9fa;
}

.filter-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.filter-chevron {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.filter-header[aria-expanded="false"] .filter-chevron {
    transform: rotate(-90deg);
}

.filter-content {
    padding: 0 20px 20px 20px;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    margin-bottom: 12px;
}

.filter-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin: 0;
}

.filter-checkbox,
.filter-radio {
    margin-right: 10px;
}

.filter-text {
    flex: 1;
}

.filter-count {
    color: #666;
    font-size: 12px;
}

/* Content Area */
.product-content-area {
    /* background: white; */
    border-radius: 8px;
    padding: 30px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.product-top-bar {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.results-text {
    font-size: 14px;
    color: #666;
}

.top-bar-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-dropdown {
    width: 200px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.view-toggle-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle-btn:hover {
    background: #e9ecef;
}

.view-toggle-btn.list-view {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Products Grid */
/* .products-container {
    min-height: 600px;
} */

.products-grid {
    margin: 0 -15px;
}

.product-col {
    padding: 15px;
    /* margin-bottom: 30px; */
}

.product-card {
    /* background: white; */
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 2px 15px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.15); */
}

.product-image {
    position: relative;
    overflow: hidden;
    /* height: 341px; */
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    text-align: center;
    transition: .3s;
}
.product-image:hover {
    background: #7E9479;
}

.product-img {
    width: 80%;
    height: 244px;
    object-fit: contain;
    margin: 17px 0px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
}

.product-overlay-text {
    letter-spacing: 1px;
}

.product-info {
    padding: 15px 10px;
    text-align: center;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    /* color: #007bff; */
}

/* List View Styles */
.products-grid.list-view .product-col {
    flex: 0 0 100%;
    max-width: 100%;
}

.products-grid.list-view .product-card {
    display: flex;
    align-items: center;
    height: auto;
}

.products-grid.list-view .product-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    text-align: left;
    padding: 20px 30px;
}

.products-grid.list-view .product-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.products-grid.list-view .product-price {
    font-size: 22px;
}

.cross_icon {
    text-align: end;
    padding: 9px 16px;
    font-size: 23px;
    display: none;
    /* background: #f8f9fa; */
}
.filter_btn{
    display: none;
    background: #000000;
    border: none;
    color: #ffffff;
}




/* Responsive Design */
@media (max-width: 768px) {
    .product-hero-title {
        font-size: 32px;
    }
    .view-toggle-btn{
        padding: 3px 9px;
    }
    .filter_btn{
        display: block;
    }
    .cross_icon{
        display: block;
    }
    .product-content-area{
        padding: 6px;
    }
    .product-top-bar{
        justify-content: space-between;
    }
    .product-filters-sidebar{
        max-width: 300px;
        background: white;
        border-radius: 0;
    }
    .main_filter_pc{
        display: none;
    }
    
    .product-hero-subtitle {
        font-size: 14px;
    }
    
    .product-top-bar {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    
    .top-bar-controls {
        justify-content: space-between;
        gap: 9px;
    }
    
    .sort-dropdown {
        width: 158px;
        flex: 1;
    }
    
    
    .products-grid.list-view .product-card {
        flex-direction: column;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        height: 200px;
    }
    
    .products-grid.list-view .product-info {
        text-align: center;
    }
}


@media (max-width: 992px) {
    
    .product-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .main_container{
        padding: 0px 20px !important;
    }
}

/* Animation for filter collapse */
.collapsing {
    transition: height 0.35s ease;
}

/* Loading animation */
.products-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    font-size: 16px;
    color: #666;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.filter_sidebar_mobile {
    position: fixed;
    top: 0;
    left: 0;
    background: #151515a8;
    width: 100%;
    z-index: 11111;
    height: 100vh;
    overflow: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.filter_btn i {
    font-size: 13px;
}
.mobile-categories-grid {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 14px;
}

.mobile-category-item img {
    width: 50px;
}

.mobile-category-item {
    text-align: center;
}

.product-img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.product-img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;       /* hidden by default */
}

.product-card:hover .default-img {
    opacity: 0;       /* hide default image on hover */
}

.product-card:hover .hover-img {
    opacity: 1;       /* show hover image */
}
/* Modern gradient background with subtle pattern */
.custom-apparel-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  position: relative;
  min-height: 400px;
}

.custom-apparel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(126, 148, 121, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(126, 148, 121, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating decorative elements for modern feel */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(126, 148, 121, 0.1), rgba(126, 148, 121, 0.05));
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element-2 {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 85%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Enhanced typography with better hierarchy */
.custom-apparel-heading {
  color: #2c3e50;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.custom-apparel-text-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.custom-apparel-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  color: #495057;
  font-weight: 400;
  margin-bottom: 0;
}

/* Modern button with green color and enhanced effects */
.custom-apparel-btn {
  background: linear-gradient(135deg, #7E9479 0%, #6a7f65 100%);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(126, 148, 121, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.1);
  color: white;
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.custom-apparel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.custom-apparel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(126, 148, 121, 0.4),
    0 6px 15px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #8ba086 0%, #7E9479 100%);
}

.custom-apparel-btn:hover::before {
  left: 100%;
}

.custom-apparel-btn:active {
  transform: translateY(-1px);
  transition: transform 0.1s;
}

.btn-text {
  position: relative;
  z-index: 2;
}

/* Ripple effect for button clicks */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Fade-in animations for content */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .custom-apparel-section {
    min-height: 350px;
    padding: 3rem 0;
  }
  
  .floating-element {
    display: none;
  }
  
  .custom-apparel-btn {
    min-width: 180px;
    padding: 0.75rem 2rem !important;
  }
  
  .custom-apparel-text {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  .custom-apparel-section {
    min-height: 300px;
  }
  
  .custom-apparel-btn {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
}










 .learn-dropdown {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.learn-dropdown ul li {
  margin-bottom: 10px;
  font-size: 15px;
}
.learn-dropdown ul li a {
  text-decoration: none;
  color: #333;
}
/* .learn-dropdown ul li a:hover {
  color: #2d6a4f;
} */


/* our story blog flex   */

.learn_pc_options li {
  display: inline-block;
  margin-right: 20px; /* space between items */
}


.border-line{
    border: 1px solid rgb(167, 167, 167) ;
}

.comparison-table {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    table-layout: fixed; /* column widths ko fix karega */
    width: 100%; /* puri width le */
}

.comparison-table th,
.comparison-table td {
    vertical-align: middle;
    padding: 1rem;
    text-align: center; /* sab center aligned rahe */
    width: 33.33%; /* 3 columns equal width */
}
.comparison-feature-col {
    text-align: left; /* Features column ko left align rakho taake text readable ho */
}


.compare-carousel .compare-item {
  background: #edf1ee;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.compare-carousel .compare-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
}

.compare-carousel .compare-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.compare-carousel .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.compare-carousel .owl-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}

.compare-carousel .owl-dot.active {
  background: #7e9479;
}


    /* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


