@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}
body{
    font-family: Poppins;
    margin: 0;
    font-size: 16px;
    background-color: #FFF;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Signika', sans-serif;
}
:root{
    --border-color: #fff5;
    --w-image: 500px;
    --calculate: calc(3 / 2);
}
header{
    /* display: grid;
    grid-template-columns: 180px 1fr calc(var(--w-image) * var(--calculate));
    grid-template-rows: 80px; */
    position: relative;
    z-index: 10;
    /* border-bottom: 1px solid var(--border-color); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: all 0.3s ease;
}

/* Fixed header styles */
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-links{
    margin-bottom: 0;
}

header.fixed .main-nav .nav-links li a {
    color: #000 !important;
}

.header-padding{
    padding-top: 80px;
}

header .logo img{
    min-width: 100px;
    max-width: 100%;
}
header .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin-bottom: 0;
}
header nav a{
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-size: 24px;
    position: relative;
    transition: color 0.3s ease;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

header nav a:hover {
    color: #ffffff;
}

header nav a:hover::after {
    width: 100%;
}

header nav ul{
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    text-decoration: none;
}
header nav{
    /* border-left: 1px solid var(--border-color); */
    position: relative;
}
.carousel{
    margin-top: -80px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.carousel .list{
    height: 100%;
    position: relative;
}
.carousel .list::before{
    position: absolute;
    width: var(--w-image);
    height: 100%;
    content: '';
    top: 0;
    left: calc(100% - calc(var(--w-image) * var(--calculate)));
    /* border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color); */
    z-index: 10;
    pointer-events: none;
}
.carousel .list::after{
    position: absolute;
    top: 50px;
    left: 50px;
    content: '';
    background-color: red;
    width: 400px;
    height: 300px;
    z-index: 10;
    pointer-events: none;
    border-radius: 20px  50px 110px  230px;
    filter: blur(150px);
    opacity: 0;
}
.carousel .list .item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.carousel .list .item .image{
    width: 30vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(100% - calc(var(--w-image) * var(--calculate)));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    font-weight: 500;
}
.carousel .list .item .image img{
    width: 90%;
    margin-bottom: 20px;
    /* filter: drop-shadow(0 150px 50px #00000055);
    z-index: 0;
    position: relative; */
}
.carousel .list .item .image figcaption{
    font-family: 'Signika', sans-serif;
    font-weight: 600;
    font-size: 2.3em;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}
.carousel .list .item .main-content{
    height: 100%;
    display: grid;
    grid-template-columns: calc(100% - calc(var(--w-image) * var(--calculate)));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-position 0.1s ease-out;
}
.carousel .list .item .main-content .content{
    padding: 150px 20px  20px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.carousel .list .item .main-content .content h2{
    font-size: 5em;
    font-weight: 800;
}
.carousel .list .item .main-content .content .price{
    font-family: 'Aboreto';
    font-size: 3em;
    margin: 20px 0;
}
.carousel .list .item .main-content .content .addToCard{
    background-color: #4f8b69;
    color: #fff;
    padding: 10px  30px;
    font-family: Poppins;
    font-size: large;
    font-weight: 500;
    border-radius: 30px;
    border: none;
    margin-top: 20px;
}
.arrows{
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 50px);
    grid-template-rows: 50px;
    justify-content: center;
    gap: 10px;
}
.arrows button{
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: monospace;
    font-size: large;
    font-weight: bold;
    line-height: 0;
    box-shadow: 0 10px 40px #5555;
    cursor: pointer;
    transition: 0.5s;
}
.arrows button:hover{
    background-color: #eee5;
}
.carousel .list .item{
    display: none;
}
.carousel .list .item.active,
.carousel .list .item.other_1,
.carousel .list .item.other_2{
    display: block;
}
.carousel .list .item.active{
    z-index: 2;
}
.carousel .list .item.other_1,
.carousel .list .item.other_2{
    pointer-events: none;
}
.carousel .list .item.active .main-content{
    animation: showContent 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        clip-path: circle(0% at 70% 50%);
    }to{
        clip-path: circle(100% at 70% 50%);
    }
}
.next .item.other_1{
    z-index: 1;
}
.next .item .image img,
.next .item .image figcaption{
    animation: effectNext .5s ease-in-out 1 forwards;
}
@keyframes effectNext{
    from{
        transform: translateX(calc(var(--transform-from)));
    }to{
        transform: translateX(calc(var(--transform-from) - var(--w-image)));
    }
}
.next .item.active .image{
    --transform-from: var(--w-image);
}
.next .item.other_1 .image{
    z-index: 3;
    --transform-from: 0px;
    overflow: hidden;
}
.next .item.other_2 .image{
    z-index: 3;
    --transform-from: calc(var(--w-image) * 2);
}
.arrows{
    z-index: 5;
}
/* prev */
.prev .list .item .image img,
.prev .list .item .image figcaption{
    animation: effectPrev 0.5s ease-in-out 1 forwards;
}
@keyframes effectPrev{
    from{
        transform: translateX(calc(var(--transform-from)));
    }to{
        transform: translateX(calc(var(--transform-from) + var(--w-image)));
    }
}
.prev .list .item.active .image{
    --transform-from: calc(var(--w-image) * -1);
    overflow: hidden;
}
.prev .list .item.other_1 .image{
    --transform-from: 0px;
    z-index: 3;
}
.prev .list .item.other_2 .image{
    z-index: 3;
    --transform-from: var(--w-image);
}
.prev .list .item.other_2 .main-content{
    opacity: 0;
}


.item.dark, .item.dark figcaption{
    color: #000;
}
.item.light, .item.light figcaption{
    color: #fff;
}

.brand-logo{
    width: 300px;
    margin-bottom: 20px;
}

.product_particle{
    display: none;
}

.item.active .product_particle{
    display: block;
}

.product_particle{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, 0) scale(1.5);
    width: 150% !important;
    z-index: 10;
    pointer-events: none;
}

.main-nav a{
    transition: color 0.5s ease-in-out;
    color: #fff;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1023px){
    :root{
        --calculate: 1;
        --w-image: 400px; 
    }
    .carousel .list .item .main-content .content h2{
        font-size: 3em;
    }
}

/* media query for less than 1400px */
@media screen and (max-width: 1400px) {
    :root{
        --w-image: 400px;
    }

    .carousel .list .item .image img{
        width: 80% !important;
    }

    .carousel .list .item .main-content .content h2{
        font-size: 2.5em;
    }

    .carousel .list .item .main-content .content .price{
        font-size: 2em;
    }

    .carousel .list .item .image figcaption{
        font-size: 2em;
    }
}

/* media query for less than 1200px */
@media screen and (max-width: 1200px) {
    .carousel .list .item .image img{
        width: 70% !important;
        margin-bottom: 0 !important;
    }
}

@media screen and (max-width: 767px){
    .carousel .list .item .image{
        width: 100%;
        left: 0;
        justify-content: center;
    }
    .carousel .list .item .image figcaption{
        color: #fff;
        width: 100%;
        text-align: center;
    }
    .carousel .list .item .main-content .content{
        display: none;
    }
}

@media screen and (max-width: 767px) {
    header {
        grid-template-columns: 150px 1fr;
        padding: 0 20px;
    }

    .burger-menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(79, 139, 105, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        padding: 0;
        z-index: 10;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links li a {
        font-size: 24px;
        text-decoration: none;        
    }

    /* Burger menu animation */
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .carousel .list .item .main-content{
        background-size: auto 100%;
        background-position: center center;
    }
}

.slider-controls {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 15;
    display: flex;
    gap: 10px;
}

.slider-controls button {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.2s;
}
.slider-controls button:hover {
    background: rgba(0,0,0,0.8);
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(120deg, var(--main-bg), var(--main-bg-dark));
    }
    50% {
        background: linear-gradient(240deg, var(--main-bg-dark), var(--main-bg));
    }
    100% {
        background: linear-gradient(120deg, var(--main-bg), var(--main-bg-dark));
    }
}

.gradient-shift {
    animation: gradientShift 8s ease-in-out infinite;
    background: linear-gradient(120deg, var(--main-bg), var(--main-bg-dark));
    transition: background 0.5s;
}

/* Modal Styles */
.modal {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5); justify-content: center; align-items: center;
}
.modal-content {
  background: #fff; padding: 2em; border-radius: 10px; width: 90%; max-width: 400px; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.close-modal {
  position: absolute; right: 1em; top: 1em; font-size: 1.5em; cursor: pointer;
}

.products{
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    
    font-size: 3em;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow:0 -2px 11px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.slick-track{
    padding-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 1.4em;
    font-weight: 700;
    color:#A91079;
    margin: 0;
}

/* Carousel controls styling */
.product-slider .slick-prev,
.product-slider .slick-next {
    width: 40px;
    height: 40px;
    background: #A91079;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.product-slider .slick-prev {
    left: -25px;
}

.product-slider .slick-next {
    right: -25px;
}

.product-slider .slick-prev:hover,
.product-slider .slick-next:hover {
    background: rgba(79, 139, 105, 1);
}

.product-slider .slick-prev:before,
.product-slider .slick-next:before {
    font-size: 20px;
    color: white;
}

.product-slider .slick-dots {
    bottom: -50px;
}

.product-slider .slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
    opacity: 1;
}

.product-slider .slick-dots li.slick-active button:before {
    color: #4f8b69;
}

.product-slide {
    padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }
    
    .product-slider .slick-prev,
    .product-slider .slick-next {
        display: none !important;
    }
}


/* Form Validation Styles */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
    font-weight: 500;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Success styling for valid fields */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.1rem rgba(25, 135, 84, 0.25);
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #198754;
    font-weight: 500;
}

/* Loading state for submit button */
.send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #6c757d;
}

.send-btn:disabled:hover {
    background-color: #6c757d;
    transform: none;
}

/*contact*/
.contact-wrapper {
    background-color: #2e004f;
    border-radius: 20px;
    width: 100%;
    color: white;
    padding: 4rem 5rem;
    
  }

  .left-panel h1 {
    font-weight: bold;
    font-size: 3rem;
    color: #EEEEEE;
  }

  .left-panel h1 span {
    color: #e942a2;
  }

  .contact-wrapper .info-icon {
    margin-right: 10px;
    color: #e942a2;
  }

  .btn-outline-light-custom {
    background: white;
    color: #e942a2;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 3rem;
  }

  .btn-outline-light-custom:hover {
    background: #e942a2;
    color: white;
  }

  .form-box {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    color: #2e004f;
  }

  .form-control, .form-select, textarea {
    border: none;
    border-bottom: 2px solid #d3cce3;
    border-radius: 0;
  }

  .form-control:focus, .form-select:focus, textarea:focus {
    box-shadow: none;
    border-bottom: 2px solid #e942a2;
  }

  .send-btn {
    background-color: #b50074;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .send-btn:hover {
    background-color: #880056;
  }

  @media (max-width: 768px) {
    .form-box {
      margin-top: 2rem;
    }
  }
  /**list*/
  .franchise-section {
    padding: 2rem;
  }

  .franchise-section .info-icon {
    color: #3bcaba;
    margin-right: 10px;
    width: 25px;
    text-align: center;
  }

  .franchise-section .feature-text {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .heading {
    color: #3bcaba;
    font-weight: 700;
    font-size:36px;
    font-family: 'Signika', sans-serif;
  }

  .subheading {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 24px;
  }

  .btn-outline-custom {
    border: 2px solid #3bcaba;
    color: #3bcaba;
    background: white;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    margin-right: 10px;
  }

  .btn-outline-custom:hover {
    background: #3bcaba;
    color: white;
  }

  .btn-filled-custom {
    background-color: #3bcaba;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
  }

  .btn-filled-custom:hover {
    background-color: #ce79a8;
  }

  .image-box {
    max-width: 100%;
    border-radius: 20px;
  }

  .contact-title{
    font-size: 3rem;
  }

  @media (max-width: 768px) {
    .text-end {
      text-align: start !important;
      margin-top: 1rem;
    }

    .contact-wrapper{
        padding: 2.5rem;
    }

    .contact-title{
        font-size: 2rem;
    }

    .burger-menu span{
        background-color: #000;
    }

    header.fixed .main-nav .nav-links li a{
        color: #FFF !important;
    }
  }
/*shop2*/
.compact-franchise {
    padding: 2rem;
  }

  .compact-franchise .info-icon {
    color: #3bcaba;
    margin-right: 10px;
    width: 25px;
    text-align: center;
  }

  .compact-franchise .feature-text {
    margin-bottom: 1rem;
  }