:root {
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --navbar-scrolled-bg: rgba(255, 255, 255, 0.85);
    --transition-speed: 0.3s;


    --primary-red: #e63946;
    --white-bg: #ffffff;
    --dark-text: #1d3557;
    --light-shadow: rgba(0, 0, 0, 0.08);
    --font-primary: 'Montserrat', sans-serif;
    --bg-color: #f7f4f0;
    --primary-text: #3d3a36;
    --capsule-bg: #eaddc7;
    --capsule-border: #d4c4b0;
    --icon-bg: #fdfbf7;
    --line-color: #a39e97;

    /* food cateogry */
    --primary-red: #d13c3f;
    --secondary-blue: #008b8b;
    --text-dark: #3d3a3a;
    --text-light: #5f5c5c;
    /* food cateogry */
    --main-color: #1E4633;
    --text-shadow-color: #478860;
    --dark-bg-1: #fdfaf4;
    --dark-bg-2: #fdfaf4;
    --animation-speed: 0.6s;
    --animation-timing: cubic-bezier(0.25, 0.8, 0.25, 1);

    --footer-bg: #1a1a1a;
    --footer-text: #a0a0a0;
    --footer-heading: #ffffff;
    --accent-color: #ff8c00;
    /* Vibrant Orange */
    --border-color: #333;

    /* extra color */
    --green: #1E4633;
    --yellow: #FFD93D;
    --dark-text: #222222;
    --light-text: #ffffff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --background-color: #fdfaf4;
    --text-color: #2c2c2c;
    --heading-font: 'Merriweather', serif;
    --body-font: 'Lato', sans-serif;
    --dot-color: rgba(0, 0, 0, 0.07);
    --brand-red: #d9232d;
    --accent-red: #E53935;
    --bg-color: #F9F5EC;
    --yellow-color: #FDE65A;
    --green-color: #1E4633;
    --orange-color: #FF7043;
    --heading-color: #3B2A23;
    --text-color: #5D5D5D;
    --heading-font: 'Merriweather', serif;
    --body-font: 'Poppins', sans-serif;


    --bg-color: #F9F5EC;
    --text-color-dark: #221C14;
    --text-color-light: #5D5D5D;
    --orange-color: #FF7043;
    --green-color: #1E4633;
    --brown-color: #6F4E37;
    --yellow-color: #FDE65A;
    --heading-font: 'Merriweather', serif;
    --body-font: 'Poppins', sans-serif;
    --dot-color: rgba(0, 0, 0, 0.05);



    --bg-color: #F9F5EC;
    --text-color-dark: #221C14;
    --text-color-light: #5D5D5D;
    --heading-font: 'Merriweather', serif;
    --body-font: 'Poppins', sans-serif;
    --accent-color: #1E4633;
    /* Green */
    --accent-color-2: #FF7043;
    /* Orange */


    --hpj-bg-color: #F9F5EC;
    --hpj-text-dark: #221C14;
    --hpj-text-light: #5D5D5D;
    --hpj-heading-font: 'Merriweather', serif;
    --hpj-body-font: 'Poppins', sans-serif;
    --hpj-accent: #1E4633;
    --hpj-line: #e0e0e0;


    --main-color: #1E4633;
    --text-shadow-color: #478860;
    --dark-bg-1: #fdfaf4;
    --dark-bg-2: #fdfaf4;
    --animation-speed: 0.6s;
    --animation-timing: cubic-bezier(0.25, 0.8, 0.25, 1);


    --primary-red: #d13c3f;
    --secondary-blue: #008b8b;
    --text-dark: #3d3a3a;
    --text-light: #5f5c5c;
    /* extra color */



    --bg-color: #fdfaf6;
    /* Warm off-white */
    --text-color: #5a5a5a;
    --heading-color: #2c2c2c;
    --accent-color: #c05621;
    /* Sophisticated orange */
    --border-color: #e5e5e5;


    --primary-red: #E53935;
    --dark-text: #1a1a1a;
    --white-text: #ffffff;
    --light-shadow: rgba(0, 0, 0, 0.1);
    --mobile-menu-bg: #2C2A4A;


    --page-bg: #F8F5F2;
    --section-bg-red: #C12F3D;
    --text-on-red: #F1ECE3;
    --text-on-white: #2c2c2c;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;


    --color-bg: #FDFCFB;
    /* Soft Off-White */
    --color-surface: #FFFFFF;
    --color-primary: #E53935;
    /* Main Red Accent */
    --color-primary-light: #EF5350;
    --color-text: #212121;
    /* Dark Charcoal for readability */
    --color-text-muted: #616161;
    --gradient-accent: linear-gradient(45deg, var(--color-primary-light), var(--color-primary));
}

html {
    scroll-behavior: smooth;
}

#about {
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    /* Increased gap for better spacing */
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    /* Changed to 100% for better responsiveness within the grid */
    max-width: 500px;
    /* Max width to control size */
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: block;
    /* To handle margins correctly */
}

.about-image-container::before {
    /* Decorative element */
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, red, black);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
    transition: all 0.3s ease;
    /* Added transition */
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111;
}

.about-content .tagline {
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content p {
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.values-list i {
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    /* Increased margin */
    background: #FF7043;
    min-width: 30px;
    /* Fixed size for icon wrapper */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* 5. Parallax CTA Section */
.parallax-cta {
    padding: 8rem 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/376464/pexels-photo-376464.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* PARALLAX EFFECT ON DESKTOP */
    text-align: center;
    color: var(--light-color);
}

.parallax-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.parallax-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--light-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--accent-red);
    transform: scale(1.05);
}

/* --- RESPONSIVE IMPROVEMENTS --- */

/* For Tablets */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        /* Stack the columns */
        gap: 3rem;
    }

    .about-image-container {
        max-width: 500px;
        margin: 0 auto;
        /* Center the image container */
    }

    .about-content {
        text-align: center;
    }

    .values-list li {
        text-align: left;
        /* Keep list text aligned left */
    }
}

/* For Mobiles */
@media (max-width: 768px) {
    .section-padding {
        padding: 20px 20px;
    }

    .about-content h3 {
        font-size: 2rem;
    }

    .parallax-cta h2 {
        font-size: 2.2rem;
    }

    /* IMPORTANT: Disable fixed background on mobile for performance & compatibility */
    .parallax-cta {
        background-attachment: scroll;
    }

    .about-image-container::before {
        left: -15px;
        top: -15px;
    }

    .values-list li {
        flex-direction: column;
        /* Stack icon on top of text */
        align-items: center;
        text-align: center;
    }

    .values-list li i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* hero section */
/* 1. CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FAF9F6;
    /* Fallback for content below the hero */
    color: #fff;
}

/* 2. Hero Section Container */
.hero-section {
    height: 100vh;
    /* Full viewport height */
    width: 100%;
    position: relative;
    /* Acts as a positioning context for its children */
    display: flex;
    /* Using flexbox to center the content */
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    /* Hides any part of the video that overflows */
    background-color: #000;
    /* Fallback and color for letterboxing on mobile */
}

/* --- 3. The Video Element --- */
#hero-video {
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    /* Center the video */
    width: 100%;
    height: 100%;

    /* 
            object-fit: cover; 
            This is the key property. 'cover' makes the video fill the container, 
            cropping it if necessary. This is ideal for desktop.
            */
    object-fit: cover;
    z-index: 1;
    /* Place it behind the overlay and content */
}

/* --- 4. The Dark Overlay --- */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
    /* Sits between the video and the content */
}

/* --- 5. The Content on Top --- */
.hero-content {
    /* To ensure it's on top of the overlay */
    z-index: 3;
    /* Highest z-index */
    color: #ffffff;
    padding: 20px;
    max-width: 800px;
    /* Prevents text from becoming too wide on large screens */
}

.hero-content h1 {
    font-size: 3rem;
    /* 48px */
    font-weight: 700;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    /* 20px */
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.cta-button {
    position: absolute;
    bottom: 50px;
    display: inline-block;
    left: 46%;
    background-color: #e42f2f;
    /* A nice blue color */
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    /* 16px */
    font-weight: bold;
    border-radius: 50px;
    /* Pill-shaped button */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    /* Darker blue on hover */
    transform: translateY(-2px);
    border: 2px solid #FF7043;
    /* Slight lift effect */
}

/* --- 6. The Responsive Magic --- */
@media (max-width: 768px) {
    /* 
            THIS IS THE MOST IMPORTANT PART FOR YOUR REQUEST.
            On mobile screens (portrait), we change 'object-fit' to 'contain'.
            'contain' ensures the ENTIRE video is visible without being cropped.
            This may create black bars (letterboxing), but it meets the requirement
            of showing the full video. The black background on .hero-section handles this.
            */

    #hero-video {
        object-fit: contain;
       

    }

    .hero-section {
        height: 240px;
        padding: 0px;

    }
    



    .cta-button {
        display: none;
        position: absolute;
        bottom: 28px;
        width: 140px;
        height: 40px;

        left: 35%;
        background-color: #e83648;
        /* A nice blue color */
        color: #ffffff;
        text-decoration: none;
        font-size: 0.8rem;
        /* 16px */
        font-weight: bold;



    }
}




/* ---------- */



/* hero section */

/* hero section2 */
#epicurean-showcase {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* --- Visuals (Background Images) --- */
.visuals-wrapper {
    position: absolute;
    inset: 0;
    /* a modern shorthand for top, right, bottom, left = 0 */
    z-index: 1;
}

.visual-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--transition-background);
}

.visual-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(80deg, rgba(17, 17, 17, 0.9) 10%, rgba(17, 17, 17, 0.6) 45%, transparent 70%);
}

.visual-layer.is-active {
    opacity: 1;
    transform-origin: center;
    animation: ken-burns-effect 25s ease-out forwards;
}


@keyframes ken-burns-effect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* --- Narrative (Text Content) --- */
.narrative-panel {
    position: relative;
    z-index: 3;
    padding: 0 8vw;
    max-width: 60rem;
}

.narrative-element {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.narrative-element.is-hidden {
    opacity: 0;
    transform: translateY(30px);
}

#narrative-overture {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--dynamic-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    transition-property: opacity, transform, color;
}

#narrative-headline {
    font-family: var(--font-serif-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    /* Responsive font size */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    transition-delay: 0.1s;
}

#narrative-description {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 30rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    transition-delay: 0.2s;
}

#action-reserve-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--dynamic-accent);
    border: 2px solid var(--dynamic-accent);
    color: var(--brand-dark-bg);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    transition-delay: 0.3s;
}

#action-reserve-btn:hover {
    background-color: transparent;
    color: var(--dynamic-accent);
}

/* --- Controls & Timeline (Navigation) --- */
.controls-wrapper {
    position: absolute;
    z-index: 4;
    bottom: 40px;
    right: 8vw;
    display: flex;
    gap: 1rem;
}

.control-stepper {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.4s ease;
    display: grid;
    place-items: center;
}

.control-stepper:hover {
    border-color: var(--dynamic-accent);
    color: var(--dynamic-accent);
}

.control-stepper svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.timeline-wrapper {
    position: absolute;
    z-index: 4;
    bottom: 60px;
    left: 8vw;
    display: flex;
    gap: 1rem;
}

.timeline-marker {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.timeline-marker.is-active {
    background-color: var(--dynamic-accent);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .narrative-panel {
        text-align: center;
        max-width: 100%;

    }

    #narrative-description {
        margin-left: auto;
        margin-right: auto;
    }

    /* .visual-layer::before {
        background: rgba(17, 17, 17, 0.7);
    } */
    .controls-wrapper,
    .timeline-wrapper {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-wrapper {
        bottom: 100px;
    }
}

/* hero section2 */

/* about section */
.brand-story-section {
    padding: 30px 0;
    /* Added base padding for desktop */
    position: relative;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* 3. Section Header */
.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.story-header .subtitle {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #e58a2d;
    /* Brand color */
}

/* 4. Split Layout */
.story-split-layout {
    display: flex;
    gap: 5%;
    align-items: flex-start;
    /* Align to top */
}

.story-left,
.story-right {
    flex: 1;
    text-align: center;
}

.story-text {
    text-align: left;
    margin-top: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* 5. Circular Image Styles */
.circle-food-img {
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #e58a2d;
    /* Changed border color to match subtitle */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.large-plate {
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.food-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.small-icon {
    width: 130px;
    /* Slightly adjusted base size */
    height: 130px;
}

/* 6. Bottom Farm Illustration */
.farm-illustration-wrapper {
    position: relative;
    width: 100%;
    margin-top: 80px;
    /* Adjusted margin */
}

.farm-sketch {
    width: 100%;
    height: auto;
    display: block;
}

.food-bowl-overlap {
    position: absolute;
    width: 250px;
    bottom: -20px;
    /* Overlaps the sketch */
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0px -5px 15px rgba(0, 0, 0, 0.1));
    /* Soft shadow for depth */
}

/* 7. Responsive Adjustments - IMPROVED */

/* For Tablets and Small Desktops */
@media (max-width: 1024px) {
    .small-icon {
        width: 100px;
        height: 100px;
    }
}

/* For Smaller Tablets and Large Mobiles */
@media (max-width: 768px) {
    .brand-story-section {
        padding: 20px 0px;
    }

    .story-split-layout {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .story-left,
    .story-right {
        width: 100%;
        max-width: 500px;
        /* Slightly increased max-width for better text flow */
    }

    .story-text {
        text-align: center;
    }

    .story-header h2 {
        font-size: 2.5rem;
    }

    .story-header .subtitle {
        font-size: 1.8rem;
    }
}

/* NEW: For Small Mobile Phones */
@media (max-width: 480px) {
    .brand-story-section {
        padding: 20px 15px;
    }

    .story-header h2 {
        font-size: 2rem;
    }

    .story-header .subtitle {
        font-size: 1.5rem;
    }

    .large-plate {
        width: 240px;
        height: 240px;
    }

    .small-icon {
        width: 80px;
        height: 80px;
    }

    .food-icons-wrapper {
        gap: 15px;
    }

    .story-text {
        font-size: 1rem;
    }

    .food-bowl-overlap {
        width: 180px;
        bottom: -15px;
    }
}

/* about section */

/* 4. Philosophy Part (OVERLAPPING Layout) */
.philosophy-section {
    padding: 0px 0px;
    margin-top: 0px;
    overflow: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

/* 3. Grid Layout */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: start;
    justify-content: center;
    /* display: flex;
            justify-content: center;
            align-items: center;
           margin: 0px 50px; */

}

/* 4. Left Column (Intro) */
/* .philosophy-left{
            display: flex;
            justify-content:center;
            align-items: center;
        } */
.philosophy-left img {
    width: 400px;
}

.philosophy-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* 5. Right Column (Quote & Values) */
.quote-wrapper {
    display: flex;
    gap: 25px;
    align-items: start;
    margin-bottom: 50px;
}

.quote-border {
    flex-shrink: 0;
    width: 4px;
    height: 100px;
    /* will be animated */
    background-color: var(--accent-color);
    border-radius: 2px;
    transform-origin: top;
    /* for GSAP animation */
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: black;
    border: none;
    padding: 0;
    margin: 0;
}

.values-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    opacity: 0.5;
    line-height: 1;
}

.value-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.value-content p {
    font-size: 0.95rem;
}

/* 6. Responsive Design */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .philosophy-left h2 {
        font-size: 3rem;
    }

    blockquote {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .philosophy-left h2 {
        font-size: 2.5rem;
    }

    .quote-wrapper {
        gap: 15px;
    }

    blockquote {
        font-size: 1.4rem;
    }
}

/* 4. Philosophy Part (OVERLAPPING Layout) */


/* usp seciton */
.advantage-section {

    position: relative;
    padding: 20px 0px;
    overflow: hidden;
    background: radial-gradient(circle, #ffffff 0%, var(--bg-color) 70%);
}

.advantage-section::before {
    content: "";
    background-image: url('https://img.freepik.com/free-vector/flat-design-bakery-template_23-2149389475.jpg?uid=R165673449&ga=GA1.1.768669046.1726403458&semt=ais_hybrid&w=740');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    /* यहां opacity कम करें */
    z-index: 1;
}


.background-watermark {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.watermark-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    transform: rotate(-20deg);
}

.watermark-2 {
    bottom: 15%;
    right: 5%;
    width: 180px;
    transform: rotate(15deg);
}

.advantage-container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* 3. Capsule Title */
.capsule-title {
    display: inline-block;
    background-color: var(--capsule-bg);
    color: var(--primary-text);
    padding: 18px 45px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    border: 1px solid var(--capsule-border);
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

/* 4. Flowchart Layout */
.advantage-flowchart {
    position: relative;
    min-height: 570px;
}

.usp-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    /* Fixed width for calculation */
    z-index: 5;
    /* Initially hidden for GSAP */
    opacity: 0;
    transform: translateY(20px);
}

.icon-circle {
    width: 120px;
    height: 120px;
    background-color: var(--icon-bg);
    border: 2px solid var(--capsule-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.usp-node:hover .icon-circle {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle svg {
    width: 55px;
    height: 55px;
    stroke: var(--primary-text);
    stroke-width: 1.2px;
}

.usp-label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 150px;
    color: black;
}

/* 5. SVG Connector Lines */
.connector-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
}

.connector-lines-svg path {
    fill: none;
    stroke: var(--line-color);
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* 6. Responsive Design */
@media (max-width: 900px) {
    .advantage-flowchart {
        min-height: unset;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px 20px;
    }

    .usp-node {
        position: static;
        /* Let the grid handle positioning */
        width: auto;
        margin: 0 auto;
        opacity: 1;
        /* GSAP will handle this differently on mobile */
        transform: none;
    }

    .connector-lines-svg {
        display: none;
        /* Hide lines on mobile */
    }
}

@media (max-width: 500px) {
    .advantage-section {
        padding: 80px 15px;
    }

    .capsule-title {
        font-size: 1.3rem;
        padding: 15px 35px;
    }

    .advantage-flowchart {
        grid-template-columns: 1fr;
    }

    .icon-circle {
        width: 110px;
        height: 110px;
    }

    .icon-circle svg {
        width: 50px;
        height: 50px;
    }
}

/* usp seciton */



/* food cateogy section */

.container {
    padding: 30px 0px;
    width: 90%;
    max-width: 1600px;
    margin: 80px auto;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--heading-color);
    margin-bottom: 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.category-card {
    display: block;
    text-decoration: none;
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--card-shadow);
    border: 1px solid #2a2a2a;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px var(--card-hover-shadow);
}

.card-image-wrapper {
    height: 330px;
    width: auto;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .card-image {
    transform: scale(1.1);
}

/* 
    .card-content {
      text-align: center;
      padding: 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .category-name {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--heading-color);
    } */

/* .card-arrow {
      flex-shrink: 0;
      color: var(--accent-color);
      opacity: 0;
      transform: translateX(15px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    } */
/* 
    .category-card:hover .card-arrow {
      opacity: 1;
      transform: translateX(0);
    } */

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .card-image-wrapper {
        height: 250px;
    }
}

/* food cateogy section */


/* brand logo */
.certifications-app {

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    /* Only vertical padding */
    position: relative;
}

/* =================================== */
/* === 3. CERTIFICATIONS SECTION === */
/* =================================== */
.certifications {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.certifications__main-title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-top: 70px;
    font-weight: 900;
    color: black;
}

/* Slider Wrapper */
.certifications__slider-wrapper {
    width: 100%;
    overflow: hidden;
    /* Gradient mask for smooth fading edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Slider Track */
.certifications__slider-track {
    display: flex;
    gap: 3rem;
    padding: 1rem 0;
    /* Space for box-shadow on hover */
    width: max-content;
    /* Critical for loop logic */
    will-change: transform;
    /* Performance optimization */
}

/* Single Certification Item */
.certifications__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 180px;
    /* Fixed width for each item */
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
    color: black;
}

.certifications__item:hover {
    transform: translateY(-10px);
}

/* Logo Circle */
.certifications__logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.certifications__logo-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Text below logo */
.certifications__text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ============================ */
/* === 4. RESPONSIVENESS ====== */
/* ============================ */
@media (max-width: 768px) {
    .certifications__item {
        width: 150px;
    }

    .certifications__logo-circle {
        width: 120px;
        height: 120px;
    }

    .certifications__text {
        font-size: 0.8rem;
    }
}

/* brand logo */



/* food jaourny */


   .main_body {
            font-family: 'Poppins', sans-serif;
            padding: 50px 15px;
            /* Side padding di, taaki content kinaro se na chipke */
            color: var(--color-text);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            /* Viewport height ke barabar kiya */
            overflow: hidden;
            position: relative;
            box-sizing: border-box;
        }

        /* --- 2. FLOATING FOOD BACKGROUND --- */
        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-25px) rotate(15deg);
            }

            100% {
                transform: translateY(0px) rotate(0deg);
            }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            display: block;
            color: var(--color-primary);
            opacity: 0.08;
            animation: float 10s ease-in-out infinite;
        }

        .floating-element svg {
            width: 100%;
            height: auto;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 5%;
            width: 80px;
            animation-duration: 12s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 10%;
            width: 50px;
            animation-duration: 9s;
            animation-delay: -3s;
        }

        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 25%;
            width: 100px;
            animation-duration: 15s;
        }

        .floating-element:nth-child(4) {
            bottom: 5%;
            right: 20%;
            width: 60px;
            animation-duration: 11s;
            animation-delay: -5s;
        }

        .floating-element:nth-child(5) {
            top: 60%;
            left: 10%;
            width: 40px;
            animation-duration: 13s;
            animation-delay: -1s;
        }

        .floating-element:nth-child(6) {
            top: 75%;
            right: 30%;
            width: 70px;
            animation-duration: 10s;
        }

        /* --- 3. Main Journey Container --- */
        .journey-container {
            width: 100%;
            max-width: 1400px;
            /* Max-width thoda kam kiya for better balance */
            padding: 0;
            /* Padding body par hai, yahan zaroorat nahi */
            position: relative;
            z-index: 1;
        }

        .journey-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            /* Font size thoda adjust kiya */
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background-color: #E53935;
            color: white;
            max-width: 450px;
            margin: 0 auto;
            padding: 10px 20px;
            border-radius: 30px;
        }

        .journey-header p {
            text-align: center;
            color: black;
            margin-bottom: 3rem;
            margin-top: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- 4. Progress Bar / Timeline --- */
        .journey-progress {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 auto 3rem auto;
            /* Bottom margin kam kiya */
            max-width: 90%;
        }

        .progress-line,
        .progress-line-active {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            height: 4px;
            z-index: 1;
        }

        .progress-line {
            width: 100%;
            background-color: #e0e0e0;
        }

        .progress-line-active {
            background: var(--gradient-accent);
            z-index: 2;
            width: 0%;
            transition: width 0.4s ease-in-out;
        }

        .step {
            width: 40px;
            height: 40px;
            background-color: #fff;
            color: var(--color-text-muted);
            border: 3px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
            z-index: 3;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .step.active {
            background: var(--gradient-accent);
            border-color: var(--color-primary);
            transform: scale(1.2);
            color: white;
            box-shadow: 0 0 20px rgba(229, 57, 53, 0.4);
        }

        /* --- 5. Slider Content --- */
        .journey-slider-viewport {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .journey-content-wrapper {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .journey-slide {
            flex: 0 0 100%;
            display: flex;
            align-items: center;
            gap: 3rem;
            /* Thoda gap badhaya */
            padding: 1rem 4rem;
            /* Side padding di taki buttons se na takraye */
            box-sizing: border-box;
        }

        .slide-image {
            flex: 1;
            /* Responsive Fix: Flex 1 se image ko space milegi */
            max-width: 28%;
            /* Max-width set kiya */
        }

        .slide-image img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            object-fit: cover;
            aspect-ratio: 1 / 1;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .slide-text {
            flex: 1.2;
            /* Text ko thoda zyada space diya */
        }

        .slide-text .step-number {
            font-size: 1.2rem;
            padding: 8px 16px;
            font-weight: 700;
            color: white;
            background-color: var(--accent-red);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 20px;
            display: inline-block;
        }

        .slide-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            margin-top: 10px;
        }

        .slide-text p {
            color: var(--color-text-muted);
            line-height: 1.8;
            font-size: 1.6rem;
            text-align: left;
        }

        /* --- 6. Navigation Controls --- */
        .journey-btn {
            position: absolute;
            top: 55%;
            /* Vertical position adjust ki */
            transform: translateY(-50%);
            z-index: 10;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(3px);
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            transition: all 0.3s ease;
        }

        #prev-btn {
            left: 10px;
            /* Screen ke left se thodi doori */
        }

        #next-btn {
            right: 10px;
            /* Screen ke right se thodi doori */
        }

        .journey-btn:hover:not(:disabled) {
            background: var(--color-primary);
            border-color: var(--color-primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 15px rgba(229, 57, 53, 0.3);
        }

        .journey-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: translateY(-50%);
        }

        .journey-btn svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-primary);
            stroke-width: 2.5;
        }

        .journey-btn:hover:not(:disabled) svg {
            stroke: white;
        }

        .journey-btn:disabled svg {
            stroke: #999;
        }


        /* --- 7. Responsive Design --- */

        @media (max-width: 992px) {
            .journey-slide {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
                padding: 1rem;
                /* Padding kam ki */
            }

            .slide-text p {
                text-align: center;
                /* Text ko center kiya */
            }

            .slide-image {
                max-width: 350px;
                /* Image ki max-width set ki */
                width: 80%;
            }

            .journey-btn {
                top: 65%;
                /* Buttons ko thoda neeche kiya */
            }
        }

        @media (max-width: 768px) {
            .main_body {
                padding: 30px 15px;
            }

            .journey-header h2 {
                font-size: 2rem;
            }

            .journey-header p {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            .step {
                width: 35px;
                height: 35px;
            }

            .slide-text h3 {
                font-size: 1.8rem;
            }

            .slide-text p {
                font-size: 1rem;
            }

            .journey-navigation {
                display: flex;
                justify-content: center;
                gap: 1.5rem;
                width: 100%;
                margin-top: 2rem;
            }

            .journey-btn {
                position: static;
                /* Position normal ki */
                transform: none;
                margin: 0;
            }

            .journey-btn:disabled {
                transform: none;
            }

            .journey-btn:hover:not(:disabled) {
                transform: scale(1.1);
            }
        }

        @media (max-width: 480px) {
            .journey-progress {
                margin-bottom: 2.5rem;
            }

            .step {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
                border-width: 2px;
            }

            .journey-header h2 {
                font-size: 1.6rem;
                width: 95%;
            }

            .slide-text h3 {
                font-size: 1.5rem;
            }

            .slide-text p {
                font-size: 0.9rem;
            }
        }

/* food jaourny */

/* testo */
.testimonials-section {
    position: relative;
    padding: 20px 20px;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    background-image: url('https://fast-food.bold-themes.com/main-demo/wp-content/uploads/sites/2/2017/06/background-tree-white.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    /* यहां opacity कम करें */
    z-index: -1;
}

.container {

    max-width: 1600px;
    margin: 0 auto;
}


        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: black;
            margin-bottom: 30px;
            margin-top: 55px;
        }

        
.spotlight-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    gap: 20px;
    margin-bottom: 100px;
}

.spotlight-image {
    grid-column: 1 / 6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.spotlight-image img {
    width: 100%;
    display: block;
}

.spotlight-content {
    grid-column: 6 / -1;
    padding: 40px 0 40px 80px;
}

.spotlight-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    color: black;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.spotlight-author {
    font-weight: 600;
    color: black;
}

.spotlight-author span {
    font-weight: 400;
    color: #777;
    margin-left: 10px;
}

.spotlight-story {
    margin-top: 20px;
}

/* 5. Customer Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.star-rating {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--heading-color);
}

.review-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* 6. Chef's Quote Section */
.chef-quote-wrapper {
    margin-top: 100px;
    background: var(--quote-bg);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.2;
}

.chef-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--heading-color);
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.chef-signature {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* 7. Responsive Design */
@media (max-width: 992px) {
    .spotlight-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .spotlight-content {
        padding: 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .spotlight-content blockquote {
        font-size: 1.6rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

*/
/* testo */

/* footer */
.site-footer-wrapper {
    background-color: #1a1a1a;
    color: #000000;
    padding: 80px 20px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Background texture for premium feel */
.site-footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/food.png');
    opacity: 0.02;
    z-index: 0;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 3. Footer Grid Layout */
.footer-layout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-widget h3 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.footer-widget p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 4. Links Styling */
.footer-navigation-links {
    list-style: none;
}

.footer-navigation-links li {
    margin-bottom: 12px;
}

.footer-navigation-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-navigation-links a:hover {
    color: #ff8c00;
    padding-left: 8px;
}

/* 5. Newsletter Form */
.subscribe-form-wrapper {
    display: flex;
    margin-top: 10px;
}

.subscribe-email-input {
    width: 100%;
    padding: 14px 15px;
    background-color: #252525;
    border: 1px solid #333;
    border-radius: 8px 0 0 8px;
    color: #000000;
    outline: none;
    font-size: 1rem;
}

.subscribe-email-input:focus {
    border-color: #ff8c00;
}

.subscribe-submit-button {
    padding: 14px 18px;
    border: none;
    background-color: #ff8c00;
    color: #000000;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.subscribe-submit-button:hover {
    background-color: #e07b00;
}

/* 6. Social Media Links */
.footer-social-media {
    display: flex;
    gap: 18px;
}

.footer-social-media a {
    color: #000000;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-media a:hover {
    color: #ff8c00;
    transform: translateY(-4px);
}

/* 7. Footer Bottom Bar */
.footer-copyright-bar {
    padding: 25px 0;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

/* 8. Responsive Design */
@media(max-width: 992px) {
    .footer-layout-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media(max-width: 600px) {
    .footer-layout-grid {
        grid-template-columns: 1fr;
    }

    .footer-widget {
        text-align: center;
    }

    .subscribe-form-wrapper {
        justify-content: center;
    }

    .footer-social-media {
        justify-content: center;
    }

    .footer-navigation-links a:hover {
        padding-left: 0;
    }
}

/* footer */

/* herader */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.6rem 5%;
    z-index: 1000;
    transition: background-color var(--transition-speed) ease,
        backdrop-filter var(--transition-speed) ease,
        box-shadow var(--transition-speed) ease;
}

/* Scrolled state for the navbar */
.navbar.scrolled {
    background-color: var(--navbar-scrolled-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* For Safari */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
    color: var(--text-color-dark);
}

.navbar.scrolled .hamburger .bar {
    background-color: var(--text-color-dark);
}

/* --- 3. Logo Styling (UPDATED for Image) --- */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    display: inline;
    height: 185px;
    /* Adjust height as needed */
    width: auto;
    /* Maintains aspect ratio */
    transition: transform var(--transition-speed) ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    /* Subtle hover effect */
}

/* --- 4. Navigation Links (Desktop) --- */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

/* Hover underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-red);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover,
.nav-links .dropdown-toggle.active {
    color: var(--accent-red);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links .dropdown-toggle.active {
    color: rgb(171, 47, 47);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- 5. Dropdown Menu --- */
.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* .dropdown-toggle .caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid;
    /* Color is inherited from parent text color */
    /* margin-left: 8px;
    transition: transform var(--transition-speed) ease;
} */ */

/* .dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, top var(--transition-speed) ease, visibility var(--transition-speed) ease;
    z-index: 1001;
} */

/* .dropdown-menu a {
    color: black;
    padding: 0.75rem 1.5rem;
    display: block;
    white-space: nowrap;
} */

/* .dropdown-menu a::after {
    display: none;
    No underline for dropdown items
} */

.dropdown-menu a:hover {
    
    color: black;
}

@media (min-width: 993px) {
    li.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    li.dropdown:hover .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
}

/* --- 6. Hamburger Menu (Mobile) --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger .bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--accent-red);
    transition: all var(--transition-speed) ease-in-out;
    border-radius: 2px;
}

/* --- 7. Responsive Design (Mobile View) --- */
@media (max-width: 992px) {
    .hamburger {
        display: block;
        z-index: 1002;
    }
    .logo-img{
        height: 100px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 550px;
        height: 100vh;
        background-color: var(--navbar-scrolled-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-color-dark);
        font-size: 1.2rem;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease-in-out;
        text-align: center;
        margin-top: 1rem;
    }

    li.dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu li {
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
    }

    li.dropdown.active .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
}

/* herader */