﻿html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}
/* Base Styles */
body {
    /* font-family: 'Poppins', sans-serif;*/
    font-family: "Inter", sans-serif;
    color: #333;
    background-color: #fff;
}

/* ===== ROOT COLORS ===== */
:root {
    --primary: #3438AD;
    --secondary: #133057;
    --accent: #FEE24C;
    --black: #000000;
    --white: #ffffff;
    --brand-blue: #2e3192;
    --brand-gold: #f7d147;
    --light-gray: #f8f9fa;
}


/* ================= HEADER ================= */
.hero-section {
    position: relative;
}

.header-wrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1320px;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header-row {
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* LEFT BLOCK */
.left-full {
    background: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0px 0px 10px;
}

.logo img {
    width: 120px;
}

/* RIGHT */
.right-content {
    display: flex;
    flex-direction: column;
}

/* TOP BAR */
.top-bar {
    background: var(--brand-blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 10px 0 0;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
    }

/* CONTACT */
.contact-item img {
    height: 14px;
}

/* SOCIAL */
.social-icon img {
    height: 26px;
    transition: 0.3s;
}

.social-icon:hover img {
    transform: scale(1.2) rotate(10deg);
}


/* ================= NAVBAR ================= */
.navbar {
    background: #fff !important;
    padding: 10px 30px;
    border-radius: 0 0 10px 0;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
}

    .nav-link.active {
        color: var(--brand-blue) !important;
    }

/* NAV LAYOUT */
.custom-nav {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

    .custom-nav .nav-item {
        margin: 0 !important;
    }

    /* NAV LINK STYLE */
    .custom-nav .nav-link {
        position: relative;
        font-weight: 600;
        padding: 10px 14px !important;
        transition: 0.3s ease;
    }

        /* UNDERLINE ANIMATION */
        .custom-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 3px;
            background: var(--brand-gold);
            transition: 0.3s;
            border-radius: 5px;
        }

        .custom-nav .nav-link:hover::after,
        .custom-nav .nav-link.active::after {
            width: 100%;
            background: var(--brand-gold);
        }

        .custom-nav .nav-link:hover {
            color: var(--brand-blue) !important;
        }
/* RIGHT MOBILE MENU AREA */
@media(max-width:991px) {

    .d-lg-none.text-end {
        background: #fff;
        display: flex !important;
        align-items: center;
        justify-content: end;
        height: 100%;
        min-height: 70px; /* adjust header height feel */
        border-radius: 0 10px 10px 0;
    }

    .sticky-header .d-lg-none.text-end {
        border-radius: initial;
    }

    .navbar-toggler {
        margin-right: 10px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggler-icon {
        width: 1.8em;
        height: 1.8em;
    }

    .col-6.left-full {
        border-radius: 10px 0 0 10px;
    }
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 15px;
    min-width: 230px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.35s ease;
    display: block;
    visibility: hidden;
}
.dropdown-item.active {
    background: var(--brand-gold) !important;
    color: #000 !important;
    padding-left: 28px;
}

    .dropdown-item.active::before {
        width: 100%; 
    }

/* --- Mobile Menu Link Active --- */
@media(max-width:991px) {
    .navbar-collapse .nav-link.active {
        background: rgba(46, 49, 146, 0.1);
        border-radius: 5px;
    }
}

/* SHOW DROPDOWN */
.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* DROPDOWN ITEMS */
.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

    /* HOVER BACKGROUND EFFECT */
    .dropdown-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: var(--brand-gold);
        z-index: -1;
        transition: 0.3s;
    }

    .dropdown-item:hover::before {
        width: 100%;
    }

    .dropdown-item:hover {
        color: #000;
        padding-left: 28px;
    }

/* DESKTOP HOVER ENABLE */
@media(min-width:992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* MOBILE MENU SLIDE */
@media(max-width:991px) {
    .header-wrapper {
        position: relative !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -280px; 
        width: 260px;
        height: 100vh;
        background: #fff;
        padding: 20px;
        z-index: 9999;
        transition: 0.4s ease;
        overflow-y: auto;
        box-shadow: 5px 0 20px rgba(0,0,0,0.2);
    }

        .navbar-collapse.show {
            left: 0;
        }

    /* NAV STACK */
    .custom-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

        .custom-nav .nav-link, .custom-nav .nav-item {
            width: 100%;
        }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

    .mobile-close .btn-close {
        font-size: 18px;
        opacity: 1;
    }

@media(max-width:991px) {

    .navbar-collapse {
        transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .navbar-collapse.menu-opening {
            animation: slideIn 0.4s ease;
        }

    @keyframes slideIn {
        from {
            transform: translateX(-20px);
            opacity: 0.7;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
}

/* ================= DROPDOWN ARROW ================= */
.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle {
    position: relative;
    padding-right: 25px !important;
}

    .dropdown-toggle::before {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: all 0.3s ease;
    }

.dropdown:hover .dropdown-toggle::before {
    transform: translateY(-50%) rotate(180deg);
    color: var(--brand-blue);
}


/* ================= CTA BUTTON ================= */
.nav-cta {
    background: linear-gradient(45deg, var(--brand-blue), #1d1f7a);
    color: #fff !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 0 !important;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    font-weight: 600;
}

    /* SHINE EFFECT */
    .nav-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: 0.5s;
    }

    /* HOVER */
    .nav-cta:hover {
        background: linear-gradient(45deg, var(--brand-gold), #ffd700);
        color: #000 !important;
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

        .nav-cta:hover::before {
            left: 100%;
        }

.custom-nav .nav-cta::after {
    display: none;
}

/* ICON */
.nav-cta i {
    font-size: 14px;
    transition: 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(4px) scale(1.2);
}


/* ================= SLIDER ================= */
.banner-img {
    width: 100%;
}


/* ================= MOBILE ================= */
@media(max-width:991px) {

    .navbar {
        padding: 0;
        background: initial;
    }

    .left-full {
        display: flex;
        justify-content: flex-start;
        padding-left: 15px;
    }

    .logo img {
        width: 90px;
    }

    .top-bar {
        display: none !important;
    }

    .dropdown-menu {
        display: none; 
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }
}

@media(max-width:576px) {


    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
}

/* ================= STICKY HEADER ================= */
.sticky-header {
    position: fixed !important;
    top: -120px;
    left: 0;
    width: 100%;
    max-width: 100%;
    transform: none !important;
    z-index: 1050;
    animation: slideDown 0.5s ease forwards;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* SLIDE DOWN ANIMATION */
@keyframes slideDown {
    0% {
        top: -120px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

/* STICKY MODIFICATIONS */
.sticky-header .container-fluid {
    padding: 0;
}

.sticky-header .main-header-row {
    border-radius: 0;
}

.sticky-header .top-bar {
    display: none !important;
}

.sticky-header .logo img {
    width: 90px;
}

.sticky-header .left-full,
.sticky-header .navbar {
    border-radius: initial;
}


/*banner bottom*/

.main-heading-style {
    color: var(--black);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-align: center;
}

.heading-divider-img {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 150px;
    height: auto;
}
.left_ar .main-heading-style {text-align:left;
}
.left_ar .heading-divider-img {
    margin: 0 0 30px 0;
}


.info-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
    display: inline-block;
}

.info-text {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
}


/*About Us*/
.bggray {
    background: #FAFCFF
}

.btn-read-more {
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    border:1px solid #fff;
}

    .btn-read-more:hover {
        background-color: var(--brand-blue);
        color: var(--white);
        transform: translateX(5px);
    }

.para_w p{font-size:16px;}


.welcome_index_card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

    .welcome_index_card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.pdng{padding:20px 0px 150px 0px;}
.mt100_minus{margin-top:-100px;}

.welcome_index_icon_circle img {
    width: 32%;
    margin-bottom: 15px;
}

.welcome_index_title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--black);
    margin: 0;
}


.text-decoration-none .welcome_index_title {
    color: var(--black);
    text-decoration: none !important;
}


.text-decoration-none:hover .welcome_index_card {
    border-color: var(--secondary);
}



/*why*/

.why-us-section {
    background: url('../images/why_bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
}



.why-us-card {
    background: transparent;
    border: 2px solid rgba(254, 226, 76, 0.3); 
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .why-us-card:hover {
        border-color: var(--accent);
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
    }

.why-us-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(29%) saturate(842%) hue-rotate(351deg) brightness(101%) contrast(99%);
   
}

.why-us-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 10px;
}


.heading-light {
    color: var(--white) !important;
}



/*Product*/

.product-card {
    /*background: #FDFEFF;
    border: 1px solid #f0f0f0;*/
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
    margin: 10px 0;
}

    .product-card:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.product-img-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .product-img-container img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.product-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--black);
    line-height: 1.4;
}


.slider-nav button {
    background: var(--secondary);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    margin-left: 4px;
    transition: 0.3s;
}

    .slider-nav button:hover {
        background: var(--brand-blue);
        transform: scale(1.05);
    }

.pdnsm .product-card {padding:10px;
}

.pdnsm .product-img-container img {border-radius:10px;
}
.pdnsm .product-img-container {
    height:auto;
    display: block;
}

.exhibition-marquee-section {
    background-color: #133057; 
    overflow: hidden;
    padding: 60px 0;
}


.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}


.marquee-track {
    display: flex;
 
    width: calc(300px * 8);
    animation: scrollMarquee 25s linear infinite;
}

    /* Pause when user hovers */
    .marquee-track:hover {
        animation-play-state: paused;
    }

/* Individual Card Styling */
.marquee-item {
    width: 270px; /* Fixed width for consistency */
    background: #fff;
    margin: 0 15px; /* Spacing between cards */
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .marquee-item img {
        height: 80px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .marquee-item span {
        display: block;
        font-weight: 700;
        color: #133057;
        font-size: 14px;
        text-transform: uppercase;
    }


@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
       
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-track {
        animation: scrollMarquee 15s linear infinite;
    }

    .marquee-item {
        width: 220px; 
    }
}


/*testimonial*/
.bg_gray{background:#eee;}

/* Color Variable */
:root {
    --navy: #1a365d;
}

/* The Card Container */
.team-card {
    margin-top: 60px;
    background: #fff;
    transition: 0.3s ease;
    padding-bottom: 25px;
}

/* Overlapping Image */
.profile-pic-wrapper {
    margin-top: -60px;
    margin-bottom: 15px;
}

    .profile-pic-wrapper img {
        width: 120px;
        height: 120px;
        border: 6px solid #fff;
        object-fit: cover;
        margin:auto;
    }

/* Navy Button */
.btn-navy {
    background-color: var(--navy);
    color: white;
    border-radius: 6px;
    padding: 8px 24px;
    font-weight: 500;
}

    .btn-navy:hover {
        background-color: #0d213d;
        color: white;
    }

/* Navigation Arrows Styling */
.nav-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 45px;
    height: 50px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 4px;
    z-index: 100;
}

.slide_team .prev-btn {
    left: -15px;
}

.slide_team .next-btn {
    right: -15px;
}

/* Slick Slider specific fix for height */
.slide_team .slick-track {
    display: flex !important;
}

.slide_team .slick-slide {
    height: inherit !important;
}



/*Contact-home*/
.map iframe{width:100%; height:500px;}
.contact_h img {
    width: 65px;
    height: 65px;
}


/*footer*/
.footer-main {
    background-color: var(--brand-blue);
    color: var(--white);
    font-family: 'Arial', sans-serif;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease; 
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

    .footer-link:hover {
        color: var(--brand-gold) !important;
        transform: translateX(5px); 
    }

   
    .footer-link i {
        transition: transform 0.3s ease;
    }

    .footer-link:hover i {
        color: var(--brand-gold);
    }


.contact-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
    min-width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .contact-icon-box img {
        object-fit: contain;
        transition: transform 0.3s ease;
        width:24px;
        height:24px;
    }

    .contact-icon-box:hover img {
        transform: scale(1.1);
    }




    /*========breadcumb========*/

.breadcrumb-section {
    padding: 200px 0 100px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* Page Specific Backgrounds */
.bg-management {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/management-bg.jpg');
}

.bg-about {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about-bg.jpg');
}

.bg-packing {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-packing.jpg');
}

.bg-bulk {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-bulk.jpg');
}

.bg-mission_v {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-mission_v.jpg');
}

.bg-photo {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-photo.jpg');
}

.bg-video {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-video.jpg');
}

.bg-milestones {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-milestones.jpg');
}

.bg-exhibitions {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-exhibitions.jpg');
}

.bg-contact {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-contact.jpg');
}

.bg-basmati-rice {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-basmati-rice.jpg');
}

.bg-non-basmati-rice {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-non-basmati-rice.jpg');
}

.bg-ready {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-ready.jpg');
}

.bg-frozen {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-frozen.jpg');
}





/*=======Management=======*/

:root {
    --primary: #3438AD;
    --secondary: #133057;
    --accent: #FEE24C;
    --black: #000000;
    --white: #ffffff;
    --brand-blue: #2e3192;
    --brand-gold: #f7d147;
}

.leading-relaxed {
    line-height: 1.8;
    font-size: 1.05rem;
}

.tracking-wider {
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--secondary); 
}

/* --- Header & Intro --- */
.highlight-text {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(52, 56, 173, 0.2);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--secondary);
}

.intro-divider {
    width: 60px;
    height: 4px;
    background: var(--brand-blue);
    margin: 0 auto;
    border-radius: 10px;
}


.rounded-custom {
    border-radius: 50px 0 50px 0;
    object-fit: cover;
    width: 100%;
    height: 400px;
    border: 1px solid rgba(0,0,0,0.05);
}

.leader-img-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: var(--brand-blue);
    color: var(--brand-gold); 
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(46, 49, 146, 0.3);
}

    .experience-badge.left {
        left: 20px;
        right: auto;
    }

.content-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

    .content-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }


.team-banner {
    
    background: linear-gradient(90deg, var(--secondary) 0%, var(--brand-blue) 100%);
    min-height: 120px;
}

.team-text-box p {
    text-align: justify;
    color: var(--secondary);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .rounded-custom {
        height: auto;
        border-radius: 20px;
    }

    .content-box {
        text-align: left !important;
        border-right: none !important;
        border-left: 4px solid var(--primary) !important;
    }

    .lead-text {
        font-size: 1.1rem;
    }
}



/*========about us=========*/

.about-us .text-brand {
    color: var(--brand-blue);
}

.about-us .text-gold {
    color: var(--brand-gold);
}

.about-us .bg-brand {
    background-color: var(--brand-blue);
    color: white;
}

.about-us .bg-gold {
    background-color: var(--brand-gold);
    color: var(--secondary);
}


.about-us .hero-split {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-us .image-container {
    position: relative;
    padding: 20px;
}

    .about-us .image-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        background-color: var(--brand-blue);
        z-index: 0;
        border-radius: 0 50px 50px 0;
    }

.about-us .main-img {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 15px 15px 0px var(--brand-gold);
    object-fit: cover;
}

.about-us .value-box {
    border-left: 4px solid var(--brand-gold);
    padding-left: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .about-us .value-box:hover {
        border-left-width: 10px;
        background: rgba(52, 56, 173, 0.05);
    }

.about-us .brand-badge {
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: 0.3s;
}

    .about-us .brand-badge:hover {
        background: var(--brand-blue);
        color: var(--white);
    }

.about-us .roadmap {
    position: relative;
    padding-left: 30px;
}

    /* Vertical Line */
    .about-us .roadmap::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--brand-blue), var(--brand-gold));
    }

.about-us .roadmap-item {
    position: relative;
    margin-bottom: 35px;
}

/* Icon Styling */
.about-us .roadmap-icon {
    position: absolute;
    left: -30px;
    width: 32px;
    height: 32px;
    background: var(--brand-gold);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.about-us .roadmap-item:hover .roadmap-icon {
    background: var(--brand-blue);
    color: #fff;
    transform: scale(1.2);
}

.about-us .roadmap-content {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.about-us .roadmap-item:hover .roadmap-content {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-left: 5px solid var(--brand-blue);
}

.about-us .roadmap-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.about-us .roadmap-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Image Frame Adjustment */
.about-us .image-frame {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
}

.about-us .experience-tag {
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(46, 49, 146, 0.2);
}


/*=======packing========*/

.unique-section {
    background-color: #ffffff;
    overflow: hidden;
}

  
    .unique-section .bg-accent-box {
        position: absolute;
        top: 10%;
        left: -5%;
        width: 40%;
        height: 80%;
        background-color: var(--light-gray);
        z-index: 0;
        border-radius: 0 50px 50px 0;
    }

.facility-image-wrapper {
    position: relative;
    z-index: 1;
}

  
    .facility-image-wrapper img {
        border-radius: 4px;
        box-shadow: 30px 30px 0px -10px var(--light-gray);
        transition: transform 0.4s ease;
    }

    .facility-image-wrapper:hover img {
        transform: translate(-10px, -10px);
    }

.unique-section .capacity-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 20px 30px;
    border-radius: 0;
    z-index: 2;
}

.unique-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: #1a1a1a;
}

.unique-section .text-highlight {
    color: var(--primary);
}



/*=========Bulk=========*/
.bulk-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.bulk-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    height: 100%;
    border: 1px solid #f1f1f1;
    cursor: zoom-in;
    position: relative;
}


    .bulk-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(13, 110, 253, 0.1);
        border-color: #0d6efd;
    }

.bulk-img-wrapper {
    overflow: hidden;
    position: relative;
    height: 260px;
}

.bulk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bulk-card:hover .bulk-img {
    transform: scale(1.08);
}


.bulk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bulk-card:hover .bulk-overlay {
    opacity: 1;
}

.bulk-caption {
    padding: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    background: #ffffff;
    text-align: center;
}


#bulkZoomModal .modal-content {
    background: transparent;
    border: none;
}

#bulkZoomModal .btn-close {
    filter: invert(1);
    scale: 1.5;
}




.bulk-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 2;
    border-left: 4px solid #0d6efd;
    padding-left: 2rem;
}


/* ================= CREATIVE VISION & MISSION SECTION ================= */

.creative-section {
    background-color: #fcfcfc;
    position: relative;
    padding: 80px 0;
}


.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.creative-section .row:hover .glass-card {
    transform: translateY(-10px);
}


.shape-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 1;
    opacity: 0.3;
}

.vision-blob {
    top: -30px;
    left: -30px;
    background: var(--brand-blue);
}

.mission-blob {
    bottom: -30px;
    right: -30px;
    background: var(--brand-gold); 
}

/* Floating Animation */
.floating-img {
    max-width: 180px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    animation: vm-bounce 6s ease-in-out infinite;
}

@keyframes vm-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}


.creative-section h2 {
    color: var(--secondary); 
}

.creative-section .border-primary {
    border-color: var(--brand-blue) !important; 
}

.creative-section .border-warning {
    border-color: var(--brand-gold) !important; 
}

.creative-section .bg-primary {
    background-color: var(--brand-blue) !important;
}

.creative-section .bg-warning {
    background-color: var(--brand-gold) !important; 
}

/* Desktop spacing fixes */
@media (max-width: 991px) {
    .glass-card {
        margin-bottom: 20px;
    }
}



/* ================= UNIQUE ARTISTIC GALLERY DESIGN ================= */

.unique-gallery-section {
    background-color: #f4f7f6;
    padding: 80px 0;
    overflow: hidden; 
}


.gallery-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}

.blob-blue {
    background: var(--brand-blue);
    top: 10%;
    left: -5%;
}

.blob-gold {
    background: var(--brand-gold);
    bottom: 10%;
    right: -5%;
}


.gallery-item {
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

  
    .gallery-item:nth-child(odd) {
        transform: translateY(-20px);
    }

    .gallery-item:nth-child(even) {
        transform: translateY(20px);
    }

   
    .gallery-item:hover {
        transform: translateY(0) scale(1.05) translateZ(10px);
        z-index: 10;
    }

.gallery-card-unique {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .gallery-card-unique img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }


.gallery-item:nth-child(3n+1) img {
    height: 350px;
}

.gallery-item:nth-child(3n+2) img {
    height: 280px;
}

.gallery-item:nth-child(3n+3) img {
    height: 400px;
}


.gallery-overlay-unique {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.4) 0%, rgba(19, 48, 87, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}


.gallery-card-unique::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 1;
}


.gallery-overlay-unique i {
    color: var(--brand-gold);
    font-size: 2.5rem;
    transform: scale(0.5) rotate(-45deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* HOVER STATES */
.gallery-card-unique:hover img {
    transform: scale(1.1);
    filter: blur(1px);
}

.gallery-card-unique:hover .gallery-overlay-unique {
    opacity: 1;
}

    .gallery-card-unique:hover .gallery-overlay-unique i {
        transform: scale(1) rotate(0deg);
    }

.gallery-card-unique:hover::after {
    left: 150%;
}


@media (max-width: 991px) {
    .gallery-item:nth-child(n) {
        transform: none;
    }

    .gallery-card-unique img {
        height: 300px !important;
    }
}

/* Modal Customization (Same clean zoom) */
#zoomModal .modal-content {
    background-color: transparent;
}

#zoomModal .btn-close {
    z-index: 1060;
    background-color: var(--brand-gold);
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
}


/* ================= VIDEO GALLERY UNIQUE DESIGN ================= */

.video-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Main Player Container */
.main-video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 5px solid #fff;
    margin-bottom: 40px;
    background: #000;
}

    .main-video-container iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        display: block;
    }

/* Thumbnail Grid */
.video-thumbnail-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .video-thumbnail-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

/* Overlay with Play Button */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 49, 146, 0.4); /* Brand Blue with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

    .video-overlay i {
        color: var(--brand-gold);
        font-size: 2.5rem;
        transform: scale(0.5);
        transition: transform 0.4s ease;
    }

/* Hover & Active States */
.video-thumbnail-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold);
}

    .video-thumbnail-card:hover .video-overlay {
        opacity: 1;
    }

        .video-thumbnail-card:hover .video-overlay i {
            transform: scale(1);
        }

.video-thumbnail-card.active {
    border-color: var(--brand-blue);
    box-shadow: 0 0 15px var(--brand-blue);
}



/* ================= JOURNEY TIMELINE WITH ICONS ================= */
.icon-timeline-section {
    padding: 70px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}


    .icon-timeline-section::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(46, 49, 146, 0.1) 0%, transparent 70%);
        top: -100px;
        left: -100px;
        border-radius: 50%;
    }

.timeline-step-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}


    .timeline-step-wrapper::before {
        content: '';
        position: absolute;
        width: 2px;
        background: repeating-linear-gradient(to bottom, var(--brand-blue), var(--brand-blue) 10px, transparent 10px, transparent 20px);
        top: 0;
        bottom: 0;
        left: 40px; 
        opacity: 0.5;
    }


.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}


.step-year-bubble {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    flex-shrink: 0;
}

    .step-year-bubble span {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--brand-blue);
        letter-spacing: -1px;
    }


.timeline-step:last-child .step-year-bubble {
    animation: vm-pulse 2s infinite;
}

@keyframes vm-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 49, 146, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(46, 49, 146, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 49, 146, 0);
    }
}


.step-connector {
    width: 30px;
    height: 2px;
    background: var(--brand-gold);
    margin-top: 40px; 
    opacity: 0.5;
}


.step-content-card {
    flex-grow: 1;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-step:hover .step-content-card {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(46, 49, 146, 0.1);
    border-color: rgba(247, 209, 71, 0.3);
}


.gold-event .step-content-card {
    border-left: 5px solid var(--brand-gold);
}

.gold-event .step-icon-box {
    background: rgba(247, 209, 71, 0.1);
    color: var(--brand-gold);
}


.major-event .step-content-card {
    background: var(--brand-blue);
    color: #fff;
    border: none;
}

    .major-event .step-content-card p {
        color: #eee;
    }

.major-event .step-icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-gold);
}

/* Icon Box inside Content */
.step-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(46, 49, 146, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-text h5 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.major-event .step-text h5 {
    color: #fff;
}

.step-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .icon-timeline-section {
        padding: 60px 0;
    }

    .timeline-step-wrapper::before {
        left: 30px;
    }

    .step-year-bubble {
        width: 60px;
        height: 60px;
    }

        .step-year-bubble span {
            font-size: 1rem;
        }

    .step-connector {
        width: 15px;
        margin-top: 30px;
    }

    .step-content-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .step-icon-box {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


/* ================= PREMIUM TRADING SLIDER SECTION ================= */
.trading-unique-wrap {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f4f7ff 100%);
    position: relative;
    overflow: hidden;
}

   
    .trading-unique-wrap::before {
        content: "TRADING";
        position: absolute;
        top: 10%;
        left: -5%;
        font-size: 15rem;
        font-weight: 900;
        color: rgba(46, 49, 146, 0.03); 
        z-index: 0;
    }


.trading-content-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
    margin-right: -80px; 
    border-left: 8px solid var(--brand-gold);
}


.trading-slider-container {
    position: relative;
    z-index: 1;
}

.trading-slider-frame {
    border: 15px solid #fff;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    overflow: hidden;
}

    .trading-slider-frame img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }


.custom-slider-nav {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .slider-btn:hover {
        background: var(--brand-gold);
        color: #000;
        transform: scale(1.1);
    }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .trading-content-card {
        margin-right: 0;
        margin-bottom: -50px;
        padding: 30px;
    }

    .trading-slider-frame {
        border-width: 8px;
    }

        .trading-slider-frame img {
            height: 350px;
        }
}



/*=========contact us=========*/


.contact-unique-section {
    position: relative;
    background: var(--light-gray);
    padding-bottom: 100px;
}

/* 1. MAP VIEWPORT */
.map-viewport {
    position: relative;
    height: 500px;
    overflow: hidden;
    filter: grayscale(10%); /* Slight mute for premium feel */
}

.map-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--light-gray));
    border-top: 8px solid var(--brand-gold); /* Using your Gold */
}

/* 2. FLOATING INFO CARDS */
.info-container {
    margin-top: -100px; /* Pulls cards onto the map */
    position: relative;
    z-index: 10;
}

.contact-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

    .contact-card:hover {
        transform: translateY(-12px);
        border-color: var(--brand-gold);
        box-shadow: 0 40px 70px rgba(46, 49, 146, 0.15); /* Soft Brand Blue shadow */
    }

/* 3. ICON STYLING */
.card-icon {
    width: 75px;
    height: 75px;
    background: var(--brand-blue); /* Your Blue */
    color: var(--brand-gold); /* Your Gold */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border-radius: 20px;
    font-size: 1.6rem;
    transform: rotate(-6deg);
    transition: 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: rotate(0deg) scale(1.1);
    background: var(--brand-gold);
    color: var(--brand-blue);
}

/* 4. TEXT STYLING */
.contact-card h4 {
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.card-links a, .contact-card p {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.7;
    transition: 0.2s;
}

    .card-links a:hover {
        color: var(--brand-blue);
        font-weight: 600;
    }

/* 5. CENTER CARD (FEATURED STYLE) */
.contact-card.featured {
    background: var(--brand-blue); /* Main Card is Brand Blue */
    border: none;
}

    .contact-card.featured h4 {
        color: var(--brand-gold); /* Headline is Gold */
    }

    .contact-card.featured .card-links a,
    .contact-card.featured p {
        color: var(--white);
        opacity: 0.9;
    }

    .contact-card.featured .card-icon {
        background: var(--brand-gold);
        color: var(--brand-blue);
    }

/* Responsive */
@media (max-width: 991px) {
    .info-container {
        margin-top: -60px;
    }

    .map-viewport {
        height: 400px;
    }

    .contact-card {
        padding: 40px 20px;
    }
}


/*=========private lavel=========*/
.private-label-section {
    padding: 100px 0;
    background: #fbfbfd;
}


.private-label-card {
    position: relative;
    padding: 20px;
    transition: 0.5s ease;
}


@media (min-width: 992px) {
    .elevation-up {
        transform: translateY(-20px);
    }

    .elevation-down {
        transform: translateY(40px);
    }
}


.private-label-img-box {
    position: relative;
    background: linear-gradient(135deg, #002e63 0%, var(--brand-blue) 100%);
    border-radius: 50px 20px 50px 20px; 
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(46, 49, 146, 0.15);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.private-label-img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
    transition: 0.6s ease;
}

/* Hover Interaction */
.private-label-card:hover .private-label-img-box {
    border-radius: 20px 50px 20px 50px; 
    box-shadow: 0 35px 70px rgba(46, 49, 146, 0.25);
}

.private-label-card:hover .private-label-img {
    transform: scale(1.05) translateY(-10px);
}

/* Premium Badge */
.private-label-badge {
    position: absolute;
    top: 0;
    left: 40px;
    background: var(--brand-gold);
    color: var(--brand-blue);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(247, 209, 71, 0.3);
}

/* Glassmorphism Overlay */
.private-label-glass-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 25px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
}

.private-label-text small {
    display: block;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.private-label-text h3 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}

/* Floating Action Button */
.private-label-link {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

    .private-label-link:hover {
        background: var(--brand-gold);
        transform: rotate(90deg);
    }




    /*===========basmati rice==========*/
.br-collection-area {
    padding: 80px 0;
    background-color: #f9f9fc;
    overflow: hidden;
}

.br-product-entry {
    margin-bottom: 100px;
}

.br-visual-box {
    position: relative;
    text-align: center;
}

.br-main-img {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 20px 35px rgba(0,0,0,0.15));
    transition: 0.5s ease;
}

.br-product-entry:hover .br-main-img {
    transform: translateY(-10px);
}

.br-blob-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.br-blob-blue {
    background-color: #2e3192;
}

.br-blob-gold {
    background-color: #f7d147;
}

.br-product-title {
    color: #2e3192;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.br-story-container {
    max-height: 140px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .br-story-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(transparent, #f9f9fc);
        transition: 0.3s;
        pointer-events: none;
    }

    .br-story-container.is-expanded {
        max-height: 2000px;
    }

        .br-story-container.is-expanded::after {
            opacity: 0;
        }

.br-story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.br-action-btn {
    margin-top: 15px;
    background: transparent;
    border: 2px solid #2e3192;
    color: #2e3192;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
}

    .br-action-btn:hover {
        background: #2e3192;
        color: #fff;
    }

@media (max-width: 991px) {
    .br-product-entry {
        text-align: center;
    }

    .br-product-title {
        font-size: 1.7rem;
    }

    .flex-mobile-reverse {
        flex-direction: column-reverse;
    }
}

.br-sub-heading {
    color: #2e3192;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 20px 0 15px 0;
}


.br-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .br-feature-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
        font-size: 1.05rem;
        color: #4a4a4a;
        line-height: 1.6;
    }

       
        .br-feature-list li::before {
            content: "◆"; 
            position: absolute;
            left: 0;
            color: #f7d147; 
            font-size: 14px;
            top: 0px;
        }

.br-story-container.is-expanded .br-feature-list {
    opacity: 1;
    transition: 0.5s ease-in-out;
}

/*=========ready==========*/




.rte-full-card {
    background: #fff;
    border-radius: 30px;
    margin-bottom: 60px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: 0.5s ease;
}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


.float-anim img {
    animation: floating 3s ease-in-out infinite;
    max-width: 100%;
  /*  height: 300px;*/
  /*  object-fit: contain;*/
    border-radius:20px;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Text Styling */
.rte-full-title {
    text-transform:uppercase;
    color: #2e3192;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 20px;
}

.rte-full-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Bullets with Animation */
.rte-full-bullets {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .rte-full-bullets li {
        position: relative;
        padding-left: 35px;
        font-weight: 600;
        color: #333;
    }

        .rte-full-bullets li::before {
            content: '✓';
            position: absolute;
            left: 0;
            background: #f7d147;
            color: #2e3192;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            text-align: center;
            line-height: 25px;
            font-size: 14px;
        }

@media (max-width: 991px) {
    .rte-full-bullets {
        grid-template-columns: 1fr;
    }

    .rte-full-card {
        text-align: center;
        padding: 20px;
    }
}



/*========frozen=======*/


.frozen-section {
    padding: 60px 0;
    background-color: #f1f4f9;
}

.frozen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.frozen-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
    transition: 0.3s ease; 
    border: 1px solid #e1e8f0;
    opacity: 1 !important; 
    transform: none !important; 
}

  
    .frozen-card:hover {
        box-shadow: 0 10px 25px rgba(46, 49, 146, 0.15);
        border-color: #2e3192;
    }

.frozen-img-box {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #fff;
}

    .frozen-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.frozen-info {
    padding: 20px;
    text-align: left;
}

.frozen-name {
    color: #2e3192;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.frozen-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.reveal, .float-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/*==========other products===========*/


.op-circular-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.op-item-box {
    text-align: center;
    padding: 20px;
    transition: 0.4s ease;
    border-radius: 30px;
    background: #fff;
}

    .op-item-box:hover {
        background: #fdfdfd;
    }

/* Image Frame Design */
.op-image-container {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; 
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(46, 49, 146, 0.1);
    border: 5px solid #fff;
    transition: 0.5s ease;
}

.op-item-box:hover .op-image-container {
    border-radius: 50%; 
    transform: scale(1.05);
}

.op-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
.op-main-title {
    color: #2e3192;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.op-sub-text {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto 15px;
}

/* Decorative Divider */
.op-divider {
    width: 40px;
    height: 4px;
    background: #f7d147;
    margin: 0 auto;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.op-item-box:hover .op-divider {
    width: 80px;
}




/* Ensure all images occupy the same space */
.product-fade-slider .slide-item {
    display: none; 
    outline: none;
}

.product-fade-slider.slick-initialized .slide-item {
    display: block;
}

.br-visual-box {
    position: relative;
    text-align: center;
    min-height: 400px; 
}

.br-main-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.br-blob-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    opacity: 0.6;
}



.bgprd {
    background: url(../images/rice-range-table.jpg) no-repeat center bottom;
    padding: 0 0 25px;
}

.certificate-section {
    background-color: var(--light-gray);
}

.cert-card {
    background: var(--white);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .cert-card:hover {
        transform: translateY(-8px);
        border-color: var(--brand-gold);
        box-shadow: 0 15px 30px rgba(19, 48, 87, 0.1);
    }

.cert-icon-box {
    background-color: rgba(52, 56, 173, 0.05);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: 0.3s;
}

.cert-card:hover .cert-icon-box {
    background-color: var(--primary);
    color: var(--white);
}

.cert-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    min-height: 50px;
}

.btn-download {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

    .btn-download:hover {
        background-color: var(--secondary);
        color: var(--accent);
    }

.btn-view {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-top: 12px;
}

    .btn-view:hover {
        color: var(--secondary);
        text-decoration: underline;
    }