:root {
    --crimson: #880000;
    --crimson-dark: #5c0000;
    --crimson-light: #b22222;
    --gold: #caa035;
    --gold-light: #ffd700;
    --gold-pale: rgba(202, 160, 53, 0.12);
    --ivory: #fdf8f1;
    --white: #ffffff;
    --text-dark: #2a1a1a;
    --text-mid: #5c4040;
    --text-muted: #8a7070;
    --border: #e8ddd5;
    --shadow-sm: 0 2px 12px rgba(136, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(136, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(136, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Header */
header {
    background: #880000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: top 0.4s ease-in-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Consistent padding */
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-left: 0; /* Remove negative margin */
    flex-shrink: 0; /* Prevent logo from shrinking */
}


    .logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: white;
    }


/* ==========================
        NAVIGATION STYLES (FIXED)
        ========================== */

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow: visible; /* ✅ FIXED: allow glow and border to show fully */
    white-space: nowrap; /* keep items on one line */
    justify-content: flex-start;
    margin-left: 0.5rem;
}

    .nav-links a {
        display: inline-flex; /* ✅ keeps shape consistent */
        align-items: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.9rem;
        white-space: nowrap;
        position: relative;
        background: none !important; /* remove any previous gradients */
    }

        /* Hover effect (only for non-active links) */
        .nav-links a:hover:not(.active) {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Remove any leftover pseudo-elements from old styles */
        .nav-links a::before,
        .nav-links a::after {
            content: none !important;
            background: none !important;
        }

        /* === Active Page Highlight (Perfect Circular Gold) === */
        .nav-links a.active {
            color: #ffd700 !important; /* golden text */
            border: 2px solid #caa035; /* gold border */
            background: transparent !important;
            border-radius: 50px; /* smooth full circle shape */
            padding: 0.6rem 1.2rem;
            font-weight: 600;
            box-shadow: 0 0 10px rgba(202, 160, 53, 0.6);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2; /* ✅ ensures glow is visible over nearby items */
        }

            /* Hover effect for active link */
            .nav-links a.active:hover {
                background: rgba(202, 160, 53, 0.1);
                transform: scale(1.05);
                box-shadow: 0 0 15px rgba(202, 160, 53, 0.8);
            }

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(202,160,53,0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(202,160,53,0.9);
    }
}

.nav-links a.active {
    animation: goldPulse 3s infinite ease-in-out;
}



/* Page Header */
.page-header {
    margin-top: 80px;
    background: #8B0000;
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 70px;
}

    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-header p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #8B0000;
    position: relative;
}

    .story-text h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #DAA520, #FFD700);
        border-radius: 2px;
    }

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 400px;
    background: url('../Photos/About_us/Trios.jpeg');
    background-size: cover;
    background-position: center;
}

/* Owners Section */
.owners-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B0000;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(45deg, #DAA520, #FFD700);
        border-radius: 2px;
    }

.owners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Same as repeat(3, 1fr) */
    gap: clamp(1rem, 3vw, 3rem); /* Responsive gap */
    margin-top: 4rem;
}

.owner-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
    /* Add these lines */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .owner-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(45deg, #DAA520, #FFD700);
    }

    .owner-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
/* Keep the base style */
.owner-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

    /* Individual owner images */
    .owner-image.himanshu {
        background-image: url('../Photos/About_us/himanshu_acharya.jpeg');
    }

    .owner-image.udayan {
        background-image: url('../Photos/About_us/Udayan_acharya.jpeg');
    }

    .owner-image.govind {
        background-image: url('../Photos/About_us/Govind_acharya.jpeg');
    }

.owner-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #8B0000;
}

.owner-role {
    font-size: 1.1rem;
    color: #DAA520;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.owner-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.owner-experience {
    background: rgba(139, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #8B0000;
    font-weight: 500;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff; /* or any background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    #preloader img {
        width: 200px;
        height: auto;
    }

/* Vision & Mission */
.vision-mission {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.vision-card, .mission-card {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

    .vision-card h3, .mission-card h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #FFD700;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .vision-card p, .mission-card p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

/*            FAQ section*/
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f6f9 100%);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 1.8rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

    .faq-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

.faq-question {
    padding: 1.8rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #8B0000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

    .faq-question span {
        flex: 1;
    }

.faq-icon {
    font-size: 1rem;
    color: #DAA520;
    transition: transform 0.4s ease;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: height 0.4s ease;
}

.faq-answer-inner {
    padding: 1.8rem 2rem;
}

.faq-answer p {
    margin: 0;
    padding: 1.1rem 0.1rem;
    line-height: 1.9;
    color: #555;
}

.faq-item {
    margin-bottom: 1rem;
}

    .faq-item.active .faq-answer {
        display: block;
    }

@keyframes fadeAnswer {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 3rem;
    position: relative;
}

    .faq-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 4px;
        background: linear-gradient(90deg, #DAA520, #FFD700);
        border-radius: 2px;
    }

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

    .values-section .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        color: #8B0000;
        margin-bottom: 3rem;
        position: relative;
    }

        .values-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #DAA520, #FFD700);
            border-radius: 2px;
        }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

    .breadcrumb a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-weight: 500;
    }

        .breadcrumb a:hover {
            color: white;
        }

    .breadcrumb i {
        color: #fff;
        margin: 0 8px;
    }

    .breadcrumb span {
        color: #fff;
        font-weight: 600;
    }


/* Individual Value Cards */
.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #DAA520, #FFD700);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }


    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }


        .value-card:hover::before {
            transform: scaleX(1);
        }

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
    color: gold;
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #880000, #caa035);
    z-index: 10000; /* 🔥 ensure it stays above header */
    transition: width 0.2s ease-out;
}

/* Statistics */
.stats-section {
    padding: 4rem 0;
    background: #caa035;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #8B0000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-section p, .footer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #FFD700;
    }

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding: 25px 15px;
    background: #8b1c10;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.4px;
    color: #f1f1f1;
}


.footer-tagline {
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 8px;
    color: #ffd7a0;
}


.footer-text span {
    font-weight: 600;
    color: #ffffff;
}


.footer-text a {
    color: gold;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .footer-text a:hover {
        color: #ffd700;
        text-decoration: underline;
    }

.contact-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* Main button */
/* ═══════════════════════════════════════════════════════
   CHAT BOT
════════════════════════════════════════════════════════ */
.chat-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    z-index: 9998;
    overflow: hidden;
    display: none;
    flex-direction: column;
    max-height: 520px;
    border: 1.5px solid var(--border);
}

.chat-container.show {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: white;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-icons {
    display: flex;
    gap: 14px;
}

.contact-icons a {
    color: white;
    font-size: 18px;
    transition: opacity 0.2s;
}

.contact-icons a:hover {
    opacity: 0.8;
}

.chat-header button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.chat-header button:hover {
    background: rgba(255, 255, 255, 0.35);
}

.chat-messages {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 280px;
    background: #f9f5f0;
}

.bot-message {
    background: white;
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 4px 16px 16px 16px;
    font-size: 0.88rem;
    color: var(--text-dark);
    max-width: 85%;
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
}

.user-message {
    background: linear-gradient(135deg, var(--crimson), #a00000);
    color: white;
    padding: 10px 14px;
    border-radius: 16px 4px 16px 16px;
    font-size: 0.88rem;
    max-width: 85%;
    align-self: flex-end;
    line-height: 1.5;
}

.chat-input {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid var(--border);
    background: white;
}

.chat-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-family: 'Jost', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(202, 160, 53, 0.15);
}

.chat-input button {
    background: var(--crimson);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.chat-input button:hover {
    background: var(--crimson-dark);
    transform: scale(1.04);
}

.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    color: var(--crimson);
    border: none;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 8px 28px rgba(202, 160, 53, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 35px rgba(202, 160, 53, 0.6);
}

.back-to-top {
    position: fixed;
    left: 30px;
    top: -80px;
    width: 50px;
    height: 50px;
    background-color: #b30000;
    color: #ffd700;
    border: 1px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    z-index: 999;
    transition: top 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

    .back-to-top.show {
        top: calc(100vh - 80px);
    }



    .back-to-top:hover {
        background-color: transparent;
        color: var(--primary);
        transform: translateY(-5px);
    }

.mobile-nav-header,
.close-menu {
    display: none;
}

.brand span {
    display: none;
}

.menu-toggle {
    width: 34px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

    .menu-toggle span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #ffd700;
        border-radius: 3px;
        transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    }

        .menu-toggle span:nth-child(1) {
            top: 0;
        }

        .menu-toggle span:nth-child(2) {
            top: 11px;
            width: 70%;
        }

        .menu-toggle span:nth-child(3) {
            bottom: 0;
        }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 11px;
    }

@media (max-width: 1024px) {

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .brand img {
            height: 48px;
            border-radius: 50%;
        }

        .brand span {
            display: inline-block;
            font-size: 1.4rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.5px;
        }

    .nav-links {
        gap: 0.1rem;
    }
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2rem;
    }

    .values-section .section-title {
        font-size: 2.2rem;
    }

    .value-card {
        padding: 2rem;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-wrapper {
        max-width: 95%;
    }

    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .faq-question {
        padding: 1.5rem 1.8rem;
        font-size: 1.05rem;
    }

    .faq-answer-inner {
        padding: 1.5rem 1.8rem;
    }

    .chat-container {
        width: 96%;
        right: 2%;
        bottom: 75px;
        max-height: 85vh;
        border-radius: 16px;
    }

    .chat-messages {
        height: 58vh;
        font-size: 13px;
    }

    .bot-message,
    .user-message {
        font-size: 13px;
        max-width: 92%;
    }

    .chat-input {
        padding: 10px;
    }

    .chat-input input {
        padding: 9px 12px;
        font-size: 13px;
    }

    .chat-input button {
        padding: 9px 14px;
        font-size: 13px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        width: 34px;
        height: 26px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1101;
    }

        .menu-toggle span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: #ffd700;
            border-radius: 3px;
            transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
        }

            .menu-toggle span:nth-child(1) {
                top: 0;
            }

            .menu-toggle span:nth-child(2) {
                top: 11px;
                width: 70%;
            }

            .menu-toggle span:nth-child(3) {
                bottom: 0;
            }

        .menu-toggle.open span:nth-child(1) {
            transform: rotate(45deg);
            top: 11px;
        }

        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .menu-toggle.open span:nth-child(3) {
            transform: rotate(-45deg);
            bottom: 11px;
        }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -120%;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(160deg, #8b0000, #5c0000);
        flex-direction: column;
        padding: 2.5rem 2rem;
        transition: left 0.45s cubic-bezier(0.77, 0, 0.18, 1);
        z-index: 1050;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

        .nav-links.active {
            left: 0;
        }

            .nav-links.active li {
                opacity: 1 !important;
                transform: translateX(0) !important;
            }

        .nav-links li {
            list-style: none;
            margin-bottom: 1.4rem;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideFade 0.5s ease forwards;
            margin-top: -5px;
        }

        .nav-links.active li:nth-child(2) {
            animation-delay: 0.1s;
        }

        .nav-links.active li:nth-child(3) {
            animation-delay: 0.15s;
        }

        .nav-links.active li:nth-child(4) {
            animation-delay: 0.2s;
        }

        .nav-links.active li:nth-child(5) {
            animation-delay: 0.25s;
        }

        .nav-links.active li:nth-child(6) {
            animation-delay: 0.3s;
        }

        .nav-links.active li:nth-child(7) {
            animation-delay: 0.35s;
        }

        .nav-links a {
            font-size: 1.25rem;
            color: #fff;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
        }

            .nav-links a::after {
                content: "";
                position: absolute;
                bottom: -6px;
                left: 0;
                width: 0%;
                height: 2px;
                background: gold;
                transition: width 0.3s ease;
            }

            .nav-links a:hover::after {
                width: 100%;
            }

    .logo {
        margin: 0 auto;
        justify-content: center;
        font-size: 1.3rem;
    }






        .logo img {
            height: 32px;
            margin-right: 6px;
        }

    /* Mobile navigation menu */


    .page-header h1 {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .owners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-toggle {
        display: block;
    }

    .vision-card, .mission-card {
        padding: 2rem;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1.5rem;
    }

    .values-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-question {
        padding: 1.3rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer-inner {
        padding: 1.3rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .chat-container {
        width: 94%;
        right: 3%;
        bottom: 85px;
        max-height: 80vh;
        border-radius: 18px;
    }

    .chat-header {
        padding: 14px;
    }

    .contact-icons a {
        font-size: 17px;
        margin-right: 12px;
    }

    .chat-messages {
        height: 55vh;
        padding: 16px;
        font-size: 14px;
    }

    .chat-input input {
        font-size: 14px;
    }

    .chat-input button {
        padding: 10px 18px;
    }

    .chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 20px;
        bottom: 18px;
        right: 18px;
    }
}

@media (max-width: 600px) {
    #preloader img {
        width: 100px; /* or any smaller size you prefer */
    }

    .contact-widget {
        bottom: 15px;
        right: 15px;
    }

    .contact-main-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .contact-option {
        width: 48px;
        height: 48px;
        font-size: 22px;
        margin-bottom: 8px;
        line-height: 48px;
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

        .logo img {
            height: 28px;
            margin-right: 5px;
        }

    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 1.1rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 0.9rem;
    }

    .faq-answer-inner {
        padding: 1.1rem 1.2rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .chat-container {
        width: 96%;
        right: 2%;
        bottom: 75px;
        max-height: 85vh;
        border-radius: 16px;
    }

    .chat-header {
        padding: 12px;
    }

    .contact-icons {
        display: flex;
        gap: 12px;
    }

        .contact-icons a {
            font-size: 16px;
            margin-right: 0;
        }

    .chat-messages {
        height: 58vh;
        padding: 14px;
        font-size: 13px;
    }

    .bot-message,
    .user-message {
        font-size: 13px;
        max-width: 92%;
    }

    .chat-input {
        padding: 10px;
    }

        .chat-input input {
            padding: 9px 12px;
            font-size: 13px;
        }

        .chat-input button {
            padding: 9px 14px;
            font-size: 13px;
        }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}body
{
}