/* Import Good Times Font */
@font-face {
    font-family: 'Good Times Rg';
    src: url('GoodTimes-Regular.woff2') format('woff2'),
         url('GoodTimes-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@import url('https://fonts.cdnfonts.com/css/good-times-2');
/* Apply Good Times Font to All Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Good Times Rg', sans-serif;
}

/* Apply Helvetica Font to All Paragraphs */
p {
    font-family: 'Helvetica', sans-serif;
    font-size: 1rem; /* Adjust font size as needed */
    line-height: 1.6;
    color: #333; /* Optional: Adjust text color */
}

/* index style */
       
        .hero-slider {
           position: relative;
           width: 100%;
           overflow: hidden;
           height: 100vh; /* Adjust as needed */
           background-color: #000; /* Fallback color */
        }
       
        .hero-slide {
           position: absolute;
           width: 100%;
           height: 100%;
           opacity: 0;
           transition: opacity 1s ease-in-out;
        }
       
        .hero-slide.active {
           opacity: 1;
        }
       
       .hero-image {
           width: 100%;
           height: 100%;
           object-fit: cover;
           opacity: 0.5;;
       }
       
       .hero-content {
        font-family: 'Poppins', sans-serif;
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
           text-align: center;
           color: white;
           z-index: 2;
       }
       
       .slider-controls {
           position: absolute;
           bottom: 20px;
           left: 50%;
           transform: translateX(-50%);
           display: flex;
           align-items: center;
           gap: 20px;
           z-index: 3;
       }
       
       .slide-indicators {
           display: flex;
           gap: 10px;
       }
       
       .indicator {
           width: 12px;
           height: 12px;
           border-radius: 50%;
           background-color: rgba(51, 141, 39, 0.5);
           cursor: pointer;
       }
       
       .indicator.active {
           background-color: white;
       }
       
               .prev-slide, .next-slide {
                   background: rgba(0, 0, 0, 0.5);
                   color: white;
                   border: none;
                   padding: 0;
                   border-radius: 50%;
                   cursor: pointer;
                   transition: all 0.3s ease;
                   width: 40px;
                   height: 40px;
                   display: flex;
                   align-items: center;
                   justify-content: center;
                   font-size: 1.2rem;
               }
       
               .prev-slide:hover, .next-slide:hover {
                   background: rgba(0, 0, 0, 0.8);
                   transform: scale(1.1);
               }
       
               .prev-slide::before {
                   content: "←";
               }
       
               .next-slide::before {
                   content: "→";
               }
       
        .shop-button {
           display: inline-block;
           margin-top: 20px;
           padding: 10px 30px;
           background-color: #fff;
           color: #000;
           text-decoration: none;
           border-radius: 4px;
           
           transition: background-color 0.3s;
        }
       
        .shop-button:hover {
           background-color: #f0f0f0;
        }
    
        /* index product style */

     
        :root {
            --black: #000000;
            --white: #ffffff;
            --gold:#106faf;
            --gray: #555555;
            --light-gray: #888888;
        }
        
      
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .featured-products {
            padding: 80px 0;
            background-color: var(--white);
            color: #106faf;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            margin-top: 40px;
        }
        
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .product-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            
        }
        
        .product-link {
            display: block;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-link:hover {
            opacity: 0.9;
            transform: translateY(-5px);
        }
        
        .product-image-container {
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }
        
        @media (min-width: 768px) {
            .product-image-container {
                height: 400px;
            }
        }
        
        .product-image {
            height: 100%;
            width: auto;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .product-link:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-info {
            margin-bottom: 15px;
            width: 100%;
        }
        
        .product-name {
            color: #65b343;
            
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .product-name a {
            color: inherit;
            text-decoration: none;
        }
        
        .product-name a:hover {
            color: var(--gold);
        }
        
        .price-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .original-price {
            text-decoration: line-through;
            color: var(--light-gray);
        }
        
        .sale-price {
            color: var(--gold);
            font-weight: 200;
        }
        
        .product-details {
            color: var(--light-gray);
            font-size: 14px;
            margin-top: 5px;
        }
        
        .product-actions {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }
        
        .action-link {
            font-size: 12px;
            font-weight: 200;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .action-link:hover {
            color: var(--gold);
        }
        
        .action-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }
        
        .action-link:hover::after {
            width: 100%;
        }
        
        /* Sale badge */
        .sale-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--gold);
            color: var(--black);
            font-weight: 200;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 3px;
            z-index: 1;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        /* Section title animation */
        .section-title {
            font-family: 'Good Times', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            color: var(--gold);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 2px;
            background: var(--gold);
            animation: underlineExpand 1.5s ease-out forwards;
        }
        
        @keyframes underlineExpand {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1rem;
    }
}
    
/*index product style end*/
    /* Default desktop styles */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .product-card {
        text-align: center;
    }
    
    .product-image {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Mobile slider styles (hidden by default) */
    .products-slider {
        display: none;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    
    .slider-track {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
    }
    
    .slider-card {
        flex: 0 0 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .slider-dots {
        text-align: center;
        padding: 15px 0;
    }
    
    .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        margin: 0 5px;
        cursor: pointer;
    }
    
    .dot.active {
        background: #333;
    }
    
    /* Responsive adjustments */
    @media (max-width: 1024px) {
        /* Hide grid on tablet/mobile */
        .products-grid {
            display: none;
        }
        
        /* Show slider */
        .products-slider {
            display: block;
        }
        
        /* Tablet view - show 2 cards */
        .slider-card {
            flex: 0 0 50%;
        }
    }
    
    @media (max-width: 768px) {
        /* Mobile view - show 1 card */
        .slider-card {
            flex: 0 0 100%;
        }
    }


       :root {
            --primary-color: #6efb75;
            --secondary-color: #457adf;
            --accent-color: #ff6b6b;
            --dark-color: #1a1a2e;
            --light-color:rgb(255, 255, 255);
            --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            background-color: var(--light-color);
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Import Good Times Font */
        @font-face {
            font-family: 'Good Times';
            src: url('GoodTimes-Regular.woff2') format('woff2'),
                 url('GoodTimes-Regular.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        @import url('https://fonts.cdnfonts.com/css/good-times-2');

        /* Apply Good Times Font to All Headings */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Good Times', sans-serif;
        }

        /* Apply Helvetica Font to All Paragraphs */
        p {
            font-family: 'Helvetica', sans-serif;
            font-size: 1rem; /* Adjust font size as needed */
            line-height: 1.6;
            color: #333; /* Optional: Adjust text color */
        }

        /* Testimonial Section */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        /* Floating Particles Background */
        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(110, 251, 117, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
            border: 1px solid rgba(69, 122, 223, 0.1);
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-100px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        /* Section Header */
         .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-header h2 {
            font-family: 'Good Times', sans-serif;
            
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            animation: textShine 3s linear infinite;
            background-size: 200% auto;
        }

        @keyframes textShine {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .section-header p {
            font-family: 'Helvetica', sans-serif;
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 10 auto;
        } 

        /* Testimonial Cards */
        .testimonial-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-out;
            will-change: transform;
        }

        .testimonial-card {
            flex: 0 0 33.333%;
            padding: 0 15px;
            transition: var(--transition);
        }

        @media (max-width: 992px) {
            .testimonial-card {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 100%;
            }
        }

        .testimonial-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 100%;
            border: 1px solid rgba(110, 251, 117, 0.2);
        }

        .testimonial-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            z-index: 0;
            opacity: 0;
            transition: var(--transition);
            clip-path: circle(0% at 50% 50%);
        }

        .testimonial-card:hover .testimonial-content {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(69, 122, 223, 0.15);
        }

        .testimonial-card:hover .testimonial-content::before {
            opacity: 1;
            clip-path: circle(100% at 50% 50%);
        }

        /* Client Info */
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid rgba(110, 251, 117, 0.3);
            transition: var(--transition);
        }

        .testimonial-card:hover .client-avatar {
            border-color: white;
            transform: scale(1.1);
        }

        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details h4 {
            font-family: 'Good Times', sans-serif;
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 5px;
            transition: var(--transition);
        }

        .testimonial-card:hover .client-details h4 {
            color: white;
        }

        .client-details p {
            font-family: 'Helvetica', sans-serif;
            font-size: 0.9rem;
            color: #777;
            transition: var(--transition);
        }

        .testimonial-card:hover .client-details p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Testimonial Text */
        .testimonial-text {
            position: relative;
            z-index: 1;
        }

        .testimonial-text p {
            font-family: 'Helvetica', sans-serif;
            font-style: italic;
            color: #555;
            line-height: 1.8;
            margin-bottom: 0;
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card:hover .testimonial-text p {
            color: white;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
            font-family: serif;
            line-height: 1;
            transition: var(--transition);
        }

        .testimonial-text::before {
            top: -20px;
            left: -10px;
        }

        .testimonial-text::after {
            bottom: -40px;
            right: -10px;
        }

        .testimonial-card:hover .testimonial-text::before,
        .testimonial-card:hover .testimonial-text::after {
            color: white;
            opacity: 0.6;
        }

        /* Rating Stars */
        .client-rating {
            margin-top: 20px;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .client-rating i {
            color: #ffc107;
            margin-right: 3px;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .testimonial-card:hover .client-rating i {
            transform: scale(1.2);
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 2;
            padding: 0 20px;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            pointer-events: all;
            border: none;
            outline: none;
        }

        .slider-arrow:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            transform: scale(1.1);
        }

        .slider-arrow.prev {
            margin-left: 0;
        }

        .slider-arrow.next {
            margin-right: 0;
        }

        /* Dots Navigation */
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 8px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .slider-dot::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            transform: scale(0);
            transition: var(--transition);
        }

        .slider-dot.active::after {
            transform: scale(1);
        }

        .slider-dot.active {
            transform: scale(1.3);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.2rem;
            }

            .testimonial-content {
                padding: 30px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 576px) {
            .testimonials-section {
                padding: 70px 0;
            }

            .section-header h2 {
                font-size: 1.1rem;
            }

            .section-header p {
                font-size: 1rem;
                font-family: 'Helvetica', sans-serif;
           
            color: #666;
            max-width: 700px;
            margin: 10 auto;
            }

            .client-avatar {
                width: 60px;
                height: 60px;
            }

            .client-details h4 {
                font-size: 1.1rem;
            }
        }

/* Default Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh; /* Default height for larger screens */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #48BB78, #4299E1);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero-content a:hover {
    background: linear-gradient(135deg, #38A169, #3182CE);
}

/* Media Query for Mobile View */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh; /* Reduce height for mobile screens */
    }

    .hero-content h1 {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
        width: 300px;
    }

    .hero-content a {
        padding: 8px 16px; /* Adjust button size */
        font-size: 0.9rem;
    }
}
/* Partnership Section */
.partnership-section {
    position: relative;
    min-height: 50vh; /* Default height for larger screens */
    background: linear-gradient(135deg, #48BB78, #4299E1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Media Query for Mobile View */
@media (max-width: 768px) {
    .partnership-section {
        min-height: 30vh; /* Reduce height for mobile screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .partnership-section .hero-title1 {
        font-size: 1.8rem; /* Adjust font size for smaller screens */
    }

    .partnership-section .discover-button {
        padding: 8px 16px; /* Adjust button size */
        font-size: 0.9rem;
    }
}
    