
/*** Spinner Start ***/
#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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/* ===== BRAND COLORS ===== */
:root {
    --brand-orange: #ff8a00;
    --dark-text: #333;
}

/* ===============================
   GLOBAL VARIABLES
================================ */
:root {
    --brand-orange: #c97719;
    --dark-text: #222;
}

/* ===============================
   CONTAINER
================================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   TOP HEADER
================================ */
.top-header {
    background: #2b2b2b;
    font-size: 14px;
    border-bottom: 1px solid #444;
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
}

.top-left span,
.top-right span {
    color: #ffffff;
    font-weight: 600;
    margin-right: 12px;
}

.top-header i {
    color: var(--brand-orange);
    margin-right: 6px;
}

.top-right a {
    color: #ffffff;
    margin-right: 12px;
    transition: 0.3s;
}

.top-right a:hover {
    color: var(--brand-orange);
}

.divider {
    color: #aaa;
}

/* ===============================
   MAIN HEADER
================================ */
.main-header {
    background: #ffffff;
    height: 90px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo img {
    height: 75px;
}

/* ===============================
   MENU
================================ */
.main-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-menu a {
    text-decoration: none;
    font-weight: 600;
    color: var(--dark-text);
    position: relative;
    transition: 0.3s;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--brand-orange);
}

/* Underline */
.main-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    left: 0;
    bottom: -8px;
    transition: 0.3s;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}


/* ===============================
   DROPDOWN – ONE COLUMN
================================ */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown box */
.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    padding: 10px;
    display: flex;                /* ONE COLUMN */
    flex-direction: column;
    gap: 1px;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

/* Dropdown items */
.dropdown-menu a {
    padding: 12px 16px;
    background: #f7f7f7;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
}

/* Hover effect */
.dropdown-menu a:hover {
    background: var(--brand-orange);
    color: #ffffff;
    padding-left: 22px;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Arrow animation */
.dropdown i {
    transition: transform 0.3s ease;
}

.dropdown:hover i {
    transform: rotate(180deg);
}


/* ===============================
   ENQUIRY BUTTON
================================ */
.header-actions {
    display: flex;
    gap: 12px;
}

.enquiry-btn {
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.enquiry-btn:hover {
    background: var(--brand-orange);
    color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .top-header-inner {
        flex-direction: column;
        height: auto;
        padding: 6px 0;
        text-align: center;
    }

    .main-menu {
        display: none;
    }

    .enquiry-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}




/*** Carousel Hero Header Start ***/
/*** HERO SECTION ***/
.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

/* Background slider */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Each background image */
.hero-bg-item {
    width: 100%;
    height: 700px; /* VERY IMPORTANT */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

/* Content above background */
.header-carousel {
    position: relative;
    z-index: 3;
}
/* Hero content wrapper */
.hero-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
	margin-top: 80px;
}

/* Better vertical alignment */
.hero-content-slide {
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: center;
    padding-top: 40px;     /* small breathing space */
}

/* Heading spacing refinement */
.hero-content h4 {
    letter-spacing: 2px;
    margin-bottom: 12px;
	
}

.hero-content h1 {
    line-height: 1.15;
}

/* Paragraph width control */
.hero-content p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Button alignment */
.hero-content .btn {
    min-width: 180px;
}

/* Mobile */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }
}


/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}
.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }
    
    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }
    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}
/*** Service End ***/

/* ================================
   OUR PRODUCTS SECTION
================================ */

.products-section {
    background: #ee6504;
    padding: 90px 0 100px;
    font-family: 'Poppins', sans-serif;
}

.products-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 55px;
    letter-spacing: 0.5px;
}

/* Container */
.products-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Card */
.product-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
    transition: all 0.35s ease;
}

/* Hover Effect */
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25);
}

/* Image */
.product-card img {
    width: 100%;
    height: 350px;   /* increased height */
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}


/* Title */
.product-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 14px;
}

/* Description */
.product-card p {
    font-size: 14.5px;
    line-height: 1.75;
    font-weight: 400;
    color: #444444;
    margin: 0;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 70px 0 80px;
    }

    .products-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card img {
        height: 200px;
    }
}



/* =================================
   WHY CHOOSE US SECTION
================================= */

.why-choose-section {
    background: #ffffff;
    padding: 90px 0;
    font-family: 'Poppins', sans-serif;
}

/* Container */
.why-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;               /* SPACE BETWEEN COLUMNS */
}

/* Box */
.why-box {
    background: #ffffff;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

/* Hover */
.why-box:hover {
    background: #f9f9f9;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icon */
.why-icon {
    font-size: 42px;
    color: #ff6a00;
    margin-bottom: 20px;
}

/* Heading */
.why-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2a1d6f;
    margin-bottom: 14px;
}

/* Text */
.why-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* =================================
   RESPONSIVE
================================= */

@media (max-width: 992px) {
    .why-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 70px 0;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-box {
        padding: 35px 25px;
    }
}

/* ===============================
   INNOVATION SECTION (FINAL)
================================ */

.innovation-section {
    position: relative;
    background: #c4c5c8;
    padding: 100px 0;
    overflow: hidden;
}

/* Dark gradient overlay */
.innovation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(7, 23, 52, 0.95),
        rgba(7, 23, 52, 0.75)
    );
    z-index: 1;
}

/* Wrapper */
.innovation-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT SIDE */
.innovation-left h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
}

.innovation-left .desc {
    color: #cfd6e1;
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 520px;
}

.innovation-points {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.innovation-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

.innovation-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #ff6a00;
}

/* Experience bar */
.experience-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.years {
    font-size: 44px;
    font-weight: 700;
    color: #ff6a00;
}

.label {
    color: #ffffff;
    font-size: 16px;
}

/* RIGHT SIDE STATS */
.innovation-right {
    position: relative;
    height: 420px;
}

/* Circle common */
.circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid #ff6a00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(7, 23, 52, 0.6);
}

.circle h3 {
    font-size: 36px;
    color: #ff6a00;
    margin: 0;
}

.circle p {
    font-size: 14px;
    color: #ffffff;
    margin-top: 6px;
}

/* Circle positions (like screenshot) */
.circle.one {
    top: 0;
    right: 40px;
}

.circle.two {
    top: 120px;
    left: 0;
}

.circle.three {
    bottom: 0;
    right: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .innovation-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .innovation-right {
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .circle {
        position: relative;
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    .innovation-section {
        padding: 80px 0;
    }

    .innovation-left h2 {
        font-size: 28px;
    }

    .innovation-right {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.industries-section {
    padding: 70px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    color: #ff6a00;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 600;
}

.industry-card {
    background: #ff6a00;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
}

.industry-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.industry-card h4 {
    padding: 15px;
    font-size: 20px;
    color: #222;
    margin: 0;
    font-weight: 600;
}

/* Slider arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}


/*** About Page Breadcrumb Header ***/
.bg-breadcrumb {
    position: relative;
    background: linear-gradient(
        rgba(40, 40, 40, 0.75),
        rgba(40, 40, 40, 0.75)
    ),
    url("../img/Manufacturing-Industry.png"); /* change image if needed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 0;
}

.bg-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.bg-breadcrumb .container {
    position: relative;
    z-index: 2;
}

/*** Heading ***/
.bg-breadcrumb h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*** Breadcrumb Styling ***/
.bg-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 500;
}

.bg-breadcrumb .breadcrumb-item a:hover {
    color: var(--bs-primary);
}

.bg-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #ddd;
}

.bg-breadcrumb .breadcrumb-item.active {
    font-weight: 600;
    color: var(--bs-primary);
}

/*** Responsive ***/
@media (max-width: 767px) {
    .bg-breadcrumb {
        padding: 70px 0;
    }

    .bg-breadcrumb h4 {
        font-size: 32px;
    }
}

.quality-policy-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 17px;
}

.policy-box {
    background: #ffffff;
    padding: 30px;
    border-left: 6px solid var(--bs-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.policy-box p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.strength-card {
    background: #ffffff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.strength-card i {
    font-size: 38px;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.strength-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.strength-card p {
    font-size: 15px;
    color: #666;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 32px;
    }
}
.enquiry-contact-section {
    padding: 90px 0;
    background: linear-gradient(120deg, #0f172a 50%, #f8f9fa 50%);
}

.enquiry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: stretch;
}

/* Enquiry Form */
.enquiry-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.enquiry-form-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.enquiry-form-box p {
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--bs-primary);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--bs-primary);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #000;
}

/* Contact Info */
.contact-info-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info-box p {
    color: #666;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-list .icon {
    width: 48px;
    height: 48px;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.contact-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .enquiry-contact-section {
        background: #f8f9fa;
    }
}


.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

/* IMAGE AREA */
.about-image {
    position: relative;
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

/* BADGES */
.badge {
    position: absolute;
    background: #ffffff;
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    text-align: center;
}

.badge h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #b57b2a;
}

.badge p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #555;
}

.badge-top {
    top: 20px;
    left: 20px;
}

.badge-bottom {
    bottom: 20px;
    right: 20px;
}

/* CONTENT AREA */
.about-content {
    flex: 1;
}

.about-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    color: #b57b2a;
    margin-bottom: 14px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #0b1c2d;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #b57b2a;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #9d6720;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

/* SIDEBAR WRAPPER */

.clickable-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #ff7a00;
}

.product-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-nav li {
    margin-bottom: 10px;
}

.product-nav li a {
    display: block;              /* 🔑 makes full row clickable */
    padding: 14px 18px;
    background: #0b2c5d;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.product-nav li a::after {
    content: "›";
    position: absolute;
    right: 18px;
    font-size: 18px;
    transition: transform 0.3s;
}

.product-nav li a:hover {
    background: #ff7a00;
    transform: translateX(4px);
}

.product-nav li a:hover::after {
    transform: translateX(4px);
}

.product-nav li a.active {
    background: #ff7a00;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.product-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-box h4 {
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.product-box:hover {
    transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
/* TABLE WRAPPER */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* TABLE HEADER */
table thead th {
    background: #f68a0a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 12px;
    text-align: center;
    border: 1px solid #0a2c6d;
}

/* TABLE BODY */
table tbody td {
    padding: 13px 12px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e0e0e0;
    text-align: center;
}

/* ROW HOVER EFFECT */
table tbody tr:hover {
    background: #f3f7ff;
}

/* FIRST COLUMN (GRADE) */
table tbody td:first-child {
    font-weight: 600;
    color: #0a2c6d;
}

/* SECTION HEADINGS */
.Responsive h2,
.Responsive h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #0b1c2d;
}

.Responsive p,
.Responsive p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* RESPONSIVE TABLE */
@media (max-width: 768px) {
    table {
        font-size: 13px;
    }

    table thead {
        display: none;
    }

    table, table tbody, table tr, table td {
        display: block;
        width: 100%;
    }

    table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }

    table tbody td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        font-weight: 600;
        color: #0a2c6d;
        text-align: left;
    }
}
/* FAQ SECTION */
.faq-section {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fb;
    border-radius: 18px;
}

/* FAQ TITLE */
.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0b1c2d;
    position: relative;
}

.faq-section h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #0a2c6d;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 2px;
}

/* QUESTIONS */
.faq-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0a2c6d;
    margin-top: 25px;
    margin-bottom: 8px;
    cursor: pointer;
}

/* ANSWERS */
.faq-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    padding-left: 15px;
    border-left: 3px solid #0a2c6d;
}

/* HOVER EFFECT */
.faq-section h4:hover {
    color: #08306b;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .faq-section {
        padding: 25px;
    }

    .faq-section h2 {
        font-size: 26px;
    }

    .faq-section h4 {
        font-size: 17px;
    }

    .faq-section p {
        font-size: 15px;
    }
}
/* EXPORT AREA */
.export-area {
    padding: 70px 0;
    background: #f4f6fa;
}

/* HEADER */
.export-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.export-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1c2d;
    margin-bottom: 15px;
}

.export-header p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* BOX */
.export-box {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* BOX TITLE */
.export-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a2c6d;
    margin-bottom: 25px;
}

/* LIST GRID */
.export-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

/* ITEM */
.export-list span {
    background: #f0f3f9;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e6f0;
}

/* HOVER EFFECT */
.export-list span:hover {
    background: #0a2c6d;
    color: #ffffff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .export-header h2 {
        font-size: 30px;
    }

    .export-box {
        padding: 28px;
    }

    .export-box h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .export-header h2 {
        font-size: 26px;
    }

    .export-header p {
        font-size: 16px;
    }

    .export-list {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
}


/*** Footer Start ***/
.footer-main {
    background: #0b0f19;
    color: #cfd3dc;
    padding: 70px 0 50px;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-logo i {
    color: #0d6efd;
    margin-right: 8px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #cfd3dc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #0d6efd;
    padding-left: 5px;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #0d6efd;
    margin-top: 4px;
}

.footer-contact a {
    color: #cfd3dc;
    text-decoration: none;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background: #070a12;
    padding: 15px 0;
    color: #9aa0ad;
    font-size: 14px;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
  font-family: 'Inter', sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 36px;
  color: #1e2d3b;
  margin-bottom: 10px;
}

.contact-header p {
  color: #555;
  font-size: 16px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info,
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: 25px;
  color: #1e2d3b;
}

.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-box i {
  font-size: 22px;
  color: #0d6efd;
  margin-top: 5px;
}

.info-box h5 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.info-box p a {
  color: #555;
  text-decoration: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0d6efd;
}

.contact-form button {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #084298;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.image-slider-section {
    padding: 50px 0;
    background: #f6f8fb;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: calc(260px * 15);
    animation: scroll-left 25s linear infinite;
}

.slide-item {
    width: 340px;
    margin: 0 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    flex-shrink: 0;
}

.slide-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.slide-item span {
    display: block;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f6821f;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}




