/********** Template CSS **********/
/* GLOBAL FIXES */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
}

a,
button {
    transition: all .3s ease;
}


.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

/* Quote button color same as navbar */
.btn-primary {
    background: linear-gradient(135deg, #0f2f5f, #1f4e8c);
    border: none;
    color: #ffffff;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.35s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff7a00, #ff9a3c);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary:hover {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #ffffff;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn:active {
    transform: scale(.96);
    transition: transform 0.1s;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    transition: 0.3s;
    transform: scale(2);
}

.topbar a {
    color: white;
    text-decoration: none;
}

.topbar a:hover {
    color: #ff7a00;
}

#google_translate_element select {
    border-radius: 5px;
    border: none;
    padding: 3px 8px;
    font-size: 14px;
}

a[href^="mailto:"],
a[href^="tel:"] {
    color: #fff;
    /* or #0f2f5f depending on background */
    text-decoration: none;
    font-weight: 500;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
    color: #ff7a00;
}

/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */

.sticky-top {
    top: 0;
    transition: 0.4s ease;
    z-index: 999;
}

.navbar {
    position: relative;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0f2f5f;
    padding: 10px 18px;
    border-radius: 10px;
}

/* Logo */
.mobile-logo {
    height: 55px;
    width: 55px;
}

/* Main title */
.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Glass Effect */
.navbar.sticky-top {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ================= NAV LINKS ================= */

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s;
}

/* Underline animation */
.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    transition: 0.3s;
}

.navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover {
    color: #ff7a00;
}

.navbar .navbar-nav .nav-link.active {
    color: #ff7a00;
}

/* ================= DROPDOWN ================= */

.navbar .dropdown-toggle::after {
    border-top: 6px solid #ff7a00;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    margin-left: 6px;
    transition: 0.3s;
}

.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}
.offcanvas {
    visibility: hidden;
    transition: transform 0.3s ease-in-out;
}

.offcanvas.show {
    visibility: visible;
}
/* ================= MEGA MENU ================= */

.mega-dropdown {
    width: 100%;
    left: 0;
    top: 100%;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: none;
    animation: fadeIn 0.3s ease;
}

/* Show on click */
.nav-item.dropdown.show .mega-dropdown {
    display: block;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Columns spacing */
.mega-dropdown .row>div {
    padding: 0 25px;
}

/* Divider */
.mega-dropdown .border-end {
    border-right: 1px solid #eee !important;
}

/* ================= CATEGORY TITLE ================= */

.menu-title {
    margin-bottom: 15px;
}

.menu-title a.menu-link {
    font-size: 15px;
    font-weight: 700;
    color: #ff7a00;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

/* Underline animation */
.menu-title a.menu-link::after {
    content: "";
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.menu-title a.menu-link:hover::after {
    width: 100%;
}

/* ================= DROPDOWN ITEMS ================= */

.mega-dropdown .dropdown-item {
    font-size: 14px;
    padding: 6px 0;
    color: #444;
    transition: 0.3s;
    position: relative;
}

.mega-dropdown .dropdown-item:hover {
    color: #ff7a00;
    padding-left: 10px;
}

/* Arrow animation */
.mega-dropdown .dropdown-item::before {
    content: "›";
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: 0.3s;
    color: #ff7a00;
}

.mega-dropdown .dropdown-item:hover::before {
    left: -2px;
    opacity: 1;
}

/* ================= PREVIEW BOX ================= */

.preview-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.preview-box img {
    max-height: 200px;
    object-fit: contain;
}

/* ================= MOBILE PRODUCTS MENU ================= */
@media (max-width: 991px) {

    /* FORCE MOBILE MENU */
    .mega-dropdown {
        display: none !important;
        position: static !important;
        box-shadow: none;
        padding: 15px;
    }

    .mega-dropdown .row.d-lg-flex {
        display: none !important;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        background: #0f2f5f;
        padding: 10px 15px;
        border-radius: 0 12px 12px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .brand-text {
        color: #fff;
    }

    .sticky-top {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* ===== PREMIUM SIDEBAR ===== */
.premium-sidebar {
    width: 300px;
    backdrop-filter: blur(25px);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95),
            rgba(240, 240, 240, 0.9));
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

/* HEADER */
.offcanvas-header {
    border-bottom: 1px solid #eee;
}

/* ===== COMMON ===== */
.sidebar-item {
    border-bottom: 1px solid #eee;
    padding: 4px 0;
}

/* ===== LINKS ===== */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 6px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ICONS ALWAYS ORANGE */
.sidebar-link i,
.sidebar-header i,
.submenu-header i {
    color: #ff7a00;
    font-size: 18px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.sidebar-link:hover {
    color: #ff7a00;
    transform: translateX(6px);
}

.sidebar-link:hover i {
    transform: scale(1.15);
}

/* ===== HEADER (Products) ===== */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===== CATEGORY HEADER ===== */
.submenu-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 6px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===== HOVER ===== */
.sidebar-header:hover,
.submenu-header:hover {
    color: #ff7a00;
}

/* ===== ACTIVE ===== */
.sidebar-header.active,
.submenu-header.active {
    color: #ff7a00;
    background: rgba(255, 122, 0, 0.08);
    border-radius: 6px;
}


/* ===== ARROW (MODERN CHEVRON) ===== */
.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    margin-left: auto;
}

/* ACTIVE ARROW */
.sidebar-header.active .arrow,
.submenu-header.active .arrow {
    transform: rotate(45deg);
    border-color: #ff7a00;
}

/* ===== LEVEL 1 MENU ===== */
.level-1-menu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.level-1-menu.show {
    max-height: 600px;
}

/* ===== LEVEL 2 MENU ===== */
/* LEVEL 2 */
.level-2-menu {
    transition: all 0.4s ease;
}

.level-2-menu a {
    color: #555;

}

/* LEVEL 3 (highlighted) */
.level-3-menu a {
    color: #0f2f5f;
    background: rgba(15, 47, 95, 0.05);
    border-radius: 6px;
}

/* LEVEL 3 MENU */
.level-3-menu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding-left: 15px;
}

.level-3-menu.show {
    max-height: 400px;
}

/* LEVEL 3 LINKS */
.level-3-menu a {
    display: block;
    padding: 7px 6px;
    font-size: 13px;
    color: #0f2f5f;
    /* 👈 DIFFERENT COLOR */
    font-weight: 600;
    transition: 0.3s;
}

/* Hover effect */
.level-3-menu a:hover {
    color: #ff7a00;
    padding-left: 12px;
}

/* ===== SUBMENU LINKS ===== */
.sidebar-submenu a {
    display: block;
    padding: 8px 6px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-submenu a:hover {
    color: #ff7a00;
    padding-left: 10px;
}

/* ===== CATEGORY TITLE ===== */
.submenu-title {
    font-size: 13px;
    font-weight: 700;
    color: #ff7a00;
    margin-top: 10px;
}

.preview-box {
    background: #fff;
    padding: 25px;
    /* slightly more space */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 300px;
    /* increased from 260px */
}

/* IMAGE FIX */
#previewImage {
    height: 220px;
    /* 🔥 bigger image */
    width: 100%;
    object-fit: contain;
    /* keep perfect ratio */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* HOVER EFFECT */
.preview-box:hover #previewImage {
    transform: scale(1.08);
}

/* CATEGORY */
.preview-category {
    font-size: 12px;
    color: #ff7a00;
    margin-top: 12px;
}

/* TITLE */
#previewText {
    font-weight: 700;
    color: #0f2f5f;
    font-size: 16px;
}

/* BUTTON */
.preview-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 16px;
    background: #0f2f5f;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: #ff7a00;
    color: #0f2f5f;
    transform: translateY(-2px);
    /* lift effect */
}


/* ===============================
   PAGE HEADER WITH BACKGROUND IMAGE
================================= */

.page-header {
    position: relative;

    /* ✅ Background Image */
    background-image: url("../img/header.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
}

/* 🔥 Gradient Overlay */

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.4));

    z-index: 1;
}

/* Content */

.page-header .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Title */

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Subtitle */

.page-header .subtitle {
    font-size: 18px;
    color: #ddd;
    margin-top: 10px;
}

/* Orange underline */

.page-header h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7a00;
    margin: 15px auto 0;
}

/* ===============================
   BREADCRUMB STYLING
================================= */

.page-header .breadcrumb a {
    color: #ff7a00;
    font-weight: 500;
    transition: 0.3s;
}

.page-header .breadcrumb a:hover {
    color: #ffffff;
}

.page-header .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

/* ===============================
   MOBILE OPTIMIZATION
================================= */

@media (max-width: 768px) {
    .page-header {
        min-height: 260px;
        padding: 40px 15px;

        /* ❗ Important: disable parallax on mobile */
        background-attachment: scroll;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-header .subtitle {
        font-size: 16px;
    }
}

/* Breadcrumb Links Color */

.paper-header .breadcrumb a {
    color: #ff7a00;
    /* ORANGE */
    font-weight: 500;
    transition: 0.3s;
}

/* Hover Effect */

.paper-header .breadcrumb a:hover {
    color: #ffffff;
}

/* Active Page (Sweet Boxes / Paper Boxes) */

.paper-header .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

/* Separator color */

.paper-header .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

/* PAPER HEADER SECTION */

.paper-header {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */

.paper-header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Overlay */

.paper-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Content */

.paper-header-content {
    position: relative;
    z-index: 3;
}

/* Title underline */

.paper-header h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7a00;
    margin: 15px auto 0;
}

/* Breadcrumb Links Color */
.nonwoven-header .breadcrumb a {
    color: #ff7a00;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover Effect */
.nonwoven-header .breadcrumb a:hover {
    color: #ffffff;
}

/* Active Page */
.nonwoven-header .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

/* Separator */
.nonwoven-header .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

/* HEADER SECTION */
.nonwoven-header {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.nonwoven-header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Overlay */
.nonwoven-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Content */
.nonwoven-header-content {
    position: relative;
    z-index: 3;
}

/* Title underline */
.nonwoven-header h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7a00;
    margin: 15px auto 0;
}

/* Animations */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== CAROUSEL ===== */
.carousel-item {
    height: 90vh;
    position: relative;
}

.carousel-item img,
.carousel-item video {
    width: 100%;


    height: 100%;
    object-fit: cover;

    transform: scale(1);
    transition: transform 6s ease;
}

.carousel-item.active img,
.carousel-item.active video {
    transform: scale(1.05);
}

/* ===== OVERLAY ===== */
.custom-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

/* ===== TEXT ===== */
.main-heading {
    font-size: 58px;
    font-weight: 800;
    color: #fff;
}

.main-heading span {
    display: block;
    font-size: 24px;
    margin-top: 10px;

    background: linear-gradient(90deg, #ff7a00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    font-size: 18px;
    color: #ddd;
    margin: 20px 0;
}

/* ===== BUTTON ===== */
.btn-premium {
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* ===== INDICATORS ===== */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

/* ACTIVE INDICATOR (PREMIUM LOOK) */
.carousel-indicators .active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    opacity: 1;
}

/* HOVER EFFECT */
.carousel-indicators button:hover {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(11, 44, 95, 0.5);
    top: 0;
    left: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-heading {
        font-size: 32px;
    }

    .main-heading span {
        font-size: 16px;
    }

    .sub-text {
        font-size: 14px;
    }
}

/*** HOME ABOUT SECTION ***/

/* ===============================
   HOME ABOUT IMAGE CONTAINER
================================ */
.home-about-img {
    position: relative;
    padding-left: 50px;
}

/* IMAGE */
.home-about-img img {
    width: 100%;
    max-width: 700px;
    height: 600px;
    object-fit: cover;

    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);

    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* HOVER EFFECT (MORE PREMIUM) */
.home-about-img:hover img {
    transform: scale(1.04);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

/* ===============================
   ANIMATED BORDER FRAME
================================ */
.home-about-img::before {
    content: "";
    position: absolute;

    width: 260px;
    height: 360px;
    top: 0;
    left: 0;

    border: 5px solid #ff7a00;
    border-radius: 14px;

    z-index: -1;

    animation: floatFrame 4s ease-in-out infinite;
}

/* ADD SECOND LAYER (DEPTH EFFECT 🔥) */
.home-about-img::after {
    content: "";
    position: absolute;

    width: 260px;
    height: 360px;
    top: 25px;
    left: 25px;

    border: 3px dashed rgba(255, 122, 0, 0.5);
    border-radius: 14px;

    z-index: -2;
}

/* ANIMATION */
@keyframes floatFrame {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ===============================
   BORDER BOX (RIGHT SIDE)
================================ */
.home-custom-border {
    border-color: #ff7a00 !important;
    border-radius: 12px;

    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.home-custom-border:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .home-about-img {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .home-about-img img {
        height: auto;
    }

    .home-about-img::before,
    .home-about-img::after {
        display: none;
        /* clean mobile look */
    }
}

/* ===== TEXT ALIGNMENT FIX ===== */
.home-about-section h1 {
    text-align: left;
}

.home-about-section h5 {
    text-align: left;
}

/* CENTER BOX TEXT */
.home-custom-border {
    text-align: center;
}

/* OPTIONAL: BETTER LINE HEIGHT */
.home-about-section p {
    line-height: 1.8;
    max-width: 600px;
    margin: auto;
    text-align: justify;
}

.home-about-section {
    text-align: center;
}


/* =========================
   FEATURE CARDS SECTION
========================= */

.feature-row {
    background: #f5f6f8;
}

/* Feature Card */

.feature-item {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid #e8e8e8;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Equal Height */

.feature-row .col-lg-3 {
    display: flex;
}

.feature-row .feature-item {
    width: 100%;
}

/* Hover Effect */

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon Box */

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: .3s;
}

/* Icon animation */

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* Title */

.feature-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* Description */

.feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

/* Read More */

.feature-item a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0f2f5f;
    text-decoration: none;
}

/* Arrow animation */

.feature-item a i {
    transition: .3s;
}

.feature-item:hover a i {
    transform: translateX(6px);
}

/* Top hover line */

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #0f2f5f;
    transition: .4s;
}

.feature-item:hover::before {
    width: 100%;
}


/* =========================
   WHY CHOOSE US SECTION
========================= */

.feature {
    background: linear-gradient(135deg, #0f2f5f, #173d78);
    padding: 110px 0;
    position: relative;
}

/* Container Fix */

.feature .container {
    position: relative;
    z-index: 2;
}

/* =========================
   IMAGE STYLE
========================= */

.feature-img {
    position: relative;
    padding-left: 45px;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Image */

.feature-img img {
    width: 100%;
    max-width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all .4s ease;
}

/* Hover */

.feature-img img:hover {
    transform: scale(1.03);
}

/* Animated Border */

.feature-img::before {
    position: absolute;
    content: "";
    width: 260px;
    height: 360px;
    top: -25px;
    left: 0;
    border: 5px solid #ff7a00;
    border-radius: 10px;
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

/* Border Animation */

@keyframes animateUpDown {
    0% {
        top: -25px;
    }

    50% {
        top: -45px;
    }

    100% {
        top: -25px;
    }
}

/* =========================
   TEXT CONTENT
========================= */

.feature h1 {
    color: #fff;
    font-weight: 700;
}

.feature p {
    color: #ddd;
}

/* =========================
   COUNTER BOXES
========================= */

.feature .border {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
}

.feature .border:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

/* Counter Number */

.feature h1.text-white {
    font-weight: 700;
}

/* =========================
   PROGRESS BAR
========================= */

.feature .progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.feature .progress-bar {
    background: #ff7a00;
    transition: width 1.5s ease;
}




/********** PRODUCT SECTION **********/
.feature-item,
.home-product-card,
.process-box {
    will-change: transform;
}

/* Section Title */

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b2c5f;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin: 12px auto 0;
}

/* HOME PRODUCT CARD */

.home-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Product Image */

.home-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

/* Image Zoom */

.home-product-card:hover img {
    transform: scale(1.08);
}

/* Card Hover */

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

/* Content */

.home-product-content {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Title */

.home-product-content h5 {
    font-weight: 700;
    font-size: 18px;
    color: #0b2c5f;
    margin-bottom: 10px;
}

/* Description */

.home-product-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Button */

.home-product-content .btn {
    margin-top: auto;
    background: #ff7a00;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    transition: 0.3s;
}

.home-product-content .btn:hover {
    background: #e56700;
    transform: translateY(-2px);
}

/********** MANUFACTURING PROCESS **********/

.process-section {
    background: #fff;
    padding: 90px 0;
}

/* Process Box */

.process-box {
    padding: 45px 30px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
    height: 100%;
}

/* Hover */

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

/* Icon */

.process-box i {
    color: #ff7a00;
    font-size: 42px;
    margin-bottom: 18px;
}

/* Title */

.process-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f2f5f;
}

/* Text */

.process-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/********** STATS SECTION **********/
.stats-section {
    background: #0b2c5f;
    color: #fff;
}

.stat-box-dark {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: 0.3s;
}

.stat-box-dark:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-box-dark h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ff7a00;
}

.stat-box-dark p {
    margin: 0;
    font-size: 15px;
}

/* EXPORT ADVANCED MAP */

.export-advanced {
    background: #f6f7fa;
    padding: 40px 0;
    /* reduced from 80px */
}

.export-advanced .section-title {
    font-size: 28px;
}

.export-advanced p {
    font-size: 15px;
}

/* MAP WRAPPER */

.map-wrapper {
    position: relative;
    max-width: 900px;
    /* reduced from 1400px */
    margin: auto;
    padding: 10px;
}

/* WORLD MAP IMAGE */

.world-map {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: auto;
    opacity: 0.95;
}

/* Tooltip size */

.country-tooltip {
    font-size: 13px;
    padding: 8px 10px;
}

.country-tooltip h5 {
    font-size: 14px;
    margin-bottom: 3px;
}

/* PINS */

.pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ff7a00;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.pin:hover {
    transform: scale(1.2);
    box-shadow:
        0 0 10px rgba(255, 122, 0, 0.6),
        0 0 20px rgba(255, 122, 0, 0.4),
        0 0 30px rgba(255, 122, 0, 0.2);
}

/* PIN POSITIONS */

.europe {
    top: 32%;
    left: 56%;
}

.north-america {
    top: 34%;
    left: 24%;
}

.latin-america {
    top: 60%;
    left: 30%;
}

.africa {
    top: 52%;
    left: 55%;
}

.asia {
    top: 40%;
    left: 72%;
}

/* COUNTRY TOOLTIP */

.country-tooltip {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    font-size: 13px;
    line-height: 1.6;
    z-index: 5;
}

/* SHOW TOOLTIP ON HOVER */

.pin:hover .country-tooltip {
    opacity: 1;
    visibility: visible;
}

/* TOOLTIP TITLE */

.country-tooltip h5 {
    margin-bottom: 8px;
    color: #0f2f5f;
    font-weight: 700;
    font-size: 14px;
}

/* PULSE ANIMATION */

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }

}

/* EXPORT ROUTES */

.route {
    position: absolute;
    border-top: 2px dashed #d5a252;
    opacity: 0.6;
    animation: routeMove 6s linear infinite;
}

.route-europe {
    top: 35%;
    left: 45%;
    width: 150px;
}

.route-america {
    top: 40%;
    left: 30%;
    width: 200px;
}

.route-africa {
    top: 50%;
    left: 48%;
    width: 120px;
}

.route-asia {
    top: 42%;
    left: 60%;
    width: 140px;
}

/* ROUTE ANIMATION */

@keyframes routeMove {

    0% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-10px);
    }

}

/* ===== Footer Main ===== */
.footer {
    position: relative;
    z-index: 10;
    isolation: isolate;
    overflow: hidden;

    background:
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url("../img/world-map1.png") no-repeat center/cover;

    color: #ccc;
}

/* Optional: Smooth background effect */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: -1;
}

/* Tagline */
.footer-tagline {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Links */
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #ff7a00;
}

/* Layout */
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    padding: 80px 0;
    align-items: start;
}

/* Sections */
.footer-section {
    min-width: 250px;
}

/* Description */
.footer-desc {
    max-width: 320px;
    text-align: justify;
    line-height: 1.7;
    font-size: 15px;
    margin-top: 10px;
}

/* Logo */
.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #ff7a00, #ffd200);
    transform: translateY(-3px);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    position: relative;
    transition: .3s;
}

.footer-links a::before {
    content: "➤";
    position: absolute;
    left: -14px;
    opacity: 0;
    color: #ff7a00;
    transition: .3s;
}

.footer-links a:hover {
    padding-left: 12px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Headings */
.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
}

.footer h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff7a00;
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* Address */
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-address i {
    color: #ff7a00;
    font-size: 18px;
    margin-top: 4px;
}

.footer-address span {
    line-height: 1.7;
    font-size: 14px;
}

/* Hours */
.footer-hours {
    color: #ffb347;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #050505;
    font-size: 13px;
    color: #777;
}

.footer-bottom a {
    color: #ff7a00;
    font-weight: 500;
    position: relative;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #ff7a00;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Call Button (lowest on right) */
.call-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #0b2c5f;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.call-float:hover {
    background: #062044;
}

/* Request Quote Button (middle) */
.quote-float {
    position: fixed;
    right: 25px;
    bottom: 95px;
    background: #ff7a00;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
    text-decoration: none;
    transition: 0.3s;
}

.quote-float:hover {
    background: #FFD700;
    transform: translateY(-3px);
}

/* Back To Top (top of stack) */
.back-to-top {
    position: fixed;
    bottom: 160px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #ff7a00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    transition: 0.3s;
}

.back-to-top:hover {
    background: #ffb347;
    transform: scale(1.1);
}

/* WhatsApp Button (left side) */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        text-align: left;
        max-width: 100%;
    }
}


/* =====================================================
   PRODUCT HERO SECTION
===================================================== */
/* ===== CATEGORY BUTTONS PREMIUM STYLE ===== */
.btn-outline-primary {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #0f2f5f;
    border: 2px solid transparent;
    border-radius: 50px;
    background: #fff;
    transition: all 0.35s ease;
    overflow: hidden;
    z-index: 1;
}

/* Gradient Border Effect */
.btn-outline-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #0f2f5f, #ff7a00);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Hover Effect */
.btn-outline-primary:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Fill Animation */
.btn-outline-primary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #0f2f5f, #ff7a00);
    transition: height 0.35s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-outline-primary:hover::after {
    height: 100%;
}

/* Active Click Effect */
.btn-outline-primary:active {
    transform: scale(0.97);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Focus */
.btn-outline-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.3);
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
    .btn-outline-primary {
        padding: 10px 18px;
        font-size: 14px;
        margin: 5px 4px;
    }
}

.product-image-box {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    border-radius: 8px;
    transition: transform .5s ease;
    will-change: transform;
}

.product-image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
}

.product-image-box:hover img {
    transform: scale(1.05);
}

.product-image-box::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #ff7a00;
    opacity: 0.08;
    border-radius: 50%;
}

.product-title {
    font-size: 40px;
    font-weight: 800;
}

.product-title span {
    color: #ff7a00;
}

.product-desc {
    margin: 20px 0;
    color: #555;
}

.product-points {
    list-style: none;
    padding: 0;
}

.product-points li {
    margin-bottom: 8px;
}

.product-points i {
    color: #ff7a00;
    margin-right: 8px;
}


/* =====================================================
   INDUSTRIES SECTION
===================================================== */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.industry-grid .col {
    text-align: center;
}

.industry-grid i {
    font-size: 30px;
    color: #0b2c5f;
    margin-bottom: 8px;
}

/* =====================================================
   FEATURES / APPLICATIONS / BENEFITS TABS
===================================================== */

.fab-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: auto;
}

.fab-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    gap: 10px;
}

.fab-btn {
    border: none;
    background: #eee;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.fab-btn.active {
    background: #ff7a00;
    color: white;
}

.fab-content {
    display: none;
}

.fab-content.active {
    display: block;
}

/* LIST STYLE */

.fab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
    list-style: none;
    padding: 0;
}

.fab-list li {
    position: relative;
    padding-left: 25px;
    text-transform: capitalize;
    font-weight: 500;
}

/* BULLET ICONS */

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

.app-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

.benefit-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

/* FAB Section List Capitalization */


.fab-list li:hover {
    transform: translateX(5px);
    transition: 0.3s;
    color: #ff7a00;
}


/* =====================================================
   TECHNICAL SPECIFICATION TABLE
===================================================== */

.tech-section {
    background: #f8f9fb;
}

.tech-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tech-table th {
    width: 35%;
    text-align: left;
    padding: 14px;
    background: #f3f4f7;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
}

.tech-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.tech-table th,
.tech-table td {
    text-transform: capitalize;
}

.tech-table tr:hover {
    background: #fafafa;
}

/* =====================================================
   LONG DESCRIPTION SECTION
===================================================== */

.long-desc {
    background: #f9fafc;
}

.long-desc p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Internal Product Links */

.long-desc a {
    color: #0b2c5f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.long-desc a:hover {
    color: #ff7a00;
    border-bottom: 2px solid #ff7a00;
}

.desc-heading {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.desc-list {
    list-style: none;
    padding-left: 0;
}

.desc-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.desc-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #ff7a00;
    font-weight: bold;
}


/* PRODUCTS PACKED GRID */

.packing-grid {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.packing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
}

.packing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
}

.pack-item {
    background: #ffffff;
    padding: 18px;
    text-align: center;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.pack-item:hover {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-3px);
}

.process-heading {
    font-size: 20px;
    /* smaller than h3 */
    font-weight: 600;
    margin-top: 10px;
}

.process-list {
    padding-left: 22px;
    line-height: 1.7;
}

.process-list li {
    margin-bottom: 8px;
}

.moq span {
    color: #ff7a00;
    font-weight: 600;
}

/* =====================================================
   FAQ SECTION
===================================================== */
.text-center .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin: 10px auto 0;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
}

.faq-question:hover {
    background: #f1f3f5;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #ffffff;
}

.faq-question.active {
    color: #ff7a00;
}


/* =====================================================
   CALL TO ACTION SECTION
===================================================== */

.cta-section {
    position: relative;
    padding: 90px 20px;
    background: linear-gradient(135deg, #0b2c5f, #102f66, #0a2247);
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff7a00;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

}

.cta-buttons .btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: .3s;
}

.cta-btn-primary {
    background: #ff7a00;
    color: white;
}

.cta-btn-primary:hover {
    background: #e76d00;
    transform: translateY(-2px);
}

.cta-btn-outline {
    border: 2px solid white;
    color: white;
}

.cta-btn-outline:hover {
    background: white;
    color: #0b2c5f;
}

/* WhatsApp button hover (no HTML change) */
.cta-btn-outline:hover {
    background: #25D366 !important;
    color: white !important;
    border-color: #25D366 !important;
    transform: translateY(-2px);
}

/* Optional: WhatsApp icon color fix */
.cta-btn-outline:hover i {
    color: white !important;
}



/* ============================= */
/* ABOUT PAGE PREMIUM DESIGN */
/* ============================= */

:root {
    --primary: #0b2c5f;
    --accent: #ff6a00;
}

/* Section spacing */
.py-6 {
    padding: 80px 0;
}

/* ============================= */
/* ABOUT IMAGE */
/* ============================= */

.about-image-box {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 620px;
}

/* Image */
.about-image-box img {
    width: 100%;
    height: 450px;
    /* increase image height */
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s;
}

/* Left Accent Line (different from product) */
.about-image-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ff7a00, #ffb347);
}

/* Decorative Shape */
.about-image-box::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 110px;
    height: 110px;
    background: #ff7a00;
    opacity: 0.08;
    border-radius: 50%;
}

/* Hover effect */
.about-image-box:hover img {
    transform: scale(1.04);
}

/* Floating Experience Badge */
.about-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #ff7a00;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* ============================= */
/* PHILOSOPHY BOX */
/* ============================= */

.philosophy-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: .35s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.philosophy-box:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--accent);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.philosophy-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.philosophy-box ul {
    padding-left: 18px;
}

.philosophy-box li {
    margin-bottom: 8px;
}

/* ============================= */
/* MANUFACTURING PROCESS */
/* ============================= */

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.process-step {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0b2c5f, #ff6a00);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.process-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #f2f5fa, #ffffff);
    border-radius: 50%;
}

.process-step h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* INDUSTRIES SECTION */

.industries-section {
    background: #f8f9fa;
}

.industry-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    height: 100%;
}

.industry-card i {
    font-size: 38px;
    color: #0b2c5f;
    margin-bottom: 15px;
}

.industry-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
    color: #666;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}.industry-grid i {
    font-size: 28px;
}

.industry-grid p {
    font-size: 13px;
}
/* FORCE 3 columns on mobile */
@media (max-width: 576px) {
    .industry-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .industry-grid > div {
        width: 33.3333% !important;
        max-width: 33.3333% !important;
        flex: 0 0 33.3333% !important;
        padding: 8px;
    }

    .industry-grid i {
        font-size: 24px;
    }

    .industry-grid p {
        font-size: 12px;
        margin: 5px 0 0;
    }
}

/* ============================= */
/* STATS SECTION */
/* ============================= */

.stat-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .35s;
}

.stat-box:hover {
    transform: translateY(-8px);
}

.stat-box h2 {
    font-size: 42px;
    color: var(--primary);
    font-weight: 800;
}

.stat-box p {
    margin-top: 10px;
    font-weight: 500;
}


/* Manufacturing Excellence Fix */

.manufacture-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: .35s;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;

    height: 100%;
}

.manufacture-box i {
    margin-bottom: 15px;
}

.manufacture-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.manufacture-box p {
    flex-grow: 1;
}

.row.g-4 {
    align-items: stretch;
}

/* Choose Us Premium Cards */

.choose-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.choose-card:hover .choose-icon {
    transform: scale(1.1);
}

.choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #b8893f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-icon i {
    font-size: 28px;
    color: #fff;
}

.choose-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.choose-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============================= */
/* EXPORT COUNTRIES */
/* ============================= */

.country-box {
    background: #fff;
    padding: 25px 15px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.country-box:hover {
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    color: #fff;
    transform: translateY(-6px);
}

.country-box:hover span {
    transform: scale(1.1);
}

.country-box span {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.country-box p {
    margin: 0;
    font-weight: 600;
}

/* ============================= */
/* FACTORY GALLERY */
/* ============================= */

.factory-img {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.factory-img img {
    width: 100%;
    transition: .6s;
    will-change: transform;
}

.factory-img:hover img {
    transform: scale(1.12);
}

/* ============================= */
/* CLIENT LOGOS */
/* ============================= */

.client-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: 0.3s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* FAQ2 Section */

.faq2-section {
    background: #f8f9fa;
}

.faq2-title {
    font-size: 32px;
    font-weight: 700;
}

.faq2-wrapper {
    max-width: 850px;
    margin: auto;
}

.faq2-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq2-question {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq2-question i {
    transition: 0.3s;
}

.faq2-item.active .faq2-question {
    color: #ff7a00;
}

.faq2-item.active .faq2-question i {
    transform: rotate(180deg);
    color: #ff7a00;
}

.faq2-question:hover {
    color: #ff7a00;
}

.faq2-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #555;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq2-item.active .faq2-answer {
    padding: 15px 20px;
    max-height: 1000px;
}

/* ==========================================
   PRODUCTS CATALOG SECTION
========================================== */

.products-catalog {
    background: #f8f9fa;
}

/* Main Title */

.catalog-title {
    font-size: 38px;
    font-weight: 800;
    color: #222;
}

/* Intro text */

.catalog-intro {
    max-width: 850px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Product Card */

.catalog-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Top Gradient Border */

.catalog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
}


/* Image Box */

.catalog-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;

    height: 200px;
    /* fixed height for all images */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.catalog-image img {
    max-width: 100%;
    max-height: 160px;
    /* control image size */
    object-fit: contain;
    /* keeps image ratio */
    transition: 0.5s;
}

.catalog-card:hover img {
    transform: scale(1.07);
}

/* Product Title */

.catalog-title-small {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Description */

.catalog-desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 12px;
}

/* Feature List */
.catalog-features {
    list-style: none;
    /* remove bullet */
    padding-left: 0;
    margin: 0;
}

.catalog-features li {
    list-style: none;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
}

.catalog-features li::marker {
    content: "";
}

.catalog-features i {
    color: #ff7a00;
    /* orange icon */
    margin-right: 8px;
    font-size: 14px;
}

/* ================= HERO SECTION ================= */
.gallery-hero {
    background: linear-gradient(135deg, #0b2c5f, #0f4aa3);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.gallery-hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-hero p {
    font-size: 18px;
    max-width: 720px;
    margin: auto;
    opacity: .9;
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
    padding: 90px 0;
    background: #f7f9fc;
}

/* ================= GALLERY CARD ================= */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: zoom-in;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform .35s ease, box-shadow .35s ease;

    /* Animation */
    opacity: 0;
    /* transform: translateY(30px); */
    animation: fadeUp 0.6s ease forwards;
    cursor: zoom-in;
    transform: none !important;
}

/* ================= IMAGE ================= */
.gallery-card img {
    width: 100%;
    aspect-ratio: 4/3;
    /* responsive fix */
    object-fit: cover;
    transition: transform .5s ease;
    will-change: transform;
}

.gallery-overlay i {
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay i {
    transform: scale(1.2);
}

/* ================= SHINE EFFECT ================= */
.gallery-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .4),
            transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 2;
}

/* ================= OVERLAY ================= */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(11, 44, 95, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 34px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 14px;
    border-radius: 50%;
}

/* ================= HOVER EFFECT ================= */
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover::before {
    left: 130%;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= PERFORMANCE ================= */
.catalog-card img,
.gallery-card img,
.factory-img img {
    will-change: transform;
}

/* ======================================================
GLOBAL RESPONSIVE FIX
====================================================== */

@media (max-width:1200px) {

    .hero-title {
        font-size: 46px;
    }

    .carousel .carousel-caption h1 {
        font-size: 50px;
    }

}

@media (max-width: 576px) {
    .gallery-card img {
        height: 200px;
    }

    .gallery-hero h1 {
        font-size: 28px;
    }
}

/* ======================================================
TABLET RESPONSIVE
====================================================== */
@media (max-width:991px) {

    /* NAVBAR */

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
        margin-right: 0;
    }

    .logo-img {
        height: 50px;
        transform: scale(1.5);
    }

    /* Navbar collapse scroll */

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Mega dropdown scroll */

    .mega-menu {
        max-height: 60vh;
        overflow-y: auto;
    }

    /* MEGA MENU */

    .mega-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        padding: 10px 0;
        box-shadow: none;
        border-top: 1px solid #eee;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mega-menu .row {
        display: block;
    }

    .product-card {
        margin-bottom: 10px;
    }

    /* CAROUSEL */

    .carousel .carousel-item {
        height: 75vh;
    }

    .carousel .carousel-caption {
        padding-left: 8%;
    }

    .carousel .carousel-caption h1 {
        font-size: 40px;
    }

    /* ABOUT */

    .home-about-img {
        padding-left: 0;
    }

    .home-about-img img {
        height: auto;
    }

    /* FEATURE */

    .feature-img img {
        height: 450px;
    }

    /* GRID FIX */

    .packing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .packing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ======================================================
SMALL MOBILE
====================================================== */

@media (max-width:480px) {

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .catalog-title {
        font-size: 26px;
    }

    .packing-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: 180px;
    }

}

/* ========================= */
/* CONTACT PAGE STYLING */
/* ========================= */

.contact-info-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.contact-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    height: 100%;
    margin-bottom: 25px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.contact-card i {
    font-size: 34px;
    color: #0f2f5f;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    color: #555;
}



.contact-card a {
    color: #0f2f5f;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: #ff6a00;
    text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9fc, #eef3f8);
}

/* ===== FORM BOX ===== */
.form-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.form-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* Decorative Shapes */
.form-box::before,
.form-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(15, 47, 95, 0.05);
    border-radius: 50%;
}

.form-box::before {
    top: -80px;
    right: -80px;
}

.form-box::after {
    bottom: -80px;
    left: -80px;
}

/* ===== HEADINGS ===== */
.form-box h2 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f2f5f;
    font-size: 28px;
}

.form-box p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 15px;
}

/* ===== INPUT FIELDS ===== */
.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    background: #fff;
    transition: all 0.25s ease;
}

/* Focus Effect */
.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
    border-color: #0f2f5f;
    box-shadow: 0 0 0 3px rgba(15, 47, 95, 0.08);
    transform: scale(1.01);
}

/* Placeholder */
.form-box input::placeholder,
.form-box textarea::placeholder {
    color: #aaa;
}

/* Textarea */
.form-box textarea {
    height: 150px;
    resize: none;
}

/* ===== BUTTONS ===== */
.form-box button {
    background: linear-gradient(135deg, #0f2f5f, #1d4ed8);
    border: none;
    color: white;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(15, 47, 95, 0.2);
}

/* Button Hover */
.form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 47, 95, 0.3);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    display: inline-block;
    margin-left: 15px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .form-box {
        padding: 30px;
    }

    .form-box button,
    .whatsapp-btn {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
}


/* RIGHT SIDE BOX */
.contact-side {
    background: #16396b;
    padding: 40px;
    border-radius: 8px;
    color: #fff;
}

.contact-side h3 {
    color: #ff7a00;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-side h4 {
    color: #ff7a00;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.why-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.why-list li i {
    color: #1ed760;
    margin-right: 12px;
    font-size: 18px;
}

.trust-badges {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.trust-badges p {
    font-size: 17px;
    margin-bottom: 8px;
    color: #fff;
}

.trust-badges i {
    color: #1ed760;
    margin-right: 8px;
    font-size: 18px;

}

/* Export Market Pills */

.markets {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.markets span {
    background: #e9edf2;
    color: #16396b;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Google Map */
.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-location-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

/* MOBILE */

@media (max-width:991px) {

    .contact-side {
        margin-top: 30px;
    }

}

@media (max-width:768px) {
    .page-header {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .carousel .carousel-item {
        height: 65vh;
    }

    .carousel .carousel-caption {
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .carousel .carousel-caption h1 {
        font-size: 32px;
    }

    .carousel .carousel-caption p {
        font-size: 16px;
    }

    .feature-item {
        text-align: center;
    }

    /* Reduce counter box padding */
    .counter-box {
        padding: 20px !important;
    }

    /* Reduce gap between counters */
    .feature .row.g-4 {
        --bs-gutter-y: 12px;
        --bs-gutter-x: 12px;
    }

    /* Reduce progress box padding */
    .progress-box {
        padding: 20px !important;
    }

    /* Reduce section spacing */
    .feature {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
    }

    .footer-address {
        justify-content: center;
        text-align: center;
    }

    .footer-right p {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .world-map {
        max-width: 100%;
    }

    .pin {
        width: 12px;
        height: 12px;
    }

    .country-tooltip {
        width: 200px;
        font-size: 12px;
    }

    .packing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 38px;
    }

    .philosophy-box,
    .manufacture-box,
    .industry-box {
        padding: 30px 20px;
    }

    .stat-box {
        padding: 30px;
    }

    .catalog-title {
        font-size: 28px;
    }

    .catalog-title-small {
        font-size: 20px;
    }

    /* SECTION SPACING */

    .pt-6 {
        padding-top: 3rem;
    }

    .pb-6 {
        padding-bottom: 3rem;
    }

    .mt-6 {
        margin-top: 3rem;
    }

    .mb-6 {
        margin-bottom: 3rem;
    }


    /* HERO */

    .hero-header {
        height: 70vh;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* CAROUSEL */

    .carousel .carousel-item {
        height: 65vh;
    }

    .carousel .carousel-caption {
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .carousel .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel .carousel-caption p {
        font-size: 15px;
    }


    /* ABOUT */

    .home-about-img img {
        height: auto;
    }

    .home-about-img::before {
        display: none;
    }


    /* FEATURE SECTION */

    .feature {
        padding: 80px 0;
    }

    .feature-img img {
        height: 350px;
    }

    .feature-item {
        text-align: center;
        padding: 30px 20px;
    }

    .feature-icon {
        margin: auto;
    }


    /* PRODUCTS */

    .home-product-card img {
        height: 200px;
    }

    .home-product-content h5 {
        font-size: 16px;
    }

    .home-product-content p {
        font-size: 13px;
    }


    /* PROCESS */

    .process-box {
        padding: 30px 20px;
    }

    .process-box i {
        font-size: 34px;
    }


    /* PRODUCT PAGE */

    .product-title {
        font-size: 28px;
    }


    /* EXPORT MAP */

    .world-map {
        max-width: 100%;
    }

    .pin {
        width: 12px;
        height: 12px;
    }

    .country-tooltip {
        width: 180px;
        font-size: 12px;
    }


    /* GALLERY */

    .gallery-hero h1 {
        font-size: 30px;
    }

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

    .gallery-card img {
        height: 200px;
    }


    /* CTA */

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 15px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-address {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }


    .whatsapp-btn {
        display: block;
        margin-top: 10px;
        margin-left: 0;
    }

    .form-box {
        padding: 30px;
    }

    .contact-card {
        margin-bottom: 25px;
    }

}