/* ==========================================================
   JKP MICROMINERALS
   GLOBAL STYLESHEET
   PART 1 - FOUNDATION
   ========================================================== */

/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =========================
   ROOT VARIABLES
========================= */

:root {

    /* Brand Colors */

    --primary: #0F4C81;
    --primary-dark: #0A3558;

    --secondary: #F58220;

    --dark: #111827;
    --dark-light: #1F2937;

    --white: #ffffff;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Shadows */

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .05);

    --shadow-md: 0 10px 25px rgba(0, 0, 0, .08);

    --shadow-lg: 0 15px 40px rgba(0, 0, 0, .12);

    /* Radius */

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;

    /* Transition */

    --transition: .3s ease;

}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    border: none;
    outline: none;
}

input,
textarea,
select {
    outline: none;
}



/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 46px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: 15px;
    color: var(--gray-600);
}

/* =========================
   SECTION SPACING
========================= */

.section-padding {
    padding: 55px 0;
}

.section-small {
    padding: 70px 0;
}

/* =========================
   CONTAINER IMPROVEMENT
========================= */

@media(min-width:1400px) {

    .container {
        max-width: 1320px;
    }

}



/* =========================
   SECTION TITLE
========================= */

.section-title {

    margin-bottom: 10px;

}

.section-title span {

    display: inline-block;

    color: var(--secondary);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.section-title h2 {

    margin-bottom: 20px;

}

.section-title p {

    max-width: 700px;

    margin: auto;

}

/* =========================
   UTILITIES
========================= */

.bg-light {
    background: var(--gray-50);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

/* ==========================================================
   PART 2 - BUTTONS + HEADER + NAVBAR
   ========================================================== */


/* =========================
   BUTTONS
========================= */

.btn-primary-custom {

    background: var(--primary);

    color: #fff;

    padding: 14px 32px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

}

.btn-primary-custom:hover {

    background: var(--primary-dark);

    color: #fff;

    transform: translateY(-3px);

}

.btn-secondary-custom {

    background: var(--secondary);

    color: #fff;

    padding: 14px 32px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition: var(--transition);

}

.btn-secondary-custom:hover {

    color: #fff;

    transform: translateY(-3px);

    opacity: .9;

}

.btn-outline-custom {

    border: 2px solid var(--primary);

    color: var(--primary);

    padding: 14px 32px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}

.btn-outline-custom:hover {

    background: var(--primary);

    color: #fff;

}


/* =========================
   TOP BAR
========================= */

.top-bar {

    background: var(--dark);

    padding: 10px 0;

    color: #fff;

    font-size: 14px;

}

.top-bar a {

    color: #fff;

}

.top-bar-left,
.top-bar-right {

    display: flex;

    align-items: center;

    gap: 25px;

}

.top-bar i {

    color: var(--secondary);

    margin-right: 8px;

}


/* =========================
   HEADER
========================= */

.main-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 9999;

    transition: .4s ease;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0, 0, 0, .05);

}

.main-header.scrolled {

    background: #fff;

    box-shadow: var(--shadow-md);

}

.navbar {

    padding: 18px;

}


/* =========================
   LOGO
========================= */

.navbar-brand {

    padding: 0;
    /* margin-bottom: -15px; */

}

.navbar-brand img {

    height: 90px;

    width: auto;

}


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

.navbar-nav {

    align-items: center;

    gap: 8px;

}

.navbar-nav .nav-link {

    color: var(--dark);

    font-size: 15px;

    font-weight: 600;

    padding: 12px 16px !important;

    position: relative;

}

.navbar-nav .nav-link:hover {

    color: var(--primary);

}

.navbar-nav .nav-link.active {

    color: var(--primary);

}


/* =========================
   HOVER UNDERLINE
========================= */

.navbar-nav .nav-link::after {

    content: '';

    position: absolute;

    left: 15px;

    bottom: 5px;

    width: 0;

    height: 2px;

    background: var(--secondary);

    transition: var(--transition);

}

.navbar-nav .nav-link:hover::after {

    width: calc(100% - 30px);

}


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

.dropdown-menu {

    border: none;

    border-radius: 16px;

    padding: 15px 0;

    box-shadow: var(--shadow-lg);

    margin-top: 12px;

}

.dropdown-item {

    padding: 12px 25px;

    font-size: 14px;

    font-weight: 500;

    transition: var(--transition);

}

.dropdown-item:hover {

    background: var(--gray-100);

    color: var(--primary);

}


/* =========================
   NAV CTA
========================= */

.nav-cta {

    margin-left: 20px;

}


/* =========================
   MOBILE TOGGLER
========================= */

.navbar-toggler {

    border: none;

    box-shadow: none !important;

}

.navbar-toggler:focus {

    box-shadow: none !important;

}

.navbar-toggler-icon {

    background-image: none;

    position: relative;

    width: 28px;

    height: 20px;

}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {

    content: '';

    position: absolute;

    left: 0;

    width: 100%;

    height: 2px;

    background: var(--dark);

}

.navbar-toggler-icon::before {

    top: 0;

}

.navbar-toggler-icon::after {

    bottom: 0;

}

.navbar-toggler-icon {

    border-top: 2px solid var(--dark);

}


/* =========================
   HEADER SPACER
========================= */

.header-space {

    height: 95px;

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .top-bar {

        display: none;

    }

    .navbar {

        padding: 15px 0;

    }

    .navbar-collapse {

        background: #fff;

        margin-top: 15px;

        padding: 20px;

        border-radius: 15px;

        box-shadow: var(--shadow-md);

    }

    .nav-cta {

        margin-top: 15px;

        margin-left: 0;

    }

    .navbar-nav {

        align-items: flex-start;

    }

}

/* ==========================================================
   PART 3 - HERO SECTION
   ========================================================== */


/* =========================
   HERO SECTION
========================= */

.hero-section {

    position: relative;

    overflow: hidden;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background:
        linear-gradient(135deg,
            #f8fafc 0%,
            #ffffff 50%,
            #eef6ff 100%);

}

.hero-section .container {

    position: relative;

    z-index: 2;

}


/* =========================
   HERO CONTENT
========================= */

.hero-content span {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: rgba(245, 130, 32, .1);

    color: var(--secondary);

    padding: 5px 10px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 10px;

}

.hero-content h1 {

    font-size: 58px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;

    color: var(--dark);

}

.hero-content h1 strong {

    color: var(--primary);

}

.hero-content p {

    font-size: 18px;

    max-width: 650px;

    margin-bottom: 25px;

}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}


/* =========================
   HERO IMAGE
========================= */

.hero-image {

    position: relative;

}

.hero-image img {

    width: 100%;

    border-radius: 30px;

    box-shadow: var(--shadow-lg);

}


/* =========================
   FLOATING CARD
========================= */

.hero-card {

    position: absolute;

    background: #fff;

    border-radius: 20px;

    padding: 20px;

    box-shadow: var(--shadow-lg);

}

.hero-card h4 {

    font-size: 26px;

    color: var(--primary);

    margin-bottom: 5px;

}

.hero-card p {

    margin: 0;

    font-size: 14px;

}

.card-1 {

    top: 10%;

    left: -50px;

}

.card-2 {

    bottom: 10%;

    right: -50px;

}


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

.hero-stats {

    margin-top: 60px;

    display: flex;

    flex-wrap: wrap;

    gap: 40px;

}

.hero-stat h3 {

    color: var(--primary);

    font-size: 40px;

    margin-bottom: 5px;

}

.hero-stat p {

    margin: 0;

    font-size: 15px;

}


/* =========================
   BACKGROUND SHAPE 1
========================= */

.hero-shape-1 {

    position: absolute;

    width: 500px;

    height: 500px;

    background: rgba(15, 76, 129, .05);

    border-radius: 50%;

    top: -200px;

    right: -150px;

    z-index: 1;

}


/* =========================
   BACKGROUND SHAPE 2
========================= */

.hero-shape-2 {

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(245, 130, 32, .08);

    border-radius: 50%;

    bottom: -150px;

    left: -100px;

    z-index: 1;

}


/* =========================
   TRUST BADGE
========================= */

.trust-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    border-radius: 50px;

    padding: 12px 25px;

    box-shadow: var(--shadow-md);

    margin-top: 25px;

}

.trust-badge i {

    color: var(--secondary);

}

.trust-badge span {

    margin: 0;

    padding: 0;

    background: none;

}


/* =========================
   SCROLL DOWN
========================= */

.scroll-indicator {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    animation: bounce 2s infinite;

}

.scroll-indicator i {

    font-size: 24px;

    color: var(--primary);

}


/* =========================
   ANIMATION
========================= */

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {

        transform: translateY(0);

    }

    40% {

        transform: translateY(-10px);

    }

    60% {

        transform: translateY(-5px);

    }

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .hero-content h1 {

        font-size: 60px;

    }

}

@media(max-width:991px) {

    .hero-section {

        min-height: auto;

        padding: 120px 0 80px;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 48px;

    }

    .hero-content p {

        margin-left: auto;
        margin-right: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-stats {

        justify-content: center;

    }

    .hero-image {

        margin-top: 50px;

    }

    .card-1,
    .card-2 {

        display: none;

    }

}

@media(max-width:576px) {

    .hero-content h1 {

        font-size: 38px;

    }

    .hero-content p {

        font-size: 16px;

    }

    .hero-stat h3 {

        font-size: 30px;

    }

}

/* =====================================================
   PRODUCT SEARCH
===================================================== */

.product-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .35s;
}

.product-search:focus-within {
    box-shadow: 0 20px 50px rgba(22, 60, 122, .18);
    transform: translateY(-2px);
}

.product-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    font-size: 16px;
    background: transparent;
}

.product-search input::placeholder {
    color: #999;
}

.product-search button {
    width: 65px;
    height: 60px;
    border: none;
    background: #163c7a;
    color: #fff;
    transition: .35s;
    font-size: 18px;
}

.product-search button:hover {
    background: #c69432;
}


/* =====================================================
   FILTER BUTTONS
===================================================== */

.filter-btn {
    border: none;
    background: #fff;
    color: #555;
    padding: 12px 22px;
    margin: 6px;
    border-radius: 40px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.filter-btn:hover {
    background: #163c7a;
    color: #fff;
    transform: translateY(-3px);
}

.filter-btn.active {
    background: #163c7a;
    color: #fff;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
    transition: .35s;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15) !important;
}

.product-card img {
    transition: .45s;
}

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


/* =====================================================
   CATEGORY PILL
===================================================== */

.product-card span {
    transition: .3s;
}


/* =====================================================
   BUTTON
===================================================== */

.product-card a {
    transition: .35s !important;
}

.product-card a:hover {
    background: #c69432 !important;
    color: #fff !important;
    transform: translateY(-2px);
}


/* =====================================================
   BADGE
===================================================== */

.product-card div[style*="position:absolute"] {
    transition: .35s;
}

.product-card:hover div[style*="position:absolute"] {
    transform: scale(1.06);
}


/* =====================================================
   PRODUCT COUNT
===================================================== */

#productCount {
    display: inline-block;
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.product-counter {
    font-size: 18px;
    font-weight: 700;
    color: #1d3557;
    text-align: left;
    margin: 0;
    padding: 0;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px) {

    .filter-btn {

        margin: 5px;

        padding: 10px 18px;

        font-size: 14px;

    }

    .product-search input {

        padding: 16px 18px;

    }

}

@media(max-width:768px) {

    .product-search {

        border-radius: 18px;

    }

    .product-search button {

        width: 58px;

        height: 56px;

    }

    .filter-btn {

        display: inline-block;

        margin: 4px;

        font-size: 13px;

        padding: 10px 16px;

    }

}

/* =========================
   CLIENTS SECTION
========================= */

.clients-section {

    background: #fff;

    padding: 60px 0;

    border-top: 1px solid var(--gray-200);

    border-bottom: 1px solid var(--gray-200);

}

.clients-title {

    text-align: center;

    margin-bottom: 45px;

}

.clients-title h5 {

    margin: 0;

    font-size: 18px;

    color: var(--gray-500);

    font-weight: 600;

}

/* =========================
   CLIENT CARD
========================= */

.client-logo {

    position: relative;

    background: #fff;

    height: 95px;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

    border-radius: 16px;

    border: 1px solid rgba(15, 76, 129, .08);

    transition: .4s ease;

    cursor: pointer;

}

/* Orange Top Line */

.client-logo::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: var(--secondary);

    transition: .4s;

}

/* Logo */

.client-logo img {

    max-width: 135px;

    max-height: 50px;

    width: auto;

    height: auto;

    object-fit: contain;

    transition: .4s;

}

/* Company Name */

.client-logo span {

    position: absolute;

    left: 50%;

    bottom: 12px;

    transform: translate(-50%, 15px);

    opacity: 0;

    font-size: 11px;

    font-weight: 600;

    color: var(--primary);

    white-space: nowrap;

    transition: .35s;

    pointer-events: none;

}

/* Hover */

.client-logo:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(15, 76, 129, .10);

    border-color: rgba(15, 76, 129, .12);

}

.client-logo:hover::before {

    width: 100%;

}

.client-logo:hover img {

    transform: translateY(-10px) scale(1.05);

}

.client-logo:hover span {

    opacity: 1;

    transform: translate(-50%, 0);

}

/* Floating */

.client-logo {

    animation: floatLogo 6s ease-in-out infinite;

}

.col-lg-2:nth-child(even) .client-logo {

    animation-delay: .4s;

}

@keyframes floatLogo {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-2px);

    }

}

/* Responsive */

@media(max-width:991px) {

    .client-logo {

        height: 90px;

    }

    .client-logo img {

        max-width: 115px;

        max-height: 42px;

    }

}

@media(max-width:576px) {

    .clients-section {

        padding: 45px 0;

    }

    .client-logo {

        height: 85px;

    }

    .client-logo img {

        max-width: 95px;

    }

}


/* =========================
   PRODUCT CATEGORY SECTION
========================= */

.product-category-section {

    background: var(--gray-50);

}

.product-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

    height: 100%;

    position: relative;

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.product-card-image {

    position: relative;

    overflow: hidden;

}

.product-card-image img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    transition: .6s ease;

}

.product-card:hover .product-card-image img {

    transform: scale(1.08);

}

.product-card-body {

    padding: 30px;

}

.product-card-body h4 {

    margin-bottom: 15px;

    color: var(--dark);

}

.product-card-body p {

    margin-bottom: 20px;

}

.product-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-weight: 600;

}

.product-link:hover {

    color: var(--secondary);

}

.product-link i {

    transition: .3s;

}

.product-link:hover i {

    transform: translateX(6px);

}


/* =========================
   PRODUCT BADGE
========================= */

.product-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: var(--secondary);

    color: #fff;

    padding: 8px 15px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    z-index: 2;

}


/* =========================
   INDUSTRY SECTION
========================= */

.industry-section {

    background: #fff;

}

.industry-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

    height: 100%;

    border: 1px solid var(--gray-200);

}

.industry-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.industry-image {

    overflow: hidden;

}

.industry-image img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    transition: .6s ease;

}

.industry-card:hover .industry-image img {

    transform: scale(1.08);

}

.industry-content {

    padding: 25px;

}

.industry-content h5 {

    margin-bottom: 10px;

}

.industry-content p {

    font-size: 15px;

    margin-bottom: 0;

}


/* =========================
   GLASS CARD
========================= */

.glass-card {

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .2);

    border-radius: 24px;

    padding: 30px;

    box-shadow: var(--shadow-md);

}


/* =========================
   HOVER GLOW
========================= */

.hover-glow {

    transition: var(--transition);

}

.hover-glow:hover {

    box-shadow:
        0 10px 40px rgba(15, 76, 129, .15);

}


/* =========================
   SECTION BACKGROUND
========================= */

.bg-gradient-light {

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fafc 100%);

}

.bg-gradient-blue {

    background:
        linear-gradient(135deg,
            #0F4C81 0%,
            #1f6aa7 100%);

    color: #fff;

}

.bg-gradient-blue h1,
.bg-gradient-blue h2,
.bg-gradient-blue h3,
.bg-gradient-blue h4,
.bg-gradient-blue h5,
.bg-gradient-blue h6 {

    color: #fff;

}

.bg-gradient-blue p {

    color: rgba(255, 255, 255, .85);

}


/* =========================
   ICON BOX
========================= */

.icon-box {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: rgba(15, 76, 129, .08);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

}

.icon-box i {

    font-size: 30px;

    color: var(--primary);

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .product-card-image img {

        height: 220px;

    }

    .industry-image img {

        height: 200px;

    }

}

@media(max-width:576px) {

    .product-card-body {

        padding: 20px;

    }

    .industry-content {

        padding: 20px;

    }

}

/* ==========================================================
   PART 5 - ABOUT + STATS + WHY CHOOSE US
   ========================================================== */


/* =========================
   ABOUT SECTION
========================= */

.about-section {

    position: relative;

    overflow: hidden;

}

.about-image {

    position: relative;

}

.about-image img {

    width: 100%;

    border-radius: 30px;

    box-shadow: var(--shadow-lg);

}

.about-experience {

    position: absolute;

    bottom: 30px;

    right: -30px;

    background: var(--primary);

    color: #fff;

    padding: 25px 30px;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

}

.about-experience h2 {

    color: #fff;

    margin-bottom: 5px;

    font-size: 50px;

}

.about-experience p {

    color: rgba(255, 255, 255, .9);

    margin: 0;

}

.about-content {

    padding-left: 30px;

}

.about-content ul {

    margin-top: 25px;

}

.about-content ul li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--gray-700);

}

.about-content ul li i {

    color: var(--secondary);

    margin-top: 4px;

}


/* =========================
   COMPANY STATS
========================= */

.stats-section {

    background:
        linear-gradient(135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%);

    color: #fff;

}

.stats-section h1,
.stats-section h2,
.stats-section h3,
.stats-section h4,
.stats-section h5 {

    color: #fff;

}

.stat-box {

    text-align: center;

    padding: 30px 20px;

}

.stat-box h2 {

    font-size: 60px;

    font-weight: 800;

    margin-bottom: 10px;

}

.stat-box p {

    color: rgba(255, 255, 255, .85);

    margin: 0;

    font-size: 16px;

}

.stat-box i {

    font-size: 45px;

    margin-bottom: 20px;

    color: var(--secondary);

}


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

.why-choose-section {

    background: var(--gray-50);

}

.why-card {

    background: #fff;

    padding: 35px;

    border-radius: 24px;

    height: 100%;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

}

.why-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.why-card-icon {

    width: 80px;

    height: 80px;

    border-radius: 20px;

    background: rgba(15, 76, 129, .08);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 10px;

}

.why-card-icon i {

    font-size: 34px;

    color: var(--primary);

}

.why-card h4 {

    margin-bottom: 15px;

}

.why-card p {

    margin-bottom: 0;

}



/*====================================
OUR CAPABILITIES
====================================*/

.capability-section {

    position: relative;

}

.capability-card {

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    height: 100%;

    border: 1px solid var(--gray-200);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.capability-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.capability-image {

    overflow: hidden;

}

.capability-image img {

    width: 100%;

    aspect-ratio: 16/9;

    object-fit: cover;

    display: block;

    transition: .6s ease;

}

.capability-card:hover .capability-image img {

    transform: scale(1.08);


}

.capability-content {

    padding: 25px;

}

.capability-content h5 {

    color: var(--primary);

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 10px;

    line-height: 1.3;

}

.capability-content p {

    margin-bottom: 0;

    color: var(--gray-600);

    line-height: 1.8;

}



/* =========================
   ACHIEVEMENT STRIP
========================= */

.achievement-strip {

    background: #fff;

    border-radius: 24px;

    padding: 40px;

    box-shadow: var(--shadow-md);

}

.achievement-item {

    text-align: center;

}

.achievement-item h3 {

    color: var(--primary);

    margin-bottom: 8px;

    font-size: 42px;

}

.achievement-item p {

    margin: 0;

}


/* =========================
   INFO BOX
========================= */

.info-box {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 25px;

}

.info-box-icon {

    width: 65px;

    height: 65px;

    border-radius: 18px;

    background: rgba(245, 130, 32, .12);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.info-box-icon i {

    color: var(--secondary);

    font-size: 28px;

}

.info-box-content h5 {

    margin-bottom: 8px;

}

.info-box-content p {

    margin-bottom: 0;

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .about-content {

        padding-left: 0;

        margin-top: 50px;

    }

    .about-experience {

        right: 20px;

        bottom: 20px;

    }

    .stat-box h2 {

        font-size: 45px;

    }

}

@media(max-width:576px) {

    .about-experience {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: 20px;

    }

    .stat-box {

        padding: 20px 10px;

    }

    .stat-box h2 {

        font-size: 38px;

    }

    .achievement-strip {

        padding: 25px;

    }

}

/* ==========================================================
   PART 6 - INFRASTRUCTURE + QUALITY + EXPORTS
   ========================================================== */


/* =========================
   INFRASTRUCTURE SECTION
========================= */

.infrastructure-section {

    background: var(--gray-50);

}

.infrastructure-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    height: 100%;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.infrastructure-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.infrastructure-image {

    overflow: hidden;

}

.infrastructure-image img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: .6s ease;

}

.infrastructure-card:hover .infrastructure-image img {

    transform: scale(1.08);

}

.infrastructure-content {

    padding: 30px;

}

.infrastructure-content h4 {

    margin-bottom: 15px;

}

.infrastructure-content p {

    margin-bottom: 0;

}


/* =========================
   FACILITY HIGHLIGHTS
========================= */

.facility-box {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    height: auto;

    border: 1px solid var(--gray-200);

    transition: var(--transition);

}

.facility-box:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

}

.facility-box i {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 20px;

}

.facility-box h3 {

    color: var(--primary);

    margin-bottom: 10px;

}

.facility-box p {

    margin: 0;

}


/* =========================
   QUALITY SECTION
========================= */

.quality-section {

    position: relative;

    overflow: hidden;

}

.quality-box {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    box-shadow: var(--shadow-sm);

    height: 100%;

    transition: var(--transition);

}

.quality-box:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

}

.quality-box i {

    font-size: 40px;

    color: var(--primary);

    margin-bottom: 20px;

}

.quality-box h5 {

    margin-bottom: 15px;

}

.quality-box p {

    margin-bottom: 0;

}


/* =========================
   CERTIFICATION CARD
========================= */

.certification-card {

    background: #fff;

    border-radius: 24px;

    padding: 30px;

    text-align: center;

    border: 1px solid var(--gray-200);

    transition: var(--transition);

    height: 100%;

}

.certification-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

}

.certification-card img {

    height: 90px;

    width: auto;

    margin: auto;

    margin-bottom: 20px;

}

.certification-card h5 {

    margin-bottom: 10px;

}

.certification-card p {

    margin-bottom: 0;

}


/* =========================
   LAB SECTION
========================= */

.lab-section {

    background:
        linear-gradient(135deg,
            #f8fafc 0%,
            #ffffff 100%);

}

.lab-image img {

    border-radius: 30px;

    box-shadow: var(--shadow-lg);

}

.lab-content {

    padding-left: 30px;

}

.lab-features {

    margin-top: 25px;

}

.lab-features li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

}

.lab-features li i {

    color: var(--secondary);

    margin-top: 5px;

}


/* =========================
   TIMELINE
========================= */

.timeline {

    position: relative;

    padding-left: 40px;

}

.timeline::before {

    content: '';

    position: absolute;

    left: 10px;

    top: 0;

    width: 2px;

    height: 100%;

    background: var(--gray-300);

}

.timeline-item {

    position: relative;

    margin-bottom: 40px;

}

.timeline-item::before {

    content: '';

    position: absolute;

    left: -38px;

    top: 8px;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: var(--secondary);

}

.timeline-item h5 {

    margin-bottom: 10px;

}

.timeline-item p {

    margin-bottom: 0;

}


/* =========================
   EXPORT SECTION
========================= */

.export-section {

    background:
        linear-gradient(135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%);

    color: #fff;

}

.export-section h1,
.export-section h2,
.export-section h3,
.export-section h4,
.export-section h5 {

    color: #fff;

}

.export-section p {

    color: rgba(255, 255, 255, .85);

}

.export-card {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 24px;

    padding: 30px;

    text-align: center;

    height: 100%;

}

.export-card i {

    font-size: 40px;

    color: var(--secondary);

    margin-bottom: 20px;

}

.export-card h4 {

    color: #fff;

    margin-bottom: 10px;

}

.export-card p {

    margin: 0;

}


/* =========================
   MAP BOX
========================= */

.map-box {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow-md);

}

.map-box img {

    width: 100%;

    height: auto;

}


.additive-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.additive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
}

.additive-card h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 10px;
}

.additive-card p {
    font-size: 15px;
    margin-bottom: 15px;
}

.spec-badge {
    display: inline-block;
    background: #f5f7fa;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 3px;
    font-size: 13px;
    font-weight: 600;
}

.app-list {
    margin-top: 15px;
    font-size: 14px;
}

.app-list li {
    margin-bottom: 4px;
}

.spec-table {
    margin-top: 15px;
    font-size: 13px;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .lab-content {

        padding-left: 0;

        margin-top: 40px;

    }

    .infrastructure-image img {

        height: 240px;

    }

}

@media(max-width:576px) {

    .infrastructure-content {

        padding: 20px;

    }

    .quality-box {

        padding: 25px;

    }

    .export-card {

        padding: 25px;

    }

    .timeline {

        padding-left: 30px;

    }

}

/* ==========================================================
   PART 7 - DOWNLOADS + CONTACT + CTA + FOOTER
   ========================================================== */


/*====================================
DOWNLOAD CENTER
====================================*/

.downloads-section {

    background: var(--gray-50);

}

.downloads-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

/* ==========================
   Card
========================== */

.download-card {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

    padding: 28px 30px;

    background: #fff;

    border-radius: 24px;

    border: 1px solid rgba(15, 76, 129, .08);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition: .45s ease;

}

.download-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 4px;

    background: var(--secondary);

    transition: .45s ease;

}

.download-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

}

.download-card:hover::before {

    width: 100%;

}

/* ==========================
   Left
========================== */

.download-info {

    flex: 1;

}

.download-tag {

    display: inline-block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: var(--secondary);

    text-transform: uppercase;

    margin-bottom: 14px;

}

.download-info h4 {

    font-size: 24px;

    margin-bottom: 15px;

    color: var(--primary);

    transition: .35s;

}

.download-card:hover h4 {

    color: var(--secondary);

}

.download-info p {

    max-width: 480px;
    font-size: 15px;
    margin: 0;

    color: var(--gray-600);

    line-height: 1.8;

}


/* ==========================
   Right
========================== */

.download-side {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-width: 220px;

}

/* ==========================
   Brochure Preview
========================== */

.download-preview {

    width: 170px;

    margin-bottom: 22px;

    transition: .45s ease;

}

.download-preview img {

    width: 100%;

    display: block;

    border-radius: 12px;

    box-shadow:

        0 20px 40px rgba(0, 0, 0, .16);

    transition: .45s ease;

}

.download-card:hover .download-preview {

    transform: translateY(-8px);

}

.download-card:hover .download-preview img {

    transform: rotate(-2deg) scale(1.04);

}

/* ==========================
   Button
========================== */

.download-button {

    min-width: 200px;

    padding: px 10px;

    justify-content: center;

}

.download-button i {

    transition: .35s;

}

.download-button:hover i {

    transform: translateX(6px);

}

/* ==========================
   Responsive
========================== */

@media(max-width:991px) {

    .download-card {

        flex-direction: column;

        text-align: center;

        gap: 30px;

        padding: 32px;

    }

    .download-info p {

        max-width: 100%;

    }

}

@media(max-width:576px) {

    .download-card {

        padding: 26px;

    }

    .download-info h4 {

        font-size: 28px;

    }

    .download-preview {

        width: 150px;

    }

    .download-button {

        width: 100%;

        min-width: unset;

    }

}


/* =========================
   CONTACT SECTION Old
========================= */

.contact-section {

    background: #fff;

}

.contact-info-card {

    background: var(--primary);

    color: #fff;

    padding: 40px;

    border-radius: 30px;

    height: 100%;

}

.contact-info-card h3 {

    color: #fff;

    margin-bottom: 25px;

}

.contact-info-item {

    display: flex;

    gap: 20px;

    margin-bottom: 30px;

}

.contact-info-icon {

    width: 60px;

    height: 60px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .12);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.contact-info-icon i {

    color: var(--secondary);

    font-size: 24px;

}

.contact-info-content h5 {

    color: #fff;

    margin-bottom: 8px;

}

.contact-info-content p,
.contact-info-content a {

    color: rgba(255, 255, 255, .85);

    margin: 0;

}


/* =========================
   CONTACT SECTION New
========================= */

.contact-card {
    border-radius: 20px;
    transition: .35s;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-image {
    max-width: 220px;
}

.contact-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #eef7ff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.contact-info h6 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 6px;
    font-weight: 500;
}

/* =========================
   CONTACT FORM Old
========================= */

.contact-form {

    background: #fff;

    padding: 40px;

    border-radius: 30px;

    box-shadow: var(--shadow-md);

}

.form-group {

    margin-bottom: 20px;

}

.form-control {

    height: 58px;

    border-radius: 14px;

    border: 1px solid var(--gray-300);

    padding: 12px 20px;

    font-size: 15px;

    box-shadow: none !important;

}

.form-control:focus {

    border-color: var(--primary);

}

textarea.form-control {

    height: 160px;

    resize: none;

    padding-top: 15px;

}

/* =========================
   CONTACT FORM New
========================= */

.support-card {
    text-align: center;
}

.support-image {
    max-width: 220px;
}

.form-control,
.form-select {

    height: 52px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    box-shadow: none;

}

.form-control:focus,
.form-select:focus {

    border-color: var(--primary-color);
    box-shadow: none;

}

textarea.form-control {

    height: 160px !important;
    resize: none;
    padding-top: 15px;

}

.download-card h3 {

    font-weight: 700;
    margin-bottom: 25px;

}

.download-card iframe {

    border-radius: 18px;

}

#inquiry .section-title {

    margin-bottom: 40px;

}

.facility-box {

    border-radius: 18px;

}


.office-card {

    overflow: hidden;

}

.office-image {

    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;

}

.office-card hr {

    margin: 30px 0;

}

.office-card h6 {

    font-weight: 700;
    margin-bottom: 10px;

}

.office-card p {

    color: #666;

}

/*====================================
FULL WIDTH CTA
====================================*/

.cta-section {

    margin: 0;

    padding: 0;

}

.cta-bar {

    width: 100%;

    background: var(--primary);

    border-top: 4px solid var(--secondary);

    padding: 32px 0;

    transition: .35s;

}

.cta-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}

.cta-content h2 {

    color: #fff;

    font-size: 34px;

    margin-bottom: 8px;

}

.cta-content p {

    color: rgba(255, 255, 255, .85);

    margin: 0;

    font-size: 17px;

}

.btn-outline-light {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 30px;

    border: 2px solid #fff;

    color: #fff;

    font-weight: 600;

    text-decoration: none;

    transition: .35s;

}

.btn-outline-light i {

    transition: .35s;

}

.btn-outline-light:hover {

    background: #fff;

    color: var(--primary);

}

.btn-outline-light:hover i {

    transform: translateX(5px);

}

@media (max-width:991px) {

    .cta-wrapper {

        flex-direction: column;

        text-align: center;

        gap: 22px;

    }

    .cta-content h2 {

        font-size: 28px;

    }

}

/*====================================
INFRASTRUCTURE OVERVIEW
====================================*/

.infra-block {

    margin-bottom: 120px;

}

.infra-block:last-child {

    margin-bottom: 0;

}

.infra-photo {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

}

.infra-photo img {

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: .6s ease;

    display: block;

}

.infra-block:hover .infra-photo img {

    transform: scale(1.06);

}

.infra-info {

    position: relative;

    padding-left: 40px;

}

.infra-info::before {

    content: "";

    position: absolute;

    left: 0;

    top: 8px;

    width: 4px;

    height: 90px;

    background: var(--secondary);

    border-radius: 10px;

}

.infra-info span {

    display: inline-block;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--secondary);

    margin-bottom: 18px;

}

.infra-info h3 {

    font-size: 40px;

    font-weight: 700;

    line-height: 1.2;

    color: var(--dark);

    margin-bottom: 22px;

}

.infra-info p {

    font-size: 17px;

    color: #5f6c7b;

    line-height: 1.9;

    margin-bottom: 30px;

}

.infra-info ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

.infra-info ul li {

    position: relative;

    padding-left: 34px;

    margin-bottom: 16px;

    color: #2b3648;

    font-size: 16px;

    font-weight: 500;

}

.infra-info ul li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 9px;

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: var(--secondary);

    box-shadow: 0 0 0 5px rgba(255, 126, 20, .15);

}

.infra-block:hover .infra-info::before {

    height: 100%;

    transition: .45s ease;

}

@media(max-width:991px) {

    .infra-block {

        margin-bottom: 80px;

    }

    .infra-photo {

        margin-bottom: 35px;

    }

    .infra-photo img {

        height: 320px;

    }

    .infra-info {

        padding-left: 28px;

    }

    .infra-info h3 {

        font-size: 32px;

    }

}

@media(max-width:767px) {

    .infra-photo img {

        height: 250px;

    }

    .infra-info {

        padding-left: 22px;

    }

    .infra-info::before {

        width: 3px;

    }

    .infra-info h3 {

        font-size: 28px;

    }

    .infra-info p {

        font-size: 16px;

    }

    .infra-info ul li {

        font-size: 15px;

    }

}

/*====================================
INFRASTRUCTURE HIGHLIGHTS
====================================*/

.highlight-block {

    position: relative;

    height: 100%;

    padding: 60px 25px 25px;

    transition: .35s ease;

}

.highlight-block:hover {

    transform: translateY(-8px);

}

.highlight-number {

    position: absolute;

    top: -10px;

    left: 0;

    font-size: 120px;

    font-weight: 800;

    line-height: 1;

    color: #eef2f7;

    user-select: none;

    pointer-events: none;

    z-index: 0;

}

.highlight-content {

    position: relative;

    z-index: 2;

}

.highlight-content span {

    display: inline-block;

    color: var(--secondary);

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 18px;

}

.highlight-content h3 {

    position: relative;

    font-size: 34px;

    font-weight: 700;

    color: var(--dark);

    line-height: 1.25;

    margin-bottom: 24px;

    padding-bottom: 18px;

}

.highlight-content h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 70px;

    height: 4px;

    border-radius: 20px;

    background: var(--secondary);

    transition: .35s ease;

}

.highlight-block:hover h3::after {

    width: 120px;

}

.highlight-content p {

    margin: 0;

    font-size: 17px;

    line-height: 1.9;

    color: #5d6b7c;

}

@media(max-width:991px) {

    .highlight-block {

        padding: 50px 10px 10px;

    }

    .highlight-number {

        font-size: 90px;

    }

    .highlight-content h3 {

        font-size: 28px;

    }

}

@media(max-width:767px) {

    .highlight-block {

        padding: 40px 0 0;

    }

    .highlight-number {

        font-size: 70px;

    }

    .highlight-content span {

        font-size: 12px;

        letter-spacing: 1.5px;

    }

    .highlight-content h3 {

        font-size: 24px;

    }

    .highlight-content p {

        font-size: 16px;

        line-height: 1.8;

    }

}


.filter-btn {

    border: 1px solid #d9d9d9;

    background: #fff;

    padding: 10px 22px;

    margin: 5px;

    border-radius: 50px;

    transition: .3s;

    font-weight: 600;

}

.filter-btn:hover {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

}

.filter-btn.active {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

}




/* =========================
   FOOTER
========================= */

.footer {

    background: #0d1725;

    color: #fff;

    position: relative;

}

.footer-top {

    padding: 90px 0 50px;

}

.footer-logo {

    margin-bottom: 25px;

}

.footer-logo img {

    height: 65px;

    width: auto;

}

.footer p {

    color: rgba(255, 255, 255, .75);

}

.footer-title {

    color: #fff;

    margin-bottom: 25px;

    font-size: 20px;

}

.footer-links li {

    margin-bottom: 12px;

}

.footer-links li a {

    color: rgba(255, 255, 255, .75);

    transition: var(--transition);

}

.footer-links li a:hover {

    color: var(--secondary);

    padding-left: 5px;

}

.footer-contact li {

    display: flex;

    gap: 12px;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, .75);

}

.footer-contact li i {

    color: var(--secondary);

    margin-top: 4px;

}

.footer-social {

    display: flex;

    gap: 12px;

    margin-top: 25px;

}

.footer-social a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    transition: var(--transition);

}

.footer-social a:hover {

    background: var(--secondary);

    transform: translateY(-4px);

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 25px 0;

}

.footer-bottom p {

    margin: 0;

    text-align: center;

}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn {

    position: fixed;

    right: 20px;

    bottom: 90px;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #25D366;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    z-index: 999;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);

}

.whatsapp-btn:hover {

    color: #fff;

    transform: scale(1.08);

}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {

    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    z-index: 999;

    transition: var(--transition);

}

.back-to-top:hover {

    color: #fff;

    background: var(--secondary);

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .contact-info-card {

        margin-bottom: 30px;

    }

    .cta-box {

        padding: 40px 30px;

        text-align: center;

    }

    .cta-buttons {

        justify-content: center;

    }

}

@media(max-width:576px) {

    .contact-form {

        padding: 25px;

    }

    .contact-info-card {

        padding: 25px;

    }

    .cta-box {

        padding: 30px 20px;

    }

    .footer-top {

        padding: 70px 0 30px;

    }

}

/* ==========================================================
   PART 8 - INNER PAGES + PRODUCTS + UTILITIES
   ========================================================== */

/* ==========================
   Journey Timeline
========================== */

.journey-timeline {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, #b8860b);
}

.journey-item {
    position: relative;
    width: 50%;
    padding: 8px 40px;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeUp .7s ease forwards;
}

.journey-item:nth-child(1) {
    animation-delay: .1s;
}

.journey-item:nth-child(2) {
    animation-delay: .2s;
}

.journey-item:nth-child(3) {
    animation-delay: .3s;
}

.journey-item:nth-child(4) {
    animation-delay: .4s;
}

.journey-item:nth-child(5) {
    animation-delay: .5s;
}

.journey-item:nth-child(6) {
    animation-delay: .6s;
}

.journey-item:nth-child(7) {
    animation-delay: .7s;
}

.journey-item:nth-child(8) {
    animation-delay: .8s;
}

.journey-item:nth-child(9) {
    animation-delay: .9s;
}

.journey-item:nth-child(10) {
    animation-delay: 1s;
}

.journey-item.left {
    left: 0;
    text-align: right;
}

.journey-item.right {
    left: 50%;
    text-align: left;
}

/* Timeline Dot */

.journey-item::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 18px;
    height: 18px;
    background: #d4af37;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(212, 175, 55, .4);
    z-index: 5;
}

.journey-item.left::before {
    right: -11px;
}

.journey-item.right::before {
    left: -11px;
}

/* Card */

.journey-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
    position: relative;
}

.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

/* Year Badge */

.journey-year {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: .5px;
}

/* Heading */

.journey-card h3 {
    font-size: 28px;
    color: #222;
    margin: 8px 0 10px;
    line-height: 1.2;
}

/* Description */

.journey-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Card Arrow */

.journey-item.left .journey-card::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.journey-item.right .journey-card::after {
    content: '';
    position: absolute;
    top: 32px;
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

/* Animation */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

}

/* Responsive */

@media(max-width:768px) {

    .journey-timeline::before {
        left: 30px;
    }

    .journey-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding: 10px 20px 10px 75px;
    }

    .journey-item::before {
        left: 20px !important;
    }

    .journey-card::after {
        display: none;
    }

    .journey-card h3 {
        font-size: 22px;
    }

    .journey-card p {
        font-size: 15px;
    }

}

/*====================================
PREMIUM PAGE BANNER
====================================*/

.page-banner {

    position: relative;

    padding: 140px 0 90px;

    overflow: hidden;

    background:

        linear-gradient(rgba(8, 32, 55, .72), rgba(8, 32, 55, .72)),

        url("../images/company/about-banner.jpg");

    background-size: cover;

    background-position: center;

}

.page-banner::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at top right,

            rgba(255, 255, 255, .10),

            transparent 45%);

}

.page-banner-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(90deg,

            rgba(15, 76, 129, .35),

            transparent);

}

.page-banner-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

}

.page-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 18px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    margin-bottom: 25px;

}

.page-tag::before {

    content: "";

    width: 30px;

    height: 3px;

    background: var(--secondary);

    border-radius: 20px;

}

.page-banner h1 {

    color: #fff;

    font-size: 60px;

    line-height: 1.15;

    margin-bottom: 22px;

}

.page-banner p {

    font-size: 20px;

    color: rgba(255, 255, 255, .88);

    max-width: 720px;

    line-height: 1.8;

    margin-bottom: 35px;

}

.breadcrumb-custom {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 12px 22px;

    background: rgba(255, 255, 255, .10);

    border: 1px solid rgba(255, 255, 255, .18);

    backdrop-filter: blur(12px);

    border-radius: 50px;

}

.breadcrumb-custom a {

    color: #fff;

    text-decoration: none;

}

.breadcrumb-custom span {

    color: rgba(255, 255, 255, .85);

}

.breadcrumb-custom i {

    color: var(--secondary);

}

.page-banner {

    animation: bannerZoom 10s ease-in-out infinite alternate;

}

@keyframes bannerZoom {

    from {

        background-size: 100%;

    }

    to {

        background-size: 108%;

    }

}

@media(max-width:991px) {

    .page-banner {

        padding: 110px 0 70px;

    }

    .page-banner h1 {

        font-size: 44px;

    }

    .page-banner p {

        font-size: 18px;

    }

}

@media(max-width:576px) {

    .page-banner {

        padding: 90px 0 60px;

    }

    .page-banner h1 {

        font-size: 34px;

    }

    .page-banner p {

        font-size: 16px;

    }

}


/* =========================
   PRODUCT SEARCH
========================= */

.product-search {

    position: relative;

    margin-bottom: 40px;

}

.product-search input {

    width: 100%;

    height: 65px;

    border: 1px solid var(--gray-300);

    border-radius: 50px;

    padding: 0 70px 0 25px;

    font-size: 15px;

}

.product-search button {

    position: absolute;

    right: 8px;

    top: 8px;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

}


/* =========================
   PRODUCT FILTERS
========================= */

.filter-wrapper {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 40px;

}

.filter-btn {

    border: none;

    background: #fff;

    padding: 12px 25px;

    border-radius: 50px;

    border: 1px solid var(--gray-300);

    font-weight: 600;

    transition: var(--transition);

}

.filter-btn:hover {

    background: var(--primary);

    color: #fff;

}

.filter-btn.active {

    background: var(--primary);

    color: #fff;

}


/* =========================
   PRODUCT DETAIL
========================= */

.product-detail-section {

    padding: 100px 0;

}

.product-gallery img {

    border-radius: 24px;

    box-shadow: var(--shadow-md);

}

.product-info h1 {

    margin-bottom: 20px;

}

.product-info p {

    margin-bottom: 25px;

}


/* =========================
   PRODUCT FEATURES
========================= */

.feature-list {

    margin-top: 30px;

}

.feature-list li {

    display: flex;

    gap: 12px;

    margin-bottom: 15px;

}

.feature-list li i {

    color: var(--secondary);

    margin-top: 4px;

}


/* =========================
   APPLICATION TAGS
========================= */

.application-tags {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 25px;

}

.application-tags span {

    background: var(--gray-100);

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 500;

}


/* =========================
   PRODUCT SIDEBAR
========================= */

.product-sidebar {

    background: #fff;

    border-radius: 24px;

    padding: 30px;

    box-shadow: var(--shadow-md);

    position: sticky;

    top: 120px;

}

.product-sidebar h5 {

    margin-bottom: 20px;

}

.product-sidebar ul li {

    margin-bottom: 12px;

}

.product-sidebar ul li a {

    color: var(--gray-700);

}

.product-sidebar ul li a:hover {

    color: var(--primary);

}


/* =========================
   TDS CARD
========================= */

.tds-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .35s;

    border: 1px solid rgba(0, 0, 0, .05);

}

.tds-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.tds-header {

    padding: 18px 25px;

    background: #f8f9fb;

    border-bottom: 1px solid #eee;

}

.tds-header span {

    color: #e53935;

    font-weight: 700;

    letter-spacing: 2px;

}

.tds-body {

    padding: 30px 25px;

}

.tds-body h5 {

    font-size: 22px;

    margin-bottom: 10px;

}

.tds-body p {

    color: #777;

    margin-bottom: 0;

}

.tds-footer {

    padding: 25px;

}


/* =========================
   DOWNLOAD LIST
========================= */

.download-list {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}

.download-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 25px;

    border-bottom: 1px solid var(--gray-200);

}

.download-item:last-child {

    border-bottom: none;

}

.download-left {

    display: flex;

    align-items: center;

    gap: 15px;

}

.download-left i {

    color: var(--secondary);

    font-size: 24px;

}


/* =========================
   TABLES
========================= */

.custom-table {

    width: 100%;

    border-collapse: collapse;

}

.custom-table th {

    background: var(--primary);

    color: #fff;

    padding: 15px;

}

.custom-table td {

    padding: 15px;

    border: 1px solid var(--gray-200);

}

.custom-table tr:nth-child(even) {

    background: var(--gray-50);

}


/* =========================
   IMAGE HOVER
========================= */

.image-hover {

    overflow: hidden;

    border-radius: 24px;

}

.image-hover img {

    transition: .6s ease;

}

.image-hover:hover img {

    transform: scale(1.08);

}


/* =========================
   LOADER
========================= */

.loader {

    width: 50px;

    height: 50px;

    border: 4px solid var(--gray-200);

    border-top: 4px solid var(--primary);

    border-radius: 50%;

    animation: spin 1s linear infinite;

}

.back-to-top {

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

}

.fade-up {

    animation: fadeUp .8s ease forwards;

}

@keyframes spin {

    100% {

        transform: rotate(360deg);

    }

}


/* =========================
   FADE ANIMATION
========================= */

.fade-up {

    animation: fadeUp .8s ease forwards;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================
   RESPONSIVE FIXES
========================= */

@media(max-width:1200px) {

    h1 {

        font-size: 52px;

    }

    h2 {

        font-size: 40px;

    }

}

@media(max-width:991px) {

    .page-banner {

        padding: 150px 0 80px;

        text-align: center;

    }

    .page-banner h1 {

        font-size: 48px;

    }

    .product-sidebar {

        position: relative;

        top: auto;

        margin-top: 40px;

    }

}

@media(max-width:768px) {

    h1 {

        font-size: 42px;

    }

    h2 {

        font-size: 34px;

    }

    .section-padding {

        padding: 50px 0;

    }

}

@media(max-width:576px) {

    h1 {

        font-size: 34px;

    }

    h2 {

        font-size: 28px;

    }

    .page-banner h1 {

        font-size: 36px;

    }

    .download-item {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

}