/* @font-face {
    font-family: 'Autography';
    src: url('../fonts/Autography.woff2') format('woff2'),
        url('../fonts/Autography.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway.woff2') format('woff2'),
        url('../fonts/Raleway.woff') format('woff');
    font-display: swap;
} */


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

/* header */
header .main_logo {
    max-width: 140px;
    height: auto;
}

header .navbar-nav .nav-link {
    font-size: 16px;
    color: #323232;
    font-weight: 600;
    border-radius: 0px;
    padding: 2px 15px !important;
    position: relative;
    transition: all .5s;
}

/* header .navbar-nav .nav-link:hover::after {
    width: 100%;
    transition: width .3s;
}

header .navbar-nav .nav-link::after {
    color: #113f52 !important;
    content: '';
    display: block;
    width: 0px;
    height: 1px;
    background: #113f52;
    transition: width .3s;
} */
header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link.active {
    background-color: #113f52;
    color: white;
}

header .navbar-nav .nav-link:before,
header .navbar-nav .nav-link.active:before {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 12px;
    height: 12px;
    border: 3px solid #113f52;
    border-width: 0 0 2px 2px;
    opacity: 0;
    transition: all 0.3s
}

header .navbar-nav .nav-link:hover:before,
header .navbar-nav .nav-link.active::before {
    opacity: 1;
    bottom: -6px;
    left: -6px;
}

header .navbar-nav .nav-link:after,
header .navbar-nav .nav-link.active:after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    border: 3px solid #113f52;
    border-width: 2px 2px 0 0;
    opacity: 0;
    transition: all 0.3s;
}

header .navbar-nav .nav-link:hover:after,
header .navbar-nav .nav-link.active:after {
    opacity: 1;
    top: -6px;
    right: -6px;
}

.form-control:focus {
    box-shadow: none;
}

.form-control {
    font-size: 15px;
    font-weight: 600;
}

/* right side menu */
/* .hamburger_wrap {
    position: relative;
    margin-left: 40px;
}

.hamburger {
    width: 35px;
    height: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2000;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: center;
}


.hamburger span:nth-child(1) {
    width: 22px;
}

.hamburger span:nth-child(2) {
    width: 35px;
}

.hamburger span:nth-child(3) {
    width: 22px;
}


.hamburger.active span {
    background-color: #000;
    width: 35px;

}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(#113f521c, #009fe34a), url(../images/world-bg.png);
    background-color: #f4f1ea;
    background-size: cover;
    overflow-x: hidden;
    overflow-y: auto;
    justify-content: start;
    z-index: 1500;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.side-menu.open {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0s;
    visibility: visible;
}


.menu-content ul {
    list-style: none;
    padding: 0;
}

.menu-content ul li {
    margin: 25px 0;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
}

.menu-content ul li a {
    text-decoration: none;
    color: #000;
    font-size: 30px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;

}

.menu-content ul li:hover {
    transform: translateX(10px);
}

.menu-content ul li a:hover {
    color: #255a40;

}

.menu-content p {
    font-size: 26px;
    font-weight: 600;
    color: #009fe3;
} */
.main_header .navbar-collapse {
    justify-content: end;
        padding: 20px 0;
}

.main_header .navbar-collapse ul.navbar-nav {
    gap: 10px;
}

/* Smooth Sticky Header */
.main_header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 9px 0;
    background-color: #ffffff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px);
    transition: all 0.5s linear;
    transform: translateY(0) !important;
}

/* Header becomes sticky (after scroll) */
.main_header.sticky {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

/* Scrolling DOWN → hide */
.main_header.hide {
    transform: translateY(-120%) !important;
    opacity: 0 !important;
}

/* Scrolling UP → show smoothly */
.main_header.show {
    transform: translateY(0) !important;
}

/* hero section home */
.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 79px;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

/* Content Container */
.hero-container {
    position: relative;
    z-index: 3;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px 8px;
    background: linear-gradient(145deg, rgba(6, 175, 157, 0.3), rgba(0, 191, 239, 0.3));
    border: 1px solid #255a40;
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-left h1 {
    font-size: clamp(2rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;

}

.hero-left h1 span {
    color: #255a40;
    display: block;
}

.tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
    border-left: 3px solid #255a40;
    padding-left: 20px;
}

/* Frosted Glass Side Card */
.hero-right {
    background: rgb(0 0 0 / 3%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.hero-right p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-right p .highlighted_txt {
    color: #009fe3;
}

.highlighted_txt {
    color: #255a40;
    font-weight: 700;
}

.vision-box {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: self-start;
    gap: 15px;
}

.vision-box .icon {
    font-size: 2rem;
    background: #009fe326;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.vision-box span {
    font-size: 16px;
    font-weight: 700;
    color: #009fe3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-box p {
    font-size: 14px;
    margin: 0;
}

.overlay-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 20%, transparent 100%);
    z-index: 2;
}

.circle_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 0;
    gap: 60px;
}

.circle_card {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    max-width: 320px;
    background: transparent;
    box-shadow: unset;
    border: 0;
    gap: 20px;
}

.circle_card .image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.circle_card .image-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
}

.circle_card .image-wrapper::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    border: 2px dashed #fff;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.content {
    color: #ffffff;
}

.content h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Narrative Side */
.about-narrative {
    padding-right: 100px;
}

/* Feature Pillars */
.operational-pillars {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.pillar-item {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid #ccc;
    transition: border-color 0.4s ease;
}

.pillar-item:hover {
    border-left-color: #255a40;
}

.pillar-item small {
    font-size: 13px;
    color: #255a40;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-weight: 800;
}

.pillar-item h4 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.pillar-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

/* Modern Image Card */
.about-visual {
    position: relative;
    height: 100%;
}

.about-visual .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-visual .visual_inn {
    position: sticky;
    top: 20px;
}

.about-visual .image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    filter: contrast(1.1);
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 340px;
    height: 220px;
    border-radius: 20px;
}

.floating-badge img {
    height: 100% !important;
    border-radius: 20px;
}

/* what we export section home */
/* .export_grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    padding: 0;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}
.export_box {
    position: relative;
    background: #f4f4f4;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 60px;
    overflow: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.export_box:hover {
    background: #255a40;
    color: #fff;
}

.box_number {
    font-size: 5rem;
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: 20px;
    opacity: 0.05;
    color: #333;
}

.export_box:hover .box_number {
    color: #fff;
    opacity: 0.1;
}

.box_title {
    font-size: 2.5rem;
    margin: 0 0 30px 0;
    font-weight: 700;
}

.product_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    color: #333;
}

.export_box:hover .tag {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.sourcing-footer {
    margin-top: 20px;
    background: #009fe3;
    color: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sourcing-footer h4 {
    font-size: 1.8rem;
    margin: 0;
    flex: 1;
    line-height: 1.2;
    color: #ffffff;
}

.sourcing-footer p {
    flex: 1.5;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .export_grid {
        grid-template-columns: 1fr;
    }

    .header-title h2 {
        font-size: 2.5rem;
    }

    .header-subtitle {
        display: none;
    }
} */

/* what we export new section */
/* --- Export Cards --- */
.export-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    border: none;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.card-bg {
    transition: 0.6s transform;
    height: 100%;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.export-card:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000000 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
}

.export-list {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.5s all;
    list-style: none;
    padding: 0;
    margin: 0;
}

.export-card:hover .export-list {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

.export-list li {
    padding: 5px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.export-list li i {
    color: #009fe3;
}

.trust-bar {
    background: #f0f7f4;
    border-radius: 25px;
    padding: 30px;
    margin-top: 60px;
    border-left: 6px solid #255a40;
}

.trust-bar h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* why choose us section */

.elite-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Left Side: Image Showcase */
.showcase-visual {
    position: sticky;
    top: 80px;
    height: 720px;
    overflow: hidden;
    border-radius: 20px;
}

.showcase-visual img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease;
    transform: scale(1.1);
    border-radius: 20px;
}

.showcase-visual img.active {
    opacity: 1;
    transform: scale(1);
}

/* Right Side: Content */
.showcase-content {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
}

.benefit-item {
    padding: 40px 0;
    border-bottom: 1px solid rgb(0 0 0 / 31%);
    cursor: pointer;
    transition: 0.3s;
}

.benefit-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.benefit-item:last-of-type {
    border: 0;
}

.benefit-item .top-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.benefit-item i {
    color: #333;
    transition: 0.3s;
    font-size: 24px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    transition: 0.3s;
}

.benefit-item p {
    max-width: 450px;
    transition: 0.3s;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

/* Hover States */
.benefit-item:hover h3 {
    color: #009fe3;
    transform: translateX(10px);
}

.benefit-item:hover p {
    color: #333;
    transform: translateX(10px);
}

.benefit-item:hover i {
    transform: scale(1.2);
}

.theme_sub_title {
    font-weight: 400;
    font-size: 48px;
    line-height: 78px;
    background: #255a40;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: block;
    padding-right: 122px;
    text-transform: initial;
    text-align: start;
    font-family: "Momo Signature", cursive;
}

.theme_title_md {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    font-size: 58px;
    padding-bottom: 10px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.theme_title_sm {
    font-size: 20px;
    font-weight: 600;
    color: #113f52;
    position: relative;
}

.section_header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.theme_para {
    color: #1f2a2e;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.custom_padding {
    padding: 100px 0;
}

.bg_light {
    background-color: #F4E1A6;
}

.theme_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: transparent;
    border-radius: 9999px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.8s linear;
    width: fit-content;
    padding: 10px 38px 10px 20px;
    border: 0px;
    cursor: pointer;
}

.btn-text {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    transition: transform 0.8s ease-in-out, color 0.8s ease-in-out;
    padding-inline-end: 15px;
}

.theme_btn .btn_icon {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-115%, -50%) rotate(-45deg);
    z-index: 0;
    transition: transform 0.8s ease, left 0.8s ease;
    font-size: 32px;
    color: #000;
    line-height: 36px;
}

/* .theme_btn:hover {
    background-color: #113f52;
} */

.theme_btn:hover .btn-text {
    color: #000;
    transform: translateX(2.5rem);
}

.theme_btn:hover .btn_icon {
    left: 0;
    transform: translate(15%, -50%) rotate(0deg);
}

.stats_box h3 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 0;
}

.title_after::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: 8px auto 0;
    background: linear-gradient(to right, transparent, #255a40, transparent);
    position: absolute;
    right: 0;
    display: inline-block;
    bottom: -5px;
}

/* footer */
footer {
    background-image: url('../images/footer-bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0 0;
}

.footer_top {
    margin-bottom: 80px;
    background: rgb(255 255 255 / 75%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 40px;
    padding: 60px 60px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.philosophy-bar {
    background: #255a40;
    color: #fff;
    padding: 15px 30px;
    border-radius: 100px;
    display: inline-flex;
    gap: 20px;
    margin-top: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer_logo {
    max-width: 140px;
    height: auto;
}

.logo_box {
    margin-bottom: 30px;
}

.footer_para {
    font-size: 15px;
    color: #323232;
    margin-top: 20px;
    font-weight: 600;
}

.footer_items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_titles {
    font-size: 18px;
    color: #113f52;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer_items li {
    margin-bottom: 7px;
}

footer .footer_links {
    font-size: 16px;
    color: #323232 !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 0 !important;
    display: inline-block;
}

.contact_items li a,
.contact_items li p {
    font-size: 18px;
    font-weight: 700;
    color: #323232;
    font-family: "Cairo", sans-serif;
}

footer a.footer_links:hover::after {
    width: 100%;
    transition: width .3s;
}

footer a.footer_links::after {
    color: #113f52 !important;
    content: '';
    display: block;
    width: 0px;
    height: 1px;
    background: #113f52;
    transition: width .3s;
}

footer .social_icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1b1f;
    transition: 0.4s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

footer .social_icons a i {
    font-size: 22px;
    color: #255a40;
}

.social_icons a:hover {
    background: #113f52;
    color: white;
    transform: translateY(-5px);
}

.social_icons a:hover i {
    color: #fff;
}

.footer_bottom {
    background-color: #1D3557;
    padding: 10px 0;
}

.footer_bottom p.copy_righttxt {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
    font-family: "Cairo", sans-serif;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 0.3s !important;
    border-radius: 18px;
    border-bottom: 5px solid #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #009fe3;
}

.service-card i {
    font-size: 2.8rem;
    color: #009fe3;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover i {
    color: #1D3557;
}

.floating_wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    align-items: center;
    background: transparent;
    color: #333;
    padding: 0;
    gap: 15px;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    transition: 0.4s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.floating_wrap .floating_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.floating_btn span {
    background: #f0f7f4;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    color: #333;
}

.floating_wrap img {
    max-width: 40px;
}

/* vsion mission */
/* .vision-mission-goals {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    position: relative;
}

.value-item {
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
}

.value-item h4 {
    font-weight: 700;
    margin-top: 15px;
    color: #1D3557;
}

.value-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #E63946;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.value-item:hover .icon-circle {
    transform: scale(1.1);
    background: #1D3557;
}

.connector {
    width: 80%;
    height: 4px;
    background: linear-gradient(to right, #E63946, #1D3557);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    top: 40px;
}

@media (max-width: 768px) {
    .connector {
        display: none;
    }
} */

.contact-info {
    display: inline-block;
    padding: 0px 20px;
}

/* .address-line {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
} */

.form_header {
    margin-bottom: 50px;
}

.icons_box {
    background: #fff;
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.icons_box i {
    font-size: 26px;
    color: #009fe3;
}

.contact-info p,
.contact-info a {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

textarea#Message {
    min-height: 120px;
}

/* Global */
/* .text-gradient {
    background: linear-gradient(90deg, #06AF9D, #00BFEF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  } */
.text-gradient {
    background: linear-gradient(120deg, #0d2c39, #113f52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.object-fit-cover {
    object-fit: cover;
}

/* Why Choose */
.why-choose-frozvic {
    position: relative;
}

.choose-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 140, 219, 0.1);
    min-height: 300px;
    padding: 30px;
    text-align: center;
    border-radius: 30px;
}

.choose-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 30px rgba(0, 191, 239, 0.15);
}

.choose-card p {
    font-size: 15px;
    font-weight: 500;
    color: #777;
    margin-bottom: 0;
    margin-top: 12px;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(6, 175, 157, 0.15), rgba(0, 191, 239, 0.15));
    transition: 0.3s;
    margin: 10px auto 30px;
}

.icon-box i {
    font-size: 46px;
}

.choose-card:hover .icon-box {
    background: linear-gradient(145deg, rgba(6, 175, 157, 0.3), rgba(0, 191, 239, 0.3));
}

.global-map-section {
    /* background: linear-gradient(135deg, #0E1A2B, #123653); */
    color: white;
    background: linear-gradient(#009fe3, #009fe310), url(../images/world-map-bg-2.jpg) left center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0px;
}

.map-wrapper {
    position: relative;
}

.global-map-section iframe {
    filter: brightness(0.9);
    height: 100%;
    min-height: 540px;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 1px;
}

.industries-section {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .5)), url(../images/industries-bg-2.jpg) left center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* about us page */
.hero_section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 320px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 79px;
    /* background-attachment: fixed; */
    scroll-behavior: smooth;
}

.theme_title_lg {
    font-size: 72px;
    color: #fff;
    font-weight: 700;
}

.about_hero {
    background-image: url('../images/rice-banner-image.jpeg');
    background-position: center;
}

.contact_hero {
    background-image: url('../images/contact-banner-2.jpg');
    background-position: center;
}

.export_hero {
    background-image: url('../images/export-banner-img.jpg');
    background-position: center;
}

.products_hero {
    background-image: url('../images/products-banner-image.jpg');
    background-position: center;

}

.hero_content {
    position: relative;
    z-index: 9;
}

.contact-info .theme_title_sm {
    margin-bottom: 10px;
}

.contact_sec .glass-tile.form-card {
    border-radius: 8px;
}

.info_box {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    padding: 35px 40px;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 30px rgba(15, 140, 219, 0.1);
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}

.info_box:hover {
    box-shadow: 0 2px 10px rgba(15, 140, 219, 0.5);
}

/* about us page */
.about_title_md {
    font-size: 34px;
    font-weight: 600;
    margin: 0 auto;
    line-height: 44px;
    margin-bottom: 20px;
}

/* .contact_form_wrap {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 140, 219, 0.1);
    height: 100%;
}

.contact_form_wrap .form-control {
    border-bottom: 1px solid #ddd !important;
    border: 0;
    border-radius: 0;
}

.contact_form_wrap .form-control:focus {
    border-color: #255a40 !important;
}

.contact_form_wrap label {
    padding: 0 !important;
    color: #333;
    font-weight: 500;
    font-size: 14px;
} */
.contact_sec {
    padding-top: 40px;
}

.info_wrapper {
    height: 100%;
    display: flex;
    gap: 25px;
    flex-direction: column;
    justify-content: space-between;
}

.info_box .icons_box {
    /* box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1) !important; */
    background: linear-gradient(145deg, rgba(6, 175, 157, 0.15), rgba(0, 191, 239, 0.15));
}

.contact_map_sec iframe {
    min-height: 480px;
    margin-bottom: -6px;
}

/* varietises section */
/* .varities_sec {
    background-image: url('../images/variety-bg.png');
    background-size: cover;
    background-position: left;
}

.varities_content .big-number {
    color: #255a40;
    font-size: 200px;
    font-weight: 800;
    line-height: 100%;
    margin-bottom: 40px;
}

.varities_content .exp-heading {
    color: #333;
    font-weight: 300;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
}

.zoom-box-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    cursor: zoom-in;
}

.rice-grain-img {
    width: 100%;
    transition: transform 0.3s ease-out;
    pointer-events: none;
    height: 100%;
    object-fit: contain;
}

.zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(191, 163, 126, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: bold;
}
.gallery-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.giant-text-container {
    position: absolute;
    width: 100%;
    top: 80px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.giant-text {
    font-size: 12vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    text-align: center;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.8s ease;
    white-space: nowrap;
    display: block;
}


.varieties_slider {
    margin-top: 80px;
}
.varieties_slider .rice_slider {
    width: 100%;
    z-index: 2;
}

.varieties_slider .slide-item {
    padding: 50px 0;
    outline: none;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.varieties_slider .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.2;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.varieties_slider .slick-center .slide-content {
    opacity: 1;
    transform: scale(1.1);
}

.varieties_slider .image-part {
    position: relative;
    display: none;
}

.varieties_slider .image-part img {
    width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transform: translateX(-50px);
    height: 220px;
    opacity: 1;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1), opacity 1.2s ease;
}

.varieties_slider .slick-center .image-part img {
    transform: translateX(0);
    opacity: 1;
}

.varieties_slider .info-part h2 {
    font-size: 38px;
    margin: 0;
    color: #121212;
    line-height: 1.1;
    font-weight: 800;
    text-transform: capitalize;
}

.varieties_slider .nav-controls {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 100;
}

.varieties_slider .nav-btn {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.varieties_slider .nav-btn:hover {
    background: #0d2c39;
    color: white;
    transform: scale(1.1);
} */

/* products page */
/* --- Navigation Tabs --- */
.tab-nav-container {
    position: relative;
    z-index: 10;
}

.nav-pills {
    background: white;
    padding: 10px;
    border-radius: 100px;
    display: inline-flex;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.nav-pills .nav-link {
    border-radius: 100px;
    padding: 15px 35px;
    font-weight: 800;
    color: #113f52;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav-pills .nav-link.active {
    background-color: #009fe3 !important;
    color: white !important;
}

/* --- Standardized Card UI --- */
.content_card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid #eef2f6;
    margin-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.category_img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    margin: 20px 0 50px;
    border: 1px solid #eee;
}

.content_card .category_name {
    font-size: 38px;
    font-weight: 700;
}

.content_card .para {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: 600;
}

.content_card .info_txt {
    margin: 20px 0 0;
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

.content_card .category_subtitle {
    color: #333;
    font-size: 20px;
    font-weight: 700;
}

.variety_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.variety_pill {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-left: 5px solid #009fe3;
    transition: 0.3s;
}

.variety_pill:hover {
    background: #113f52;
    color: white;
    transform: translateY(-3px);
}

.highlight_box {
    background: #f0f7f4;
    border: 1px solid #255a40;
    padding: 25px;
    border-radius: 25px;
}

.highlight_box h6 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.highlight_box p,
.highlight_box ul li {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.highlight_box i {
    color: #255a40;
    margin-right: 5px;
}

/* --- Private Label Section --- */
.private_label_wrap {
    background: #113f52;
    color: white;
    border-radius: 50px;
    padding: 60px;
    margin: 30px 0 0;
}

.private_label_wrap .pvt_lable_title {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.private_label_wrap .pvt_lable_para {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

.private_label_wrap .label_card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 25px;
    height: 300px;
    transition: background-color 0.3s ease-in-out;
}

.private_label_wrap .label_card h6 {
    font-size: 28px;
    font-weight: 600;
}

.private_label_wrap .label_card p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.private_label_wrap .label_card i {
    font-size: 50px !important;
    margin-bottom: 20px;
    display: inline-block;
}

.private_label_wrap .lable_img {
    width: 100%;
    max-width: 380px;
    height: 400px;
    margin-top: 30px;
}
#sugar .private_label_wrap .lable_img {
    max-width: 240px;
    height: 310px;
    margin: 30px auto 0 !important;
    display: block;
}
.info_wrap {
    margin-top: 20px;
}

.info_wrap p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.label_card:hover {
    background-color: #009fe3;
}

/* export page */
.section-tag {
    color: #255a40;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
    font-family: "Momo Signature", cursive;
}

.export_sec h2.section_title {
    font-size: 32px;
    font-weight: 700;
}

.export_sec p.para {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: 600;
}

.cap-pill span {
    font-size: 16px;
    font-weight: 500;
}

/* 2. Bento Card Styling */
.bento-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.bento-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* 3. Capability Pill */
.cap-pill {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    min-height: 80px;
    gap: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.cap-pill:hover {
    border-color: #255a40;
}

.cap-pill i {
    color: #009fe3;
    font-size: 1.2rem;
}

/* 5. Icon Circle for Philosophy */
.icon-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #009fe3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.bento_img_wrap {
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.bento_img {
    object-fit: cover;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    transition: scale 0.3s ease-in-out;
}

.bento_img:hover {
    scale: 1.05;
}

.bento_badge_wrap {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.badge_tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px 8px;
    background: linear-gradient(145deg, rgba(6, 175, 157, 0.3), rgba(0, 191, 239, 0.3));
    border: 1px solid #009fe3;
    color: #333;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: normal;
}

.bentor_strip {
    background: #009fe31a;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 18px;
    margin-top: 15px;
    border-radius: 8px;
    border-left: 5px solid #009fe3;
}

.philosophy_wrap {
    padding: 120px 0 0;
    text-align: center;
}

.philosophy_box {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
}

.philosophy_box .items {
    background: #f4f4f4;
    max-width: 300px;
    width: 25%;
    border-radius: 20px;
    padding: 30px;
    color: #333;
    transition: all 0.5s ease;
}

.philosophy_box .items:hover {
    background: #255a40;
    color: #fff;
}

.philosophy_box .items h5 {
    font-size: 22px;
    font-weight: 600;
}

.philosophy_box .items p {
    font-size: 16px;
    font-weight: 500;
}

/* contact  us page */
/* 3. Glass Modular Tiles */
.glass-tile {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 40px;
    height: 100%;
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.glass-tile:hover {
    transform: translateY(-5px);
}

/* Inquiry Card Styling */
.form-card {
    background: rgba(255, 255, 255, 0.85);
}

.form-card .form-label {
    font-weight: 700;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-card .form-control,
.form-card .form-select {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px 15px;
    font-weight: 500;
}

.form-card .form-control::placeholder,
.form-card .form-select::placeholder {
    color: #ccc;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    background: #fff;
    border-color: #009fe3;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

/* Icon Pill */
.icon-pill {
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: #009fe3;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.info-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}

.info-text p,
.info-text a {
    font-size: 22px;
    color: #666;
    font-weight: 600;
    margin-bottom: 0;
    font-family: "Cairo", sans-serif;
}

.contact_cards {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 40px;
    height: 100%;
    justify-content: flex-start;
    gap: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: border 0.3s ease-in-out;
}

.contact_cards:hover {
    border-bottom: 5px solid #255a40;
}

.contact_icons {
    display: inline-block;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 32px;
    background: linear-gradient(145deg, rgba(6, 175, 157, 0.15), rgba(0, 191, 239, 0.15));
}

.contact-map-section iframe {
    filter: brightness(0.9);
    height: 100%;
    min-height: 540px;
}

/* Media query for whole website */
@media (min-width: 320px) and (max-width: 767px) {

    /* common css */
    header .main_logo {
        max-width: 100px;
    }

    .main_header .navbar-toggler {
        border: 0;
        padding: 0px;
        outline: none;
        box-shadow: unset;
    }

    header .navbar-nav .nav-link {
        font-size: 14px;
    }

    /* .main_header .navbar-collapse.collapse.show  {
       padding: 20px 0px 10px;
    } */

    .theme_sub_title {
        font-size: 28px;
        line-height: 28px;
        padding-right: 100px;
    }

    .theme_title_md {
        font-size: 38px;
        line-height: 40px;
    }

    .theme_title_lg {
        font-size: 32px;
    }

    .custom_padding {
        padding: 60px 0;
    }

    .theme_para {
        font-size: 15px;
        line-height: 22px;
    }

    .section_header {
        margin: 0 auto 20px;
    }

    .btn-text {
        font-size: 15px;
        padding-inline-end: 0;
    }

    .theme_btn .btn_icon {
        font-size: 25px;
    }

    .hero_section {
        height: 220px;
        margin-top: 64px;
    }

    .footer_top {
        margin-bottom: 100px;
        border-radius: 20px;
        padding: 30px 20px 30px;
    }

    footer .footer_links {
        font-size: 14px;
    }

    .footer_bottom p.copy_righttxt {
        font-size: 12px;
    }

    .footer_titles {
        margin-bottom: 15px;
    }

    .philosophy-bar {
        border-radius: 30px;
        gap: 10px;
        flex-direction: column;
        margin-top: 40px;
    }

    .floating_wrap {
        bottom: 20px;
        right: 10px;
    }

    .floating_wrap img {
        max-width: 35px;
    }

    /* home hero */
    .hero-wrapper {
        margin-top: 64px;
        padding: 40px 0;
        height: 100%;
    }

    .badge {
        font-size: 12px;
    }

    .tagline {
        font-size: 16px;
    }

    .circle_container {
        padding: 0px 0px 30px;
        gap: 40px;
    }

    .circle_card .image-wrapper {
        width: 80px;
        height: 80px;
    }

    .circle_card .image-wrapper img {
        width: 80px;
        height: 80px;
    }

    .circle_card .image-wrapper::before {
        width: 90px;
        height: 90px;
    }

    .content h2 {
        font-size: 13px;
    }

    .hero-right p {
        font-size: 15px;
    }

    .vision-box {
        margin-top: 0px;
        padding-top: 20px;
    }

    /* about us  home*/
    .about-narrative {
        padding-right: 0;
    }

    .pillar-item {
        padding-left: 20px;
    }

    .pillar-item h4 {
        font-size: 18px;
    }

    .pillar-item p {
        font-size: 14px;
        line-height: 1.4;
    }

    .about-visual .image-wrapper {
        margin-bottom: 10px;
        box-shadow: unset;
    }

    .about-visual .visual_inn {
        position: relative;
        margin-top: 30px;
        top: 0;
    }

    .about-visual .image-wrapper img {
        height: 280px;
        border-radius: 20px;
    }

    /* export section home */
    .export-card {
        height: 220px;
        margin-bottom: 20px;
    }

    .card-overlay {
        background: linear-gradient(to top, #000000 0%, transparent 90%);
        padding: 30px;
    }

    .export-list {
        max-height: 100px;
        opacity: 1;
    }

    .trust-bar {
        padding: 20px;
        margin-top: 30px;
    }

    .trust-bar h5 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .benefit-item h3 {
        font-size: 18px;
    }

    .benefit-item {
        padding: 20px 0;
    }

    .benefit-item p {
        font-size: 15px;
        line-height: 1.4;
    }

    .why_choose_sec {
        padding-bottom: 0;
    }

    /* products page */
    .nav-pills {
        border-radius: 20px;
        justify-content: center;
    }

    .nav-pills .nav-link {
        padding: 10px 15px;
    }

    .content_card {
        border-radius: 20px;
        padding: 20px;
    }

    .content_card .category_name {
        font-size: 28px;
    }

    .content_card .para {
        font-size: 15px;
        line-height: 1.4;
    }

    .category_img {
        height: 220px;
        border-radius: 25px;
        margin: 10px 0 30px;
    }

    .highlight_box p,
    .highlight_box ul li {
        font-size: 14px;
    }

    .private_label_wrap {
        border-radius: 20px;
        padding: 20px;
        margin: 40px 0 0;
    }

    .private_label_wrap .pvt_lable_title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .private_label_wrap .pvt_lable_para {
        font-size: 16px;
    }

    .private_label_wrap span.badge {
        margin-bottom: 5px;
    }

    .private_label_wrap .lable_img {
        height: auto;
    }

    .private_label_wrap .label_card h6 {
        font-size: 22px;
    }

    .private_label_wrap .label_card i {
        margin-bottom: 10px;
    }

    .private_label_wrap .label_card p {
        font-size: 15px;
        line-height: 22px;
    }

    /* export page */
    .bento-card {
        border-radius: 20px;
        padding: 20px;
    }

    .export_sec h2.section_title {
        font-size: 26px;
    }

    .export_sec p.para {
        font-size: 15px;
        line-height: 1.4;
    }

    .cap-pill span {
        font-size: 15px;
    }

    .bento_badge_wrap {
        gap: 10px;
    }

    .bento_img {
        height: 220px;
    }

    .philosophy_box .items {
        width: 100%;
    }

    .philosophy_box {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    /* contact us page */
    .contact_cards,
    .glass-tile {
        padding: 20px;
        margin-top: 20px;
    }

    .info-text p,
    .info-text a,
    .info-text h3 {
        font-size: 18px;
    }

    .about-section {
        padding-bottom: 0;
    }

    .export-list li {
        font-size: 15px;
    }

    .info_box {
        padding: 25px 20px;
    }

    .about_content_box {
        padding-left: 0 !important;
    }
.vm_section {
    padding-bottom: 0;
}

.philosophy_wrap {
    padding: 60px 0 0;
}

}

@media (max-width: 1024px) {
    .hero-right {
        padding: 20px;
        margin-bottom: 0px;
    }

    .floating-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -50px;
        width: 280px;
        height: 180px;
    }

    .elite-section {
        grid-template-columns: 1fr;
    }

    .showcase-visual {
        height: 280px;
        position: relative;
        top: 0;
    }

    .benefit-item .top-row {
        margin-bottom: 5px;
    }

    .showcase-content {
        padding: 0px;
    }

    .showcase-content h2 {
        font-size: 2.5rem;
    }
}