/* ===========================
   Table of Content
   ===========================
   1. Global Reset
   2. Navbar (Desktop)
   3. Dropdown Menu
   4. Offcanvas Menu (Mobile)
   5. Responsive Styles
=========================== */


/* @import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Oxanium:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* 1. Global Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: "Arima", system-ui; */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: normal;
}

.container {
    max-width: 1300px;
    margin: auto;
}

a {
    text-decoration: none;
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: linear-gradient(to right, #fff0f3, #ffffff, #ffffff);
}

.main_wraP {
    overflow: hidden;
}

/* ---------- Top Header ---------- */
/* .top-header {
    background: #C9241F;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.top-header .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.top-header i {
    margin-right: 6px;
    margin-bottom: 10px !important;
    color: #ffffff;
    font-size: 14px;
}

.top-header span {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .top-header {
        font-size: 14px;
    }

    .top-header .contact-info {
        flex-direction: row-reverse;
        gap: 10px;
    }

    .contact-top:has(.bi-geo-alt) {
        display: none !important;
    }
} */

/* ---------- Navbar ---------- */
.navbar {
    width: 100%;
    height: 80px;
    transition: all 0.3s ease;
    z-index: 1050;
    background: #fff;
    font-weight: 500;
    border-bottom: 3px solid #C9241F;
    display: flex;
    align-items: center;
}

/* Navbar container */
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.247);
}

/* Phone number */
/* Align phone number to right */
.navbar-phone {
    font-weight: 700;
    color: #E93F38;
    font-size: 16px;
    margin-right: 30px;
}

/* Optional spacing */
.navbar-phone i {
    font-size: 18px;
}


/* Toggler */
.navbar-toggler {
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #E93F38;
    position: relative;
    transition: all 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #E93F38;
    left: 0;
    transition: all 0.3s;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}


/* Offcanvas */
.offcanvas-start {
    width: 280px;
    left: 0 !important;
    /* Force left side */
}

/* Navbar links */
.navbar-nav .nav-link {
    color: #E93F38 !important;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
}

/* Courses Dropdown */
.courses-dropdown {
    position: relative;
}

.courses-menu {
    display: none;
    position: static;
    background: #fff;
    padding-left: 0;
    margin: 0;
}

.courses-menu .dropdown-item {
    padding: 10px 16px;
    color: #E93F38;
    text-decoration: none;
    display: block;
}

.courses-menu .dropdown-item:hover {
    background: #E93F38;
    color: #fff;
}

/* Mobile toggle for courses dropdown */
.courses-dropdown.mobile-open .courses-menu {
    display: block !important;
}




/* Responsive */
/* ===== Extra Large Screens ===== */
/* ===== Tablet Friendly Navbar ===== */
@media (max-width: 1024px) {

    /* Navbar height */
    .navbar {
        height: 100px;
    }

    /* Bigger touch area */
    .navbar-nav .nav-link {
        padding: 14px 0;
        font-size: 16px;
    }

    /* Dropdown items spacing */
    .courses-menu .dropdown-item {
        padding: 14px 18px;
        font-size: 15px;
    }

    /* Hamburger button */
    .navbar-toggler {
        width: 48px;
        height: 48px;
    }

    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 26px;
        height: 3px;
    }

    /* Offcanvas width */
    .offcanvas-start {
        width: 300px;
    }
}


/* ===== Laptop ===== */
@media (max-width: 1200px) {
    .navbar {
        height: 100px;
    }

    .navbar-nav .nav-link {
        font-size: 20px;
    }

    .navbar-phone {
        font-size: 22px;
    }


}

/* ===== Tablet ===== */
@media (max-width: 992px) {

    .navbar-phone {
        display: none !important;
    }

    .navbar {
        height: 85px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
        padding: 10px 0;
    }

    .offcanvas-start {
        width: 260px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

    .navbar {
        height: 75px;
    }

    .navbar-toggler {
        width: 42px;
        height: 42px;
    }

    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 24px;
        height: 3px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 12px 0;
    }

    .courses-menu .dropdown-item {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* ===== Small Mobile ===== */
@media (max-width: 480px) {

    .navbar {
        height: 75px;
    }

    .navbar-toggler {
        width: 38px;
        height: 38px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
    }

    .offcanvas-start {
        width: 240px;
    }
}


/* navbar exit */

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.hero-carousel-wrapper {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.hero-slide {
    position: relative;
    /* required for the overlay */
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Black shadow overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.76);
    /* adjust opacity (0.3 - 0.7) */
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.795);
    /* optional extra shadow */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* ensure content appears above overlay */
    text-align: center;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.btn-outline-primary a {
    font-size: 20px;
}

.btn-outline-primary {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 11px 30px;
}

.btn-outline-primary:hover {
    background-color: #176CB1;
    color: #fff;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 70px;
    margin-bottom: 10px;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Indicators Style */
.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-indicators .indicator {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: background 0.3s;
}

.hero-indicators .indicator.active {
    background: #E93F38;
}

/* Responsive */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-slide {
        object-fit: fill;
    }

    .hero-section {
        height: 50vh;
    }

    .hero-carousel-wrapper {
        width: 100%;
        height: 50vh;
        overflow: hidden;
    }

    .hero-content p {
        font-size: 40px;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .btn-outline-primary {
        font-size: 14px;
        padding: 5px 10px;

    }
}

/* HERO SECTION EXIT*/





/* products-section */
.products-section {
    padding: 60px 15px;
    background: #f9f9f9;
    text-align: center;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 per row desktop */
    gap: 20px;
}

.product-box {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: floatAnimation 6s ease-in-out infinite;
}

.product-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-box img {
    width: 100%;
    height: 150px;
    /* object-fit: cover; */
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.product-box:hover img {
    transform: scale(1.05);
}

.product-name {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-title {
    font-size: 14px;
    height: 40px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-btn {
    background: #B02218;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.product-btn:hover {
    background: #C9241F;
    transform: scale(1.05);
}

/* Floating Animation */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive: 2 per row on mobile */
/* Responsive Breakpoints */

/* Large screens: 4 per row */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium screens / tablets: 3 per row */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-box {
        animation: floatAnimationMedium 7s ease-in-out infinite;
    }
}

/* Small screens / mobile: 2 per row */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-name {
        font-size: 16px;
    }

    .product-title {
        font-size: 13px;
        height: auto;
    }

    .product-box {
        animation: floatAnimationMobile 8s ease-in-out infinite;
    }
}

/* Extra small screens / phones: 1 per row */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-name {
        font-size: 15px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .product-box img {
        height: 130px;
    }
}


@keyframes floatAnimationMobile {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* products-section  exit*/



/* category-section */
/* .category-section {
    padding: 80px 0;
    background: #f8fafc;
    overflow: hidden;
}

.category-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


.category-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
}

.category-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}



.category-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-item:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.category-item:hover img {
    transform: scale(1.08);
}



.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-overlay h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


.category-item:hover img {
    transform: scale(1.08);
}


.category-duplicate {
    display: none;
}



@media (max-width: 992px) {
    .category-track {
        display: flex;
        width: max-content;
        animation: categorySlide 28s linear infinite;
    }

    .category-item {
        min-width: 280px;
        margin-right: 20px;
    }

    .category-item img {
        height: 220px;
    }


    .category-duplicate {
        display: block;
    }
}


@media (max-width: 576px) {
    .category-item {
        min-width: 240px;
    }

    .category-overlay h3 {
        font-size: 30px;
    }
}


@keyframes categorySlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
} */

/* category-section-Exit */



.clickable-image-section {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #f5f5f5; */
    /* light background */
}

.image-container {
    text-align: center;
}

.image-container a {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img {
    width: 400px;
    /* adjust size */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container a:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}






/* wcus-section */
.wcus-section {
    padding: 90px 15px;
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.wcus-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.wcus-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.wcus-heading span {
    display: inline-block;
    font-size: 18px;
    color: #C9241F;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.wcus-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.wcus-heading p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Grid Layout */
.wcus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Columns */
.wcus-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Item */
.wcus-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255, 242, 242, 0.829);
    /* soft background */
    padding: 15px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hover effect */
.wcus-item:hover {
    background: rgba(255, 230, 230, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.wcus-icon {
    min-width: 50px;
    height: 50px;
    background-color: #ffe1e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcus-icon i {
    font-size: 22px;
    color: #C9241F;
}

.wcus-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 6px;
}

.wcus-text p {
    font-size: 14px;
    color: #0f0f0f;
    line-height: 1.6;
}

/* Image Column */
.wcus-image-column {
    display: flex;
    justify-content: center;
}


/* Responsive */
@media (max-width: 992px) {
    .wcus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wcus-image-column {
        order: -1;
        margin-bottom: 40px;
    }

    .wcus-column {
        align-items: center;
        text-align: center;
    }

    .wcus-item {
        flex-direction: row;
        align-items: center;
    }

    .wcus-heading h2 {
        font-size: 20px;

    }

    .wcus-text h4 {
        text-align: left;
    }

    .wcus-text p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .wcus-grid {
        grid-template-columns: 1fr;
    }
}

/* wcus-section-End */



/* Certificate Section */

.certificate-section {
    padding: 70px 20px;
    background: #f5f5f5;
}

.certificate-container {
    max-width: 1200px;
    margin: auto;
}

.certificate-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT BOX */

.certificate-box {
    flex: 1 1 200px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.certificate-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.certificate-inner {
    height: 320px;
    background: #ffffff;
    border: 2px dashed #41A362;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.certificate-inner i {
    font-size: 60px;
    color: #41A362;
    margin-bottom: 15px;
}

.certificate-inner h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #C9241F;
}

.certificate-inner p {
    font-size: 20px;
    color: #000000;
    line-height: 1.6;
}

/* RIGHT CONTENT */

.certificate-content {
    flex: 1 1 450px;
}

.certificate-content h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.certificate-content h4 {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.certificate-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

/* Responsive */

@media(max-width:900px) {
    .certificate-wrapper {
        flex-direction: column;
    }

    .certificate-inner {
        height: auto;
    }
}

/* Tablet Screens */

@media (max-width: 1024px) {

    .certificate-wrapper {
        gap: 30px;
    }

    .certificate-inner h3 {
        font-size: 34px;
    }

    .certificate-inner p {
        font-size: 22px;
    }

    .certificate-content h2 {
        font-size: 30px;
    }
}

/* Mobile Screens */

@media (max-width: 768px) {

    .certificate-section {
        padding: 50px 15px;
    }

    .certificate-wrapper {
        flex-direction: column;
        gap: 25px;
    }


    .certificate-inner {
        padding: 25px;
    }

    .certificate-inner i {
        font-size: 45px;
    }

    .certificate-inner h3 {
        font-size: 28px;
    }

    .certificate-inner p {
        font-size: 18px;
    }

    .certificate-content h2 {
        font-size: 26px;
        text-align: center;
    }

    .certificate-content h4 {
        text-align: center;
    }

    .certificate-content p {
        font-size: 15px;
        text-align: center;
    }
}

/* Small Mobile Screens */

@media (max-width: 480px) {

    .certificate-inner i {
        font-size: 38px;
    }

    .certificate-inner h3 {
        font-size: 24px;
    }

    .certificate-inner p {
        font-size: 16px;
    }

    .certificate-content h2 {
        font-size: 22px;
    }
}






/* trusted-leather-section */
.trusted-leather-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.trusted-leather-section .container {
    max-width: 1200px;
    margin: auto;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.carousel {
    position: relative;
    flex: 1 1 500px;
    max-width: 600px;
}

.carousel img {
    width: 100%;
    display: none;
    border-radius: 8px;
}

.carousel img.active {
    display: block;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

.text-content {
    flex: 1 1 400px;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.text-content h4 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .section-content {
        flex-direction: column;
    }

    .carousel,
    .text-content {
        max-width: 100%;
    }
}

/* trusted-leather-section-End */



/* infra-section */
.infra-section {
    padding: 90px 15px;
    background-color: #f9f9f9;
    font-family: "Poppins", sans-serif;
}

.infra-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.infra-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.infra-heading span {
    color: #C9241F;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
}

.infra-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin: 10px 0 15px;
}

.infra-heading p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Grid */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Item */
.infra-item {
    text-align: center;
}

.infra-item h4 {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* Image Box */
.infra-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.infra-image-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.infra-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(139, 94, 60, 0.2); */
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover */
.infra-image-box:hover img {
    transform: scale(1.08);
}

.infra-image-box:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .infra-image-box img {
        height: 220px;
    }
}

/* infra-section-End */


/* <!-- cta-section --> */
.cta-section {
    position: relative;
    /* Use a dark industrial background image */
    background-image: url('./Image/cta.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: #fff;
    text-align: center;
}

.cta-overlay {
    background: rgba(0, 0, 0, 0.822);
    /* Dark overlay for text readability */
    padding: 50px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Matching the brand red from your images */
.btn-cta-primary {
    background-color: #c92519;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #c92519;
}

.btn-cta-primary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-cta-secondary {
    background-color: transparent;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 20px;
    }

    .cta-text {
        font-size: 16px;

    }

    .cta-overlay {
        padding: 60px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* <!-- cta-section exit--> */



/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
    position: relative;
    text-align: center;
    /* 1. Add your image path here */
    background-image: url('./Image/breadcrump.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* 2. Increased padding for a better "Banner" look */
    padding: 100px 0;
    overflow: hidden;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 3. Darkened the overlay so the white text is readable over the image */
    background: rgba(0, 0, 0, 0.76);
    z-index: 1;
}

.breadcrumb-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumb-inner h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Breadcrumb list container */
.breadcrumb-list {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 12px 20px;
    margin: 0;
    border-radius: 50px;
    /* background: rgba(0, 0, 0, 0.10); */
    background-color: #ffffff;
    backdrop-filter: blur(6px);
    font-size: 16px;
}

/* Breadcrumb items */
.breadcrumb-list li {
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.breadcrumb-list li a {
    color: #000000;
    text-decoration: none;
    position: relative;
}

.breadcrumb-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #000000;
    left: 0;
    bottom: -2px;
    transition: width 0.3s ease;
}

.breadcrumb-list li a:hover::after {
    width: 100%;
}

/* Arrow separator styling */
.breadcrumb-list li.separator {
    margin: 0 8px;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .breadcrumb-inner h1 {
        font-size: 2rem;
    }

    .breadcrumb-list {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-inner h1 {
        font-size: 2rem;
    }

    .breadcrumb-list {
        padding: 8px 12px;
        gap: 4px;
    }
}

/* ===== Breadcrumb exit ===== */



/* about-company-section */

.about-company-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    /* Hide overflow on small screens */
    /* overflow-x: hidden; */
}

.about-container {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    padding: 0 30px;
}

.about-flex-container {
    display: flex;
    align-items: center;
    gap: 50px;
    /* Space between image and text */
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 10px 10px 0px #C9241F;
    /* Decorative shadow */
}

.since-badge {
    position: absolute;
    bottom: -5px;
    right: 20px;
    background: #C9241F;
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 5px;
    font-size: 18px;
}

.about-content {
    flex: 1;
}

.sub-heading {
    color: #C9241F;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.about-content h4 {
    display: inline-block;
    background-color: #C9241F;
    /* button color */
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover effect */
.about-content h4:hover {
    transform: translateY(-2px);
}

.about-content h2 {
    font-size: 24px;
    color: #2e0806;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    text-align: left;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.feature {
    font-size: 15px;
    color: #000000;
}

.feature strong {
    display: block;
    font-size: 20px;
    color: #C9241F;
}

.about-button {
    text-align: left;
    margin-top: 20px;
}

.about-button .btn-primary {
    background-color: #C9241F;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.about-button .btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* ========================================
   Responsive Fixes (Prevent Overflow)
======================================== */
@media (max-width: 992px) {
    .about-container {
        width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
    }

    .about-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        font-size: 22px;
        text-align: left;
    }

    .about-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-button {
        text-align: center;
        /* Center button on mobile */
    }
}

@media (max-width: 600px) {
    .about-company-section {
        padding: 70px 15px;
    }

    .sub-heading {
        font-size: 20px;
    }

    .about-content h2 {
        font-size: 17px;
    }

    .since-badge {
        position: absolute;
        bottom: -5px;
        right: 20px;
        background: #C9241F;
        color: white;
        padding: 5px 10px;
        font-weight: 700;
        border-radius: 5px;
        font-size: 16px;
    }

    .feature strong {
        font-size: 18px;
    }
}

/* about-company-section Exit */



/* nji-who-we-are */
.nji-who-we-are {
    padding: 80px 20px;
    background: #f1f5f9;
    font-family: 'Poppins', sans-serif;
}

.nji-container {
    max-width: 1100px;
    margin: auto;
}

/* Board Box */
.nji-box {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

/* Grid Layout */
.nji-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Text Area */
.nji-title {
    font-size: 30px;
    font-weight: 700;
    color: #C9241F;
    margin-bottom: 18px;
}

.nji-intro {
    font-size: 14px;
    color: #000000;
    margin-bottom: 16px;
}

/* List with Box Icon */
.nji-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.nji-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #000000;
}

/* Box Icon */
.nji-icon-box {
    min-width: 22px;
    height: 22px;
    background: #C9241F;
    color: #ffffff;
    border-radius: 4px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* Description */
.nji-description {
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
    max-width: 650px;
}

/* Image wrapper for multiple images */
.nji-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between top and main image */
}

/* Top / Additional image */
.nji-main-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .nji-content-grid {
        grid-template-columns: 1fr;
    }

    .nji-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {

    .nji-box {
        padding: 30px 20px;
    }

    .nji-title {
        font-size: 26px;
    }

    .nji-intro,
    .nji-description,
    .nji-list li {
        font-size: 14px;
    }

    .nji-main-image img {
        height: 300px;
    }
}


/* nji-who-we-are Exit */

/* nji-capacity-section */
.nji-capacity-section {
    padding: 60px 0;
    background-color: #1975BF;
    /* Using your corporate blue */
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.nji-capacity-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.nji-capacity-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.nji-capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
}

.nji-capacity-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 5px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.nji-capacity-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.nji-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: inline-block;
}

.nji-capacity-card {
    /* ... existing styles ... */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nji-capacity-card:hover .nji-icon {
    color: #ffffff;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.nji-capacity-card h3 {
    font-size: 18px;
    height: 25px;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.9;
}

/* Number Styling */
.nji-counter,
.nji-range {
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.nji-capacity-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {

    .nji-capacity-title {
        font-size: 28px;
    }

    .nji-capacity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nji-capacity-card h3 {
        font-size: 15px;

    }

    .nji-counter,
    .nji-range {
        font-size: 15px;

    }


    .nji-capacity-card p {
        font-size: 12px;

    }
}


/* nji-capacity-section Exit */



/* nji-locations-section */
.nji-locations-v2 {
    padding: 60px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.nji-locations-wrap {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

/* Heading */
.nji-locations-heading {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.nji-locations-heading.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.nji-locations-subtext {
    font-size: 16px;
    color: #4b5563;
    max-width: 800px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.nji-locations-subtext.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Timeline ===== */
.nji-locations-timeline {
    position: relative;
    padding-left: 50px;
}

/* Vertical Line */
.nji-locations-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #C9241F;
    border-radius: 3px;
}

/* Timeline Row */
.nji-location-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* more gap for clarity */
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    flex-wrap: wrap;
    /* allow wrapping for very small screens */
}

/* AOS Animation */
.nji-location-row.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Marker (Icon Circle) */
.nji-location-marker {
    width: 50px;
    height: 50px;
    background: #C9241F;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

/* Content Panel */
.nji-location-panel {
    background: #ffeceb;
    border-radius: 16px;
    padding: 32px 36px;
    flex: 1;
    /* panel takes remaining space */
    min-width: 200px;
    /* ensure it doesn't shrink too much */
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

/* Panel Hover */
.nji-location-panel:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* Marker Hover (via row) */
.nji-location-row:hover .nji-location-marker {
    transform: scale(1.15);
    background: #111827;
}

/* Panel Title */
.nji-location-panel h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Title Hover */
.nji-location-row:hover h3 {
    color: #111827;
}

/* Panel Text */
.nji-location-panel p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

/* Services List */
.nji-location-services {
    margin: 15px 0;
    padding-left: 18px;
}

.nji-location-services li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

/* List Hover */
.nji-location-services li:hover {
    transform: translateX(6px);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .nji-locations-wrap {
        padding: 0 20px;
    }

    .nji-locations-heading {
        font-size: 30px;
    }

    .nji-locations-subtext {
        font-size: 15px;
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    .nji-locations-heading {
        font-size: 28px;
    }

    .nji-locations-subtext {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .nji-locations-timeline {
        padding-left: 0;
    }

    .nji-locations-timeline::before {
        display: none;
    }

    .nji-location-row {
        flex-direction: row;
        /* keep marker and panel side by side */
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .nji-location-marker {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .nji-location-panel {
        padding: 20px 18px;
        min-width: 150px;
        /* ensure readability */
    }

    .nji-location-panel h3 {
        font-size: 17px;
    }

    .nji-location-panel p,
    .nji-location-services li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nji-location-row {
        gap: 8px;
    }

    .nji-location-marker {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .nji-location-panel {
        padding: 16px 14px;
        min-width: 120px;
    }

    .nji-locations-heading {
        font-size: 24px;
    }

    .nji-locations-subtext {
        font-size: 14px;
    }

    .nji-location-panel p,
    .nji-location-services li {
        font-size: 12px;
    }
}

/* nji-locations-section Exit */



/* nji-journey-section */
.nji-journey-section {
    padding: 110px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.nji-journey-wrap {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* ---------- Title ---------- */
.nji-journey-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
}

.nji-journey-intro {
    font-size: 16px;
    color: #4b5563;
    max-width: 850px;
    margin: 0 auto 70px;
    line-height: 1.7;
}

/* ---------- Timeline ---------- */
.nji-journey-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Center Line (Desktop) */
.nji-journey-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
            transparent,
            #1f2937,
            #1f2937,
            transparent);
    transform: translateX(-50%);
    animation: timelineGrow 1.6s ease forwards;
}

/* ---------- Timeline Item ---------- */
.nji-journey-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Alternate sides (Desktop) */
.nji-journey-item:nth-child(odd) {
    flex-direction: row-reverse;
}

/* Timeline Dot */
.nji-journey-item::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #1f2937;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.6);
    animation: pulseDot 2.8s infinite;
    z-index: 2;
}

/* ---------- Year Badge ---------- */
.nji-journey-year {
    background: #1f2937;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    animation: yearFloat 4s ease-in-out infinite;
}

/* ---------- Content Card ---------- */
.nji-journey-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover */
.nji-journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
}

/* Light Sweep */
.nji-journey-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent);
    transition: left 0.6s ease;
}

.nji-journey-card:hover::after {
    left: 130%;
}

/* Text */
.nji-journey-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.nji-journey-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

/* ================================
   Animations
================================ */
@keyframes timelineGrow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: 100%;
        opacity: 1;
    }
}

@keyframes yearFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.6);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(31, 41, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(31, 41, 55, 0);
    }
}

/* ================================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px) {
    .nji-journey-timeline::before {
        left: 28px;
    }

    .nji-journey-item,
    .nji-journey-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 50px;
    }

    .nji-journey-item::before {
        left: 28px;
    }
}

/* ================================
   MOBILE (≤ 600px)
================================ */
@media (max-width: 600px) {
    .nji-journey-title {
        font-size: 24px;
    }

    .nji-journey-intro {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .nji-journey-timeline::before {
        display: none;
    }

    .nji-journey-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
        gap: 14px;
    }

    .nji-journey-item::before {
        display: none;
    }

    .nji-journey-year {
        font-size: 16px;
        padding: 10px 18px;
    }

    .nji-journey-card {
        max-width: 100%;
        padding: 22px 18px;
    }
}

/* nji-journey-section Exit */


/* nji-quality-section */
.nji-quality-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Apply the 1000px constraint here */
.nji-quality-section .nji-custom-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    /* Ensures padding on mobile */
}

/* Ensure the flex container responds to the new width */
.nji-quality-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Slightly reduced gap for a 1000px width */
    flex-wrap: wrap;
}

.nji-quality-content {
    flex: 1;
    min-width: 300px;
}

.nji-quality-content h2 {
    font-size: 36px;
    color: #333;
    margin: 10px 0 20px;
}

.title-line-left {
    width: 50px;
    height: 3px;
    background: #1975BF;
    margin-bottom: 25px;
}

.nji-quality-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Quality Badges */
.quality-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.q-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    /* Light neutral background */
    padding: 12px 20px;
    border-radius: 10px;
    border-left: 4px solid #1975BF;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smooth easing */
    cursor: default;
}

/* Hover Effect */
.q-badge:hover {
    background: #1975BF;
    /* Switch to corporate blue */
    transform: translateY(-5px);
    /* Lift up slightly */
    box-shadow: 0 10px 20px rgba(25, 117, 191, 0.2);
    border-left-color: #ffd700;
    /* Change accent line to gold on hover */
}

/* Icon & Text transition on hover */
.q-badge i {
    color: #1975BF;
    font-size: 22px;
    transition: all 0.3s ease;
}

.q-badge span {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.q-badge:hover i,
.nji-quality-section .q-badge:hover span {
    color: #ffffff;
    /* Turn text and icon white when background goes blue */
}

.q-badge:hover i {
    transform: scale(1.2);
    /* Slightly enlarge the icon */
}

/* Image Styling */
.nji-quality-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-box {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: #1975BF;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(25, 117, 191, 0.3);
}

.exp-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .nji-quality-flex {
        flex-direction: column-reverse;
    }

    .nji-quality-content {
        text-align: center;
    }

    .title-line-left {
        margin: 0 auto 25px;
    }

    .quality-badges {
        justify-content: center;
    }
}

/* nji-quality-section Exit */


/* nji-mission-vision */

.mission-vision-section {
    padding: 60px 20px;
    background-color: #f5f7fa;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.mv-container {
    max-width: 1100px;
    margin: auto;
}


.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
}

.cards-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    flex: 1 200px;
    min-width: 346px;
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #C9241F;
}

.card p {
    font-size: 14px;
    line-height: 1.7;
}

.card ul {
    padding-left: 20px;
}

.card ul li {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    /* padding-left: 20px; */
    text-align: left;
}


/* Responsive */
@media (max-width: 992px) {
    .cards-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        text-align: center;
        font-size: 26px;

    }

    .card h3 {
        font-size: 22px;
        height: 20px;
    }
}

/* nji-mission-vision Exit */


/* background: radial-gradient(circle at top, #2a0b0b, #0b0505); */
.contact-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #2a0b0b, #0b0505);
    font-family: "Poppins", sans-serif;
}

.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* LEFT */
.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-left .sub-heading {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-information {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-information p {
    margin-bottom: 5px;

}

.contact-information h4 {
    color: #C9241F;
}

.contact-information .icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

/* RIGHT */
.contact-right {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-right h3 {
    margin-bottom: 20px;
    font-size: 30px;
    color: #C9241F;
}

.contact-right form input,
.contact-right form select,
.contact-right form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-right form button {
    padding: 12px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.contact-right form button:hover {
    background-color: #0056b3;
}

/* POPUP */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
}

.popup-content button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

/* ===============================
   RESPONSIVE STYLES
================================ */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    .contact-right h3 {
        font-size: 26px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-left h2 {
        font-size: 28px;
    }

    .contact-left .sub-heading {
        font-size: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 18px;
    }

    .contact-right {
        padding: 25px 20px;
    }

    .contact-right h3 {
        font-size: 24px;
        text-align: center;
    }

    .contact-right form button {
        width: 100%;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .contact-left h2 {
        font-size: 24px;
    }

    .contact-right h3 {
        font-size: 22px;
    }

    .contact-item h4 {
        font-size: 16px;
    }

    .contact-item p,
    .contact-item small {
        font-size: 14px;
    }

    .popup-content {
        width: 90%;
        padding: 25px 20px;
    }
}







/* ================================
   CONNECT-US FORM SECTION
   ================================ */

#connect-us {
    padding: 80px 20px;
    background: #f8f9fc;
    font-family: "Poppins", sans-serif;
}

#connect-us h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #C9241F;
}

/* Form Box */
#connect-us form {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Inputs, Select, Textarea */
#connect-us input,
#connect-us select,
#connect-us textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    outline: none;
    transition: all 0.3s ease;
}

/* Full width fields */
#connect-us textarea,
#connect-us button {
    grid-column: span 2;
}

/* Textarea */
#connect-us textarea {
    resize: none;
    height: 120px;
}

/* Focus Effect */
#connect-us input:focus,
#connect-us select:focus,
#connect-us textarea:focus {
    border-color: #0000007c;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Dropdown */
#connect-us select {
    background-color: #ffffff;
    cursor: pointer;
}

/* Submit Button */
#connect-us button {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #C9241F, #C9241F);
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Button Hover */
#connect-us button:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    #connect-us form {
        grid-template-columns: 1fr;
    }

    #connect-us textarea,
    #connect-us button {
        grid-column: span 1;
    }
}

/* =====================
   SUCCESS POPUP
   ===================== */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #ffffff;
    padding: 35px;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    text-align: center;
    animation: popupScale 0.4s ease;
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: #22c55e;
    color: #ffffff;
    font-size: 34px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.popup-box h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 10px;
}

.popup-box p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
}

.popup-box button {
    padding: 12px 24px;
    background: #C9241F;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.popup-box button:hover {
    background: #6d0400;
}

/* Animation */
@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}






.gloves-section {
    padding: 40px 20px;
}

.gloves-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

/* Sidebar */
.gloves-sidebar {
    border: 1px solid #eee;
    height: auto;
}

.gloves-sidebar h3 {
    background: #a4000f;
    color: #fff;
    padding: 14px 16px;
    margin: 0;
}

.gloves-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.gloves-menu>li {
    padding: 10px 16px;
    font-weight: 600;
    position: relative;
}

.gloves-link {
    text-decoration: none;
    color: #000;
    display: block;
}

.gloves-link:hover {
    color: #a4000f;
}

.gloves-arrow {
    font-size: 14px;
    margin-left: 6px;
    position: relative;
    top: -2px;
    transition: transform 0.3s ease;
}

.has-submenu.open .gloves-arrow {
    transform: rotate(180deg);
}

/* Submenu */
.gloves-submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 6px;
    display: none;
}

.gloves-submenu li {
    font-size: 14px;
    padding: 6px 0;
    cursor: pointer;
}

.gloves-submenu li:hover {
    color: #a4000f;
}

/* Content */
.gloves-content h2 {
    margin-bottom: 20px;
}

.gloves-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gloves-card {
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

.gloves-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #ffffff;
}

.gloves-card h4 {
    margin: 10px 0 5px;
    font-size: 16px;
    height: 50px;
    color: #C9241F;
    font-weight: 500;
}

.gloves-card p {
    font-size: 11px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .gloves-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gloves-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gloves-grid {
        grid-template-columns: 1fr;
    }
}

/* footer-section */


.footer {
    background: #1f1f1f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    width: 100%;
}


.footer-column.about p {
    font-size: 14px;
    /* you can change to 15px / 16px */
    line-height: 1.7;
    color: #ffffff;
    /* optional: soft footer text color */
}

/* Top Social Links */
.footer-social-top {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    padding: 10px 0;
    background-color: #020202;
    border-bottom: 2px solid rgb(255, 255, 255);
    animation: fadeInDown 1s ease forwards;
}

.footer-social-top a {
    font-size: 30px;
    transition: 0.3s;
}

.footer-social-top a.facebook {
    color: #1877F2;
}

.footer-social-top a.instagram {
    color: #C13584;
}

.footer-social-top a.linkedin {
    color: #0A66C2;
}



.footer-social-top a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.footer-top {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-top img {
    width: 130px;
    height: 100px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1 1 200px;
    /* Adjust width to fit 5 columns */
    min-width: 200px;
}

/* Quick Links: 2 per row, independent of other footer styles */
.quick-links {
    display: grid;
    /* use grid for precise control */
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row */
    gap: 10px 20px;
    /* row gap 10px, column gap 20px */
    padding: 0;
    margin: 0;
    list-style: none;
}

.quick-links li {
    margin: 0;
    /* remove default margin that breaks layout */
}

.quick-links li a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.quick-links li a:hover {
    color: #FF4C57;
}

/* Responsive: 1 item per row on small screens */
@media (max-width: 600px) {
    .quick-links {
        grid-template-columns: 1fr;
    }
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding-bottom: 5px;
    font-family: 'Arima Madurai', cursive;
    /* Added font style */
}


.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #C9241F;
}

/* Contact Icons */
.footer-column.contact ul li i {
    margin-right: 8px;
    color: #ffffff;
}

/* Map styling */
.footer-column.footer-map iframe {
    border-radius: 8px;
    width: 100%;
    height: 200px;
}

/* Footer Bottom */
.footer-bottom {
    background: #000000;
    text-align: center;
    padding: 5px;
    border-top: 2px solid #ffffff;
    margin-top: 10px;
}

.footer-bottom p {
    font-size: 14px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: left;
        text-align: left;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}

/* Back to top new style */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #FF4C57, #FF7F50);
    border: none;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    transform: scale(1.2);
    background: linear-gradient(45deg, #FF7F50, #FF4C57);
}

/* Animation Keyframes */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Floating Button */
.chat-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25d366;
    /* green like WhatsApp */
    border: 2px solid #25d366;
    color: #ffffff;
    border-radius: 50%;
    padding: 12px 14px;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: floatButton 3s ease-in-out infinite;
}

.chat-float:hover {
    background: #ffffff;
    color: #25d366;
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Floating Animation */
@keyframes floatButton {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .chat-float {
        bottom: 90px;
        right: 20px;
        font-size: 22px;
        padding: 10px 12px;
    }
}