/* 
   AKIK COLOURCHEM DESIGN SYSTEM - PREMIUM HEAVY CORPORATE V4
   Honeycomb Hero (Homepage only) + Simple Banner (Other Pages)
   Enhanced Hexagon Hover + Featured Products Table
*/

/* Brand Colors Refinement */
:root {
    --primary-blue: #04619B;
    --navy-blue: #002D4A;
    --business-dark: #010C15;
    --heading-color: #04213F;
    --text-black: 0, 0, 0;
    --text-white: 255, 255, 255;
    --bs-E67E22: 230, 126, 34;
    --bs-AABB6C: 170, 187, 108;

    /* Dark 'print' color from business card */
    --accent-blue-light: rgba(4, 97, 155, 0.1);
    --light-blue-accent: #B4D4E7;
    --footer-dark: #02121D;


    /* GRADIANT  */
    --gradiant-one: linear-gradient(219.69deg, #2F2F84 -15.08%, rgba(36, 154, 214, 0.8) -3.45%, #2F3085 94.59%);
    --gradiant-green: linear-gradient(263.57deg, #AABB6C 9.01%, #789805 67.85%);




    /* Traditional Corporate Palette for Range Slider */
    --navy-card: #0B2239;
    --primary-blue-card: #38669D;
    --hover-card: #2E5E90;
    --light-blue-bg: #EAF2FB;
    --card-border: #D6E2F0;
    --card-text: #2B3440;
    --card-muted: #607089;

    --light-bg: #F8FAFC;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

 --s1:4px;
  --s2:8px;
  --s3:16px;
  --s4:24px;
  --s5:48px;
}


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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--business-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--business-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/***************
UTILITY CLASS
***************/
.border-0 {
    border: none !important;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-start {
    background-position: left;
}

.bg-end {
    background-position: right;
}

.bg-center {
    background-position: center;
}

.bg-bottom {
    background-position: bottom;
}

.bg-top {
    background-position: top;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-repeat {
    background-repeat: repeat;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-relative {
    background-attachment: relative;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-none {
    display: none;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: end;
}

.align-start {
    align-items: start;
}

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

.justify-end {
    justify-content: end;
}

.justify-start {
    justify-content: start;
}

.justify-around {
    justify-content: space-around;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}


.gap-1 {
    gap: 4px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

.gap-4 {
    gap: 24px;
}

.gap-5 {
    gap: 48px;
}

/* colour  */

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

.tAccent {
    color: var(--heading-color);
}

.text-muted {
    color: var(--text-muted);
}

.card-text-one {
    color: var(--card-text);
}

.text-5B5B5B {
    color: #5B5B5B;
}

.text-black {
    color: rgba(var(--text-black), 1);
}

.text-black-80 {
    color: rgba(var(--text-black), 0.8);
}

.text-black-70 {
    color: rgba(var(--text-black), 0.7);
}

.text-black-60 {
    color: rgba(var(--text-black), 0.6);
}

.text-white {
    color: rgba(var(--text-white), 1);
}

.text-white-80 {
    color: rgba(var(--text-white), 0.8);
}


.gradiant-one {
    background: var(--gradiant-one);
}

.gradiant-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* bg  */
.bg-primary {
    background-color: var(--primary-blue);
}

.bg-light-p{
    background-color: var(--light-bg);
}

.bg-E67E22 {
    background-color: rgba(var(--bs-E67E22), 1);
}

.bg-E67E22-80 {
    background-color: rgba(var(--bs-E67E22), 0.8);
}

.bg-E67E22-40 {
    background-color: rgba(var(--bs-E67E22), 0.4);
}


/***************
TYPOGRAPHY
***************/
.fs-10 {
    font-size: clamp(9px, 0.7vw, 10px);
}

.fs-11 {
    font-size: clamp(10px, 0.75vw, 11px);
}

.fs-12 {
    font-size: clamp(11px, 0.85vw, 12px);
}

.fs-13 {
    font-size: clamp(12px, 0.9vw, 13px);
}

.fs-14 {
    font-size: clamp(13px, 1vw, 14px);
}

/* default body */
.fs-15 {
    font-size: clamp(14px, 1.05vw, 15px);
}

.fs-16 {
    font-size: clamp(15px, 1.1vw, 16px);
}

.fs-18 {
    font-size: clamp(16px, 1.3vw, 18px);
}

.fs-20 {
    font-size: clamp(18px, 1.6vw, 20px);
}

.fs-22 {
    font-size: clamp(20px, 1.8vw, 22px);
}

.fs-24 {
    font-size: clamp(20px, 2vw, 24px);
}

.fs-28 {
    font-size: clamp(22px, 2.4vw, 28px);
}

.fs-32 {
    font-size: clamp(24px, 3vw, 32px);
}

.fs-36 {
    font-size: clamp(28px, 3.5vw, 36px);
}

.fs-40 {
    font-size: clamp(32px, 4vw, 40px);
}

.fs-48 {
    font-size: clamp(36px, 5vw, 48px);
}
/* spacing  */
/* ===== All Sides ===== */
/* All sides */

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

/* all sides */
.m-1{margin:var(--s1);}
.m-2{margin:var(--s2);}
.m-3{margin:var(--s3);}
.m-4{margin:var(--s4);}
.m-5{margin:var(--s5);}

/* x-axis */
.mx-1{margin-left:var(--s1);margin-right:var(--s1);}
.mx-2{margin-left:var(--s2);margin-right:var(--s2);}
.mx-3{margin-left:var(--s3);margin-right:var(--s3);}
.mx-4{margin-left:var(--s4);margin-right:var(--s4);}
.mx-5{margin-left:var(--s5);margin-right:var(--s5);}

/* y-axis */
.my-1{margin-top:var(--s1);margin-bottom:var(--s1);}
.my-2{margin-top:var(--s2);margin-bottom:var(--s2);}
.my-3{margin-top:var(--s3);margin-bottom:var(--s3);}
.my-4{margin-top:var(--s4);margin-bottom:var(--s4);}
.my-5{margin-top:var(--s5);margin-bottom:var(--s5);}

/* individual */
.mt-1{margin-top:var(--s1);}
.mt-2{margin-top:var(--s2);}
.mt-3{margin-top:var(--s3);}
.mt-4{margin-top:var(--s4);}
.mt-5{margin-top:var(--s5);}

.mb-1{margin-bottom:var(--s1);}
.mb-2{margin-bottom:var(--s2);}
.mb-3{margin-bottom:var(--s3);}
.mb-4{margin-bottom:var(--s4);}
.mb-5{margin-bottom:var(--s5);}

.ms-1{margin-left:var(--s1);}
.ms-2{margin-left:var(--s2);}
.ms-3{margin-left:var(--s3);}
.ms-4{margin-left:var(--s4);}
.ms-5{margin-left:var(--s5);}

.me-1{margin-right:var(--s1);}
.me-2{margin-right:var(--s2);}
.me-3{margin-right:var(--s3);}
.me-4{margin-right:var(--s4);}
.me-5{margin-right:var(--s5);}

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

/* all sides */
.p-1{padding:var(--s1);}
.p-2{padding:var(--s2);}
.p-3{padding:var(--s3);}
.p-4{padding:var(--s4);}
.p-5{padding:var(--s5);}

/* x-axis */
.px-1{padding-left:var(--s1);padding-right:var(--s1);}
.px-2{padding-left:var(--s2);padding-right:var(--s2);}
.px-3{padding-left:var(--s3);padding-right:var(--s3);}
.px-4{padding-left:var(--s4);padding-right:var(--s4);}
.px-5{padding-left:var(--s5);padding-right:var(--s5);}

/* y-axis */
.py-1{padding-top:var(--s1);padding-bottom:var(--s1);}
.py-2{padding-top:var(--s2);padding-bottom:var(--s2);}
.py-3{padding-top:var(--s3);padding-bottom:var(--s3);}
.py-4{padding-top:var(--s4);padding-bottom:var(--s4);}
.py-5{padding-top:var(--s5);padding-bottom:var(--s5);}

/* individual */
.pt-1{padding-top:var(--s1);}
.pt-2{padding-top:var(--s2);}
.pt-3{padding-top:var(--s3);}
.pt-4{padding-top:var(--s4);}
.pt-5{padding-top:var(--s5);}

.pb-1{padding-bottom:var(--s1);}
.pb-2{padding-bottom:var(--s2);}
.pb-3{padding-bottom:var(--s3);}
.pb-4{padding-bottom:var(--s4);}
.pb-5{padding-bottom:var(--s5);}

.ps-1{padding-left:var(--s1);}
.ps-2{padding-left:var(--s2);}
.ps-3{padding-left:var(--s3);}
.ps-4{padding-left:var(--s4);}
.ps-5{padding-left:var(--s5);}

.pe-1{padding-right:var(--s1);}
.pe-2{padding-right:var(--s2);}
.pe-3{padding-right:var(--s3);}
.pe-4{padding-right:var(--s4);}
.pe-5{padding-right:var(--s5);}


/* weight  */
.fw-light {
    font-weight: 300;
}

.fw-normal {
    font-weight: 400;
}

/* regular */
.fw-medium {
    font-weight: 500;
}

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

.fw-bold {
    font-weight: 700;
}

/* bold */
.fw-bolder {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/* line height  */
.lh-1 {
    line-height: 1;
}

.lh-12 {
    line-height: 1.2;
}

.lh-14 {
    line-height: 1.4;
}

.lh-16 {
    line-height: 1.6;
}

/* body text */
.lh-18 {
    line-height: 1.8;
}

.lh-2 {
    line-height: 2;
}

/* transform */
.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

/* letter spacing  */
.ls-0 {
    letter-spacing: 0;
}

.ls-05 {
    letter-spacing: 0.5px;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-15 {
    letter-spacing: 1.5px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* align  */
.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}



/* HEADER */
.header-modern {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-modern .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    height: 50px;
    width: auto;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1;
    font-weight: 800;
    color: var(--navy-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* BUTTONS */
.btn-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid var(--primary-blue);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.btn-md {
    padding: 20px 42px;
    font-size: 16px;
}
.btn-lg {
    padding: 15px 60px;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-blue);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 14px rgba(4, 97, 155, 0.25);
    border: 2px solid transparent;
}

.btn-gradient {
    background: var(--gradiant-one);
    /* background-size: 200% auto; */
    border: 2px solid transparent;
    color: white;
    box-shadow: 0 4px 14px rgba(4, 97, 155, 0.25);
}
.btn-gradient.gradiantTwo {
    background: var(--gradiant-green);
     border: 2px solid #AABB6C;
     box-shadow: 0px 4px 14px 0px #AABB6C40;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

.btn-shine:hover {
    background-position: right center;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 45, 74, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, transparent 0%, rgba(4, 97, 155, 0.05) 50%, transparent 100%);
    background-size: 200% auto;
}

.btn-outline:hover {
    background: var(--gradiant-one);
    ;
    background-size: 200% auto;
    background-position: right center;
    color: white;
    transform: translateY(-4px);
}
.btn-white {
    background: white;
    color: var(--primary-blue);
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-color: #B7B7B7;
    transition: var(--transition);
}

.btn.btn-white:hover{
    background: var(--gradiant-one);
    color: white;
    transform: translateY(-4px);
}

.btn.icon-btn .icon {
    transition: transform 0.3s ease-in-out;
}

.btn.icon-btn:hover .icon {
    transform: rotate(45deg);
}

/* =============================================
   HERO SECTION - Homepage Honeycomb 
   ============================================= */
/* HERO SECTION - REFINED */

.hero-section {
    padding: 100px 0 150px;
    /* background: var(--business-dark);
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center; */
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 1;
    pointer-events: none;
} */

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}


/* Updated Hero Content for Light Theme */
.hero-content {
    animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.badge {

    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 12px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.badge-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-blue);
}

.hero-badge:hover {
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}


.hero-content h1 {
    margin-bottom: 25px;
}

.hero-content p {
    margin-bottom: 40px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    /* color: #fff; */
    /* font-weight: 700; */
    /* font-size: 11px; */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-icon {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-section .section-label {
    color: #fff;
    opacity: 0.8;
}

/* =============================================
   HONEYCOMB IMAGE GRID + Enhanced Hover
   ============================================= */
.honeycomb-grid {
    position: relative;
    width: 100%;
    height: 600px;
    padding: 0;
}

.hexagon {
    position: absolute;
    width: 220px;
    height: 220px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: var(--business-dark);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    z-index: 1;
}

.hexagon:nth-child(1) {
    top: -10px;
    left: -20px;
    transition-delay: 0.1s;
}

.hexagon:nth-child(2) {
    top: 30px;
    left: 280px;
    transition-delay: 0.2s;
}

.hexagon:nth-child(3) {
    top: 220px;
    left: 20px;
    transition-delay: 0.3s;
}

.hexagon:nth-child(4) {
    top: 280px;
    left: 320px;
    transition-delay: 0.4s;
}

.hexagon:nth-child(5) {
    top: 120px;
    left: 450px;
    transition-delay: 0.5s;
}

.hexagon:nth-child(6) {
    top: 400px;
    left: 80px;
    transition-delay: 0.6s;
}

.hexagon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%, rgba(1, 12, 21, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.hexagon:hover {
    transform: scale(1.08) rotate(3deg) translateY(-10px);
    z-index: 10;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.hexagon:hover::after {
    opacity: 1;
}

.hexagon:hover img {
    transform: scale(1.2);
    filter: saturate(1.5) contrast(1.2) brightness(1.1);
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hexagon:nth-child(even) {
    margin-top: 80px;
}

/* Staggered float animation */
@keyframes hexFloat {

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

    50% {
        transform: translateY(-8px);
    }
}

.hexagon:nth-child(1) {
    animation: hexFloat 4s ease-in-out infinite;
}

.hexagon:nth-child(2) {
    animation: hexFloat 4s ease-in-out 0.5s infinite;
}

.hexagon:nth-child(3) {
    animation: hexFloat 4s ease-in-out 1s infinite;
}

.hexagon:nth-child(4) {
    animation: hexFloat 4s ease-in-out 1.5s infinite;
}

.hexagon:hover {
    animation-play-state: paused;
    transform: scale(1.15) rotate(5deg);
}

/* =============================================
   SIMPLE PAGE BANNER (All pages EXCEPT homepage)
   ============================================= */
.page-banner {
    /* position: relative; */
    /* background: var(--navy-blue); */
    background: url('./assets/media/banner/inner_page_banner.webp');
    /* color: white; */
    padding: 80px 0 70px;
    /* overflow: hidden; */
}

/* .page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #04619B 100%);
    opacity: 0.9;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue-accent), var(--primary-blue));
} */

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

.page-banner h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.page-banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    line-height: 1.6;
}

.page-banner .breadcrumb {
    font-size: 15px;
    margin-bottom: 20px;
    /* opacity: 0.6; */
}
.page-banner .breadcrumb span{opacity: 1;}
.page-banner .breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.6;
}

.page-banner .breadcrumb a:hover {
    text-decoration: underline;
}

/* =============================================
   CORNER MOTIF + SHADOWS
   ============================================= */
.starBg{background-image: url('./assets/media/globle/starBg.webp');}
.starBg-start-50{background-position: -50px;}

.img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--light-blue-accent);
    z-index: 1;
}


.img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--light-blue-accent);
    z-index: 1;
}
.img-wrapper.light-wrapper::before,.img-wrapper.light-wrapper::after {
    background: #6F8EB2;
}

.img-wrapper.green-wrapper::before,.img-wrapper.green-wrapper::after {
    background: rgba(var(--bs-AABB6C), 0.24);
}


.img-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.no-img-wrapper::before,.no-img-wrapper::after{display: none;}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-wrapper {
    padding: 120px 0;
}


/* Company Section with Background */
.section-wrapper.company-section {
    /* background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); */
    background-image: url('./assets/media/home/overview.webp');
    /* background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative; */
}

/* .section-wrapper.company-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 97, 155, 0.92) 0%, rgba(0, 45, 74, 0.9) 100%);
    z-index: 1;
} */

/* .section-wrapper.company-section .container {
    position: relative;
    z-index: 2;
} */

/* .section-wrapper.company-section .text-col h2, */
/* .section-wrapper.company-section .text-col p, */
/* .section-wrapper.company-section .section-label {
    color: white;
} */

/* .section-wrapper.company-section .section-label {
    color: rgba(255, 255, 255, 0.9);
} */

/* .section-wrapper.company-section .text-col p {
    color: rgba(255, 255, 255, 0.85);
} */

.split-container {
    display: flex;
    gap: 100px;
    align-items: center;
}

.split-container.align-right {
    flex-direction: row-reverse;
}

.text-col {
    flex: 1;
}

.img-col {
    flex: 1;
    position: relative;
}

.section-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
    display: block;
}

.section-label.green-lable{
    color: #AABB6C;
}

.white-label {
    color: white;
}

/* .text-col h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--business-dark);
    letter-spacing: -1px;
} */

/* .text-col p { */
    /* font-size: 17px; */
    /* color: var(--text-muted); */
    /* margin-bottom: 15px; */
    /* line-height: 1.7; */
/* } */

/* =============================================
   FEATURED PRODUCTS TABLE
   ============================================= */
.featured-products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.featured-products-table thead {
    background: var(--navy-blue);
    color: white;
}

.featured-products-table th {
    padding: 18px 30px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-products-table td {
    padding: 16px 30px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    vertical-align: middle;
}

.featured-products-table tbody tr {
    transition: var(--transition);
}

.featured-products-table tbody tr:hover {
    background: var(--light-bg);
}

.featured-products-table tbody tr:last-child td {
    border-bottom: none;
}

.dot-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.enquire-link {
    display: inline-block;
    padding: 8px 22px;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
}

.enquire-link:hover {
    background: var(--primary-blue);
    color: white;
}

/* Filter Chips */
.chip {
    padding: 8px 22px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.chip:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.chip.active {
    background: var(--navy-blue);
    color: white;
    border-color: var(--navy-blue);
}

/* =============================================
   INFOGRAPHIC CARDS
   ============================================= */

/* Why Choose Us Section with Background */
.why-choose-section {
    background-image: url('./assets/media/home/whyUs.webp');
}
.excellence-sec{background-image: url('./assets/media/home/excellence.webp');}

.why-choose-section::before ,.bg-section-shade:before{
    content: '';
    position: absolute;
    top: -13%;
    left: 13%;
    right: 0;
    bottom: 0;
    background: linear-gradient(250.92deg, #04619B 48.47%, rgba(57, 130, 176, 0.790462) 56.51%, rgba(255, 255, 255, 0) 84.85%);
    z-index: 1;
    width: 1816px;
    height: 1351px;
    transform: rotate(167deg);
    pointer-events: none;
}
.why-choose-section:not(.hWhy-us)::before{
        left: 13%;
            width: 2216px;
    height: 1051px;
}
.why-choose-section.mission-section::before{
        width: 1940px;
}


.bg-section-shade.white-shade:before{
    background: linear-gradient(158.75deg, #FFFFFF 47.2%, rgba(255, 255, 255, 0) 53.83%);

}
.excellence-sec.bg-section-shade::before{
    top: -54%;
    left: 45%;
        right: 0;
    bottom: 0;
        width: 1016px;
    height: 1229px;
    transform: rotate(-121deg);
    z-index: -1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}


.why-choose-section .info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.why-choose-section .info-card .card-icon {
    margin-bottom: 25px;
}

.infographic-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 17px 19px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 5px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px) !important;
    /* box-shadow: var(--shadow-lg); */
    /* border-bottom: 5px solid var(--primary-blue); */
}

.info-icon {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: block;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   DOWNLOAD CARD
   ============================================= */
.download-card-wrapper {
    background: var(--gradiant-one);
    color: white;
    /* padding: 35px 40px; */
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(46, 90, 142, 0.25);
    margin-top: 40px;
    position: relative;
    overflow: visible;
}

/* Card Header with Logo */
.download-card-header {
    /* display: flex; */
    /* justify-content: space-between; */
    align-items: center;
    /* margin-bottom: 25px; */
}

.download-text {
    flex: 1;
}

.download-text h3 {
    color: white;
    margin-bottom: 8px;
    /* font-size: 20px; */
    /* font-weight: 700; */
    margin: 0;
}

.download-text p {
    color: rgba(255, 255, 255, 0.85);
    /* margin: 0; */
    /* font-size: 13px; */
    line-height: 1.5;
    /* margin-top: 10px; */
}

.download-logo {
    min-width: 150px;
    height: auto;
    opacity: 1;
    flex-shrink: 0;
}

.download-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.download-card-wrapper .btn-white {
    background: white;
    color: #2E5A8E;
    border: none;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.download-card-wrapper .btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

 .download-card {
            background: white;
            padding: 50px 40px;
            border-radius: 4px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border-top: 5px solid var(--primary-blue);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
        }

        .download-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
        }

        .download-icon {
            font-size: 56px;
            color: var(--primary-blue);
            margin-bottom: 30px;
        }

/* =============================================
   SUSTAINABILITY IMG WRAPPER
   ============================================= */
/* .sustainability-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.sustainability-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80%;
    height: 80%;
    background: #E8F5E9;
    z-index: 1;
    border-radius: 50%;
}

.sustainability-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: #F1F8E9;
    z-index: 1;
}

.sustainability-img-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
} */

/* =============================================
   VAT DYES TABLE (Catalog Page)
   ============================================= */
.swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

/* =============================================
   FOOTER
   ============================================= */
.footer-heavy {
    background: #081B29;
    color: white;
    padding: 120px 0 60px;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 80px;
}

/* FOOTER - REFINED (Matching Reference Image) */
.footer-heavy {
    background: var(--footer-dark);
    padding: 80px 0 40px;
    color: white;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* =============================================
   All CONTACT FORMS
   ============================================= */
   .cf7-form {
    display: grid;
    gap: 30px;
}

.cf7-row {
    width: 100%;
}

.cf7-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cf7-form input,
.cf7-form textarea,
.cf7-form select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

.cf7-form textarea {
    min-height: 160px;
    font-family: inherit;
}

.cf7-form input[type="submit"] {
        background: var(--gradiant-one);
    color: #fff;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    font-size: 16px;
}

.cf7-center {
    text-align: center;
}

/* mobile */
@media (max-width: 768px) {
    .cf7-2col {
        grid-template-columns: 1fr;
    }
}
/* =============================================
   VAT DYE RANGE SLIDER (TRADITIONAL)
   ============================================= */
.range-slider-section {
    background-color: var(--light-blue-bg);
    padding: 80px 0;
    overflow: hidden;
}

.range-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.range-header-left {
    max-width: 600px;
}


.view-all-link {
    color: var(--primary-blue-card);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 14px;
    white-space: nowrap;
}

.view-all-link:hover {
    color: var(--hover-card);
}

/* Slider Master Container */
.range-slider-master {
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    /* padding: 0 80px; */
}

.range-viewport {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
}

.range-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    justify-content: flex-start;
}

/* Card Design */
.range-card {
    min-width: 100%;
    width: 100%;
    max-width: 900px;
    height: auto;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    display: flex;
    box-shadow: 0 8px 20px rgba(11, 34, 57, 0.08);
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 auto;
}

/* Columns */
.card-visual-col {
    flex: 0 0 40%;
    padding: 26px 36px;
    border-right: 1px solid var(--card-border);
}

.flask-wrapper {
    height: 270px;
}

.flask-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
    z-index: 2;
}

.fabric-strip {
    position: absolute;
    width: 100px;
    height: 300px;
    background: rgba(0, 0, 0, 0.03);
    transform: rotate(15deg);
    z-index: 1;
}

.color-profile-bar {
    width: 100%;
    padding-top: 20px;
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
    border-top: 0.5px solid #FFFFFF;
    margin-top: 20px;
}

.chip-label {
    margin-bottom: 2px;
}

.color-chip-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.swatch-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
}



/* Content Column */
.card-content-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.card-content-col h3 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 28px; */
    /* color: var(--navy-card); */
    margin-bottom: 8px;
    /* font-weight: 700; */
}

.card-content-col p.desc {
    /* font-size: 14px;
    color: var(--card-muted);
    line-height: 1.7; */
    margin-bottom: 20px;
}

.spec-list {
    list-style: none;
    margin-bottom: 10px;
}

.spec-list li {
    color: #2B3440BF;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-list li::before {
    content: '•';
    color: var(--primary-blue-card);
    font-weight: bold;
}

.info-pills {
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.info-pill {
    padding: 6px 12px;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--card-muted);
    background: #F9FAFB;
}

.card-cta-row {
    margin-top: auto;
    display: flex;
    gap: 12px;
    margin-bottom: 0px;
}

.card-cta-row .btn {
    padding: 13px 28px;
    font-size: 16px;
}

.placeholder-links {
    display: flex;
    gap: 15px;
}

.placeholder-links a {
    font-size: 11px;
    color: var(--card-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.placeholder-links a:hover {
    color: var(--primary-blue-card);
}

/* Controls */
.slider-nav-arrows {
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    color: var(--navy-card);
    font-size: 14px;
}

.nav-arrow:hover {
    background: var(--hover-card);
    color: #fff;
    border-color: var(--hover-card);
}

.slider-pagination-footer {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.counter-display {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-card);
    margin-bottom: 12px;
}

.progress-bar-container {
    width: 180px;
    height: 3px;
    background: var(--card-border);
    position: relative;
    border-radius: 2px;
}

.progress-fill {
    position: absolute;
    height: 100%;
    background: var(--primary-blue-card);
    transition: width 0.4s ease;
    border-radius: 2px;
}

@media (max-width: 1200px) {
    .range-card {
        min-width: 90%;
    }

    .slider-nav-arrows {
        left: 0;
        right: 0;
        padding: 0 10px;
    }
}

.footer-branding {
    display: flex;
    flex-direction: column;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    margin: 20px 0 25px;
    max-width: 280px;
}

.footer-values-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-contact-item i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

/* =============================================
   PAGINATION
   ============================================= */
.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--navy-blue);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.page-btn-active {
    background: var(--navy-blue);
    color: #fff !important;
    border-color: var(--navy-blue);
}

.page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.page-arrow {
    font-size: 12px;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 600;
    color: var(--heading-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 14px;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.3s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 20px;
}


@media (max-width: 992px) {

    .hero-grid,
    .split-container {
        grid-template-columns: 1fr;
        flex-direction: column !important;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .page-banner h1 {
        font-size: 34px;
    }

    .infographic-container {
        grid-template-columns: 1fr;
    }

    .hexagon {
        width: 150px;
        height: 175px;
    }

    .hexagon:nth-child(even) {
        margin-top: 40px;
    }

    .footer-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .featured-products-table th,
    .featured-products-table td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .chip {
        padding: 6px 14px;
        font-size: 12px;
    }

    #productsGrid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    #productsGrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}