

  :root {
            --primary-green: #2e7d32;
            --header-green: #00b100;
            --btn-yellow: #ffc107;
            --light-bg: #f8f9fa;
            --whatsapp-color: #25D366;
        }

@font-face {
    font-family: 'Purno';
    /*src: url('fonts/Li Purno Pran Unicode.ttf') format('truetype');*/
    src: url('fonts/Li Shohid Abu Sayed Unicode.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Samir';
    /*src: url('fonts/Li Purno Pran Unicode.ttf') format('truetype');*/
    src: url('fonts/Li Shohid Shafkat Samir Unicode.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Italic Font */
/*@font-face {
    font-family: 'LiAbuAkkas';
    src: url('fonts/Li Abu J M Akkas Unicode Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}*/

        body {
            font-family: 'Purno', sans-serif;
            background-color: #fff;
            color: #333;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1591073113125-e46713c829ed?q=80&w=1500');
            background-size: cover;
            background-position: center;
            padding: 200px 0;
            color: white;
            text-align: center;
        }

        .hero-title { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; font-family: 'Samir';}
        .hero-subtitle { font-size: 1.5rem; color: #d4ff00; margin-bottom: 30px; }

        /* Premium Headers */
        .premium-header {
            background: linear-gradient(45deg, var(--primary-green), #3d7a35);
            color: white;
            padding: 15px;
            border-radius: 0px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 1.8rem; }
        }

         .mango-container {
            padding: 80px 0;
        }
        /* টাইটেল স্টাইল */
        .title-left {
            color: var(--primary-green);
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 30px;
            font-family: 'Samir';
        }
        .title-right {
            color: var(--primary-green);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            font-family: 'Samir';
        }
        /* কন্টেন্ট বক্স স্টাইল */
       .benefit-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.05); */
    transition: 0.3s;
    border-left: 2px solid #ffc107;
    border-right: 1px solid rgba(0,0,0,.1);
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 2px solid #ffc107;
    font-size: 20px;
}
        .quality-item {
            margin-bottom: 20px;
            padding: 15px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-right: 4px solid #28a745;
            text-align: right;

            border-left: 2px solid rgba(0,0,0,.1);
            border-right: 2px solid #28a745;
            border-top: 1px solid #28a745;
            border-bottom: 1px solid rgba(0,0,0,.1);
            font-size: 20px;

        }
        /* সেন্টার ইমেজ */
        .mango-main-img {
    max-width: 100%;
    /*height: 450px;*/
    /* transform: scale(1.1); */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    /* padding: 20px; */
    border-radius: 20px;
}

        @media (max-width: 991px) {
            .mango-main-img { transform: scale(1); margin: 40px 0; }
            .quality-item { text-align: left; border-right: none; border-left: 4px solid #28a745; }
            .title-right { text-align: left !important; }
        }
        
        


        .product-card {
            background: #ffffff;
            border-radius: 0px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #eee;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--accent-orange);
        }

        .img-wrapper {
            position: relative;
            overflow: hidden;
            height: 350px;
        }

        .product-img {
            width: 100%;
            height: 350px;
            /*object-fit: cover;*/
            transition: transform 0.5s ease;
        }

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

        .product-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-green);
            margin: 15px 0 5px;
            font-family: 'Samir';
        }

        .product-price {
            font-size: 1.2rem;
            color: #d35400;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Quantity Toggle Style */
        .quantity-control {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f1f1;
            border-radius: 50px;
            width: 130px;
            margin: 0 auto 20px;
            padding: 5px;
        }

        .qty-btn {
            background: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--primary-green);
            transition: 0.2s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .qty-btn:hover {
            background: var(--accent-orange);
            color: white;
        }

        .qty-input {
            width: 40px;
            border: none;
            background: transparent;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Order Button Style */
        .btn-premium-order {
            background: linear-gradient(45deg, var(--primary-green), #3d7a35);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-premium-order:hover {
            background:#d35400;
            color: white;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(211, 84, 0, 0.4);
        }

        .btn-premium-order i {
            margin-right: 8px;
        }


        .review-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        .review-card {
    background: #fff;
    margin: 15px;
    padding: 50px 20px;
    /* border-radius: 15px; */
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    height:350px;
}
        .customer-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin: 0 auto 15px;
            object-fit: cover;
            border: 2px solid #2d5a27;
        }
        .stars {
            color:#d35400;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .review-card h6{
             font-size: 20px;
             color:var(--primary-green);
        }
        .review-text {
            color: #666;
            font-size: 18px;
            line-height: 1.6;
            font-style: italic;
        }
        /* স্লাইডার ডটস স্টাইল */
        .slick-dots li button:before {
            font-size: 12px;
            color: #2d5a27;
        }
        .slick-dots li.slick-active button:before {
            color: #ff8c00;
        }


        .cta-section {
           background: linear-gradient(45deg, var(--primary-green), #3d7a35);
            padding: 40px 0;
            border-top: 5px solid var(--primary-green);
        }

        .contact-box {
            background: #fff;
            padding: 40px;
            border-radius: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .contact-link {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            padding: 15px 25px;
            border-radius: 50px;
            margin: 10px 0;
            font-weight: 700;
            font-size: 1.2rem;
            transition: 0.3s ease;
        }

        /* Phone Link */
        .link-phone {
            background-color: rgba(255, 140, 0, 0.1);
            color: var(--phone-color);
            border: 2px solid var(--phone-color);
        }
        .link-phone:hover {
            background-color: var(--phone-color);
            color: #fff;
        }

        /* WhatsApp Link */
        .link-whatsapp {
            background-color: rgba(37, 211, 102, 0.1);
            color: var(--whatsapp-color);
            border: 2px solid var(--whatsapp-color);
        }
        .link-whatsapp:hover {
            background-color: var(--whatsapp-color);
            color: #fff;
        }

        .contact-link i {
            margin-right: 12px;
            font-size: 1.5rem;
        }

        /* Social Icons */
        .social-wrapper {
            margin-top: 30px;
        }
        .social-btn {
            width: 45px;
            height: 45px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            color: var(--primary-green);
            border: 1px solid #eee;
            border-radius: 50%;
            margin: 0 8px;
            font-size: 1.2rem;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            text-decoration: none;
        }
        .social-btn:hover {
            background: var(--primary-green);
            color: #fff;
            transform: translateY(-5px);
        }
        
        .section-tag {
            color: var(--phone-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 10px;
        }


/* Video Section Styling */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0px;
    background: #000;
    border: 5px solid #fff;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px; /* ইনার বর্ডার রেডিয়াস */
}

.video-section .premium-header {
    max-width: 600px;
    margin: 0 auto 30px;
}

       
.header-text {
    text-align: center;
    margin-bottom: 30px;
    /* color: #2c3e50; */
    color: var(--primary-green);
    font-size: 35px;
    font-weight: 600;
    font-family: 'Samir';
}
        .form-label { font-weight: 600; margin-top: 15px; }
        .order-summary { background: #fafafa; padding: 20px; border-radius: 0px; border: 1px solid #eee; }
        .product-info { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
        .total-row { display: flex; justify-content: space-between; font-weight: bold; padding: 10px 0; border-top: 1px solid #ddd; }
        .btn-order { background: #ffc107; color: #000; font-weight: bold; width: 100%; padding: 15px; border: none; border-radius: 5px; margin-top: 0px; font-size: 1.2rem; }
        .btn-order:hover { background: #e0a800; }
        .shipping-option { border: 1px solid #ddd; padding: 10px; border-radius: 0px; margin-bottom: 10px; cursor: pointer; display: block; }
        .shipping-option input { margin-right: 10px; }


.checkout-area{
    padding:40px;
}

        .copyright-section {
        background-color: #1a1a1a; /* গাঢ় কালো ব্যাকগ্রাউন্ড */
        padding: 20px 0;
        border-top: 1px solid #333;
    }

    .copyright-text {
        color: #b5b5b5;
        font-size: 20px;
    }

    .developer-text {
        color: #b5b5b5;
        font-size: 20px;
    }

    .developer-text a {
        color: #ff8c00; /* ডেভেলপার নামের জন্য হাইলাইট কালার */
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .developer-text a:hover {
        color: #ffffff;
        text-underline-offset: 4px;
        text-decoration: underline;
    }

    /* মোবাইলের জন্য ছোট অ্যাডজাস্টমেন্ট */
    @media (max-width: 767px) {
        .copyright-text, .developer-text {
            font-size: 13px;
        }
    }

    .copyright-area p{
         font-size: 20px;
    }


    /*header*/
    .custom-header {
        background-color: #ffffff;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        padding: 10px 0;
    }

    .header-logo {
        height: 45px;
        width: auto;
    }

    /* Common Button Style */
    .btn-header {
        padding: 8px 18px;
        border-radius: 0px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        letter-spacing: 2px;
    }

   .btn-order {
    background-color:#d35400;
    color: #fff;
    border:var(--primary-green);
    border-radius: 0px;
}

.btn-order:hover {
    background: #d35400;
    color:#fff;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #fff;
    border: 2px solid var(--whatsapp-color);
    border-radius: 0px;
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: var(--whatsapp-color);
}
    /* Mobile view adjustments */
    @media (max-width: 575px) {
        .header-logo {
            height: 35px;
        }
        .btn-header {
            padding: 6px 12px;
            font-size: 12px;
        }
        .custom-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    }
    /*header*/


    .offer-card {
        background: linear-gradient(135deg, var(--primary-green) 0%, #1a3a16 100%);
        padding: 40px;
        border-radius: 25px;
        border: 2px dashed var(--btn-yellow);
    }
    .timer-box {
        background: rgba(255, 255, 255, 0.1);
        padding: 10px 20px;
        border-radius: 12px;
        color: var(--btn-yellow);
        text-align: center;
        min-width: 80px;
    }
    .timer-box span { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
    .timer-box small { color: #fff; font-size: 0.8rem; }
    
    .btn-order-now {
        background: var(--btn-yellow);
        color: #000;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        font-size: 1.2rem;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    }
    .btn-order-now:hover { transform: scale(1.05); background: #fff; color: var(--primary-green); }



.custom-accordion .accordion-item {
        border-radius: 0px !important;
        overflow: hidden;
    }
    .custom-accordion .accordion-button {
        background-color: #fff;
        color: var(--primary-green);
        font-weight: 600;
        padding: 15px;
        font-size: 20px;
    }
    .custom-accordion .accordion-button:not(.collapsed) {
        background-color: var(--primary-green);
        color: #fff;
        box-shadow: none;
    }
    .custom-accordion .accordion-button::after {
        background-size: 1rem;
    }
    .custom-accordion .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }
    .custom-accordion .accordion-body {
        background-color: #fff;
        color: #555;
        line-height: 1.8;
        font-size: 18px;
    }

    .form_bg{
        background: #f5f5f5;
        padding:50px 30px;
    }

    .form-check-input:checked {
    background-color:var(--primary-green);
    border-color:var(--primary-green);
}

.form-control {
    display: block;
    width: 100%;
    padding:10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius:0px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


 @media (min-width:320px) and (max-width:575px) {
            .mango-main-img {
                height:100%;
                width:100%;
            }
            .mango-container{
               padding:10px 30px; 
            }
            .form_bg {
            	padding: 50px 10px!important;
            }
            .order-summary {
            	padding: 5px!important;
            }
            .checkout-area {
            	padding: 10px!important;
            }
            .header-text{
                font-size:25px;
            }
        }
