/* --- Global Variables & Reset --- */
:root {
    --foodily-vendorPrimary: #ff4757; /* ফুডিলি ব্র্যান্ড রেড কালার */
    --light: #f8f9fa;                 /* ব্যাকগ্রাউন্ড লাইট কালার */
    --border: #e2e8f0;                /* বর্ডার কালার */
    --text-muted: #718096;            /* মিউটেড টেক্সট কালার */

     /* // Rider Unique colors */
    --foodily-vendorAccent : #10B981; 
    --foodily-vendorDark: #111827;
    --foodily-background : #F5F7FA;
    --foodily-black : #000000DD;
    --foodily-grey : #727272dd;
    --foodily-white70 : #FFFFFFB3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
   font-family: 'Hind Siliguri', sans-serif !important;
}

/* --- Layout Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--foodily-vendorAccent);
    margin-bottom: 20px;
    font-weight: 700;
}


/* --- Navbar Design --- */
.my-custom-navbar {
    position: sticky;
    top: 20px;
    width: 85%;
    max-width: 1200px;
    margin: 20px auto !important;
    background: #000 !important;
    z-index: 99999;
    padding: 12px 30px !important;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.15);
    transition: all .6s ease;
}

.my-custom-navbar:hover {
    box-shadow: 0 0 30px #ffffff;
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.6);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* লোগো সাইজিং */
.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 {
    background-color: var(--foodily-accent) !important;
    color: var(--foodily-vendorDark) !important;
    transition: all 0.3s ease;
}
.download-nav-btn:hover {
    background-color: #e0a800 !important;
    transform: translateY(-2px);
}




/* রেসপনসিভ করার জন্য মিডিয়া কুয়েরিতে ছোট পরিবর্তন */
@media (max-width: 768px) {
    .my-custom-navbar {
        width: 95% !important;
        max-width: 420px !important;
        margin: 18px auto !important;
        padding: 14px 16px !important;
        border-radius: 22px !important;
    }

    .navbar .container,
    .navbar .container-fluid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .navbar-brand {
        width: 100% !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 12px;
    }

    .navbar-toggler {
        align-self: flex-end !important;
        border: 1px solid rgba(255,255,255,0.55) !important;
    }

    .navbar-collapse {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .navbar-nav {
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar-nav .nav-link {
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 10px 12px !important;
        font-size: 16px !important;
        color: #f3f4f6 !important;
    }

    .navbar-nav .nav-link > div {
        width: 100%;
        justify-content: flex-start;
    }

    .navbar-nav .nav-link i {
        font-size: 20px !important;
        margin-right: 10px !important;
    }

    .nav-btn-container {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .download-nav-btn {
        width: 100% !important;
        max-width: 260px !important;
        padding: 10px 14px !important;
        border-radius: 999px !important;
    }
}

/* --- Rider Hero Section --- */
.rider-hero {
    padding: 60px 0;
    background-color: #fff;
}

.rider-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.rider-col-left {
    flex: 1;
    min-width: 320px;
}

.rider-col-right {
    flex: 1.3;
    min-width: 350px;
}

/* Form Styling */
.form-container {
    background: var(--light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.form-container h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.form-container p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--foodily-vendorAccent);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--foodily-vendorAccent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Right Column Info & Layout */
.right-info h1 {
    font-size: 36px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 15px;
}

.right-info .subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.image-steps-wrapper {
    display: flex;
    gap: 20px;
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.rider-image-box {
    flex: 1;
}

.rider-image-box img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.steps-box {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.steps-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--foodily-vendorAccent);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-number {
    background: var(--foodily-vendorAccent);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.step-item p {
    font-size: 14px;
    color: #444;
    line-height: 1.3;
}

/* --- Opportunity Section --- */
.opportunity-section {
    padding: 70px 0;
    background: #fafafa;
}

.opp-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.opp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-style {
    font-size: 40px;
    color: var(--foodily-vendorAccent);
    margin-bottom: 15px;
}

.opp-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.opp-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Requirement Section --- */
.requirement-section {
    padding: 70px 0;
    background: #fff;
}

.req-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--foodily-vendorAccent);
}

.req-box ul {
    list-style: none;
}

.req-box li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
}

.req-box li i {
    color: #28a745;
    font-size: 18px;
}

/* --- Brand Story Section --- */
.brand-story-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid var(--border);
}

.brand-story-content h1 {
    font-size: 28px;
    color: #222;
    margin-bottom: 15px;
}

.brand-story-content p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    color: #555;
}

/* --- Appreciate Section --- */
.appreciate-section {
    padding: 60px 0;
    background-color: var(--light);
    border-top: 1px solid var(--border);
}

.appreciate-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.appreciate-wrapper h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 15px;
}

.appreciate-wrapper p {
    font-size: 15px;
    color: #555;
}

/* --- Footer Section --- */
.footer-section {
    background: #1a202c;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-about p, .footer-contact p {
    color: #a0aec0;
    font-size: 14px;
}

.footer-contact p i {
    margin-right: 8px;
    color: var(--foodily-vendorAccent);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--foodily-vendorAccent);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 14px;
}





/* --- Responsive Layout (Mobile Friendly) --- */
@media (max-width: 390px) {
    .my-custom-navbar .nav-btn-container .btn{
        font-size: 10px !important;
        padding: 10px 15px !important;
    }

   /* মোবাইল রেসপন্সিভ ভিউ (768px বা তার ছোট স্ক্রিনের জন্য) */

    .rider-row {
        display: flex;
        flex-direction: column; /* এটি ফর্মকে উপরে এবং ইনফো বক্সকে নিচে নিয়ে আসবে */
    }

    .rider-col-left, 
    .rider-col-right {
        width: 100% !important; /* স্ক্রিনের পুরো জায়গা জুড়ে কলাম দুটি থাকবে */
        min-width: 0 !important;
    }

    .image-steps-wrapper {
        flex-wrap: wrap;
    }

    .navbar-nav {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .navbar-nav .nav-link {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        justify-content: center !important;
    }

    /* প্রয়োজন হলে নিচের ফর্ম কন্টেইনারের মার্জিন একটু ঠিক করে নিতে পারেন */
    .form-container {
        margin-bottom: 30px; /* ফর্ম এবং নিচের ইনফো বক্সের মাঝে গ্যাপ তৈরি করবে */
    }

    .brand-story-sectio .brand-story-content{
        padding: 0 20px !important;
    }

    .appreciate-section .appreciate-wrapper{
        padding: 0 20px;
    }

}







@media (max-width: 448px) {
    .navbar-brand {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* দুই লাইনে যাওয়া বন্ধ করবে */
    }

    /* প্রথম আইকন লোগোটির সাইজ ছোট করা */
    .logo-one {
        height: 30px !important; /* আপনার প্রয়োজন অনুযায়ী কম-বেশি করতে পারেন */
        width: auto;
    }

    /* ফুডিলি টেক্সট লোগোটির সাইজ ছোট করা */
    .logo-two {
        height: 20px !important; /* টেক্সট লোগোটি যেন আইকনের সাথে সামঞ্জস্যপূর্ণ হয় */
        width: auto;
    }

    .my-custom-navbar .nav-btn-container .btn{
        font-size: 10px !important;
        padding: 10px 15px !important;
    }

    /* ন্যাভবার মেইন কন্টেইনারকে ফ্লেক্স করা */
    .navbar .container, 
    .navbar .container-fluid {
        display: flex !important;
        flex-direction: row !important; /* কলাম থেকে রো-তে রূপান্তর করবে */
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        
    }

    /* ডাউনলোড বাটনের সাইজ ছোট স্ক্রিনের জন্য একটু এডজাস্ট করা */
    .navbar .btn-download, 
    .navbar .download-nav-btn {
       white-space: nowrap !important; /* লেখা বা আইকন যেন কোনোভাবেই ভেঙে নিচে না যায় */
    flex-shrink: 0 !important;
        padding: 2px 10px !important; /* বাটনের প্যাডিং কমিয়ে ছোট করা */
        font-size: 12px !important;   /* লেখার সাইজ ছোট করা যেন এক লাইনে ধরে */
        margin-top: 0 !important;      /* ওপরে বাড়তি মার্জিন থাকলে তা কেটে দেওয়া */
    }

   /* মোবাইল রেসপন্সিভ ভিউ (768px বা তার ছোট স্ক্রিনের জন্য) */

    .rider-row {
        display: flex;
        flex-direction: column; /* এটি ফর্মকে উপরে এবং ইনফো বক্সকে নিচে নিয়ে আসবে */
    }

    .rider-col-left, 
    .rider-col-right {
        width: 100% !important; /* স্ক্রিনের পুরো জায়গা জুড়ে কলাম দুটি থাকবে */
    }

    /* প্রয়োজন হলে নিচের ফর্ম কন্টেইনারের মার্জিন একটু ঠিক করে নিতে পারেন */
    .form-container {
        margin-bottom: 30px; /* ফর্ম এবং নিচের ইনফো বক্সের মাঝে গ্যাপ তৈরি করবে */
    }

    .brand-story-section .brand-story-content {
        padding: 0 50px !important;
    }

    .appreciate-section .appreciate-wrapper{
        padding: 0 50px !important;
    }
}


@media (max-width: 320px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden; /* ডানের এক্সট্রা স্ক্রল বা খালি জায়গা চিরতরে বন্ধ করবে */
    }
    .my-custom-navbar {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 12px !important;
        border-radius: 18px !important;
        background: #000 !important;
        box-shadow: none !important;
    }

    .navbar .container,
    .navbar .container-fluid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .navbar-brand {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .logo-one { height: 28px !important; }
    .logo-two { display: none !important; }

    .navbar-toggler {
        border: 1px solid rgba(255,255,255,0.55) !important;
        padding: 6px !important;
    }

    .navbar-collapse {
        width: 100% !important;
        margin-top: 4px !important;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-collapse.collapsing {
        display: block !important;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 6px 0 !important;
        background: rgba(255,255,255,0.02) !important;
        border-radius: 18px;
    }

    .navbar-nav .nav-link {
        margin: 0 !important;
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 10px 14px !important;
        font-size: 16px !important;
        color: #f3f4f6 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .navbar-nav .nav-link i {
        font-size: 18px !important;
        color: #f3f4f6 !important;
    }

    .nav-btn-container {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 6px !important;
    }

    .download-nav-btn {
        width: 100% !important;
        max-width: 240px !important;
        padding: 10px 14px !important;
        border-radius: 999px !important;
        font-size: 14px !important;
    }
}
