@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
    /* Primary Brand Colors */
    --blue-color: #1f5d96;
    --orange-color: #ee801f;

    --bg-light-blue: #f4f8fb;
    --text-dark: #333333;
    --text-muted: #666666;

    --bg-light-gray: #fcfdfe;
    --box-light-blue: #f4f8fb;
}


.rm-topbar {
    background: var(--blue-color);
}

.rm-contact-wrap,
.rm-right-wrap {
    min-height: 40px;
}

.rm-contact-item {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    /* font-weight: 600; */
    display: flex;
    align-items: center;
    gap: 8px;
}

.rm-contact-item:hover {
    color: #fff;
}

.rm-social-icons {
    display: flex;
    gap: 25px;
}

.rm-social-icons a {
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.rm-social-icons a:hover {
    transform: translateY(-2px);
}



@media (max-width: 991px) {

    .rm-contact-wrap,
    .rm-right-wrap {
        justify-content: center;
        text-align: center;
    }

    .rm-contact-wrap {
        margin-bottom: 10px;
    }

    .rm-contact-item {
        font-size: 14px;
    }

    .rm-call-btn {
        padding: 8px 18px;
    }
}

/*  */
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* तुमच्या हेडरच्या हाईटनुसार (अंदाजे 70px-80px) आणि तुम्हाला हवी असलेली extra ५०px स्पेस पकडून हे ॲडजस्ट करा */
}

* {
    padding-bottom: 0;
    margin: 0;
    box-sizing: border-box;
}


.blue_color {
    color: var(--blue-color);
}

.orange_color {
    color: var(--orange-color);
}

body {
    font-family: "Lexend", sans-serif;
}

.custom-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    padding: 1px 0;
}

/* Nav Links Styling & Hover Animation */
.custom-navbar .nav-link {
    color: #333333 !important;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: var(--blue-color) !important;
    /* Bootstrap Primary Blue (Tumchya theme nusar badla) */
}

/* Underline Slide Animation */
.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--blue-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.custom-navbar .nav-link:hover::after {
    width: 80%;
}

/* Active Class */
.custom-navbar .nav-link.active::after {
    width: 80%;
    background-color: var(--blue-color);
}

/* Hamburger Icon Animation */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #333;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #333;
    display: block;
    position: absolute;
    transition: all 0.3s ease;
}

.toggler-icon::before {
    top: -8px;
}

.toggler-icon::after {
    bottom: -8px;
}

/* When Mobile Menu is Open (X Animation) */
.navbar-toggler:not(.collapsed) .toggler-icon {
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler:not(.collapsed) .toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Smooth Mobile Dropdown Fade-in */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        margin-top: 10px;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }

    .custom-navbar .nav-link::after {
        display: none;
        /* Mobile var underline animation garaj nahi */
    }
}

.logo {
    width: 130px;
}

/*  */
.Herosection {
    background-image: url(../img/hero22.webp);
    height: 40vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* Footer */
.custom-footer {
    background-color: var(--blue-color);
    color: #e0e0e0;
    padding: 60px 0 20px 0;
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Underline for title */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 50px;
    background-color: var(--orange-color);
    /* Warm Gold color */
}

.footer-links list-unstyled li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-color);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--orange-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-text p {
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.contact-text a {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--orange-color);
}

.branch-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* ----------------------- */


.customer-section {
    padding: 60px 0;
    background-color: var(--bg-light-blue);
}

/* Logo Card Styling */
.logo-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    /* padding: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 110px; */
    transition: all 0.3s ease-in-out;
    margin: 10px 5px;
    /* Spacing sathi */
    user-select: none;
    /* Dragging kartana text/image select hou nye mhun */
}

/* Hover Effect */
.logo-item:hover {
    border-color: #ee801f;
    /* तुमच्या थीमचा ऑरेंज रंग */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Image Responsive inside Card */
.logo-item img {
    max-width: 100% !important;
    max-height: 170px !important;
    border-radius: 20px;
    width: auto !important;
    object-fit: contain;
}


.logo-pair {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* वरच्या आणि खालच्या लोगोमधील अंतर */
}

.logo-item {
    text-align: center;
    padding: 10px;
}

/* Owl Dots Styling */
.owl-theme .owl-dots .owl-dot span {
    background: #cbd5e1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #ee801f;
    /* Active dot orange hoil */
    width: 24px;
}

/* ----------------- */

.section-title-box {
    /* background-color: #1f5d96; */
    /* तुमच्या थीमचा मुख्य निळा रंग */
    color: var(--blue-color);
    font-size: 2rem;
    font-weight: 700;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

/* Section Title Styling */
.achievement-title-box {
    background-color: var(--primary-color, #1f5d96);
    color: white;
    display: inline-block;
    padding: 12px 45px;
    font-size: 1.8rem;
    font-weight: 700;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Timeline Container - Flexbox Layout Fix */
.timeline-container-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 40px 0;
    width: 100%;
}

/* Background Horizontal Line spanning exactly across all 7 items */
.timeline-container-flex::before {
    content: '';
    position: absolute;
    top: 62px;
    /* Node च्या सेंटरला लाईन मँच करण्यासाठी */
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, #1f5d96 0%, #ee801f 100%);
    z-index: 1;
}

/* Individual Timeline Step for Flex */
.timeline-flex-step {
    position: relative;
    text-align: center;
    z-index: 2;
    flex: 1;
    /* प्रत्त्येक आइटमला सारखी जागा मिळेल */
    min-width: 100px;
    /* Text overlap होणार नाही */
}

/* Circle Node */
.step-node {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 4px solid var(--primary-color, #1f5d96);
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Alternating Border Colors like image_badc0d.png */
.timeline-flex-step:nth-child(even) .step-node {
    border-color: #5b92e5;
}

.step-node::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    border: inherit;
    opacity: 0.4;
    z-index: -1;
    animation: pulseGlow 2s infinite;
}

/* Text Adjustments */
.step-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
    display: block;
}

.step-revenue {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary-color, #ee801f);
    background-color: #fff4ea;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
    /* Text तुटणार नाही */
    box-shadow: 0 2px 6px rgba(238, 128, 31, 0.1);
}

/* Hover State */
.timeline-flex-step:hover .step-node {
    transform: scale(1.2);
    background-color: var(--secondary-color, #ee801f);
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(238, 128, 31, 0.3);
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile Responsive (Stacking style so it doesn't compress) */
@media (max-width: 991.98px) {
    .timeline-container-flex {
        flex-direction: column;
        padding-left: 20px;
    }

    .timeline-container-flex::before {
        top: 0;
        bottom: 0;
        left: 42px;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #1f5d96 0%, #ee801f 100%);
    }

    .timeline-flex-step {
        display: flex;
        align-items: center;
        text-align: left;
        margin-bottom: 30px;
        width: 100%;
    }

    .step-node {
        margin: 0 20px 0 0;
    }
}

/*  */

.history-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* History Heading to match image_bad3eb.png */
.history-title-box {
    background-color: var(--primary-color, #1f5d96);
    color: #ffffff;
    display: inline-block;
    padding: 12px 60px;
    font-size: 2.2rem;
    font-weight: 700;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Paragraph Text Adjustments */
.history-text p {
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* Highlighted Quote style */
.history-quote {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color, #1f5d96);
    border-left: 4px solid var(--secondary-color, #ee801f);
    padding-left: 15px;
    margin: 25px 0;
}

/* Right Section Image Wrapper */
.history-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-main-img {
    width: 100%;
    height: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth, all 0.3s ease);
}

.history-main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Responsive Breakdown */
@media (max-width: 991.98px) {
    .history-title-box {
        font-size: 1.8rem;
        padding: 10px 40px;
    }

    .history-img-wrapper {
        min-height: 350px;
        margin-top: 40px;
    }
}

/* ///////////////////////// */

.product-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Modern Section Title */
.product-title-box {
    background-color: var(--b);
    color: #ffffff;
    display: inline-block;
    padding: 12px 60px;
    font-size: 2.2rem;
    font-weight: 700;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(31, 93, 150, 0.2);
}

/* Product Card Base Styling */
.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

/* Icon & Header Layout */
.card-header-custom {
    padding: 25px 25px 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-wrapper {
    width: 55px;
    height: 55px;
    background-color: #fff4ea;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.product-card:hover .icon-wrapper {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.05);
}

.category-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.category-desc {
    font-size: 0.95rem;
    color: #718096;
    padding: 0 25px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Tags Container for Items */
.items-badge-container {
    padding: 15px 25px 25px 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px dashed #e2e8f0;
    background-color: #fafbfc;
}

/* Beautiful Clean Badges */
.item-badge {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.product-card:hover .item-badge {
    border-color: rgba(31, 93, 150, 0.2);
    background-color: #f0f6fc;
}

.item-badge:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    transform: scale(1.05);
}

.md-desk-section {
    background-color: var(--bg-light-blue);
    padding: 60px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Heading with Bottom Line */
.md-desk-title {
    color: var(--blue-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.md-desk-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--orange-color);
    border-radius: 2px;
}

/* Profile Card Styling */
.profile-card {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px 20px 10px 20px;
    /* height: 100%; */
}

.profile-icon-wrapper {
    color: var(--blue-color);
    margin-bottom: 20px;
}

.profile-name {
    color: #111111;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.profile-designation {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Content Area Styling */
.content-heading {
    color: var(--blue-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.content-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* Stats Card Styling */
.stat-card {
    background-color: #ffffff;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    padding: 20px;
    height: 100%;
}

/* Left colored borders for stats */
.stat-card-blue {
    border-left: 5px solid var(--blue-color);
}

.stat-card-orange {
    border-left: 5px solid var(--orange-color);
}

.stat-number-blue {
    color: var(--blue-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-number-orange {
    color: var(--orange-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}



/*  */

.features-section {
    background-color: var(--bg-light-blue);
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Section Heading */
.features-main-title {
    color: var(--blue-color);
    font-weight: 700;
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.features-main-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background-color: var(--orange-color);
    border-radius: 2px;
}

.features-sub-title {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 50px;
}

/* Feature Cards Styling */
.feature-box-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 35px 25px;
    height: 100%;
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--blue-color);
    /* Bottom highlight line */
}

.feature-box-card:hover {
    transform: translateY(-5px);
}

/* Icon Container */
.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(31, 93, 150, 0.08);
    /* Light blue tint */
    color: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.feature-card-title {
    color: #111111;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Action Bar Styling (Bottom Strip) */
.action-strip-bar {
    background-color: var(--blue-color);
    border-radius: 8px;
    padding: 20px 30px;
    margin-top: 50px;
    color: #ffffff;
}

.action-bar-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-bar-title i {
    color: var(--orange-color);
    /* Gear icon highlighted with orange */
}

.action-item-text {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-item-text i {
    color: var(--orange-color);
    /* Checkmarks highlighted with orange */
}

/* Responsive adjustment for action items */
@media (max-width: 991px) {
    .action-strip-bar .row>div {
        margin-bottom: 10px;
    }

    .action-strip-bar .row>div:last-child {
        margin-bottom: 0;
    }
}


/*  */

.linkages-section {
    background-color: var(--bg-light-blue);
    padding: 60px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Main Heading */
.linkages-main-title {
    color: var(--blue-color);
    font-weight: 700;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.linkages-main-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65px;
    height: 4px;
    background-color: var(--orange-color);
    border-radius: 2px;
}

/* Sub-heading */
.linkages-sub-title {
    color: var(--blue-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

/* Target Base Grid Pills */
.target-pill-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Caption Text */
.linkages-caption {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 25px;
}

/* Right Side: Value Creation Card */
.value-creation-card {
    background-color: white;
    border-left: 5px solid var(--orange-color);
    /* Orange highlight border */
    border-radius: 4px 8px 8px 4px;
    padding: 30px;
    height: 100%;
}

.value-card-title {
    color: var(--blue-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-points-list {
    padding-left: 20px;
    margin: 0;
}

.value-points-list li {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.value-points-list li:last-child {
    margin-bottom: 0;
}

/* Bottom Badges Strip */
.divider-line {
    border-top: 1px solid #e2e8f0;
    margin: 40px 0 30px 0;
}

.badge-custom-btn {
    background-color: var(--blue-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.badge-custom-btn i {
    color: var(--orange-color);
    /* Icons highlighted in orange */
}

/*  */

.values-section {
    background-color: var(--section-bg);
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

/* Modern Pill Heading */
.values-main-heading {
    background-color: var(--blue-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 2.25rem;
    padding: 12px 35px;
    border-radius: 0 50px 50px 0;
    display: inline-block;
    margin-bottom: 45px;
    box-shadow: 0 4px 15px rgba(31, 93, 150, 0.2);
    margin-left: -15px;
    /* Extends slightly over the edge for a modern look */
}

/* Value Cards Container */
.value-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Modern Row Style Card */
.value-item-card {
    background-color: var(--card-bg);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border-left: 4px solid var(--blue-color);
}

.value-item-card:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    border-left-color: var(--orange-color);
}

/* Left Side Number/Icon Badge Instead of Hardcoded Small Images */
.value-icon-badge {
    width: 55px;
    height: 55px;
    background-color: rgba(31, 93, 150, 0.08);
    color: var(--blue-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item-card:hover .value-icon-badge {
    background-color: rgba(238, 128, 31, 0.1);
    color: var(--orange-color);
}

/* Card Content Typography */
.value-card-info h4 {
    color: var(--blue-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.value-item-card:hover .value-card-info h4 {
    color: var(--orange-color);
}

.value-card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Right Side Image Canvas with Creative Wave Cut */
.value-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Image Background with Gradient Overlay */
.value-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.value-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 93, 150, 0.3) 0%, rgba(238, 128, 31, 0.2) 100%);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .value-image-container {
        min-height: 350px;
        margin-top: 40px;
    }

    .values-main-heading {
        font-size: 1.8rem;
        padding: 10px 25px;
    }
}

@media (max-width: 576px) {
    .value-item-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .value-icon-badge {
        margin-bottom: 10px;
    }
}

/*  */
/*  */

.cert-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    width: 100%;
    /* max-width: 260px;       */
    margin: 0 auto;
    padding: 15px;
    background-color: #fff;
    border: 1px solid var(--blue-color);
    border-radius: 10px;
    box-sizing: border-box;
}

.cert-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: auto !important;
}

.certificate-section {
    padding: 60px 0;
    background-color: var(--bg-light-blue) !important;

}

@media (max-width: 768px) {
    .cert-box {
        height: 90px;
        padding: 8px;
    }
}


/*  */

.anticipation-section {
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.left-attached-heading {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px !important;
}

.left-attached-heading .section-title {
    background-color: var(--blue-color);
    margin: 0;
    border-radius: 0px 50px 50px 0px;
    padding: 14px 60px 14px 40px;
    font-size: calc(1.5rem + 0.8vw);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.text-wrapper-custom {
    padding-left: 25px;
}

.lead-text-primary {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0 !important;
}

.lead-text-secondary {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555555;
    font-weight: 500;
    margin: 0 !important;
}

.image-wrapper-custom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-right-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;

    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);

}

@media (max-width: 767.98px) {
    .left-attached-heading .section-title {
        border-radius: 0px 30px 30px 0px;
        padding-left: 20px;
        padding-right: 35px;
        font-size: 1.3rem;
    }

    .text-wrapper-custom {
        padding-left: 10px;
    }

    .lead-text-primary {
        font-size: 1.15rem;
    }

    .lead-text-secondary {
        font-size: 1.05rem;
    }

    .custom-right-img {
        max-height: 320px;
    }
}


/*  */

.market-section {
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.clip-path-container {
    width: 100%;
    height: 550px;
    overflow: hidden;
    clip-path: ellipse(100% 100% at 0% 50%);
}

.market-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.left-attached-heading {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.left-attached-heading .section-title {
    background-color: var(--blue-color);
    margin: 0;
    border-radius: 0px 50px 50px 0px;
    padding: 12px 60px 12px 30px;
    font-size: calc(1.5rem + 0.8vw);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}


.market-text-box {
    max-width: 620px;
}

.lead-text-primary {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #222222;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .clip-path-container {
        height: 320px;
        clip-path: ellipse(100% 100% at 50% 0%);
    }

    .left-attached-heading .section-title {
        border-radius: 0px 30px 30px 0px;
        padding-left: 20px;
        padding-right: 40px;
        font-size: 1.4rem;
    }
}

/*  */

.slider-marquee {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    /* background-color: #fafafa; */
    display: flex;
}

/* Continuous CSS Animation Track */
.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}


.slider-marquee:hover .marquee-track {
    animation-play-state: paused;
}


.marquee-item {
    padding: 0 25px;
    flex-shrink: 0;
}

.hex-badge {
    position: relative;
    width: 250px;
    height: 270px;
    background-color: #a9a8a54e;
    /* background-color: #bd9b3b; */
    border-width: 2px;
    border-style: dashed;
    border-color: var(--orange-color);
    /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
    padding: 10px;
    transition: transform 0.3s ease;
    border-radius: 10px;
    cursor: pointer;

}

.hex-badge:hover {
    transform: scale(1.05);

}

.hex-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
}

.product-label {
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.75);
    border: 2px solid var(--orange-color);
    color: white;
    padding: 4px 25px;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
}

/* Auto Animation Logic */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/*  */

.history-left-bg {
    position: absolute;
    left: -50px;
    bottom: 15%;
    width: 300px;
    opacity: 0.1;
    /* filter: blur(4px);  */
    z-index: 1;
    pointer-events: none;
    animation: floatTopBottom 6s ease-in-out infinite;
}

.history-left-bg img {
    width: 100%;
    height: auto;
}

/* Floating Animation Keyframes */
@keyframes floatTopBottom {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}


/*  */

/* Card Container */
.feature-simple-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
    text-center: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.img-zoom-wrapper {
    width: 100%;
    /* height: 230px;  */
    overflow: hidden;
    background: #000;
}

.hover-target-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

/* HOVER EFFECTS */
.feature-simple-card:hover {
    transform: translateY(-5px);
}

.feature-simple-card:hover .hover-target-img {
    transform: scale(1.06);
    filter: brightness(1.05);
}


.feature-simple-title {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-top: 18px;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.feature-simple-card:hover .feature-simple-title {
    color: #1a5ea4;
}



/*  */

/* Section Styles */
.why-us-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Title Pill Style (As seen in the screenshot) */
.why-us-title {
    color: var(--blue-color);
    font-size: 28px;
    font-weight: bold;
    font-size: 30px;
}

.why-us-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #495057 !important;
}

.diff-heading {
    color: var(--blue-color);
    font-size: 16px;
    letter-spacing: 0.3px;
}

/* Green Outlined Box */
.differentiators-box {
    border: 2px solid #7cb342;
    /* Soft Green Border */
    border-radius: 24px;
    padding: 30px 24px;
    background: var(--bg-light-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* List Formatting */
.diff-list-group {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.diff-list-group li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #212529;
}

/* Gradient Bullets (Matching the blue/gold look) */
.bullet-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
}

.bg-gradient-gold {
    background: linear-gradient(135deg, #fbc02d, #f57f17);
}

/* Right Side Image Container & Animation */
.why-us-image-container {
    padding: 10px;
}

.why-us-img-card {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
    /* पांढरी कडा */
    /* outline: 2px solid #7cb342; */
    /* कडेची ग्रीन आऊटलाईन */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Image Hover Effects */
.why-us-image-container:hover .why-us-img-card {
    transform: translateY(-5px) rotate(1deg);
    /* कार्ड हलकं वर होऊन किंचित टिल्ट होईल */
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.25);
    /* ग्रीन ग्लो शॅडो */
}

.why-us-image-container:hover .why-us-img {
    transform: scale(1.06);
    /* इमेज झूम होईल */
}

/* Responsive Tweak */
@media (max-width: 991px) {
    .why-us-img-card {
        height: 300px;
        margin-top: 20px;
    }

    .why-us-title {
        margin-left: 0;
        border-radius: 50px;
    }
}


/*  */

/* Section Styling */
.vision-mission-section {
    background-color: #f8f9fa;
}

/* Common Card Styling */
.vm-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Vision Left Box Layout Details */
.vision-card {
    border-top: 5px solid #004fb6;
    /* Blue Accent */
}

/* Mission Right Box Layout Details */
.mission-card {
    border-top: 5px solid #2e7d32;
    /* Green Accent */
}

/* Icons Design */
.vm-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.vision-card .vm-icon-wrapper {
    background-color: rgba(0, 79, 182, 0.08);
    color: #004fb6;
}

.mission-card .vm-icon-wrapper {
    background-color: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
}

/* Text Formatting */
.vm-title {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 14px;
}

.vm-desc {
    font-size: 15px;
    color: #5c636a;
    line-height: 1.7;
    margin-bottom: 0;
}

/* HOVER ANIMATIONS */
.vm-card:hover {
    transform: translateY(-8px);
}

.vision-card:hover {
    box-shadow: 0 15px 35px rgba(0, 79, 182, 0.12);
}

.mission-card:hover {
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.12);
}

.vm-card:hover .vm-icon-wrapper {
    transform: scale(1.1);
}

.vision-card:hover .vm-icon-wrapper {
    background-color: #004fb6;
    color: #ffffff;
}

.mission-card:hover .vm-icon-wrapper {
    background-color: #2e7d32;
    color: #ffffff;
}

/* To ensure equal heights via flex row */
.match-height {
    display: flex;
    flex-wrap: wrap;
}

/*  */

.vm-split-section {
    background-image: url(../img/1018.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.vm-side-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-in-out;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vm-side-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Side Borders matching image_a49b62.png */
.vision-blue-card {
    border-left: 5px solid #0056b3;
}

.mission-green-card {
    border-right: 5px solid #198754;
}

/* Icon Badges */
.card-icon-badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.vision-blue-card .card-icon-badge {
    background-color: #f0f4f8;
}

.mission-green-card .card-icon-badge {
    background-color: #f0f7f4;
}

/* Typography */
.card-headline {
    font-size: 1.6rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.card-text-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/* Center Signpost */
.center-signpost-wrapper img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.center-signpost-wrapper:hover img {
    transform: scale(1.03);
}


/*  */

.strategy-section {
    background: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.section-title-badge {
    color: var(--blue-color);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.strategy-lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Chart Cards Styling */
.chart-container-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: transform 0.3s ease;
}

.chart-container-card:hover {
    transform: translateY(-3px);
}

.chart-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Decorative Center Element (Wheat Stalk) */
.deco-center-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.deco-img {
    max-height: 280px;
    width: auto;
}

/* // */

/* Unlimited Smooth Floating Animation for image_a49c95.png asset */
@keyframes infinite-floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Base Shadow Styling continuous feedback logic for animation */
.deco-img {
    max-height: 280px;
    width: auto;
    border-radius: 20px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04); */
    transition: box-shadow 0.6s ease;
    will-change: transform;
}

/* Applying Animation */
.deco-center-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

    /* Applying Unlimited Movement: standard 3s smooth infinite loop shadow transitions applied */
    animation: infinite-floating 3s ease-in-out infinite;
}



/*  */
.products-grid-section {
    padding: 80px 0;
    background-color: var(--bg-light-blue);
}

/* Raigad Mart Premium Title Style */
.grid-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-color);
    position: relative;
    padding-left: 20px;
    margin-bottom: 50px;
}

.grid-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 6px;
    background-color: var(--secondary-color);
    border-radius: 10px;
}

/* Grid Card Wrapper */
.grid-product-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.grid-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 93, 150, 0.08);
    border-color: rgba(238, 128, 31, 0.3);
}

/* Top Image Box inside Card */
.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.grid-product-card:hover .card-grid-img {
    transform: scale(1.06);
}

/* Floating Icon on Image */
.grid-icon-floating {
    position: absolute;
    bottom: -25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background-color: #ffffff;
    color: var(--secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    z-index: 2;
    border: 1px solid #f1f5f9;
}

.grid-product-card:hover .grid-icon-floating {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: scale(1.05);
}

/* Bottom Content Area */
.card-body-content {
    padding: 40px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.grid-cat-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.grid-cat-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Aligns badgess evenly */
}

/* Tags Layout inside Grid */
.grid-tags-box {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
}

.grid-mini-tag {
    background-color: #f8fafc;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
}

.grid-product-card:hover .grid-mini-tag {
    background-color: #f0f6fc;
    border-color: rgba(31, 93, 150, 0.15);
}

.grid-mini-tag:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}


@media (min-width: 768px) {
    .Herosection {
        height: 100vh;
    }

    .history-section {
        padding: 80px 0;
    }
}

/*  */
/* Zoom-In Animation Loop for 5 Seconds */
.loader-logo {
    transform: scale(0);
    animation: zoomInLogo 5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
    background-color: #f4f8fb;
}

@keyframes zoomInLogo {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loader Fade Out Effect */
.loader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}