@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   Variables & General Layout
   ========================================= */
:root {
    --primary: #F39C12;
    --primary-dark: #D35400;
    --light: #FDFEFE;
    --dark: #2C3E50;
    --gray: #F2F4F4;
}

h1,
h2,
h3 {
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

/* ફોર્મ માટે અલગ ટાઈટલ સ્ટાઈલ */
.section-title-form {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.logo h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

/* હેડરમાં લોગો ઈમેજનું સેટિંગ */
.logo-img {
    height: 50px;
    /* તમે તમારા લોગો પ્રમાણે આ સાઈઝ વધારી કે ઘટાડી શકો છો (દા.ત. 60px કે 70px) */
    width: auto;
    /* width auto રાખવાથી લોગો ખેંચાશે નહીં */
    display: block;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px;
    transition: all 0.3s ease;
}

/* =========================================
   Dropdown Styles (Added)
   ========================================= */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    /* Change to var(--gray) if you want it to match the navbar */
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
}

/* Remove the left margin for dropdown items so they align nicely */
.nav-links .dropdown-content li {
    margin-left: 0;
}

/* Style the links inside the dropdown */
.nav-links .dropdown-content li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 500;
}

/* Add a background hover effect to the dropdown links */
.nav-links .dropdown-content li a:hover {
    background-color: #f9f9f9;
    color: var(--primary);
}

/* Show the dropdown menu on hover */
.nav-links .dropdown:hover .dropdown-content {
    display: block;
}

/* =========================================
   Hero Sections (Home & Inner Pages)
   ========================================= */
.hero {
    height: 90vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('imgs/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 10vh;
    padding-top: 50px;
}

.hero-subtitle {
    color: #FAD7A1;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Common Header for Inner Pages */
.page-header {
    background: var(--dark);
    color: white;
    padding: 140px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
}

/* Specific About Hero */
.about-hero {
    position: relative;
    background-color: var(--primary);
    padding: 150px 20px 100px;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.about-hero .hero-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.est-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

.about-hero strong {
    color: var(--primary);
}

/* =========================================
   About Us Alternating Story Sections (Horizontal Images)
   ========================================= */
.story-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.story-section {
    display: flex;
    align-items: center;
    /* આ કન્ટેન્ટને વચ્ચે (Vertically center) ગોઠવશે */
    gap: 50px;
    margin-bottom: 80px;
}

.story-section.reverse {
    flex-direction: row-reverse;
}

/* ઈમેજના ભાગને વધુ પહોળો (Horizontal) રાખવા માટે Flex બદલ્યો છે */
.story-img {
    flex: 1.2;
    /* ઈમેજને કન્ટેન્ટ કરતાં થોડી વધુ જગ્યા મળશે */
    width: 100%;
}

.story-img img {
    width: 100%;
    /* Horizontal લુક માટે ફિક્સ હાઈટ સેટ કરી છે */
    height: 350px;
    border-radius: 12px;
    /* બોર્ડર થોડી વધુ ગોળાકાર કરી છે */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    /* શેડો વધુ પ્રીમિયમ બનાવ્યો છે */
    object-fit: cover;
    /* આનાથી ફોટો ખેંચાશે નહીં, પણ વ્યવસ્થિત કપાશે */
    transition: transform 0.4s ease;
    /* હોવર ઈફેક્ટ માટે */
}

/* ઈમેજ પર માઉસ લઈ જતાં થોડો ઉંચકાય (Hover Effect) */
.story-img img:hover {
    transform: translateY(-8px);
}

.story-content,
.story-content-alt {
    flex: 1;
    /* લખાણ વાળા ભાગને બાકીની જગ્યા મળશે */
    width: 100%;
}

.story-content h2,
.story-content-alt h2,
.story-section h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 10px;
}

.story-content h2::after,
.story-content-alt h2::after,
.story-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.story-content p,
.story-content-alt p,
.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--light);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

/* લિસ્ટ પર હોવર ઈફેક્ટ */
.values-list li:hover {
    transform: translateX(5px);
    border-left: 4px solid var(--primary);
}

.values-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.stats-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: var(--dark);
    padding: 60px 5%;
    color: white;
    text-align: center;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    margin: 10px 0;
}

.stat-box h3 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* =========================================
   Products Grid (Home)
   ========================================= */
.product-grid {
    display: grid;
    /* અહી મેં 4 કાર્ડ માટેનો ફિક્સ કોડ મૂક્યો છે */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.product-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.product-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* =========================================
   Mobile & Tablet Responsive (Very Important)
   ========================================= */
/* આઈપેડ / ટેબ્લેટ માટે (એક લાઈનમાં ૨ કાર્ડ) */
@media screen and (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* મોબાઈલ માટે (એક લાઈનમાં ૧ કાર્ડ) */
@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* =========================================
   Product Details Section (Inner Page)
   ========================================= */
.product-detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.product-detail-row.reverse {
    flex-direction: row-reverse;
}

.product-detail-img {
    flex: 1;
    width: 100%;
}

.product-detail-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-detail-text {
    flex: 1;
    width: 100%;
}

.product-detail-text h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 2rem;
}

.product-detail-text ul {
    padding-left: 20px;
    margin: 15px 0 25px 0;
}

.product-detail-text li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.detail-divider {
    border: 0;
    height: 1px;
    background: #e1e1e1;
    margin-bottom: 80px;
}

/* =========================================
   Stores Section (Mini Google Maps)
   ========================================= */
.store-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.map-card {
    background: var(--gray);
    padding: 10px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    border: 1px solid #e1e1e1;
    transition: transform 0.3s;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-card h4 {
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 1rem;
}

.map-card iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 6px;
}

.store-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* =========================================
   Contact Form
   ========================================= */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.8rem;
    font-weight: normal;
    color: #555;
}

/* =========================================
   Advanced Footer Styles (3-Column Layout)
   ========================================= */
.site-footer {
    background: var(--gray);
    color: white;
    padding: 60px 5% 20px;
    font-family: inherit;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand,
.footer-links,
.footer-social {
    flex: 1;
    min-width: 250px;
}

/* 1. Quick Links (Left Align) */
.footer-links {
    text-align: left;
}

.footer-links h4,
.footer-social h4 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--dark);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* 2. Brand (Center Align) */
.footer-brand {
    text-align: center;
}


.footer-brand h3 span {
    color: var(--primary);
}

.footer-brand p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* 3. Social Media (Right Align & Vertical on Desktop) */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-social h4 {
    width: auto;
    text-align: right;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-end;
    align-items: flex-end;
    width: auto;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Brand Colors for Icons */
.social-icons a.social-fb {
    background: #1877F2;
}

.social-icons a.social-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icons a.social-call {
    background: #b7b92f;
}


.social-icons a.social-mail {
    background: #9b2828;
}

.social-icons a.social-wa {
    background: #25d366;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: var(--dark);
    font-size: 0.9rem;
}


/* =========================================
   MEDIA QUERIES (FULLY RESPONSIVE)
   ========================================= */

@media screen and (max-width: 1024px) {

    .story-section,
    .story-section.reverse {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .about-hero h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 10vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

        /* જો મેનુ લાંબુ થઈ જાય તો સ્ક્રોલ કરવા માટે (Recommended) */
        overflow-y: auto;
    }

    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
    }

    /* =========================================
       મોબાઈલ માટે ડ્રોપડાઉન ફિક્સ
       ========================================= */
    .nav-links .dropdown-content {
        display: none;
        position: static;
        box-shadow: none;
        background-color: #f9f9f9;
        width: 100%;
        text-align: center;
        padding: 5px 0;
        margin-top: 10px;
        border-radius: 5px;
    }

    /* જ્યારે JS થી 'show' ક્લાસ લાગે ત્યારે જ દેખાડો */
    .nav-links .dropdown-content.show {
        display: block;
    }

    /* ડ્રોપડાઉનની અંદરની લિંક્સનું માર્જિન ઓછું કરવા (નહીં તો 20px લાગી જશે) */
    .nav-links .dropdown-content li {
        margin: 10px 0;
        opacity: 1;
        /* જાવાસ્ક્રિપ્ટનું એનિમેશન સબ-લિંક્સને હાઈડ ન કરે તે માટે */
    }

    .nav-links .dropdown-content li a {
        padding: 10px;
        font-size: 0.95rem;
        color: var(--dark);
    }

    .hero {
        height: auto;
        padding: 120px 20px 80px;
    }


    .hero-content h1 {
        font-size: 2rem;
    }

    .about-hero {
        padding: 120px 20px 80px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    /* Center layout for stories and products */
    .story-section,
    .story-section.reverse,
    .product-detail-row,
    .product-detail-row.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    /* Underlines for Story and Product Details (EXCLUDES .section-title) */
    .story-content h2::after,
    .story-content-alt h2::after,
    .story-section h2::after,
    .product-detail-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .values-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-detail-text ul {
        text-align: left;
        display: inline-block;
    }

    .story-img img {
        height: 250px;
        /* મોબાઈલમાં ફોટાની સાઈઝ નાની કરી છે */
    }

    .stats-banner {
        flex-direction: column;
        padding: 40px 20px;
    }

    .stat-box {
        margin: 20px 0;
    }

    .map-card {
        width: 100%;
        max-width: 400px;
    }

    /* =========================================
       Footer Mobile Adjustments (All Centered)
       ========================================= */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    /* Center text for all columns */
    .footer-brand,
    .footer-links,
    .footer-social,
    .footer-social h4 {
        text-align: center !important;
        align-items: center !important;
        /* Forces items center */
    }

    /* Make icons HORIZONTAL in mobile */
    .social-icons {
        flex-direction: row !important;
        /* OVERRIDES desktop column */
        justify-content: center !important;
        /* Centers them horizontally */
        align-items: center !important;
    }

    .footer-links ul li a:hover {
        transform: none;
        color: var(--primary);
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .hero-content h1,
    .about-hero h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .hero-content p,
    .about-hero p,
    .story-content p {
        font-size: 1rem;
    }

    .story-content h2,
    .product-detail-text h2 {
        font-size: 1.8rem;
    }

    .product-card {
        margin-bottom: 25px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .form-container {
        padding: 25px 15px;
    }

    .stat-box h3 {
        font-size: 2.8rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* =========================================
   Ras Page - Hero Banner (Curved Design)
   ========================================= */
.ras-hero-banner {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 60px 0;
    margin-top: 60px;
    margin-bottom: 30px;
    border-bottom-left-radius: 50px;
    /* હીરો બેનરને નીચેથી ગોળાકાર આપે છે */
    border-bottom-right-radius: 50px;
}

.ras-hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ras-hero-text {
    flex: 1.2;
}

.ras-hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    line-height: 1.1;
}

.ras-hero-text h2 {
    font-size: 1.5rem;
    color: #d35400;
    margin-bottom: 20px;
    font-weight: 500;
}

.ras-hero-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-features {
    display: flex;
    gap: 20px;
}

.hero-features span {
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    /* વધુ ગોળાઈ */
    color: var(--primary-dark);
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ras-hero-image {
    flex: 1;
    text-align: center;
}

.ras-hero-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 30px;
    /* ફોટાને પણ થોડી ગોળાઈ આપે છે */
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

/* =========================================
   Ras Menu Cards Grid (Curved Design)
   ========================================= */
.ras-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding-bottom: 50px;
}

.ras-card {
    background: white;
    border-radius: 25px;
    /* કાર્ડને વધુ સ્મૂથ અને ગોળ બનાવે છે */
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-top: 6px solid var(--primary);
    /* ટોપ બોર્ડર થોડી જાડી કરી છે */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ras-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.ras-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
    margin-top: 10px;
}



.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    /* dashed ની જગ્યાએ solid લાઇન */
}

.price {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
}

.btn-wa-sm {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    /* બટનને વધુ ગોળ બનાવે છે */
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn-wa-sm:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    /* બટન પર હોવર કરતા થોડું મોટું થશે */
}

/* Special styling for Frozen Tukda */
.special-card {
    border-top: 6px solid #d35400;
    background: #fffdf8;
}

.special-card-frozen {
    border-top: 6px solid #3498db;
    background: #fffdf8;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .ras-hero-banner {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .ras-hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ras-hero-text h1 {
        font-size: 2.8rem;
    }

    .ras-card {
        padding: 25px 20px;
    }
}

/* =========================================
   Delivery Policy Note
   ========================================= */
.delivery-note {
    background-color: #fff8e1;
    /* આછો પીળો કલર */
    color: #5c4000;
    padding: 18px 20px;
    border-radius: 15px;
    margin: 10px auto 35px auto;
    border-left: 6px solid #ffb300;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(255, 179, 0, 0.1);
    line-height: 1.6;
}

.delivery-note strong {
    color: #d35400;
    font-size: 1.2rem;
}

.highlight-note {
    display: inline-block;
    margin-top: 5px;
    color: #d35400;
}

.highlight-note b {
    font-weight: 900;
    text-decoration: underline;
}


/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .delivery-note {
        font-size: 1rem;
        padding: 15px;
        text-align: left;
    }
}

/* =========================================
   Check Store Link (Delivery Note)
   ========================================= */
.check-store-link {
    color: #d35400;
    text-decoration: underline;
    font-weight: 800;
    margin-left: 8px;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.check-store-link:hover {
    color: #a04000;
}

.check-store-link i {
    font-size: 0.9rem;
    margin-left: 3px;
}

/* =========================================
   Custom Radio Buttons (Tin Variants)
   ========================================= */
.tin-variants {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 20px;
    max-width: 400px;
}

.variant-option {
    cursor: pointer;
    flex: 1;
}

/* ડિફોલ્ટ ગોળ રેડિયો બટનને છુપાવી દો */
.variant-option input[type="radio"] {
    display: none;
}

/* નવું કસ્ટમ કાર્ડ ડીઝાઇન */
.variant-card {
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.variant-weight {
    font-size: 1.2rem;
    font-weight: 800;
    color: #444;
}

.variant-price {
    font-size: 1.1rem;
    color: #888;
    margin-top: 5px;
}

/* જ્યારે યુઝર ક્લિક કરે (Radio Checked હોય) ત્યારે કાર્ડનો લુક */
.variant-option input[type="radio"]:checked+.variant-card {
    border-color: #d35400;
    /* ઓરેન્જ બોર્ડર */
    background: #fff8e1;
    /* આછું પીળું બેકગ્રાઉન્ડ */
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.15);
}

.variant-option input[type="radio"]:checked+.variant-card .variant-price {
    color: #d35400;
    /* ભાવ ઓરેન્જ થઈ જશે */
    font-weight: bold;
}


/* =========================================
   6. Popup Modal Styles (Home Page Form)
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #888;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #d35400;
}

/* =========================================
   7. Custom Dropdown Styles (Popup Form)
   ========================================= */
.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.select-selected {
    background-color: #f9f9f9;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #555;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
}

.select-selected:hover {
    border-color: var(--primary);
}

.select-selected::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #888;
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.select-hide {
    display: none;
}

.select-items div {
    padding: 12px 15px;
    transition: background 0.2s;
    color: #444;
}

.select-items div:hover {
    background-color: #fff3e0;
    color: #d35400;
}

/* =========================================
   8. Award & Recognition Section (Updated for Top-Bottom Layout)
   ========================================= */
.award-row {
    display: flex;
    flex-direction: column;
    /* લખાણને ફોટાની નીચે લાવવા માટે column સેટ કર્યું */
    gap: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8e1 100%);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid #ffe0b2;
}

.award-img-box {
    width: 100%;
    position: relative;
}

/* બંને ફોટાને એકબીજાની બાજુમાં (side-by-side) ગોઠવવા માટે */
.award-images-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.award-images-wrapper img {
    flex: 1;
    /* બંને ફોટાને 50-50% જગ્યા આપવા માટે */
    width: 100%;
    height: 520px;
    /* ફોટા એકસરખા દેખાય તે માટે ફિક્સ ઊંચાઈ */
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.award-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    /* બેજને બરાબર વચ્ચે સેટ કરવા */
    transform: translateX(-50%);
    background: #d35400;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
    border: 4px solid white;
    z-index: 10;
}

/* નીચેનું લખાણ વાળું બોક્સ (વાયરફ્રેમ મુજબ) */
.award-text-box {
    width: 100%;
    background: #ffffff;
    /* અલગ બોક્સ જેવો લુક આપવા */
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed #ffcc80;
    /* વાયરફ્રેમ જેવી બોર્ડર ઈફેક્ટ માટે */
    text-align: center;
    /* લખાણને વચ્ચે લાવવા માટે */
}

.award-text-box h3 {
    margin-top: 0;
}

/* મોબાઈલ સ્ક્રીન માટે સેટિંગ */
@media screen and (max-width: 768px) {
    .award-row {
        padding: 25px;
        gap: 30px;
    }

    .award-images-wrapper {
        flex-direction: column;
        /* મોબાઈલમાં ફોટા પાછા ઉપર-નીચે થઈ જશે */
    }

    .award-images-wrapper img {
        height: auto;
    }

    .award-badge {
        bottom: -15px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .award-text-box {
        padding: 20px;
        text-align: left;
        /* મોબાઈલમાં વાંચવામાં સરળતા માટે લેફ્ટ એલાઇન */
    }
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    /* બર્ગર મેનૂથી થોડું દૂર રાખવા */
}

.lang-select {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.lang-select:focus {
    border-color: var(--primary);
}

/* મોબાઈલ વ્યુ માટે સેટિંગ */
@media screen and (max-width: 768px) {
    .lang-switcher {
        margin-right: 15px;
        margin-left: auto;
        /* લોગો અને બર્ગરની વચ્ચે સેટ કરવા */
    }
}

.founders-section {
    padding: 50px 5%;
    background-color: #fff;
    text-align: center;
}


.founders-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.founder-card {
    flex: 1;
    text-align: center;
}

.founder-card img {
    width: 100%;
    max-width: 400px;
    /* Prevents photos from getting too huge */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: inline-block;
}

.founder-card h4 {
    margin-top: 15px;
    color: var(--dark, #333);
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 700;
}

/* Mobile View Adjustment */
@media screen and (max-width: 768px) {
    .founders-images {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}