/* ==========================================================================
   🎨 CUSTOMIZE COLORS & VARIABLES
   ========================================================================== */
:root {
    --foodily-main: #5D2B8AFF;        /* Use 20% */
    --foodily-accent: #FFD700;        /* Use 5% */
    --foodily-white: #FFFFFFFF;       /* Use 70% */
    --foodily-primaryDark: #3A195E;   /* Use 5% */
    --foodily-error: #E34234;         /* Use 5% */
    --foodily-success: #98FF98;       /* Use 5% */

    /* অন্যান্য প্রয়োজনীয় কালার */
    --foodily-background: #F5F7FA;
    --foodily-black: #000000DD;
    --foodily-grey: #727272dd;
    --foodily-white70: #FFFFFFB3;

    /* Vendor Specific Colors (Professional Theme) */
    --foodily-vendorPrimary: #BD026F; 
    --foodily-vendorAccent: #10B981; 
    --foodily-vendorDark: #111827;
}

/* ==========================================================================
   🏠 1. GLOBAL STYLES
   ========================================================================== */
body {
    font-family: 'Hind Siliguri', sans-serif;
}



/* ==========================================================================
   🍔 2. NAVBAR NAVIGATION (DESKTOP)
   ========================================================================== */
.my-custom-navbar {
    position: sticky;
    top: 20px;

    width: 85%;          /* এখানে কমান */
    max-width: 1200px;   /* চাইলে 1000px বা 1100px দিন */
    margin: 20px auto !important;

    z-index: 99999;
    padding: 12px 30px !important;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 0 30px rgb(159, 67, 245);
    transition: all .6s ease;
}


.my-custom-navbar:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.875);
}

/* লোগো সাইজিং */
.logo-one { height: 40px; }
.logo-two { height: 28px; }

/* মেইন ন্যাভ লিংক ডিজাইন */
.my-custom-navbar .nav-link.custom-nav-item {
    color: #F5EFFF !important;
    font-size: 14px;
    position: relative;
    padding-bottom: 8px !important; 
    transition: all 0.3s ease;
}

.my-custom-navbar .nav-link.custom-nav-item:hover {
    color: #fdc77f !important; 
    transform: translateY(-2px); 
}

/* HTML-এর ভেতরের পুরনো চামচ আইকন হাইড */
.spoon-icon {
    display: none !important; 
}

/* গোল্ডেন চামচ SVG pseudo-element */
.my-custom-navbar .nav-link.custom-nav-item::after {
    content: "";
    position: absolute;
    bottom: -6px; 
    left: 50%;
    width: 16px;  
    height: 16px; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdc77f' viewBox='0 0 16 16'%3E%3Cpath d='M13 1c-.777 0-1.408.62-1.935 1.233-.503.585-.929 1.242-1.282 1.833L4.312 9.474a3 3 0 0 0-.814 1.48L3.02 13.08a1 1 0 0 0 1.18 1.18l2.125-.477a3 3 0 0 0 1.48-.814l5.408-5.47c.592-.354 1.248-.78 1.833-1.282C14.659 5.673 15.25 4.977 15.25 4c0-1.657-1.343-3-3-3M4.693 11.292a2 2 0 0 1 .542-.987l5.41-5.47-.41-.412-5.41 5.47a2 2 0 0 1-.987.542l-1.144.257z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%) scale(0) rotate(45deg);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); 
}

.my-custom-navbar .nav-link.custom-nav-item:hover::after {
    transform: translateX(-50%) scale(1) rotate(45deg); 
    opacity: 1;
}

/* ডাউনলোড বাটন ইফেক্ট */
.download-nav-btn {
    transition: all 0.3s ease;
}
.download-nav-btn:hover {
    background-color: #e0a800 !important;
    transform: translateY(-2px);
}






/* ==========================================================================
   🚀 3. HERO SECTION & BUTTONS
   ========================================================================== */
.hero-section {
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}

.hero{
    margin-top: -100px;
}

.Hero-headline {
    border-radius: 20px;
    background-color: rgba(186, 136, 233, 0.2);
    border: 1px solid rgb(159, 67, 245);
}

.text-two {
    color: rgb(99, 6, 185); 
}

.hero-main-img {
    max-height: 480px;
    object-fit: contain;
    width: auto;
}

.btn-hero-1 {
    border-radius: 20px;
    padding: 12px 25px;
    color: white;
    background: linear-gradient(90deg, #6200ea, #c96bff, #6200ea);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease; 
}

.btn-hero-1:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgb(159, 67, 245);
}

.btn-hero-1::after, .btn-hero-1::before {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.btn-hero-1::after { left: -50%; animation: leftShimmer 3s infinite; }
.btn-hero-1::before { right: -50%; animation: rightShimmer 3s infinite; }

@keyframes leftShimmer { from { left: -50%; } to { left: 50%; } }
@keyframes rightShimmer { from { right: -50%; } to { right: 50%; } }

.btn-hero-2 {
    background: #fbf2ff;
    border-radius: 20px;
    padding: 12px 25px;
    box-shadow: 0px 0px 6px rgba(0,0,0, 0.2);
    transition: 0.3s ease;
}
.btn-hero-2:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transform: scale(1.05);
}
.btn-hero-2 a { color: rgb(99, 6, 185); }


/* ==========================================================================
   📊 4. STATS & GRID SECTIONS
   ========================================================================== */
.feature-strip{
   
    max-width:1100px;
    margin: auto;
    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.feature-item{

    display:flex;
    align-items:center;

    padding:28px 35px;

    transition:.35s;

}

.feature-item:not(:last-child){

    border-bottom:1px solid #eee;

}

.feature-item:hover{

    background:#faf8ff;

}

.feature-number{

    font-size:42px;
    font-weight:900;

    color:#e4d7f4;

    width:90px;

}

.feature-content{

    flex:1;

}

.feature-content h5{

    margin-bottom:6px;

    font-weight:700;

}

.feature-content p{

    margin:0;

    color:#777;

}

.feature-icon{

    font-size:32px;

    color:#5D2B8A;

}
/* ==========================================================================
   ✨ 5. WORK & SERVICES
   ========================================================================== */
.work-headline {
    background-color: rgba(186, 136, 233, 0.308);
    border-radius: 20px;
    color: rgb(99, 6, 185);
}

.work-h1 span, .text-purple, .text-purple-brand {
    color: rgb(99, 6, 185) !important;
}

.service-headline {
    background-color: rgba(186, 136, 233, 0.308);
    border-radius: 20px;
    color: rgb(99, 6, 185);
}




/* ==========================================================================
   ✨ 5. Vendor Rate
   ========================================================================== */


.vendor-dashboard-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.vendor-container {
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.vendor-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 15px;
}

.vendor-header h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.vendor-header p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 5px 0 0;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.vendor-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.vendor-table th {
    background-color: #f8fafc;
    color: #64748b;
    padding: 16px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #edf2f7;
}

.action-head{
    text-align: center;
}

.vendor-table td {
    padding: 16px;
    border-bottom: 1px solid #edf2f7;
    color: #475569;
    font-size: 15px;
    vertical-align: middle;
}

.vendor-table tbody tr:hover {
    background-color: #f8fafc;
}

.vendor-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: rgba(94, 43, 138, 0.123);
    color:  #3A195E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.vendor-info .name {
    display: block;
    font-weight: 600;
    color: #1e293b;
}

.vendor-info .id {
    display: block;
    font-size: 12px;
    color: #94a3b8;
}

.bill-amount {
    font-weight: 600;
    color: #1e293b;
}

.badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-left: 40px; 
    background: rgba(180, 98, 247, 0.116);
    color: var(--foodily-primaryDark)
}





.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
   
}

.btn-view {
    background: #f1f5f9;
    color: #334155;
}

.btn-view:hover {
    background: #e2e8f0;
}

.btn-sub {
    background: var(--foodily-main);
    color: #fff;
    margin-left: 70px;
   
}

.btn .btn-sub a{
text-decoration: none;
list-style: none;
color: white;
}

.btn-sub:hover {
    background: var(--foodily-primaryDark);
    color: #fff;
}

.btn-renew {
    background: #0284c7;
    color: #fff;
}

.btn-renew:hover {
    background: #0369a1;
}

/* Responsive */

@media(max-width:412px){

    .vendor-container{
        padding:20px;
    }

    .vendor-table{
        min-width:850px;
    }

}









/* ==========================================================================
   📱 6. DOWNLOAD APP MODULE & FOOTER
   ========================================================================== */
.purple-box {
    background-color: rgb(99, 6, 185);
    border-radius: 35px; 
    position: relative; 
}

.download-headline {
    background-color: rgba(186, 136, 233, 0.637);
    border-radius: 20px;
}

.download-dynamic-img {
    position: absolute;
    height: 500px;
    right: -50px;
    top: -50px;
    object-fit: contain;
    z-index: 999;
}


/* ==========================================================================
   📱7. Footer
   ========================================================================== */

#Footer-Section a:hover {
    color: #ffc107 !important; 
    transition: 0.2s ease-in-out;
}



/* ============= Mobile Size Responsive 
(Pixel 7 = 412px) ================== */


/* ------ nav ------ */

@media (max-width: 412px) {

    .my-custom-navbar{
   
    width: 100%;
    max-width: 370px;

    margin: 0 auto !important;
    padding: 12px 18px !important;
}

    .my-custom-navbar .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .my-custom-navbar .navbar-brand{
        margin:0;
    }

    .my-custom-navbar .nav-btn-container{
        margin-left:auto;
    }

    .navbar-collapse{
        width:100%;
        margin-top:15px;
        background:var(--foodily-primaryDark);
        border-radius:15px;
        padding:15px;
    }

    .navbar-nav{
        align-items:center;
    }

    .navbar-nav .nav-link{
        padding:12px 0 !important;
    }

    .hero{
        margin-top: 80px;
    }

}



/* ------ hero ------ */

@media (max-width: 412px) {

    .hero img{
        height: 500px;
        margin-top: -100px;
    }


    .hero-text .text-three{
        padding: 0 70px ;
    }

    .hero .text-p{
       padding: 0 10px;
      }

      .hero .btn-hero-1, 
      .hero .btn-hero-2{
        margin-top: 20px;
      }

}

/* ------ Feature ------ */

@media (max-width: 412px) {
  
  /* ১. মেইন স্ট্রিপের উইডথ এবং ওভারফ্লো ঠিক করা */
  .feature-strip {
    width: 90% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
    box-sizing: border-box !important;
  }

  /* ২. প্রতিটি কার্ড বা আইটেমের সাইজ ছোট ও ফিট করা */
  .feature-item {
    width: 100% !important; /* ফিক্সড কোনো width (যেমন: 400px বা 500px) থাকলে সেটা ভেঙে ১০০% করবে */
    max-width: 100% !important;
    padding: 12px 15px !important; /* ভেতরের জায়গা একটু কমানো হলো */
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* ৩. কার্ডের ভেতরের টেক্সট ও ফন্ট সাইজ সামঞ্জস্য করা */
  .feature-content h5 {
    margin-left: -20px;
    font-size: 1rem !important; /* হেডিং এর সাইজ কিছুটা ছোট করা হলো */
    margin-bottom: 3px !important;
  }

  .feature-content p {
    margin-left: -20px;
    font-size: 0.85rem !important; /* প্যারাগ্রাফের সাইজ ছোট করা হলো */
    line-height: 1.3 !important;
  }

  /* ৪. নাম্বার এবং আইকনের সাইজ মোবাইলের উপযোগী করা */
  .feature-number {
    font-size: 1.5rem !important; /* যেমন: 01, 02 লেখাগুলো */
  }

  .feature-icon {
    font-size: 1.2rem !important; /* ডানপাশের আইকন */
  }
}


/* ------ Services ------ */
@media (max-width: 412px) {
    
    /* ১. পুরো সেকশনের অতিরিক্ত মার্জিন ও ওভারফ্লো ফিক্স */
    #Services {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
        overflow: hidden !important; /* কোনো এলিমেন্টকে ডানে যেতে দেবে না */
    }

    /* ২. বুটস্ট্র্যাপ রো (Row)-এর গ্যাপ পিক্সেল ৭ এর জন্য কমানো */
    #Services .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0rem !important; /* ডানে-বামে এক্সট্রা স্পেস জিরো করা হলো */
    }

    /* ৩. ইমেজের সাইজ ও নেগেティブ মার্জিন ফিক্স */
    #Services img {
        height: 480px !important; /* পিক্সেল ৭ স্ক্রিনে সুন্দর দেখানোর জন্য */
        margin: -50px 0 !important;   /* নেগেティブ মার্জিন পুরোপুরি রিমুভ */
     
        object-fit: contain !important;
    }
   

    /* ৪. হেডিং টেক্সট পিক্সেল ৭-এর স্ক্রিন সাইজে নিয়ে আসা */
    #Services .service-txt h2 {
        font-size: 1.4rem !important; /* লেখা আর ডানপাশে স্ক্রিনের বাইরে যাবে না */
        line-height: 1.3 !important;
        letter-spacing: -0.5px;
    }

    /* ৫. প্রতিটি ফিচারের ভেতরের লেখা ও আইকন এডজাস্টমেন্ট */
    #Services .service-points {
        margin-bottom: 15px !important; /* পয়েন্টগুলোর মাঝের গ্যাপ কিছুটা কমানো */
    }

    #Services .service-points i {
        font-size: 1.1rem !important; /* আইকন সাইজ পারফেক্ট করা */
        margin-right: 10px !important;
    }

    #Services .service-points p {
        font-size: 0.95rem !important; /* টাইটেল ফন্ট সাইজ */
        margin-bottom: 2px !important;
    }
    
    #Services .service-points span {
        font-size: 0.82rem !important; /* ভেতরের বড় বিবরণী টেক্সট */
        display: block !important;     /* লেখাগুলোকে নিচে নামিয়ে স্ক্রিনে ফিট করাবে */
        white-space: normal !important; /* টেক্সট র‍্যাপ নিশ্চিত করবে */
        color: #6c757d !important;
    }
}






/* ------ Download ------ */

@media (max-width: 412px){

    .download {
        padding: 0px 30px;
    }

    .download .purple-box{
        padding: 50px 0;
    }

.download img{
   display: none; 
} 

.download h2{
    margin-top: 10px;
    font-size: 22px;
}

.download p{
    padding: 0 28px;
}

.download .QR-code{
    display: none !important;
}

.download-btn{
    margin-top: 30px;
}
}



/* ------ Contact & Footer ------ */


@media (max-width: 412px){

.footer span{
    font-size: 12px;
}


}





/* ============= Mobile Size Responsive 

(iPhone 14 / 15 / 16 Pro Max = 430px) ================== */
/* ------ nav ------ */

@media (max-width: 430px) {

    .my-custom-navbar{
   
    width: 100%;
    max-width: 370px;

    margin: 0 auto !important;
    padding: 12px 18px !important;
}

    .my-custom-navbar .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .my-custom-navbar .navbar-brand{
        margin:0;
    }

    .my-custom-navbar .nav-btn-container{
        margin-left:auto;
    }

    .navbar-collapse{
        width:100%;
        margin-top:15px;
        background:var(--foodily-primaryDark);
        border-radius:15px;
        padding:15px;
    }

    .navbar-nav{
        align-items:center;
    }

    .navbar-nav .nav-link{
        padding:12px 0 !important;
    }

    .hero{
        margin-top: 80px;
    }

}



/* ------ hero ------ */

@media (max-width: 430px) {

    .hero img{
        height: 500px;
        margin-top: -100px;
    }


    .hero-text .text-three{
        padding: 0 70px ;
    }

    .hero .text-p{
       padding: 0 10px;
      }

      .hero .btn-hero-1, 
      .hero .btn-hero-2{
        margin-top: 20px;
      }

}

/* ------ Feature ------ */

@media (max-width: 430px) {
  
  /* ১. মেইন স্ট্রিপের উইডথ এবং ওভারফ্লো ঠিক করা */
  .feature-strip {
    width: 90% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
    box-sizing: border-box !important;
  }

  /* ২. প্রতিটি কার্ড বা আইটেমের সাইজ ছোট ও ফিট করা */
  .feature-item {
    width: 100% !important; /* ফিক্সড কোনো width (যেমন: 400px বা 500px) থাকলে সেটা ভেঙে ১০০% করবে */
    max-width: 100% !important;
    padding: 12px 15px !important; /* ভেতরের জায়গা একটু কমানো হলো */
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* ৩. কার্ডের ভেতরের টেক্সট ও ফন্ট সাইজ সামঞ্জস্য করা */
  .feature-content h5 {
    margin-left: -20px;
    font-size: 1rem !important; /* হেডিং এর সাইজ কিছুটা ছোট করা হলো */
    margin-bottom: 3px !important;
  }

  .feature-content p {
    margin-left: -20px;
    font-size: 0.85rem !important; /* প্যারাগ্রাফের সাইজ ছোট করা হলো */
    line-height: 1.3 !important;
  }

  /* ৪. নাম্বার এবং আইকনের সাইজ মোবাইলের উপযোগী করা */
  .feature-number {
    font-size: 1.5rem !important; /* যেমন: 01, 02 লেখাগুলো */
  }

  .feature-icon {
    font-size: 1.2rem !important; /* ডানপাশের আইকন */
  }
}


/* ------ Services ------ */
@media (max-width: 430px) {
    
    /* ১. পুরো সেকশনের অতিরিক্ত মার্জিন ও ওভারফ্লো ফিক্স */
    #Services {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
        overflow: hidden !important; /* কোনো এলিমেন্টকে ডানে যেতে দেবে না */
    }

    /* ২. বুটস্ট্র্যাপ রো (Row)-এর গ্যাপ পিক্সেল ৭ এর জন্য কমানো */
    #Services .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0rem !important; /* ডানে-বামে এক্সট্রা স্পেস জিরো করা হলো */
    }

    /* ৩. ইমেজের সাইজ ও নেগেティブ মার্জিন ফিক্স */
    #Services img {
        height: 480px !important; /* পিক্সেল ৭ স্ক্রিনে সুন্দর দেখানোর জন্য */
        margin: -50px 0 !important;   /* নেগেティブ মার্জিন পুরোপুরি রিমুভ */
     
        object-fit: contain !important;
    }
   

    /* ৪. হেডিং টেক্সট পিক্সেল ৭-এর স্ক্রিন সাইজে নিয়ে আসা */
    #Services .service-txt h2 {
        font-size: 1.4rem !important; /* লেখা আর ডানপাশে স্ক্রিনের বাইরে যাবে না */
        line-height: 1.3 !important;
        letter-spacing: -0.5px;
    }

    /* ৫. প্রতিটি ফিচারের ভেতরের লেখা ও আইকন এডজাস্টমেন্ট */
    #Services .service-points {
        margin-bottom: 15px !important; /* পয়েন্টগুলোর মাঝের গ্যাপ কিছুটা কমানো */
    }

    #Services .service-points i {
        font-size: 1.1rem !important; /* আইকন সাইজ পারফেক্ট করা */
        margin-right: 10px !important;
    }

    #Services .service-points p {
        font-size: 0.95rem !important; /* টাইটেল ফন্ট সাইজ */
        margin-bottom: 2px !important;
    }
    
    #Services .service-points span {
        font-size: 0.82rem !important; /* ভেতরের বড় বিবরণী টেক্সট */
        display: block !important;     /* লেখাগুলোকে নিচে নামিয়ে স্ক্রিনে ফিট করাবে */
        white-space: normal !important; /* টেক্সট র‍্যাপ নিশ্চিত করবে */
        color: #6c757d !important;
    }
}






/* ------ Download ------ */

@media (max-width: 430px){

    .download {
        padding: 0px 30px;
    }

    .download .purple-box{
        padding: 50px 0;
    }

.download img{
   display: none; 
} 

.download h2{
    margin-top: 10px;
    font-size: 22px;
}

.download p{
    padding: 0 28px;
}

.download .QR-code{
    display: none !important;
}

.download-btn{
    margin-top: 30px;
}
}




/* ------ Contact & Footer ------ */


@media (max-width: 430px){

.footer span{
    font-size: 12px;
}


}












/* ============= Mobile Size Responsive 

(Asus ROG Phone 8 = 448px) ================== */
/* ------ nav ------ */

@media (max-width: 448px) {

    .my-custom-navbar{
   
    width: 100%;
    max-width: 370px;

    margin: 0 auto !important;
    padding: 12px 18px !important;
}

    .my-custom-navbar .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .my-custom-navbar .navbar-brand{
        margin:0;
    }

    .my-custom-navbar .nav-btn-container{
        margin-left:auto;
    }

    .navbar-collapse{
        width:100%;
        margin-top:15px;
        background:var(--foodily-primaryDark);
        border-radius:15px;
        padding:15px;
    }

    .navbar-nav{
        align-items:center;
    }

    .navbar-nav .nav-link{
        padding:12px 0 !important;
    }

    .hero{
        margin-top: 80px;
    }

}



/* ------ hero ------ */

@media (max-width: 448px) {

    .hero img{
        height: 500px;
        margin-top: -100px;
    }


    .hero-text .text-three{
        padding: 0 70px ;
    }

    .hero .text-p{
       padding: 0 10px;
      }

      .hero .btn-hero-1, 
      .hero .btn-hero-2{
        margin-top: 20px;
      }

}

/* ------ Feature ------ */

@media (max-width: 448px) {
  
  /* ১. মেইন স্ট্রিপের উইডথ এবং ওভারফ্লো ঠিক করা */
  .feature-strip {
    width: 90% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
    box-sizing: border-box !important;
  }

  /* ২. প্রতিটি কার্ড বা আইটেমের সাইজ ছোট ও ফিট করা */
  .feature-item {
    width: 100% !important; /* ফিক্সড কোনো width (যেমন: 400px বা 500px) থাকলে সেটা ভেঙে ১০০% করবে */
    max-width: 100% !important;
    padding: 12px 15px !important; /* ভেতরের জায়গা একটু কমানো হলো */
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* ৩. কার্ডের ভেতরের টেক্সট ও ফন্ট সাইজ সামঞ্জস্য করা */
  .feature-content h5 {
    margin-left: -20px;
    font-size: 1rem !important; /* হেডিং এর সাইজ কিছুটা ছোট করা হলো */
    margin-bottom: 3px !important;
  }

  .feature-content p {
    margin-left: -20px;
    font-size: 0.85rem !important; /* প্যারাগ্রাফের সাইজ ছোট করা হলো */
    line-height: 1.3 !important;
  }

  /* ৪. নাম্বার এবং আইকনের সাইজ মোবাইলের উপযোগী করা */
  .feature-number {
    font-size: 1.5rem !important; /* যেমন: 01, 02 লেখাগুলো */
  }

  .feature-icon {
    font-size: 1.2rem !important; /* ডানপাশের আইকন */
  }
}


/* ------ Services ------ */
@media (max-width: 448px) {
    
    /* ১. পুরো সেকশনের অতিরিক্ত মার্জিন ও ওভারফ্লো ফিক্স */
    #Services {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
        overflow: hidden !important; /* কোনো এলিমেন্টকে ডানে যেতে দেবে না */
    }

    /* ২. বুটস্ট্র্যাপ রো (Row)-এর গ্যাপ পিক্সেল ৭ এর জন্য কমানো */
    #Services .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0rem !important; /* ডানে-বামে এক্সট্রা স্পেস জিরো করা হলো */
    }

    /* ৩. ইমেজের সাইজ ও নেগেティブ মার্জিন ফিক্স */
    #Services img {
        height: 480px !important; /* পিক্সেল ৭ স্ক্রিনে সুন্দর দেখানোর জন্য */
        margin: -50px 0 !important;   /* নেগেティブ মার্জিন পুরোপুরি রিমুভ */
     
        object-fit: contain !important;
    }
   

    /* ৪. হেডিং টেক্সট পিক্সেল ৭-এর স্ক্রিন সাইজে নিয়ে আসা */
    #Services .service-txt h2 {
        font-size: 1.4rem !important; /* লেখা আর ডানপাশে স্ক্রিনের বাইরে যাবে না */
        line-height: 1.3 !important;
        letter-spacing: -0.5px;
    }

    /* ৫. প্রতিটি ফিচারের ভেতরের লেখা ও আইকন এডজাস্টমেন্ট */
    #Services .service-points {
        margin-bottom: 15px !important; /* পয়েন্টগুলোর মাঝের গ্যাপ কিছুটা কমানো */
    }

    #Services .service-points i {
        font-size: 1.1rem !important; /* আইকন সাইজ পারফেক্ট করা */
        margin-right: 10px !important;
    }

    #Services .service-points p {
        font-size: 0.95rem !important; /* টাইটেল ফন্ট সাইজ */
        margin-bottom: 2px !important;
    }
    
    #Services .service-points span {
        font-size: 0.82rem !important; /* ভেতরের বড় বিবরণী টেক্সট */
        display: block !important;     /* লেখাগুলোকে নিচে নামিয়ে স্ক্রিনে ফিট করাবে */
        white-space: normal !important; /* টেক্সট র‍্যাপ নিশ্চিত করবে */
        color: #6c757d !important;
    }
}



/* ------ Download ------ */

@media (max-width: 448px){

    .download {
        padding: 0px 30px;
    }

    .download .purple-box{
        padding: 50px 0;
    }

.download img{
   display: none; 
} 

.download h2{
    margin-top: 10px;
    font-size: 22px;
}

.download p{
    padding: 0 28px;
}

.download .QR-code{
    display: none !important;
}

.download-btn{
    margin-top: 30px;
}
}




/* ------ Contact & Footer ------ */


@media (max-width: 448px){

.footer span{
    font-size: 12px;
}


}







/* ============= Mobile Size Responsive 

(iPhone SE (1st Gen) / iPhone 5 = 320px) ================== */
/* ------ nav ------ */

@media (max-width: 320px) {

    .my-custom-navbar{
   
    width: 100%;
    max-width: 300px;

    margin: 0 auto !important;
    padding: 12px 18px !important;
}

    .my-custom-navbar .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .my-custom-navbar .navbar-brand .logo-one{
        height: 30px;
    }

    .my-custom-navbar .navbar-brand .logo-two{
        height: 20px;
    }

    .my-custom-navbar .nav-btn-container{
        margin-left:auto;
    }

    .navbar-collapse{
        width:100%;
        margin-top:15px;
        background:var(--foodily-primaryDark);
        border-radius:15px;
        padding:15px;
    }

    .navbar-nav{
        align-items:center;
    }

    .navbar-nav .nav-link{
        padding:12px 0 !important;
    }

    .hero{
        margin-top: 80px;
    }

   
}



/* ------ hero ------ */

@media (max-width: 320px) {

    .hero img{
        height: 500px;
        margin-top: -100px;
    }


    .hero-text .text-one{
        font-size: 24px !important;
    }

    .hero-text .text-two{
        font-size: 24px !important;
        
    }

    .hero-text .text-three{
        
        padding: 0 10px;
        font-size: 24px !important;
    }

    .hero .text-p{
        font-size: 16px !important;
       /* padding: 0 10px; */
      }

      .hero .btn-hero-1, 
      .hero .btn-hero-2{
        margin-top: 20px;
      }

}

/* ------ Feature ------ */

@media (max-width: 320px) {
  
  /* ১. মেইন স্ট্রিপের উইডথ এবং ওভারফ্লো ঠিক করা */
  .feature-strip {
    width: 90% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
    box-sizing: border-box !important;
  }

  /* ২. প্রতিটি কার্ড বা আইটেমের সাইজ ছোট ও ফিট করা */
  .feature-item {
    width: 100% !important; /* ফিক্সড কোনো width (যেমন: 400px বা 500px) থাকলে সেটা ভেঙে ১০০% করবে */
    max-width: 100% !important;
    padding: 12px 15px !important; /* ভেতরের জায়গা একটু কমানো হলো */
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* ৩. কার্ডের ভেতরের টেক্সট ও ফন্ট সাইজ সামঞ্জস্য করা */
  .feature-content h5 {
    margin-left: -20px;
    font-size: 1rem !important; /* হেডিং এর সাইজ কিছুটা ছোট করা হলো */
    margin-bottom: 3px !important;
  }

  .feature-content p {
    margin-left: -20px;
    font-size: 0.85rem !important; /* প্যারাগ্রাফের সাইজ ছোট করা হলো */
    line-height: 1.3 !important;
  }

  /* ৪. নাম্বার এবং আইকনের সাইজ মোবাইলের উপযোগী করা */
  .feature-number {
    font-size: 1.5rem !important; /* যেমন: 01, 02 লেখাগুলো */
  }

  .feature-icon {
    font-size: 1.2rem !important; /* ডানপাশের আইকন */
  }
}


/* ------ Services ------ */
@media (max-width: 320px) {
    
    /* ১. পুরো সেকশনের অতিরিক্ত মার্জিন ও ওভারফ্লো ফিক্স */
    #Services {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
        overflow: hidden !important; /* কোনো এলিমেন্টকে ডানে যেতে দেবে না */
    }

    /* ২. বুটস্ট্র্যাপ রো (Row)-এর গ্যাপ পিক্সেল ৭ এর জন্য কমানো */
    #Services .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0rem !important; /* ডানে-বামে এক্সট্রা স্পেস জিরো করা হলো */
    }

    /* ৩. ইমেজের সাইজ ও নেগেティブ মার্জিন ফিক্স */
    #Services img {
        height: 480px !important; /* পিক্সেল ৭ স্ক্রিনে সুন্দর দেখানোর জন্য */
        margin: -50px 0 !important;   /* নেগেティブ মার্জিন পুরোপুরি রিমুভ */
     
        object-fit: contain !important;
    }
   

    /* ৪. হেডিং টেক্সট পিক্সেল ৭-এর স্ক্রিন সাইজে নিয়ে আসা */
    #Services .service-txt h2 {
        font-size: 1.4rem !important; /* লেখা আর ডানপাশে স্ক্রিনের বাইরে যাবে না */
        line-height: 1.3 !important;
        letter-spacing: -0.5px;
    }

    /* ৫. প্রতিটি ফিচারের ভেতরের লেখা ও আইকন এডজাস্টমেন্ট */
    #Services .service-points {
        margin-bottom: 15px !important; /* পয়েন্টগুলোর মাঝের গ্যাপ কিছুটা কমানো */
    }

    #Services .service-points i {
        font-size: 1.1rem !important; /* আইকন সাইজ পারফেক্ট করা */
        margin-right: 10px !important;
    }

    #Services .service-points p {
        font-size: 0.95rem !important; /* টাইটেল ফন্ট সাইজ */
        margin-bottom: 2px !important;
    }
    
    #Services .service-points span {
        font-size: 0.82rem !important; /* ভেতরের বড় বিবরণী টেক্সট */
        display: block !important;     /* লেখাগুলোকে নিচে নামিয়ে স্ক্রিনে ফিট করাবে */
        white-space: normal !important; /* টেক্সট র‍্যাপ নিশ্চিত করবে */
        color: #6c757d !important;
    }
}



/* ------ Download ------ */

@media (max-width: 320px)
{

    .download {
        padding: 0px 30px;
    }

    .download .purple-box{
        padding: 50px 0;
    }

.download img{
   display: none; 
} 

.download h2{
    margin-top: 10px;
    font-size: 18px !important;
}

.download p{
    font-size: 14px !important;
    padding: 0 28px;
}

.download .QR-code{
    display: none !important;
}

.download-btn{
    margin-top: 30px;
}
}




/* ------ Contact & Footer ------ */


@media (max-width: 320px){

.footer span{
    font-size: 12px;
}


}







/* ============= Mobile Size Responsive 

(iPhone 12 / 13 / 14 / 15 (Regular & Pro) = 390px) ================== */
/* ------ nav ------ */

@media (max-width: 390px) {

    .my-custom-navbar{
   
    width: 100%;
    max-width: 300px;

    margin: 0 auto !important;
    padding: 12px 18px !important;
}

    .my-custom-navbar .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .my-custom-navbar .navbar-brand .logo-one{
        height: 30px;
    }

    .my-custom-navbar .navbar-brand .logo-two{
        height: 20px;
    }

    .my-custom-navbar .nav-btn-container{
        margin-left:auto;
    }

    .navbar-collapse{
        width:100%;
        margin-top:15px;
        background:var(--foodily-primaryDark);
        border-radius:15px;
        padding:15px;
    }

    .navbar-nav{
        align-items:center;
    }

    .navbar-nav .nav-link{
        padding:12px 0 !important;
    }

    .hero{
        margin-top: 80px;
    }

   
}



/* ------ hero ------ */

@media (max-width: 390px) {

    .hero img{
        height: 500px;
        margin-top: -100px;
    }


    .hero-text .text-one{
        font-size: 24px !important;
    }

    .hero-text .text-two{
        font-size: 24px !important;
        
    }

    .hero-text .text-three{
        
        padding: 0 10px;
        font-size: 24px !important;
    }

    .hero .text-p{
        font-size: 16px !important;
       /* padding: 0 10px; */
      }

      .hero .btn-hero-1, 
      .hero .btn-hero-2{
        margin-top: 20px;
      }

}

/* ------ Feature ------ */

@media (max-width: 390px) {
  
  /* ১. মেইন স্ট্রিপের উইডথ এবং ওভারফ্লো ঠিক করা */
  .feature-strip {
    width: 90% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
    box-sizing: border-box !important;
  }

  /* ২. প্রতিটি কার্ড বা আইটেমের সাইজ ছোট ও ফিট করা */
  .feature-item {
    width: 100% !important; /* ফিক্সড কোনো width (যেমন: 400px বা 500px) থাকলে সেটা ভেঙে ১০০% করবে */
    max-width: 100% !important;
    padding: 12px 15px !important; /* ভেতরের জায়গা একটু কমানো হলো */
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* ৩. কার্ডের ভেতরের টেক্সট ও ফন্ট সাইজ সামঞ্জস্য করা */
  .feature-content h5 {
    margin-left: -20px;
    font-size: 1rem !important; /* হেডিং এর সাইজ কিছুটা ছোট করা হলো */
    margin-bottom: 3px !important;
  }

  .feature-content p {
    margin-left: -20px;
    font-size: 0.85rem !important; /* প্যারাগ্রাফের সাইজ ছোট করা হলো */
    line-height: 1.3 !important;
  }

  /* ৪. নাম্বার এবং আইকনের সাইজ মোবাইলের উপযোগী করা */
  .feature-number {
    font-size: 1.5rem !important; /* যেমন: 01, 02 লেখাগুলো */
  }

  .feature-icon {
    font-size: 1.2rem !important; /* ডানপাশের আইকন */
  }
}


/* ------ Services ------ */
@media (max-width: 390px) {
    
    /* ১. পুরো সেকশনের অতিরিক্ত মার্জিন ও ওভারফ্লো ফিক্স */
    #Services {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
        overflow: hidden !important; /* কোনো এলিমেন্টকে ডানে যেতে দেবে না */
    }

    /* ২. বুটস্ট্র্যাপ রো (Row)-এর গ্যাপ পিক্সেল ৭ এর জন্য কমানো */
    #Services .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0rem !important; /* ডানে-বামে এক্সট্রা স্পেস জিরো করা হলো */
    }

    /* ৩. ইমেজের সাইজ ও নেগেティブ মার্জিন ফিক্স */
    #Services img {
        height: 480px !important; /* পিক্সেল ৭ স্ক্রিনে সুন্দর দেখানোর জন্য */
        margin: -50px 0 !important;   /* নেগেティブ মার্জিন পুরোপুরি রিমুভ */
     
        object-fit: contain !important;
    }
   

    /* ৪. হেডিং টেক্সট পিক্সেল ৭-এর স্ক্রিন সাইজে নিয়ে আসা */
    #Services .service-txt h2 {
        font-size: 1.4rem !important; /* লেখা আর ডানপাশে স্ক্রিনের বাইরে যাবে না */
        line-height: 1.3 !important;
        letter-spacing: -0.5px;
    }

    /* ৫. প্রতিটি ফিচারের ভেতরের লেখা ও আইকন এডজাস্টমেন্ট */
    #Services .service-points {
        margin-bottom: 15px !important; /* পয়েন্টগুলোর মাঝের গ্যাপ কিছুটা কমানো */
    }

    #Services .service-points i {
        font-size: 1.1rem !important; /* আইকন সাইজ পারফেক্ট করা */
        margin-right: 10px !important;
    }

    #Services .service-points p {
        font-size: 0.95rem !important; /* টাইটেল ফন্ট সাইজ */
        margin-bottom: 2px !important;
    }
    
    #Services .service-points span {
        font-size: 0.82rem !important; /* ভেতরের বড় বিবরণী টেক্সট */
        display: block !important;     /* লেখাগুলোকে নিচে নামিয়ে স্ক্রিনে ফিট করাবে */
        white-space: normal !important; /* টেক্সট র‍্যাপ নিশ্চিত করবে */
        color: #6c757d !important;
    }
}



/* ------ Download ------ */

@media (max-width: 390px)
{

    .download {
        padding: 0px 30px;
    }

    .download .purple-box{
        padding: 50px 0;
    }

.download img{
   display: none; 
} 

.download h2{
    margin-top: 10px;
    font-size: 18px !important;
}

.download p{
    font-size: 14px !important;
    padding: 0 28px;
}

.download .QR-code{
    display: none !important;
}

.download-btn{
    margin-top: 30px;
}
}




/* ------ Contact & Footer ------ */


@media (max-width: 390px){

.footer span{
    font-size: 12px;
}


}