/*
============================
  SRCIL Premium Corporate Theme
  Chemical Industry Brochure Style
  Primary: #0F5286 | Green: #67B346 | Dark: #1A2B3C
============================
*/

/* ==============================
   GOOGLE FONTS - PREMIUM TYPOGRAPHY
   ============================== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap');

/* ==============================
   CSS CUSTOM PROPERTIES
   ============================== */
:root {
    --primary-blue: #0F3A55;
    --secondary-blue: #2773B7;
    --brand-green: #67B346;
    --dark-green: #4e8f33;
    --light-gray: #F5F7FA;
    --dark-text: #1A2B3C;
    --medium-text: #3d5166;
    --muted-text: #3d5166;
    --white: #FFFFFF;
    --dark-navy: #2773B7;
    --mid-navy: #2773B7;

    --shadow-sm: 0 2px 12px rgba(15, 82, 134, 0.08);
    --shadow-md: 0 6px 30px rgba(15, 82, 134, 0.14);
    --shadow-lg: 0 12px 50px rgba(15, 82, 134, 0.18);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==============================
   GLOBAL RESETS & BASE
   ============================== */
body.body {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    background: #fff;
    margin: 0 !important;
    padding: 0 !important;
    z-index: auto !important;
    position: relative !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

.title1 {
    color: var(--dark-text);
}

.pera1 {
    color: var(--muted-text);
}

/* ==============================
   SCROLL PROGRESS BAR
   ============================== */
.progress-wrap {
    position: fixed;
    right: 24px;
    bottom: 24px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(15, 82, 134, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    content: '\f077';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    text-align: center;
    line-height: 46px;
    font-size: 14px;
    color: var(--primary-blue);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-blue);
    stroke-width: 4;
    box-sizing: border-box;
    transition: var(--transition);
}

/* ==============================
   HEADER
   ============================== */

/* Fix: ensure no gap above header */
html,
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

header {
    font-family: 'Barlow', sans-serif;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override main.css position:absolute on .header-area */
.header-area {
    position: sticky !important;
    top: 0 !important;
}

.header-area.header-area1 {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 0 !important;
    position: absolute !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

/* Sticky Glass State */
.header-area.header-area1.sticky {
    position: fixed !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 30px rgba(15, 82, 134, 0.08) !important;
    border-bottom: 1px solid rgba(15, 82, 134, 0.08) !important;
}

.header-area1 .header-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.header-area1 .site-logo img {
    height: 65px;
    width: auto;
}

/* Nav Menu */
.main-menu-ex1>ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu-ex1>ul>li>a {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-text) !important;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
}

.main-menu-ex1>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--brand-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.main-menu-ex1>ul>li:hover>a::after,
.main-menu-ex1>ul>li>a:hover::after {
    transform: scaleX(1);
}

.main-menu-ex1>ul>li:hover>a,
.main-menu-ex1>ul>li>a:hover {
    color: var(--primary-blue) !important;
}

/* Dropdown menus */
.main-menu-ex1 ul ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary-blue);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 999;
    overflow: visible !important;
}

.main-menu-ex1 li.dropdown-menu-parrent {
    position: relative;
}

.main-menu-ex1 li.dropdown-menu-parrent:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu-ex1 ul ul li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text) !important;
    transition: var(--transition);
}

.main-menu-ex1 ul ul li a:hover {
    color: var(--primary-blue) !important;
    background: var(--light-gray);
    padding-left: 26px;
}

/* Sub-sub menus */
.main-menu-ex1 ul ul li.has-dropdown {
    position: relative;
}

.has-dropdown1 > .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 99999;
    background: #fff;
    height: 350px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #0d6efd #f1f1f1;
}

.has-dropdown1 > .sub-menu::-webkit-scrollbar {
    width: 6px;
}

.has-dropdown1 > .sub-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.has-dropdown1 > .sub-menu::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 10px;
}

.main-menu-ex1 ul ul li.has-dropdown:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure parent containers of sub-menus do not clip their children */
.header-area,
.header-area .container,
.header-area .row,
.header-area .col-12,
.header-area .header-elements,
.main-menu-ex,
.main-menu-ex ul,
.main-menu-ex li,
.main-menu-ex1 ul ul,
.main-menu-ex1 ul ul li {
    overflow: visible !important;
}

/* Header CTA Button */
.header1-buttons .theme-btn1 {
    background: var(--primary-blue) !important;
    color: #fff !important;
    padding: 11px 22px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.4px !important;
    border: 2px solid var(--primary-blue) !important;
    transition: var(--transition) !important;
    clip-path: none !important;
}

.header1-buttons .theme-btn1:hover {
    background: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(103, 179, 70, 0.35) !important;
}

.header1-buttons .theme-btn1 .arrow1,
.header1-buttons .theme-btn1 .arrow2 {
    display: inline;
}

/* ==============================
   MOBILE HEADER
   ============================== */
.mobile-header-main {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(15, 82, 134, 0.12);
    border-bottom: 3px solid var(--brand-green);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.mobile-header-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.mobile-logo img {
    height: 44px;
    width: auto;
}

.mobile-nav-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

/* Mobile Sidebar */
.mobile-sidebar {
    background: var(--dark-navy) !important;
    border-right: 4px solid var(--brand-green);
}

.mobile-sidebar .logo-m img {
    height: 46px;
    width: auto;
}

.mobile-sidebar .menu-close {
    background: var(--brand-green);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.mobile-sidebar .mobile-nav ul li a {
    color: #c5d5e8 !important;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
    display: block;
    transition: var(--transition);
}

.mobile-sidebar .mobile-nav ul li a:hover {
    color: var(--brand-green) !important;
    padding-left: 6px;
}

.mobile-sidebar .mobile-button .theme-btn3 {
    background: var(--brand-green) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
}

/* ==============================
   BUTTONS
   ============================== */
.theme-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue) !important;
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: var(--radius-sm) !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    border: 2px solid var(--primary-blue) !important;
    transition: var(--transition) !important;
    clip-path: none !important;
    overflow: hidden;
    position: relative;
}

.theme-btn1:hover {
    background: var(--dark-navy) !important;
    border-color: var(--dark-navy) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 82, 134, 0.3) !important;
}

.theme-btn1 .arrow1,
.theme-btn1 .arrow2 {
    font-size: 13px;
}

.theme-btn2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent !important;
    color: #fff !important;
    padding: 12px 26px !important;
    border-radius: var(--radius-sm) !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition) !important;
    clip-path: none !important;
}

.theme-btn2:hover {
    background: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.theme-btn3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-green) !important;
    color: #fff !important;
    padding: 13px 26px !important;
    border-radius: var(--radius-sm) !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.4px !important;
    border: 2px solid var(--brand-green) !important;
    transition: var(--transition) !important;
    clip-path: none !important;
}

.theme-btn3:hover {
    background: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 82, 134, 0.25) !important;
}

/* "learn more" inline link */
a.learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue) !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: var(--transition);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

a.learn:hover {
    color: var(--brand-green) !important;
    border-bottom-color: var(--brand-green);
}

/* ==============================
   SECTION HEADING STYLES
   ============================== */
.heading1 .span1 {
    background: rgba(103, 179, 70, 0.1) !important;
    color: var(--brand-green) !important;
    border-left: 3px solid var(--brand-green) !important;
    border-radius: 3px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px !important;
    padding: 6px 16px !important;
    display: inline-block;
}

.heading1 h2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero1-slider {
    position: relative;
}

.hero1-single-slider {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero1-bg1 {
    background-image:
        url('../img/added/MAIN.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Geometric corner accent */
.hero1-single-slider::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 2;
}

/* Hexagon decorative element */
.hero1-single-slider::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 60px;
    width: 320px;
    height: 320px;
    background: rgba(103, 179, 70, 0.06);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.hero1-single-slider .container {
    position: relative;
    z-index: 3;
}

.hero1-single-slider .main-heading1 {
    padding: 60px 0 80px;
}

.hero1-single-slider .main-heading1 h1 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero1-single-slider .main-heading1 h1 span {
    color: var(--brand-green);
}

.hero1-single-slider .main-heading1 p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 520px;
    margin-top: 20px;
}

/* Green accent line above hero text */
.hero1-single-slider .main-heading1::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero1-single-slider .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

/* Hero stat bar */
.hero-stats-bar {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-stats-bar .container>div {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    border-left: 3px solid var(--brand-green);
}

.hero-stats-bar .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stats-bar .stat-label {
    font-size: 12px;
    color: var(--medium-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Main image in hero */
.hero1-single-slider .main-image {
    position: absolute;
    right: -20px;
    bottom: 80px;
    z-index: 2;
    max-width: 480px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

/* Hero right-side MAIN image */
.hero-main-image-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 100px;
    animation: heroImgFloat 3.5s ease-in-out infinite;
}

.hero-main-img {
    max-width: 100%;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.35));
    border-radius: 8px;
    animation: heroImgFadeIn 1.2s ease-out forwards;
}

@keyframes heroImgFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes heroImgFadeIn {
    from {
        opacity: 0;
        transform: translateX(60px) translateY(0);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* ==============================
   ABOUT SECTION (Homepage)
   ============================== */
.about1.sp {
    background: #fff;
    padding: 90px 0;
}

/* About section — single image, no dot pattern */
.about1-images {
    position: relative;
    min-height: 420px;
}

.about1-images::before,
.about1-images::after {
    display: none !important;
}

.about1-images .image1 {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    border: 5px solid #fff;
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
}

.about1-images .image2 {
    display: none !important;
}

.about1-images .image1 img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.about1-images:hover .image1 img {
    transform: scale(1.03);
}

/* About counters */
.about1 .counter-box {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
}

.about1 .counter-box:hover {
    border-left-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.about1 .counter-box h3 {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-blue);
}

/* ==============================
   ANGLED SECTION DIVIDER UTILITY
   ============================== */
.angled-top {
    position: relative;
}

.angled-top::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: inherit;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.angled-bottom {
    position: relative;
}

.angled-bottom::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
}

/* ==============================
   SERVICES SECTION — Brochure Card Style
   Same design as testimonial/bfc cards
   ============================== */
.service.sp {
    background: var(--light-gray) !important;
    padding: 90px 0;
    position: relative;
}

.service.sp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--brand-green) 100%);
}

.service-box1 {
    background: var(--dark-navy) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-md) !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1.5px solid rgba(103, 179, 70, 0.25) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    transition: var(--transition) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-box1:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 50px rgba(15, 82, 134, 0.30) !important;
    border-color: var(--brand-green) !important;
}

.service-box1 .image {
    overflow: hidden;
    border-radius: 0 !important;
    height: 220px;
    position: relative;
}

.service-box1 .image img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease !important;
    display: block;
}

.service-box1:hover .image img {
    transform: scale(1.06);
}

.service-box1 .heading1 {
    padding: 32px 32px 32px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-box1 .heading1 h4 a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--brand-green) !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    display: block;
    transition: color 0.2s;
}

.service-box1 .heading1 h4 a:hover {
    color: var(--primary-blue) !important;
}

.service-box1 .heading1 p {
    flex: 1;
    color: rgba(255, 255, 255, 0.80) !important;
    line-height: 1.7;
    font-size: 14px !important;
    font-family: 'Barlow', sans-serif !important;
}

/* Read More — green rounded pill like bfc-header */
.service-box1 .heading1 a.learn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--brand-green) !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 12px 24px !important;
    border-radius: 40px !important;
    border-bottom: none !important;
    margin-top: 18px !important;
    box-shadow: 0 4px 16px rgba(103, 179, 70, 0.35) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.service-box1 .heading1 a.learn:hover {
    background: #fff !important;
    color: var(--brand-green) !important;
    box-shadow: 0 6px 20px rgba(103, 179, 70, 0.45) !important;
}

.service-box1 .heading1 a.learn .arrow1,
.service-box1 .heading1 a.learn .arrow2 {
    font-size: 12px;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.test1.sp {
    background: #fff;
    padding: 90px 0;
    position: relative;
}

.test1.sp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green) 0%, var(--primary-blue) 100%);
}

.single-slider1 {
    background: var(--light-gray) !important;
    border-radius: var(--radius-lg) !important;
    padding: 32px !important;
    border-left: 4px solid var(--primary-blue) !important;
    margin: 10px !important;
    transition: var(--transition);
    position: relative;
}

.single-slider1:hover {
    border-left-color: var(--brand-green) !important;
    box-shadow: var(--shadow-md);
}

.single-slider1 .qute img {
    filter: hue-rotate(190deg) saturate(2);
    opacity: 0.6;
}

.single-slider1 p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--medium-text);
    font-style: italic;
}

.single-slider1 .bottom-heading a {
    color: var(--primary-blue) !important;
    font-size: 16px;
    font-weight: 700;
}

.single-slider1 .bottom-heading p {
    font-size: 13px;
    color: var(--brand-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-style: normal;
}

/* ==============================
   CTA SECTION
   ============================== */
.cta1.sp {
    padding: 90px 0 !important;
    position: relative;
    overflow: hidden;
}

.cta1.sp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(103, 179, 70, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transform: translate(-120px, -120px);
}

.cta1.sp::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.cta1 h2 {
    color: #fff;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.cta1 h2 span {
    color: var(--brand-green);
}

/* ==============================
   COMMON HERO (Breadcrumb)
   ============================== */
.common-hero {
    padding: 100px 0 80px !important;
    position: relative;
    overflow: hidden;
    /* background set per-page via inline style using video-area1-bg.jpg */
    background-size: cover !important;
    background-position: center center !important;
}

.common-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.common-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.common-hero-heading {
    position: relative;
    z-index: 2;
}

.common-hero-heading h1 {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 54px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Green bottom border on page titles */
.common-hero-heading h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
    margin-top: 16px;
}

.common-hero .page-change ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
    list-style: none;
}

.common-hero .page-change ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.common-hero .page-change ul li a:hover {
    color: var(--brand-green);
}

.common-hero .page-change ul li.arrow {
    color: var(--brand-green);
    font-size: 12px;
}

.common-hero .page-change ul li:last-child {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==============================
   ABOUT PAGE — About1 Section
   ============================== */
.about1.sp .about1-images .shape {
    display: none;
}

/* ==============================
   ABOUT PAGE — Why Choose Slider
   ============================== */
.about-service.bg1 {
    background: var(--light-gray) !important;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-service.bg1::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    background: rgba(15, 82, 134, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.about-service .heading4 h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--dark-text);
}

.about-service-buttons button {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary-blue);
    background: #fff;
    color: var(--primary-blue);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.about-service-buttons button:hover {
    background: var(--primary-blue);
    color: #fff;
}

.about-service-single-slider {
    background: #fff !important;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.08);
    border-top: 4px solid var(--primary-blue);
    transition: var(--transition);
    height: 100%;
}

.about-service-single-slider:hover {
    border-top-color: var(--brand-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-service-single-slider .icon img {
    height: 52px;
    width: 52px;
    object-fit: contain;
}

.about-service-single-slider .heading4 h4 a {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-text) !important;
}

.about-service-single-slider .heading4 p {
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.7;
}

/* ==============================
   ABOUT PAGE — Our Values / Mission
   ============================== */
.our-values.sp {
    background: var(--dark-navy) !important;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.our-values.sp::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: rgba(103, 179, 70, 0.07);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.our-values .heading1 h2 {
    color: #fff;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
}

.our-values-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px 20px 20px 16px;
    margin-top: 20px;
    border-left: 4px solid var(--brand-green);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.our-values-box:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateX(4px);
}

.our-values-box .icon {
    flex-shrink: 0;
}

.our-values-box .icon span {
    width: 36px;
    height: 36px;
    background: var(--brand-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.our-values-box .heading1 h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.our-values-box .heading1 p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.our-values .image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.08);
}

/* ==============================
   ABOUT PAGE — Core Services / Process
   ============================== */
.process.sp {
    background: var(--light-gray) !important;
    padding: 90px 0;
}

.process .heading1 h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
}

.video-area1 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    background-size: cover !important;
    background-position: center !important;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin-bottom: 48px;
}

.video-area1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 82, 134, 0.6) 0%, rgba(13, 31, 53, 0.4) 100%);
    border-radius: var(--radius-lg);
}

.process-bottom-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.08);
    border-bottom: 4px solid var(--primary-blue);
    transition: var(--transition);
    margin-top: 24px;
    text-align: center;
}

.process-bottom-box:hover {
    border-bottom-color: var(--brand-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-bottom-box .icon img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    margin: 0 auto;
}

.process-bottom-box .heading1 h4 a {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-text) !important;
    margin-top: 16px;
    display: block;
}

.process-bottom-box .heading1 p {
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.7;
    margin-top: 10px;
}

/* ==============================
   PRODUCT PAGES — General Card Styles
   ============================== */
.product-card,
.product-list-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.1);
    overflow: hidden;
    transition: var(--transition);
    padding: 0;
}

.product-card:hover,
.product-list-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

/* Product category header strip */
.product-category-header {
    background: var(--primary-blue);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-category-header .cat-number {
    background: var(--brand-green);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-category-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}

/* ==============================
   FOOTER
   ============================== */
.footer1 {
    background: var(--dark-navy) !important;
    padding: 80px 0 0 !important;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
}

.footer1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--brand-green) 50%, var(--primary-blue) 100%);
}

.footer1::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(15, 82, 134, 0.06);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.footer1 .logo-area {
    position: relative;
    z-index: 1;
}

.footer1 .logo-area img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer1 .logo-area p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-top: 14px;
    max-width: 290px;
}

/* Footer social icons */
.footer-social-area1 {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.footer-social-area1 li a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social-area1 li a:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer headings */
.footer1 h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--brand-green);
    margin-bottom: 20px;
    display: inline-block;
}

/* Footer nav links */
.footer-list1 {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-list1 li {
    margin-bottom: 10px;
}

.footer-list1 li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-list1 li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brand-green);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
}

.footer-list1 li a:hover {
    color: var(--brand-green);
    padding-left: 4px;
}

.footer-list1 li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer contact section */
.footer-contact-area1 {
    position: relative;
    z-index: 1;
}

.contact-section {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--brand-green);
    transition: var(--transition);
}

.contact-section:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-section img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
    filter: brightness(0) invert(1) opacity(0.7);
}

.contact-section p,
.contact-section a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    transition: var(--transition);
}

.contact-section a:hover {
    color: var(--brand-green);
}

/* Footer copyright row */
.coppy-right1 {
    background: rgba(0, 0, 0, 0.25);
    margin: 60px -15px 0;
    padding: 20px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.coppy-right1 p,
.coppy-right1 p a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.coppy-right1 p a:hover {
    color: var(--brand-green);
}

.conditons-area1 {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.conditons-area1 a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.conditons-area1 a:hover {
    color: var(--brand-green);
}

/* ==============================
   PRODUCT DETAIL PAGES
   ============================== */
.product-detail-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-detail-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(103, 179, 70, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ==============================
   BLOG PAGE
   ============================== */
.blog1-box {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.08);
    transition: var(--transition);
    margin-top: 24px;
}

.blog1-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.blog1-box .heading-area {
    padding: 24px;
}

.blog1-box .heading-area h3 a {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text) !important;
    line-height: 1.3;
    transition: var(--transition);
}

.blog1-box .heading-area h3 a:hover {
    color: var(--primary-blue) !important;
}

.blog1-box .author-area1 {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog1-box .author-area1 a {
    font-size: 13px;
    color: var(--muted-text) !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-blue);
}

.contact-info-card {
    background: var(--dark-navy);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(103, 179, 70, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Form inputs */
.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
    border: 1.5px solid rgba(15, 82, 134, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--dark-text);
    width: 100%;
    transition: var(--transition);
    background: var(--light-gray);
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 82, 134, 0.08);
}

/* ==============================
   CLIENTS PAGE
   ============================== */
.client-logo-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 100px;
}

.client-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.client-logo-card img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.client-logo-card:hover img {
    filter: grayscale(0%);
}

/* ==============================
   WHY CHOOSE US — Numbered Cards
   ============================== */
.why-choose-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.why-choose-card .number-badge {
    width: 42px;
    height: 42px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.why-choose-card:nth-child(even) .number-badge {
    background: var(--brand-green);
}

.why-choose-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
}

.why-choose-card p {
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.7;
    margin-top: 8px;
}

/* ==============================
   COMMITMENT BANNER
   ============================== */
.commitment-banner {
    background: linear-gradient(105deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    text-align: center;
    transform: skewY(-1.5deg);
    margin: 40px 0;
}

.commitment-banner .inner {
    transform: skewY(1.5deg);
}

.commitment-banner::before {
    content: '';
    position: absolute;
    left: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    background: rgba(103, 179, 70, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.commitment-banner h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
}

.commitment-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* ==============================
   INDUSTRIES SECTION
   ============================== */
.industry-hex-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.industry-hex-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.industry-hex-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-hex-card:hover img {
    transform: scale(1.08);
}

.industry-hex-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 53, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: var(--transition);
}

.industry-hex-card:hover .overlay {
    background: linear-gradient(to top, rgba(15, 82, 134, 0.9) 0%, rgba(15, 82, 134, 0.3) 100%);
}

.industry-hex-card .label {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==============================
   SECTION BACKGROUND ALTERNATION
   ============================== */
.bg-white-section {
    background: #fff;
}

.bg-gray-section {
    background: var(--light-gray);
}

/* ==============================
   PRODUCT CATEGORY PAGES
   ============================== */
.product-cat-sp {
    padding: 80px 0;
}

/* Product detail layout cards */
.product-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 82, 134, 0.1);
}

.product-info-card .card-header-strip {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-info-card .card-header-strip h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info-card .card-body-content {
    padding: 24px;
}

.product-info-card .card-body-content .sub-category {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    margin-top: 16px;
    padding-left: 10px;
    border-left: 3px solid var(--brand-green);
}

.product-info-card .card-body-content ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.product-info-card .card-body-content ul li {
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.7;
    margin-bottom: 4px;
    list-style: none;
    padding-left: 16px;
    position: relative;
}

.product-info-card .card-body-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

/* ==============================
   CERTIFICATE PAGE
   ============================== */
.cert-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.1);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ==============================
   RESPONSIVE ADJUSTMENTS
   ============================== */
@media (max-width: 991px) {
    .hero1-single-slider {
        min-height: 70vh;
        padding-top: 60px;
    }

    .hero1-single-slider .main-heading1 {
        padding: 40px 0 120px;
    }

    .hero1-single-slider .main-image {
        display: none !important;
    }

    .about1-images {
        min-height: auto;
        margin-bottom: 20px;
    }

    .about1-images .image2 {
        margin-top: 60px;
    }

    .commitment-banner {
        transform: none;
    }

    .commitment-banner .inner {
        transform: none;
    }
}

@media (max-width: 767px) {

    /* ── HERO FIX ── */
    .hero1-single-slider {
        min-height: auto !important;
        padding: 80px 0 60px !important;
    }

    /* Force hero text visible on mobile — slick animation may not trigger */
    .hero1-single-slider .main-heading1 h1,
    .hero1-single-slider.slick-current.slick-active .main-heading1 h1 {
        font-size: 30px;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero1-single-slider .main-heading1 p,
    .hero1-single-slider.slick-current.slick-active .main-heading1 p {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero1-single-slider .main-heading1 .buttons,
    .hero1-single-slider.slick-current.slick-active .main-heading1 .buttons {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero1-single-slider .buttons .theme-btn1,
    .hero1-single-slider .buttons .theme-btn2 {
        width: 100%;
        justify-content: center;
    }

    /* ── COMMON HERO ── */
    .common-hero {
        padding: 70px 0 60px !important;
    }

    .common-hero-heading h1 {
        font-size: 28px;
    }

    /* ── ABOUT IMAGES FIX ── */
    .about1-images {
        min-height: auto !important;
        margin-bottom: 20px;
    }

    /* Force image1 visible — bypass opacity:0 from animation on mobile */
    .about1-images .image1 {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .about1-images .image1 img {
        height: 220px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Force all image-anime / reveal elements visible on mobile — no hidden gaps */
    .image-anime,
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* ── OTHER ── */
    .commitment-banner {
        padding: 36px 24px;
    }

    .conditons-area1 {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .footer1 .logo-area p {
        max-width: 100%;
    }
}



/* ==============================
   UTILITY — HEXAGONAL SHAPES
   ============================== */
.hex-accent {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(103, 179, 70, 0.08);
    pointer-events: none;
}

/* ==============================
   AOS ANIMATION TWEAKS
   ============================== */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Prevent invisible flash before AOS initialises.
   Elements with data-aos are hidden by AOS until the class
   aos-animate is added. If JS hasn't fired yet the sections
   look broken/empty. This ensures they're visible by default
   and AOS will still animate them once ready. */
html:not(.aos-initialized) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ==============================
   PRELOADER
   ============================== */
#preloader {
    background: #e8f1fb;
}

/* ==============================
   EXISTING COMPONENT OVERRIDES
   (cleaning up old template styles)
   ============================== */

/* Remove old template button clip-paths */
.theme-btn1::before,
.theme-btn2::before,
.theme-btn3::before {
    display: none !important;
}

/* Fix heading span in dark backgrounds */
.our-values .heading1 .span1 {
    background: rgba(103, 179, 70, 0.15) !important;
    color: var(--brand-green) !important;
}

/* Stats counter style */
.about1 .row .col-md-5 .counter-box h3 {
    color: var(--primary-blue);
    font-size: 44px;
    font-weight: 900;
}

/* Brand section */
.brand1,
.brand1-all {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* Company logos (represented section) */
.company-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    padding: 30px 0;
}

.company-logo-card {
    background: #fff;
    border: 1px solid rgba(15, 82, 134, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.company-logo-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.company-logo-card img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* ==============================
   GREEN ACCENT BAR UTILITY
   ============================== */
.green-bar {
    width: 50px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
    margin-bottom: 16px;
}

.green-bar.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ==============================
   GEOMETRIC DIAGONAL BANNER
   ============================== */
.diagonal-banner {
    background: linear-gradient(105deg, var(--dark-navy) 55%, var(--primary-blue) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.diagonal-banner::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 400px;
    height: 400px;
    background: rgba(103, 179, 70, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ==============================
   SECTION LABEL ACCENT
   ============================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(103, 179, 70, 0.1);
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 3px;
    border-left: 3px solid var(--brand-green);
    margin-bottom: 12px;
    font-family: 'Barlow', sans-serif;
}

/* ==============================
   ICON CIRCLE / INDUSTRY ICONS
   ============================== */
.icon-circle {
    width: 64px;
    height: 64px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.icon-circle:hover,
.process-bottom-box:hover .icon-circle {
    background: var(--primary-blue);
    border-color: var(--brand-green);
}

.icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ==============================
   TOP INFO BAR OVERRIDE
   ============================== */
.header-top4 .contact-box .text a,
.header-top4 a {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.header-top4 a:hover {
    color: var(--brand-green) !important;
}

/* ==============================
   NAV STICKY STATE
   ============================== */
.header-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.4s ease;
    z-index: 9999;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ==============================
   HERO BG FALLBACK (if no image)
   ============================== */
.hero1-bg1,
.hero1-bg2,
.hero1-bg3 {
    background-color: var(--dark-navy);
}

/* ==============================
   PRODUCT PAGES — Category Header
   ============================== */
/* Style existing product page heading boxes */
.product1 .heading1,
.product-sp .heading1 {
    margin-bottom: 24px;
}

/* Product table styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Barlow', sans-serif;
}

table th {
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
}

table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(15, 82, 134, 0.08);
    font-size: 14px;
    color: var(--muted-text);
}

table tr:nth-child(even) td {
    background: var(--light-gray);
}

table tr:hover td {
    background: rgba(15, 82, 134, 0.04);
}

/* ==============================
   CONTACT PAGE FORM OVERRIDE
   ============================== */
.contact1 input,
.contact1 textarea,
.contact1 select {
    border: 1.5px solid rgba(15, 82, 134, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--dark-text);
    width: 100%;
    transition: var(--transition);
    background: var(--light-gray);
}

.contact1 input:focus,
.contact1 textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 82, 134, 0.08);
}

.contact1 .submit-btn,
.contact1 button[type="submit"] {
    background: var(--primary-blue) !important;
    color: #fff !important;
    border: none !important;
    padding: 13px 28px !important;
    border-radius: var(--radius-sm) !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer;
    transition: var(--transition);
}

.contact1 button[type="submit"]:hover {
    background: var(--brand-green) !important;
    transform: translateY(-1px);
}

/* ==============================
   ABOUT PAGE HERO CARD
   (section 1 image layout adjustment)
   ============================== */
.about1 .about1-images .image3 {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    width: 45%;
    border: 4px solid #fff;
}

.about1 .about1-images .image3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==============================
   BRAND / PARTNER LOGOS SECTION
   ============================== */
.brand1-all .brand-item {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    transition: var(--transition);
}

.brand1-all .brand-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.brand1-all .brand-item img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* ==============================
   BLOG PAGE CARD FIX
   ============================== */
.blog1-box .image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog1-box:hover .image img {
    transform: scale(1.04);
}

/* ==============================
   THANK YOU PAGE
   ============================== */
.thank-you-wrap {
    text-align: center;
    padding: 100px 0;
}

.thank-you-wrap h1 {
    font-size: 52px;
    color: var(--primary-blue);
    font-weight: 900;
}

.thank-you-wrap p {
    font-size: 18px;
    color: var(--muted-text);
    margin-top: 16px;
}

/* ==============================
   PAGINATION
   ============================== */
.pagination .page-item .page-link {
    color: var(--primary-blue);
    border-color: rgba(15, 82, 134, 0.2);
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-sm) !important;
    margin: 0 3px;
    transition: var(--transition);
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

/* ==============================
   INDUSTRY GRID (hexagonal style)
   using existing card elements
   ============================== */
.industry-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 82, 134, 0.08);
    transition: var(--transition);
    position: relative;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-card .img-wrap {
    height: 160px;
    overflow: hidden;
}

.industry-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .img-wrap img {
    transform: scale(1.08);
}

.industry-card .card-label {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: #fff;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.industry-card .card-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-green);
}

/* ==============================
   GENERAL BODY LINK DEFAULTS
   ============================== */
a {
    text-decoration: none;
}

/* ==============================
   SECTION INNER PADDING FIX
   ============================== */
.sp {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .sp {
        padding: 56px 0;
    }
}

/* ==============================
   MOBILE RESPONSIVE FINE TUNES
   ============================== */
@media (max-width: 576px) {
    .hero1-single-slider .main-heading1 h1 {
        font-size: 30px;
    }

    .service-box1 {
        margin-bottom: 20px;
    }

    .footer1 {
        padding: 60px 0 0 !important;
    }

    .about1-images {
        margin-bottom: 360px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .about1-images {
        margin-bottom: 300px;
    }
}


/* ======================================================
   BROCHURE EXACT MATCH COMPONENTS
   Reference: SR Chemical Industries brochure images
   ====================================================== */

/* --------------------------------------------------
   WHY CHOOSE US — 3 Top Feature Cards (hexagonal style)
   Import & Export / Domestic Trade / Logistics Support
   -------------------------------------------------- */
.brochure-feature-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.bfc-card {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    border-radius: 14px 14px 0 0;
    overflow: visible;
    position: relative;
}

/* Green rounded top header */
.bfc-card .bfc-header {
    background: var(--brand-green);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    padding: 14px 20px;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(103, 179, 70, 0.35);
    margin-bottom: -12px;
    letter-spacing: 0.3px;
}

/* Dark navy body */
.bfc-card .bfc-body {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
    padding: 26px 22px 24px;
    border-radius: 12px;
    border-bottom: 4px solid var(--brand-green);
    flex: 1;
}

/* --------------------------------------------------
   WHY CHOOSE US — 6 Numbered Feature Cards
   Matching brochure grid: 2 columns, light blue cards
   -------------------------------------------------- */
.why-grid-section {
    background: #fff;
    padding: 70px 0 80px;
}

.why-grid-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(30px, 4vw, 46px);
    color: var(--brand-green);
    text-align: center;
    margin-bottom: 40px;
}

.why-num-card {
    background: #C8DCEF;
    /* light blue — matches brochure */
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
    min-height: 72px;
}

.why-num-card:hover {
    background: #b8cfe6;
    transform: translateX(4px);
    border-left-color: var(--brand-green);
    box-shadow: 0 4px 16px rgba(15, 82, 134, 0.12);
}

.why-num-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(15, 82, 134, 0.3);
}

.why-num-card .why-num-text {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.35;
}

/* --------------------------------------------------
   OUR COMMITMENT DIAGONAL BANNER — exact brochure match
   -------------------------------------------------- */
.commitment-brochure-banner {
    background: linear-gradient(105deg, var(--primary-blue) 0%, #0D1F35 100%);
    position: relative;
    overflow: hidden;
    padding: 42px 50px;
    margin: 20px 0 0;
    /* Diagonal shape via clip-path */
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    text-align: center;
}

.commitment-brochure-banner::before {
    content: '';
    position: absolute;
    left: -30px;
    top: -30px;
    width: 160px;
    height: 160px;
    background: rgba(103, 179, 70, 0.12);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.commitment-brochure-banner::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    background: rgba(103, 179, 70, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.commitment-brochure-banner h2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3.5vw, 38px);
    color: #fff;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commitment-brochure-banner p {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 10px auto 0;
    line-height: 1.65;
}

/* --------------------------------------------------
   OUR VALUABLE CLIENTS — brochure grid logo showcase
   -------------------------------------------------- */
.clients-brochure-section {
    background: #fff;
    padding: 70px 0;
}

.clients-brochure-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--brand-green);
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.clients-brochure-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
    margin: 12px auto 0;
}

.client-logo-brochure {
    background: #fff;
    border: 1.5px solid rgba(15, 82, 134, 0.14);
    border-radius: 10px;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.client-logo-brochure:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 24px rgba(15, 82, 134, 0.14);
    transform: translateY(-3px);
}

.client-logo-brochure img {
    max-height: 56px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.client-logo-brochure:hover img {
    filter: grayscale(0%);
}

/* --------------------------------------------------
   COMPANY WE REPRESENT — horizontal logo strip
   -------------------------------------------------- */
.we-represent-brochure {
    background: var(--light-gray);
    padding: 50px 0 60px;
    border-top: 4px solid var(--primary-blue);
}

.we-represent-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(22px, 3vw, 34px);
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.we-represent-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
    margin: 10px auto 0;
}

.represent-logo-card {
    background: #fff;
    border: 1.5px solid rgba(15, 82, 134, 0.12);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.represent-logo-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 6px 20px rgba(103, 179, 70, 0.18);
    transform: translateY(-3px);
}

.represent-logo-card img {
    max-height: 64px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* --------------------------------------------------
   PRODUCTS PAGE — Catalog Card Style (brochure match)
   Numbered headers: 01 GACL / 02 ACID / 03 SOLVENTS / 04 DMCC
   -------------------------------------------------- */
.products-catalog-section {
    background: linear-gradient(180deg, #dceaf7 0%, #f0f6fc 100%);
    padding: 70px 0 80px;
    position: relative;
}

.products-catalog-section::before {
    content: 'PRODUCTS';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: 4px;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
}

.catalog-card {
    background: #fff;
    border: 2px solid rgba(15, 82, 134, 0.18);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 82, 134, 0.10);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 24px;
}

.catalog-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 36px rgba(15, 82, 134, 0.18);
    transform: translateY(-3px);
}

/* Numbered category header strip */
.catalog-card-header {
    background: var(--primary-blue);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-num {
    background: var(--brand-green);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 13px;
    min-width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.catalog-card-header h3 {
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.catalog-card-body {
    padding: 20px 20px 24px;
}

.catalog-source-tag {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-text);
    margin-bottom: 14px;
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 82, 134, 0.08);
}

.catalog-source-tag strong {
    color: var(--dark-text);
    font-weight: 700;
}

.catalog-sub-heading {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-top: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--brand-green);
    padding-left: 10px;
}

.catalog-product-list {
    padding: 0;
    margin: 0 0 4px;
    list-style: none;
}

.catalog-product-list li {
    font-family: 'Barlow', sans-serif;
    font-size: 13.5px;
    color: #4a5e72;
    padding: 4px 0 4px 16px;
    position: relative;
    border-bottom: 1px dotted rgba(15, 82, 134, 0.08);
    line-height: 1.5;
}

.catalog-product-list li:last-child {
    border-bottom: none;
}

.catalog-product-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 900;
    font-size: 16px;
    line-height: 1.3;
}

.catalog-product-list li a {
    color: inherit;
    transition: color 0.2s;
}

.catalog-product-list li a:hover {
    color: var(--primary-blue);
}

/* --------------------------------------------------
   ABOUT PAGE — Full-width image banner at top
   -------------------------------------------------- */
.about-image-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 320px;
}

.about-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Dark blue accent block overlaid bottom-right (matches brochure) */
.about-image-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 70px;
    background: var(--primary-blue);
}

/* --------------------------------------------------
   ABOUT PAGE — "About Us" text section
   Green heading, justified text
   -------------------------------------------------- */
.about-us-text-section {
    background: #fff;
    padding: 50px 0 40px;
}

.about-green-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 52px);
    color: var(--brand-green);
    line-height: 1.1;
    margin-bottom: 18px;
}

.about-us-text-section p {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 14px;
}

/* --------------------------------------------------
   ABOUT PAGE — Mission / Vision split sections
   Alternating left-text / right-image
   -------------------------------------------------- */
.mission-vision-section {
    background: linear-gradient(160deg, #e6f0f8 0%, #f5f7fa 100%);
    padding: 0;
}

.mv-block {
    padding: 60px 0;
    border-bottom: 1px solid rgba(15, 82, 134, 0.08);
}

.mv-block:last-child {
    border-bottom: none;
}

.mv-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 5vw, 60px);
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.mv-block-dark {
    background: linear-gradient(135deg, var(--dark-navy) 60%, #0f3a5c 100%);
    padding: 60px 0;
}

.mv-block-dark .mv-heading {
    color: #fff;
}

.mv-block-dark p {
    color: rgba(255, 255, 255, 0.82);
}

.mv-block-light {
    background: #fff;
    padding: 60px 0;
}

.mv-block-light .mv-heading {
    color: var(--dark-text);
}

.mv-block-light p {
    color: var(--muted-text);
}

.mv-text p {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
    margin-top: 16px;
}

.mv-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.mv-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 280px;
}

/* mission/vision label badge */
.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-green);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 14px;
}

/* --------------------------------------------------
   RESPONSIVE for brochure components
   -------------------------------------------------- */
@media (max-width: 767px) {
    .brochure-feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .bfc-card {
        max-width: 100%;
        width: 100%;
    }

    .commitment-brochure-banner {
        clip-path: none;
        padding: 36px 24px;
    }

    .why-num-card {
        margin-bottom: 12px;
    }

    .catalog-card {
        margin-bottom: 20px;
    }

    .about-image-banner {
        height: 200px;
    }

    .mv-image-wrap {
        margin-top: 24px;
    }

    .products-catalog-section::before {
        font-size: 28px;
        top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .bfc-card {
        min-width: 200px;
    }

    .about-image-banner {
        height: 240px;
    }
}

/* ======================================================
   PRODUCT CATEGORY PAGES — research-box card override
   Makes all product grid cards match brochure catalog style
   ====================================================== */
.research-box {
    background: #fff !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 3px 18px rgba(15, 82, 134, 0.08) !important;
    border: 1.5px solid rgba(15, 82, 134, 0.10) !important;
    transition: all 0.32s ease !important;
    margin-bottom: 24px !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.research-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 36px rgba(15, 82, 134, 0.16) !important;
    border-color: var(--primary-blue) !important;
}

.research-box .image {
    overflow: hidden !important;
    height: 200px !important;
    position: relative;
}

.research-box .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--brand-green));
    z-index: 2;
}

.research-box .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.research-box:hover .image img {
    transform: scale(1.05) !important;
}

.research-box .heading1 {
    padding: 20px 20px 22px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.research-box .heading1 h4 a {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--dark-text) !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    display: block;
}

.research-box .heading1 h4 a:hover {
    color: var(--primary-blue) !important;
}

.research-box .heading1 p {
    font-size: 14px !important;
    color: var(--muted-text) !important;
    line-height: 1.7 !important;
    flex: 1;
}

/* Product category page background */
.service.sp[style*="bg-1.svg"],
.service.sp[style*="bg.png"] {
    background: var(--light-gray) !important;
    background-image: none !important;
}

/* ======================================================
   INDEX PAGE PRODUCTS CATALOG SECTION
   (added inline in index.php as product overview)
   ====================================================== */
.product-overview-section {
    background: linear-gradient(180deg, #dceaf7 0%, #eef5fb 100%);
    padding: 80px 0;
    position: relative;
}

.product-overview-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--primary-blue);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

/* Fix about page breadcrumb hero */
.about-image-banner+.about-us-text-section {
    padding-top: 40px;
}

/* Mission/vision section padding adjustments */
.mv-block-dark .mv-text p,
.mv-block-light .mv-text p {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.mv-block-dark .mv-text .mv-badge {
    background: var(--brand-green);
}

/* Ensure common-hero still shows on about page */
.common-hero+.about-image-banner {
    margin-top: 0;
}

/* ======================================================
   SERVICE CARD IMAGE FIX — proper aspect ratio
   ====================================================== */
.service-box1 .image {
    height: 220px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}

.service-box1 .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease !important;
    display: block;
}

/* ======================================================
   ABOUT SECTION IMAGE RESPONSIVE
   ====================================================== */
@media (max-width: 991px) {
    .about1-images {
        min-height: auto;
        margin-bottom: 30px;
    }

    .about1-images .image1 img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .about1-images {
        min-height: auto;
        margin-bottom: 24px;
    }

    .about1-images .image1 img {
        height: 220px;
    }
}

/* ======================================================
   HERO SECTION — better side image display
   ====================================================== */
.hero1-single-slider .main-image {
    position: absolute;
    right: -10px;
    bottom: 80px;
    z-index: 2;
    max-width: 440px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.45));
}

.hero1-single-slider .main-image img {
    max-width: 100%;
    height: auto;
}

/* ======================================================
   ABOUT PAGE IMAGE BANNER — responsive
   ====================================================== */
@media (max-width: 767px) {
    .about-image-banner {
        height: 220px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-image-banner {
        height: 260px;
    }
}

/* ======================================================
   MISSION/VISION IMAGE FIX
   ====================================================== */
.mv-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 767px) {
    .mv-image-wrap img {
        height: 220px;
    }
}

/* ======================================================
   ABOUT PAGE — WHY CHOOSE SLIDER images
   ====================================================== */
.about-service-single-slider .icon img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 8px;
}

/* ======================================================
   RESEARCH-BOX product card images fix
   ====================================================== */
.research-box .image {
    height: 210px !important;
    overflow: hidden !important;
}

.research-box .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* ======================================================
   CLIENTS PAGE — logo image sizing
   ====================================================== */
.client-logo-brochure img {
    max-height: 58px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}

.represent-logo-card img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* ======================================================
   BLOG IMAGE FIX
   ====================================================== */
.blog1-box .image {
    height: 220px;
    overflow: hidden;
    border-radius: 0;
}

.blog1-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======================================================
   VIDEO / PROCESS background image
   ====================================================== */
.video-area1 {
    background-image: url('../img/added/video-area1-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* ======================================================
   CTA BANNER — better overlay
   ====================================================== */
.cta1.sp {
    background-image: linear-gradient(rgba(13, 39, 68, 0.88), rgba(0, 0, 0, 0.70)), url('../img/added/cta-banner.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* ======================================================
   FOOTER LOGO — white filter
   ====================================================== */
.footer1 .logo-area img {
    height: 52px;
    width: auto;
    /* Don't invert if logo is already light */
    filter: none;
    max-width: 220px;
}

/* ======================================================
   PROCESS BOTTOM BOX — icon image sizing
   ====================================================== */
.process-bottom-box .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 8px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(15, 82, 134, 0.12);
    overflow: hidden;
    transition: var(--transition);
}

.process-bottom-box:hover .icon {
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 4px 18px rgba(103, 179, 70, 0.2);
}

.process-bottom-box .icon img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

/* ======================================================
   COMMON HERO — dark overlay applied via ::before
   Works on ALL inner page hero backgrounds
   ====================================================== */
.common-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13, 31, 53, 0.90) 0%, rgba(15, 82, 134, 0.72) 55%, rgba(13, 31, 53, 0.55) 100%);
    z-index: 1;
}

.common-hero .container {
    position: relative;
    z-index: 2;
}

.common-hero-heading {
    position: relative;
    z-index: 2;
}

/* ======================================================
   HERO BG — use industrial plant image
   ====================================================== */
.hero1-bg1 {
    background-color: var(--dark-navy);
    background-image: url('../img/added/homebg.png') !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* ======================================================
   ABOUT SECTION — image quality improvements
   ====================================================== */
.about1-images .image1 img {
    object-position: center top;
}

.about1-images .image2 img {
    object-position: center center;
}

/* ======================================================
   ABOUT IMAGE BANNER — object-fit fix
   ====================================================== */
.about-image-banner img {
    object-position: center 30%;
}

/* ======================================================
   MISSION/VISION — image quality
   ====================================================== */
.mv-image-wrap img {
    object-position: center center;
}

/* ======================================================
   CTA — ensure overlay works
   ====================================================== */
.cta1.sp {
    background-image: linear-gradient(rgba(13, 39, 68, 0.88), rgba(0, 0, 0, 0.70)), url('../img/added/cta-banner.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* ======================================================
   VIDEO / INDUSTRIAL BG AREA
   ====================================================== */
.video-area1 {
    background-image: url('../img/added/video-area1-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 360px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
}

/* ======================================================
   SERVICE BOX — improve image display
   ====================================================== */
.service-box1 .image img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

/* ======================================================
   RESEARCH BOX product card — image object-fit
   ====================================================== */
.research-box .image img {
    object-position: center !important;
}

/* ======================================================
   ABOUT PAGE image banner responsive heights
   ====================================================== */
@media (max-width: 575px) {
    .about-image-banner {
        height: 180px;
    }

    .mv-image-wrap img {
        height: 200px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .about-image-banner {
        height: 220px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-image-banner {
        height: 280px;
    }

    .mv-image-wrap img {
        height: 260px;
    }
}

/* ======================================================
   FOOTER LOGO fix — keep original colors
   ====================================================== */
.footer1 .logo-area img {
    filter: none !important;
    height: 52px;
    width: auto;
    max-width: 220px;
}

/* ======================================================
   CONTACT PAGE — Premium Form Styling
   ====================================================== */
.contact-form .single-input input,
.contact-form .single-input textarea,
.single-input input,
.single-input textarea {
    width: 100%;
    background: #F5F7FA;
    border: 1.5px solid rgba(15, 82, 134, 0.15);
    border-radius: 8px;
    padding: 13px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--dark-text);
    transition: all 0.25s ease;
    outline: none;
}

.contact-form .single-input input:focus,
.contact-form .single-input textarea:focus,
.single-input input:focus,
.single-input textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15, 82, 134, 0.08);
}

.single-input label {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-text);
    display: block;
    margin-bottom: 6px;
}

/* Contact info icon boxes */
.contact-box-p {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 16px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 3px 16px rgba(15, 82, 134, 0.08);
    transition: var(--transition);
}

.contact-box-p:hover {
    transform: translateX(4px);
    border-left-color: var(--brand-green);
}

.contact-box-p .icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-box-p .heading h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.contact-box-p .heading a {
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.65;
    display: block;
    transition: color 0.2s;
}

.contact-box-p .heading a:hover {
    color: var(--primary-blue);
}

/* ======================================================
   CONTACT PAGE — Single Unified Box (all items in one)
   ====================================================== */
.contact-info-single-box {
    background: #fff;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 24px rgba(15, 82, 134, 0.10);
    overflow: hidden;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    transition: background 0.2s ease;
}

.contact-info-item:hover {
    background: rgba(39, 115, 183, 0.04);
}

.contact-info-item .icon {
    height: 46px;
    min-width: 46px;
    width: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    background-color: #2773b726;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-info-item:hover .icon {
    background-color: var(--primary-blue);
}

.contact-info-item:hover .icon img {
    filter: brightness(0) invert(1);
}

.contact-info-item .icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: all 0.3s;
}

.contact-info-item .heading h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.contact-info-item .heading a {
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.7;
    display: block;
    transition: color 0.2s;
}

.contact-info-item .heading a:hover {
    color: var(--primary-blue);
}

.contact-info-divider {
    height: 1px;
    background: rgba(15, 82, 134, 0.08);
    margin: 0 24px;
}


/* ======================================================
   PRODUCT DETAIL PAGE — Premium layout
   ====================================================== */
.product-detail-img-wrap img {
    object-fit: contain;
    object-position: center;
}

/* ======================================================
   CATEGORY PAGES — clean light gray bg override
   ====================================================== */
.service.sp,
.service.sp[style*="bg-1.svg"],
.service.sp[style*="bg.png"],
.service.sp[style*="bg.svg"] {
    background: var(--light-gray) !important;
}

/* ======================================================
   BLOG PAGE — premium card styling
   ====================================================== */
.blog1-box .image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog1-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog1-box:hover .image img {
    transform: scale(1.04);
}

.blog1-box .heading-area {
    padding: 22px 24px 24px;
}

.blog1-box .heading-area h3 a {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text) !important;
    line-height: 1.35;
    transition: color 0.2s;
}

.blog1-box .heading-area h3 a:hover {
    color: var(--primary-blue) !important;
}

/* blog tag pill */
.blog1-box .tag,
a.tag {
    display: inline-block;
    background: rgba(103, 179, 70, 0.1);
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: var(--transition);
}

a.tag:hover {
    background: var(--brand-green);
    color: #fff;
}

/* ======================================================
   CERTIFICATE PAGE — premium card grid
   ====================================================== */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding: 40px 0;
}

/* ======================================================
   COAL / INDUSTRIAL PRODUCT PAGES — hero overrides
   ====================================================== */
.common-hero[style*="coal-bg"],
.common-hero[style*="coal-banner"] {
    background-image: linear-gradient(105deg, rgba(13, 31, 53, 0.92) 0%, rgba(15, 82, 134, 0.75) 60%, rgba(13, 31, 53, 0.55) 100%), url('assets/img/added/video-area1-bg.jpg') !important;
}

/* ======================================================
   GLOBAL — remove old bg.png from any remaining sections
   ====================================================== */
[style*="assets/img/added/bg.png"] {
    background-image: none !important;
    background: var(--light-gray) !important;
}

[style*="assets/img/added/bg-1.svg"] {
    background-image: none !important;
    background: var(--light-gray) !important;
}

/* ======================================================
   FORM SUBMIT BUTTON — full width on contact
   ====================================================== */
button.theme-btn1.w-100 {
    width: 100% !important;
    justify-content: center;
}

/* ======================================================
   PRODUCT DETAIL PAGE — Complete layout override via CSS
   ====================================================== */

/* Wrap the product detail section in light gray */
.container.sp {
    background: transparent;
}

/* Premium image box */
.product-img-box {
    background: #fff !important;
    border-radius: 14px !important;
    padding: 24px !important;
    box-shadow: 0 6px 30px rgba(15, 82, 134, 0.12) !important;
    border: 1.5px solid rgba(15, 82, 134, 0.10) !important;
    position: sticky;
    top: 110px;
}

.product-img-box img {
    width: 100%;
    border-radius: 8px;
    object-fit: contain;
    max-height: 360px;
}

/* Premium details card */
.details-content {
    background: #fff !important;
    border-radius: 14px !important;
    padding: 32px !important;
    box-shadow: 0 6px 30px rgba(15, 82, 134, 0.10) !important;
    border: 1.5px solid rgba(15, 82, 134, 0.08) !important;
}

.details-content h2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    color: var(--primary-blue) !important;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.2;
    margin-bottom: 6px;
}

.details-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 16px;
}

.details-content hr {
    border-color: rgba(15, 82, 134, 0.12);
    margin: 16px 0;
}

.details-content p.text-18 {
    font-size: 14px !important;
    color: var(--muted-text);
    margin-bottom: 8px;
    line-height: 1.6;
}

.details-content p.text-18 b {
    color: var(--dark-text);
    font-weight: 700;
}

.details-content h5 {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--brand-green);
    padding-left: 10px;
    margin: 16px 0 8px;
}

.details-content p.pera1 {
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.75;
}

.product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* ======================================================
   PRODUCT DETAIL PAGE — info grid (brand/HSN/packaging)
   ====================================================== */
.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px 0 20px;
}

.product-info-cell {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 11px 14px;
    border-left: 3px solid var(--primary-blue);
}

.product-info-cell .cell-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.product-info-cell .cell-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-text);
}

/* ======================================================
   PRODUCT CATEGORY SECTION BACKGROUND FIX
   ====================================================== */
.service.sp {
    background: var(--light-gray) !important;
}

/* ======================================================
   CONTACT PAGE FORM — premium inputs
   ====================================================== */
.contact-form {
    background: transparent;
}

/* ======================================================
   GLOBAL IMAGE QUALITY — consistent object-fit
   ====================================================== */
img {
    max-width: 100%;
    height: auto;
}

/* ======================================================
   REMAINING bg-1.svg / bg.png overrides
   ====================================================== */
div[style*="bg-1.svg"],
div[style*="bg.png"],
div[style*="molecule.png"] {
    background-image: none !important;
}

/* ======================================================
   FINAL RESPONSIVE TWEAKS
   ====================================================== */
@media (max-width: 767px) {
    .product-img-box {
        position: static !important;
        margin-bottom: 24px;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
    }

    .product-buttons {
        flex-direction: column;
    }

    .product-buttons a {
        width: 100%;
        justify-content: center;
    }

    .contact-card-item {
        margin-bottom: 12px !important;
    }
}

/* ======================================================
   TESTIMONIAL SECTION — Brochure Card Style
   Same design language as "Why Choose Us" bfc-cards
   ====================================================== */

/* Section background */
.test1.sp {
    background: #fff !important;
    padding: 80px 0 100px !important;
}

/* Override old single-slider1 styles */
.srcil-tes-card.single-slider1 {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 12px !important;
    box-shadow: none !important;
}

/* The inner card — same look as bfc-card */
.srcil-tes-inner {
    display: flex;
    flex-direction: column;
    border-radius: 14px 14px 0 0;
    overflow: visible;
    position: relative;
    min-height: 240px;
}

/* Large opening quote — green, same as bfc-header */
.srcil-tes-quote {
    background: var(--brand-green);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    padding: 10px 20px 4px;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(103, 179, 70, 0.35);
    margin-bottom: -14px;
    width: 62px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark navy body — same as bfc-body */
.srcil-tes-inner {
    background: var(--dark-navy);
    border-radius: 12px;
    border-bottom: 4px solid var(--brand-green);
    padding: 28px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* Fix: quote sits on top of the card */
.srcil-tes-card .srcil-tes-inner {
    padding-top: 30px;
}

.srcil-tes-card .srcil-tes-quote {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 3;
}

.srcil-tes-card .single-slider1 {
    position: relative;
}

/* Quote positioned absolutely above card */
.srcil-tes-card {
    position: relative;
    padding-top: 24px !important;
}

/* Testimonial quote text */
.srcil-tes-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.75;
    font-style: italic;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 20px;
    flex: 1;
}

/* Footer: name + category label — green rounded pill like bfc-header */
.srcil-tes-footer {
    margin-top: 18px;
    text-align: center;
}

.srcil-tes-footer-inner {
    display: inline-block;
    background: var(--brand-green);
    border-radius: 40px;
    padding: 10px 28px 12px;
    box-shadow: 0 4px 16px rgba(103, 179, 70, 0.35);
    min-width: 180px;
    width: 100%;
}

.srcil-tes-name {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.srcil-tes-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Slick height alignment fix */
.srcil-tes-slider .slick-track {
    display: flex !important;
}

.srcil-tes-slider .slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.srcil-tes-card.single-slider1 {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    height: 100% !important;
}

.srcil-tes-inner {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Hover glow */
.srcil-tes-card:hover .srcil-tes-inner {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 82, 134, 0.25);
    border-bottom-color: #fff;
}

/* Slick slider dots override — match brand */
.srcil-tes-slider .slick-dots {
    bottom: -36px;
}

.srcil-tes-slider .slick-dots li button::before {
    color: var(--primary-blue) !important;
    font-size: 10px !important;
    opacity: 0.4;
}

.srcil-tes-slider .slick-dots li.slick-active button::before {
    color: var(--brand-green) !important;
    opacity: 1;
}

/* Testimonial section heading */
.test1 .heading1 .span1 {
    background: rgba(103, 179, 70, 0.1) !important;
    color: var(--brand-green) !important;
    border-left: 3px solid var(--brand-green) !important;
}

/* Spacing between slider items */
.srcil-tes-slider .slick-slide {
    padding: 0 8px;
}

.srcil-tes-slider.slick-initialized {
    padding-bottom: 48px;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 767px) {
    .srcil-tes-text {
        font-size: 13px;
    }

    .srcil-tes-quote {
        font-size: 42px;
        width: 54px;
    }
}

/* ======================================================
   GLOBAL DARK NAVY + GREEN COMBINATION
   Apply same design language across ALL card components
   ====================================================== */

/* --------------------------------------------------
   ABOUT PAGE — Why Choose SRCIL Slider Cards
   -------------------------------------------------- */
.about-service-single-slider {
    background: var(--dark-navy) !important;
    border-radius: var(--radius-lg) !important;
    padding: 28px 24px 24px !important;
    margin: 8px !important;
    box-shadow: 0 6px 28px rgba(15, 82, 134, 0.18) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.25) !important;
    border-top: none !important;
    border-bottom: 4px solid var(--brand-green) !important;
    transition: var(--transition) !important;
    height: 100%;
    position: relative;
}

.about-service-single-slider:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 48px rgba(15, 82, 134, 0.28) !important;
    border-bottom-color: #fff !important;
}

/* Number icon circle */
.about-service-single-slider .icon {
    width: 52px;
    height: 52px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(103, 179, 70, 0.4);
    margin-bottom: 16px;
}

.about-service-single-slider .icon img {
    height: 28px;
    width: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.about-service-single-slider .heading4 h4 a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--brand-green) !important;
    line-height: 1.3;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.about-service-single-slider .heading4 h4 a:hover {
    color: var(--primary-blue) !important;
}

.about-service-single-slider .heading4 p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.72;
    font-family: 'Barlow', sans-serif !important;
}

/* Read More pill — same green rounded style */
.about-service-single-slider a.learn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--brand-green) !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 10px 22px !important;
    border-radius: 40px !important;
    border-bottom: none !important;
    margin-top: 18px !important;
    box-shadow: 0 4px 14px rgba(103, 179, 70, 0.35) !important;
    transition: all 0.3s ease !important;
}

.about-service-single-slider a.learn:hover {
    background: #fff !important;
    color: var(--brand-green) !important;
}

/* --------------------------------------------------
   ABOUT PAGE — Core Services (process-bottom-box)
   -------------------------------------------------- */
.process-bottom-box {
    background: var(--dark-navy) !important;
    border-radius: var(--radius-lg) !important;
    padding: 32px 24px !important;
    box-shadow: 0 6px 28px rgba(15, 82, 134, 0.18) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.25) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    transition: var(--transition) !important;
    margin-top: 24px;
    text-align: center;
}

.process-bottom-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 44px rgba(15, 82, 134, 0.26) !important;
    border-bottom-color: #fff !important;
}

.process-bottom-box .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(103, 179, 70, 0.4);
    border: none !important;
    transition: var(--transition);
}

.process-bottom-box:hover .icon {
    background: #fff;
    box-shadow: 0 4px 18px rgba(103, 179, 70, 0.25);
}

.process-bottom-box .icon img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.process-bottom-box:hover .icon img {
    filter: none;
}

.process-bottom-box .heading1 h4 a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--brand-green) !important;
    margin-top: 16px !important;
    display: block;
    transition: color 0.2s;
}

.process-bottom-box .heading1 h4 a:hover {
    color: var(--primary-blue) !important;
}

.process-bottom-box .heading1 p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.72 !important;
    margin-top: 10px;
    font-family: 'Barlow', sans-serif !important;
}

/* --------------------------------------------------
   ABOUT PAGE — Why Choose SRCIL slider arrows
   -------------------------------------------------- */
.about-service-buttons button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--brand-green);
    background: var(--dark-navy);
    color: var(--brand-green);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.about-service-buttons button:hover {
    background: var(--brand-green);
    color: #fff;
}

/* --------------------------------------------------
   PRODUCT CATEGORY PAGES — research-box cards
   -------------------------------------------------- */
.research-box {
    background: var(--dark-navy) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 28px rgba(15, 82, 134, 0.18) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.22) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    transition: all 0.35s ease !important;
    margin-bottom: 24px !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.research-box:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 14px 50px rgba(15, 82, 134, 0.28) !important;
    border-bottom-color: #fff !important;
}

.research-box .image {
    overflow: hidden !important;
    height: 210px !important;
    position: relative;
}

.research-box .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--brand-green));
    z-index: 2;
}

.research-box .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease !important;
}

.research-box:hover .image img {
    transform: scale(1.05) !important;
}

.research-box .heading1 {
    padding: 20px 20px 22px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.research-box .heading1 h4 a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--brand-green) !important;
    line-height: 1.35 !important;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.research-box .heading1 h4 a:hover {
    color: var(--primary-blue) !important;
}

.research-box .heading1 p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.72 !important;
    flex: 1;
    font-family: 'Barlow', sans-serif !important;
}

/* Read More pill on research-box */
.research-box .heading1 a.learn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--brand-green) !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 10px 22px !important;
    border-radius: 40px !important;
    border-bottom: none !important;
    margin-top: 16px !important;
    box-shadow: 0 4px 14px rgba(103, 179, 70, 0.35) !important;
    transition: all 0.3s ease !important;
    width: fit-content;
}

.research-box .heading1 a.learn:hover {
    background: #fff !important;
    color: var(--brand-green) !important;
}

/* --------------------------------------------------
   BLOG PAGE — blog1-box cards
   -------------------------------------------------- */
.blog1-box {
    background: var(--dark-navy) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    box-shadow: 0 6px 28px rgba(15, 82, 134, 0.18) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.22) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    transition: var(--transition) !important;
    margin-top: 24px;
}

.blog1-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 48px rgba(15, 82, 134, 0.28) !important;
    border-bottom-color: #fff !important;
}

.blog1-box .image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog1-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog1-box:hover .image img {
    transform: scale(1.05);
}

.blog1-box .heading-area {
    padding: 22px 24px 24px;
}

.blog1-box .heading-area h3 a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--brand-green) !important;
    line-height: 1.35;
    transition: color 0.2s;
    display: block;
    margin-bottom: 10px;
}

.blog1-box .heading-area h3 a:hover {
    color: #fff !important;
}

.blog1-box .heading-area p {
    color: rgba(255, 255, 255, 0.80) !important;
    font-size: 14px !important;
    line-height: 1.72;
}

.blog1-box .author-area1 a {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 13px !important;
}

/* Blog Read More pill */
.blog1-box a.learn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--brand-green) !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 10px 22px !important;
    border-radius: 40px !important;
    border-bottom: none !important;
    margin-top: 14px !important;
    box-shadow: 0 4px 14px rgba(103, 179, 70, 0.35) !important;
    transition: all 0.3s ease !important;
}

.blog1-box a.learn:hover {
    background: #fff !important;
    color: var(--brand-green) !important;
}

/* --------------------------------------------------
   PROCESS SECTION BG — dark to match cards
   -------------------------------------------------- */
.process.sp {
    background: #0d1a2a !important;
    padding: 90px 0;
}

.process.sp .heading1 h2 {
    color: #fff !important;
}

.process.sp .heading1 .span1 {
    background: rgba(103, 179, 70, 0.15) !important;
    color: var(--brand-green) !important;
}

/* --------------------------------------------------
   ABOUT SERVICE BG — dark section
   -------------------------------------------------- */
.about-service.bg1 {
    background: #0d1a2a !important;
    padding: 90px 0;
}

.about-service .heading4 h2 {
    color: #fff !important;
}

/* --------------------------------------------------
   SINGLE TESTIMONIAL background section
   -------------------------------------------------- */
.test1.sp {
    background: #0d1a2a !important;
}

.test1 .heading1 h2 {
    color: #fff !important;
}

/* --------------------------------------------------
   CLIENT LOGO CARDS — dark navy
   -------------------------------------------------- */
.client-logo-brochure {
    background: var(--dark-navy) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.25) !important;
    border-bottom: 3px solid var(--brand-green) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.client-logo-brochure:hover {
    border-bottom-color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 28px rgba(15, 82, 134, 0.25) !important;
}

.client-logo-brochure img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.85;
    transition: all 0.3s ease !important;
}

.client-logo-brochure:hover img {
    filter: brightness(0) invert(1) !important;
    opacity: 1;
}

/* --------------------------------------------------
   REPRESENT LOGO CARDS — dark navy  
   -------------------------------------------------- */
.represent-logo-card {
    background: var(--dark-navy) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.25) !important;
    border-bottom: 3px solid var(--brand-green) !important;
    transition: all 0.3s ease !important;
}

.represent-logo-card:hover {
    border-bottom-color: #fff !important;
    transform: translateY(-3px) !important;
}

.represent-logo-card img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.represent-logo-card:hover img {
    opacity: 1;
}

/* --------------------------------------------------
   WHY NUM CARDS — dark navy
   -------------------------------------------------- */
.why-num-card {
    background: var(--dark-navy) !important;
    border-radius: 8px !important;
    padding: 18px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
    border: 1.5px solid rgba(103, 179, 70, 0.22) !important;
    border-left: 4px solid var(--brand-green) !important;
    transition: all 0.3s ease !important;
    min-height: 72px;
}

.why-num-card:hover {
    background: #0d2237 !important;
    transform: translateX(4px) !important;
    border-left-color: #fff !important;
    box-shadow: 0 4px 20px rgba(15, 82, 134, 0.22) !important;
}

.why-num-card .why-num-text {
    color: rgba(255, 255, 255, 0.92) !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

/* --------------------------------------------------
   WHY CHOOSE SECTION BG
   -------------------------------------------------- */
.why-grid-section {
    background: #0d1a2a !important;
    padding: 70px 0 80px;
}

.why-grid-title {
    color: var(--brand-green) !important;
}

/* --------------------------------------------------
   CATALOG CARDS — products page
   -------------------------------------------------- */
.catalog-card {
    background: var(--dark-navy) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.22) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 24px rgba(15, 82, 134, 0.20) !important;
    transition: all 0.3s ease !important;
    height: 100%;
    margin-bottom: 24px;
}

.catalog-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 44px rgba(15, 82, 134, 0.28) !important;
    border-bottom-color: #fff !important;
}

.catalog-source-tag {
    color: rgba(255, 255, 255, 0.60) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.catalog-source-tag strong {
    color: rgba(255, 255, 255, 0.85) !important;
}

.catalog-sub-heading {
    color: var(--brand-green) !important;
    border-left: 3px solid var(--brand-green) !important;
}

.catalog-product-list li {
    color: rgba(255, 255, 255, 0.78) !important;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.08) !important;
}

.catalog-product-list li::before {
    color: var(--brand-green) !important;
}

.catalog-product-list li a {
    color: rgba(255, 255, 255, 0.78) !important;
}

.catalog-product-list li a:hover {
    color: var(--brand-green) !important;
}

/* --------------------------------------------------
   PRODUCT OVERVIEW SECTION BG  
   -------------------------------------------------- */
.product-overview-section {
    background: #0d1a2a !important;
    padding: 80px 0;
}

.product-overview-title {
    color: var(--brand-green) !important;
}

/* --------------------------------------------------
   CONTACT INFO CARDS — dark navy
   -------------------------------------------------- */
.contact-box-p {
    background: var(--dark-navy) !important;
    border-left: 4px solid var(--brand-green) !important;
    box-shadow: 0 3px 16px rgba(15, 82, 134, 0.18) !important;
}

.contact-box-p:hover {
    transform: translateX(4px) !important;
    border-left-color: #fff !important;
}

.contact-box-p .heading h3 {
    color: #fff !important;
}

.contact-box-p .heading a {
    color: rgba(255, 255, 255, 0.72) !important;
}

.contact-box-p .heading a:hover {
    color: var(--brand-green) !important;
}

/* --------------------------------------------------
   CONTACT FORM CARD — dark navy
   -------------------------------------------------- */
.contact-form>div,
.contact-form form {
    background: var(--dark-navy) !important;
}

.contact-form .single-input label {
    color: #fff !important;
}

/* Form wrapper card */
div[style*="background:#fff"][style*="border-top:4px solid #0F5286"] {
    background: var(--dark-navy) !important;
    border-top: 4px solid var(--brand-green) !important;
}

/* Form inputs on dark bg */
.single-input input,
.single-input textarea {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.3) !important;
    color: #fff !important;
}

.single-input input::placeholder,
.single-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.single-input input:focus,
.single-input textarea:focus {
    border-color: var(--brand-green) !important;
    background: rgba(255, 255, 255, 0.10) !important;
    box-shadow: 0 0 0 3px rgba(103, 179, 70, 0.12) !important;
}

.single-input label {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* --------------------------------------------------
   CERTIFICATE CARDS — dark navy
   -------------------------------------------------- */
.cert-card,
.research-box.cert-box {
    background: var(--dark-navy) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.22) !important;
    border-bottom: 4px solid var(--brand-green) !important;
}

/* --------------------------------------------------
   PRODUCT DETAIL PAGE
   -------------------------------------------------- */
.product-detail-img-wrap,
.product-img-box {
    background: var(--dark-navy) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.25) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    box-shadow: 0 6px 30px rgba(15, 82, 134, 0.20) !important;
}

.details-content {
    background: var(--dark-navy) !important;
    border: 1.5px solid rgba(103, 179, 70, 0.22) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    box-shadow: 0 6px 30px rgba(15, 82, 134, 0.20) !important;
}

.details-content h2 {
    color: var(--brand-green) !important;
}

.details-content h4 {
    color: rgba(255, 255, 255, 0.80) !important;
}

.details-content hr {
    border-color: rgba(255, 255, 255, 0.10) !important;
}

.details-content p.text-18 {
    color: rgba(255, 255, 255, 0.82) !important;
}

.details-content p.text-18 b {
    color: #fff !important;
}

.details-content h5 {
    color: var(--brand-green) !important;
    border-left-color: var(--brand-green) !important;
}

.details-content p.pera1 {
    color: rgba(255, 255, 255, 0.78) !important;
}

.product-info-cell {
    background: rgba(255, 255, 255, 0.06) !important;
    border-left-color: var(--brand-green) !important;
}

.product-info-cell .cell-label {
    color: var(--brand-green) !important;
}

.product-info-cell .cell-value {
    color: #fff !important;
}

/* --------------------------------------------------
   MISSION/VISION BLOCKS
   -------------------------------------------------- */
.mv-block-light {
    background: #0d1a2a !important;
}

.mv-block-light .mv-heading {
    color: #fff !important;
}

.mv-block-light .mv-text p {
    color: rgba(255, 255, 255, 0.80) !important;
}

/* --------------------------------------------------
   SECTION BACKGROUNDS — consistent dark theme
   -------------------------------------------------- */
.clients-brochure-section {
    background: #0d1a2a !important;
}

.clients-brochure-title {
    color: var(--brand-green) !important;
}

.clients-brochure-title::after {
    background: rgba(255, 255, 255, 0.3) !important;
}

.we-represent-brochure {
    background: #081420 !important;
    border-top: 4px solid var(--brand-green) !important;
}

.we-represent-title {
    color: #fff !important;
}

.we-represent-title::after {
    background: var(--brand-green) !important;
}

/* About page process section */
.about-us-text-section {
    background: #0d1a2a !important;
}

.about-green-heading {
    color: var(--brand-green) !important;
}

.about-us-text-section p {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* ======================================================
   GLOBAL SECTION — any remaining white cards
   that use .sp class on light gray BG
   ====================================================== */
.about1.sp {
    background: #0d1a2a !important;
}

.about1 .counter-box {
    background: rgba(255, 255, 255, 0.06) !important;
    border-left: 4px solid var(--brand-green) !important;
}

.about1 .counter-box h3 {
    color: var(--brand-green) !important;
}

.about1 .counter-box p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.about1 .heading1 h2 {
    color: #fff !important;
}

.about1 .heading1 p {
    color: rgba(255, 255, 255, 0.80) !important;
}

/* ======================================================
   REVERT — Section backgrounds back to WHITE/LIGHT GRAY
   Only CARDS stay dark navy. Sections = white/light gray.
   ====================================================== */

/* Homepage sections */
.why-grid-section {
    background: #fff !important;
}

.test1.sp {
    background: #fff !important;
}

.about1.sp {
    background: #fff !important;
}

.service.sp {
    background: var(--light-gray) !important;
}

/* About page sections */
.about-service.bg1 {
    background: var(--light-gray) !important;
}

.process.sp {
    background: var(--light-gray) !important;
}

.process.sp .heading1 h2 {
    color: var(--dark-text) !important;
}

/* Clients page */
.clients-brochure-section {
    background: #fff !important;
}

.we-represent-brochure {
    background: var(--light-gray) !important;
}

/* About text section */
.about-us-text-section {
    background: #fff !important;
}

.about-us-text-section p {
    color: var(--dark-text) !important;
}

/* Products catalog page */
.product-overview-section {
    background: linear-gradient(180deg, #dceaf7 0%, #eef5fb 100%) !important;
}

.product-overview-title {
    color: var(--primary-blue) !important;
}

/* Contact page */
.contact-sp,
.sp[style*="light-gray"] {
    background: var(--light-gray) !important;
}

/* Mission/Vision light block */
.mv-block-light {
    background: #fff !important;
}

.mv-block-light .mv-heading {
    color: var(--dark-text) !important;
}

.mv-block-light .mv-text p {
    color: var(--muted-text) !important;
}

/* About section heading on white bg */
.about1 .heading1 h2 {
    color: var(--dark-text) !important;
}

.about1 .heading1 p {
    color: var(--muted-text) !important;
}

.about1 .counter-box {
    background: var(--light-gray) !important;
    border-left: 4px solid var(--primary-blue) !important;
}

.about1 .counter-box h3 {
    color: var(--primary-blue) !important;
}

.about1 .counter-box p {
    color: var(--muted-text) !important;
}

/* Why Choose section headings on white */
.why-grid-title {
    color: var(--brand-green) !important;
}

/* Testimonials section on white */
.test1 .heading1 h2 {
    color: var(--dark-text) !important;
}

/* About service section heading */
.about-service .heading4 h2 {
    color: var(--dark-text) !important;
}

/* Process section heading */
.process.sp .heading1 .span1 {
    background: rgba(103, 179, 70, 0.1) !important;
    color: var(--brand-green) !important;
}

/* Clients section title */
.clients-brochure-title {
    color: var(--brand-green) !important;
}

.clients-brochure-title::after {
    background: var(--primary-blue) !important;
}

/* We represent title */
.we-represent-title {
    color: var(--dark-text) !important;
}

/* About green heading stays green */
.about-green-heading {
    color: var(--brand-green) !important;
}

/* Contact info cards background stay white section */
.contact-box-p {
    background: #fff !important;
    border-left: 4px solid var(--primary-blue) !important;
    box-shadow: 0 3px 16px rgba(15, 82, 134, 0.08) !important;
}

.contact-box-p:hover {
    border-left-color: var(--brand-green) !important;
}

.contact-box-p .heading h3 {
    color: var(--dark-text) !important;
}

.contact-box-p .heading a {
    color: var(--muted-text) !important;
}

.contact-box-p .heading a:hover {
    color: var(--primary-blue) !important;
}

/* Contact form card — white */
.single-input input,
.single-input textarea {
    background: var(--light-gray) !important;
    border: 1.5px solid rgba(15, 82, 134, 0.15) !important;
    color: var(--dark-text) !important;
}

.single-input input::placeholder,
.single-input textarea::placeholder {
    color: var(--muted-text) !important;
}

.single-input input:focus,
.single-input textarea:focus {
    border-color: var(--primary-blue) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(15, 82, 134, 0.08) !important;
}

.single-input label {
    color: var(--dark-text) !important;
}

/* Product detail page — white bg section */
.sp[style*="light-gray"],
.sp[style*="var(--light-gray)"] {
    background: var(--light-gray) !important;
}

/* Product img box — white */
.product-img-box,
.product-detail-img-wrap {
    background: #fff !important;
    border: 1.5px solid rgba(15, 82, 134, 0.10) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    box-shadow: 0 6px 30px rgba(15, 82, 134, 0.10) !important;
}

/* Details content — white */
.details-content {
    background: #fff !important;
    border: 1.5px solid rgba(15, 82, 134, 0.08) !important;
    border-bottom: 4px solid var(--brand-green) !important;
}

.details-content h2 {
    color: var(--primary-blue) !important;
}

.details-content h4 {
    color: var(--secondary-blue) !important;
}

.details-content p.text-18 {
    color: var(--muted-text) !important;
}

.details-content p.text-18 b {
    color: var(--dark-text) !important;
}

.details-content h5 {
    color: var(--primary-blue) !important;
}

.details-content p.pera1 {
    color: var(--muted-text) !important;
}

.product-info-cell {
    background: var(--light-gray) !important;
    border-left-color: var(--primary-blue) !important;
}

.product-info-cell .cell-label {
    color: var(--brand-green) !important;
}

.product-info-cell .cell-value {
    color: var(--dark-text) !important;
}

/* Catalog cards source tag */
.catalog-source-tag {
    color: rgba(255, 255, 255, 0.60) !important;
}

/* ======================================================
   CLIENTS PAGE — Complete Brochure Design
   ====================================================== */

/* Section title */
.clients-brochure-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--brand-green);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.clients-brochure-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* --------------------------------------------------
   CLIENT LOGO CARDS — dark navy + green border
   -------------------------------------------------- */
.srcil-client-card {
    background: var(--dark-navy);
    border: 1.5px solid rgba(103, 179, 70, 0.25);
    border-bottom: 4px solid var(--brand-green);
    border-radius: 10px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    box-shadow: 0 4px 18px rgba(15, 82, 134, 0.14);
    transition: all 0.3s ease;
    overflow: hidden;
}

.srcil-client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 34px rgba(15, 82, 134, 0.24);
    border-bottom-color: #fff;
    border-color: rgba(103, 179, 70, 0.5);
}

.srcil-client-card img {
    max-height: 54px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.srcil-client-card:hover img {
    opacity: 1;
    transform: scale(1.06);
}

/* --------------------------------------------------
   REPRESENT LOGO CARDS — white + green border
   Same as brochure: plain white cards in a row
   -------------------------------------------------- */
.srcil-represent-card {
    background: #fff;
    border: 1.5px solid rgba(15, 82, 134, 0.12);
    border-bottom: 4px solid var(--brand-green);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    box-shadow: 0 2px 10px rgba(15, 82, 134, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.srcil-represent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 82, 134, 0.14);
    border-color: var(--primary-blue);
    border-bottom-color: var(--brand-green);
}

.srcil-represent-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.srcil-represent-card:hover img {
    transform: scale(1.06);
}

/* Section title for represent */
.we-represent-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(22px, 3vw, 36px);
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.we-represent-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* --------------------------------------------------
   INDUSTRIAL PLANT BANNER
   -------------------------------------------------- */
.srcil-industry-banner {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.srcil-industry-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 6s ease;
}

.srcil-industry-banner:hover img {
    transform: scale(1.04);
}

.srcil-industry-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 82, 134, 0.35) 0%, rgba(13, 31, 53, 0.20) 100%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .srcil-industry-banner {
        height: 200px;
    }
}

/* --------------------------------------------------
   INDUSTRIES WE SERVE — Hexagon Grid
   -------------------------------------------------- */
.srcil-hex-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px 0 40px;
}

.srcil-hex-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.srcil-hex-row.offset {
    margin-top: -20px;
}

.srcil-hex-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 140px;
}

/* Hexagon shape */
.srcil-hex-shape {
    width: 130px;
    height: 130px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
}

.srcil-hex-shape::before {
    content: '';
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.srcil-hex-item:hover .srcil-hex-shape {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 8px 28px rgba(15, 82, 134, 0.35);
}

.srcil-hex-item:hover .srcil-hex-shape::before {
    opacity: 1;
}

.srcil-hex-shape i {
    font-size: 36px;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.srcil-hex-item:hover .srcil-hex-shape i {
    transform: scale(1.1);
}

/* Label below hexagon */
.srcil-hex-label {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-text);
    text-align: center;
    line-height: 1.3;
}

/* Industries section title */
.clients-brochure-section+* .clients-brochure-title,
.sp .clients-brochure-title {
    margin-top: 0;
}

/* --------------------------------------------------
   RESPONSIVE — hex grid on mobile
   -------------------------------------------------- */
@media (max-width: 767px) {
    .srcil-hex-row {
        gap: 14px;
    }

    .srcil-hex-row.offset {
        margin-top: 0;
    }

    .srcil-hex-item {
        width: 100px;
    }

    .srcil-hex-shape {
        width: 96px;
        height: 96px;
    }

    .srcil-hex-shape i {
        font-size: 26px;
    }

    .srcil-hex-label {
        font-size: 11px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .srcil-hex-item {
        width: 120px;
    }

    .srcil-hex-shape {
        width: 110px;
        height: 110px;
    }

    .srcil-hex-shape i {
        font-size: 30px;
    }
}

/* ======================================================
   FOOTER — Complete Copyright Row Fix
   ====================================================== */

/* Main footer top padding */
.footer1 {
    padding-top: 70px !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Column spacing inside footer */
.footer1 .row.g-5 {
    padding-bottom: 20px;
}

/* Copyright row — tight, clean */
.coppy-right1 {
    background: rgba(0, 0, 0, 0.3) !important;
    margin: 30px -12px 0 !important;
    padding: 16px 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Copyright text — left side */
.coppy-right1 .col-lg-8 p,
.coppy-right1 .col-lg-8 p a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.50) !important;
    line-height: 1.5 !important;
}

.coppy-right1 .col-lg-8 p a:hover {
    color: var(--brand-green) !important;
}

/* Terms & Privacy — right side */
.conditons-area1 {
    display: flex !important;
    gap: 20px !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.conditons-area1 a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.50) !important;
    transition: color 0.2s !important;
    text-decoration: none !important;
    position: relative;
    padding-bottom: 1px;
}

.conditons-area1 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-green);
    transition: width 0.25s ease;
}

.conditons-area1 a:hover {
    color: var(--brand-green) !important;
}

.conditons-area1 a:hover::after {
    width: 100%;
}

/* Mobile: stack copyright row */
@media (max-width: 767px) {
    .coppy-right1 .col-lg-8 {
        margin-bottom: 8px;
    }

    .conditons-area1 {
        justify-content: flex-start !important;
    }
}

/* Footer headings — green underline */
.footer1 h3 {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid var(--brand-green) !important;
    margin-bottom: 18px !important;
    display: inline-block;
}

/* Footer logo */
.footer1 .logo-area img {
    height: 48px !important;
    width: auto !important;
    filter: none !important;
    max-width: 200px !important;
}

/* Footer tagline */
.footer1 .logo-area p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.58) !important;
    line-height: 1.7 !important;
    margin-top: 12px !important;
}

/* Contact section cards in footer */
.contact-section {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
    padding: 12px 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 6px !important;
    border-left: 3px solid var(--brand-green) !important;
    transition: background 0.2s !important;
}

.contact-section:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.contact-section img {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    filter: brightness(0) invert(0.7) !important;
}

.contact-section p,
.contact-section p a {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.62) !important;
    line-height: 1.6 !important;
    transition: color 0.2s !important;
}

.contact-section p a:hover {
    color: var(--brand-green) !important;
}

/* ======================================================
   SCROLL TO TOP BUTTON — Single clean round green circle
   ====================================================== */

/* Container */
.paginacontainer {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    width: 50px;
    height: 50px;
}

.progress-wrap {
    position: fixed !important;
    right: 24px !important;
    bottom: 24px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: var(--brand-green) !important;
    box-shadow: 0 4px 18px rgba(103, 179, 70, 0.45) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
    /* hide opacity/visibility handled by JS */
}

.progress-wrap:hover {
    background: var(--primary-blue) !important;
    box-shadow: 0 6px 24px rgba(15, 82, 134, 0.45) !important;
    transform: translateY(-3px) !important;
}

/* Hide SVG circle progress track completely */
.progress-wrap svg.progress-circle,
.progress-wrap svg {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Single white arrow via ::after only */
.progress-wrap::after {
    content: '\f062' !important;
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free', 'FontAwesome' !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    color: #fff !important;
    line-height: 1 !important;
    position: static !important;
    display: block !important;
}

/* Progress wrap visibility — controlled by JS active-progress class */
.progress-wrap {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
}

.progress-wrap.active-progress {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.progress-wrap.active-progress:hover {
    background: var(--primary-blue) !important;
    transform: translateY(-3px) !important;
}

/* ======================================================
   ALL INNER PAGE HEROES — Blue Chemical/Molecular BG
   research-hero-bg.jpg = blue chemical molecular structure
   Replaces video-area1-bg.jpg on ALL common-hero sections
   ====================================================== */
.common-hero {
    background-image:
        linear-gradient(105deg, rgba(13, 31, 53, 0.90) 0%, rgba(15, 82, 134, 0.72) 55%, rgba(13, 31, 53, 0.55) 100%),
        url('../img/bg/research-hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Keep process/video section using industrial image */
.video-area1 {
    background-image: url('../img/added/video-area1-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Homepage hero stays industrial plant */
.hero1-bg1 {
    background-image:
        url('../img/added/homebg.png') !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* ======================================================
   INNER PAGE HERO — Smaller height
   ====================================================== */
.common-hero {
    padding: 36px 0 30px !important;
}

@media (max-width: 767px) {
    .common-hero {
        padding: 24px 0 20px !important;
    }
}

/* ======================================================
   INDUSTRIES WE SERVE — Photo Hexagon Honeycomb
   Exact brochure copy: image hexagons + labels
   ====================================================== */

.srcil-honeycomb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0 40px;
}

/* Each row */
.shc-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-top: -22px;
    /* overlap rows for honeycomb effect */
}

.shc-row:first-child {
    margin-top: 0;
}

/* Offset rows shift right by half a hex */
.shc-row.shc-offset {
    margin-left: 155px;
}

/* Each hexagon item */
.shc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 155px;
    flex-shrink: 0;
}

/* Hexagon photo container */
.shc-hex {
    width: 148px;
    height: 148px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    position: relative;
    border: none;
    transition: all 0.35s ease;
    /* Blue-green double border effect via box-shadow on wrapper */
}

/* Wrapper adds the colored border */
.shc-item .shc-hex-wrap {
    width: 156px;
    height: 156px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #2773B7, #67B346);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.shc-item:hover .shc-hex-wrap {
    transform: scale(1.06) translateY(-4px);
    background: linear-gradient(135deg, #67B346, #0F5286);
    filter: drop-shadow(0 8px 20px rgba(15, 82, 134, 0.35));
}

/* Photo inside */
.shc-hex-wrap .shc-hex {
    width: 142px;
    height: 142px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    margin: 0;
}

.shc-hex-wrap .shc-hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.shc-item:hover .shc-hex-wrap .shc-hex img {
    transform: scale(1.1);
}

/* Label below hex */
.shc-label {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.3;
    max-width: 130px;
}

/* ======================================================
   RESPONSIVE — Honeycomb
   ====================================================== */
@media (max-width: 991px) {
    .shc-row.shc-offset {
        margin-left: 100px;
    }

    .shc-item {
        width: 120px;
    }

    .shc-hex-wrap {
        width: 120px !important;
        height: 120px !important;
    }

    .shc-hex-wrap .shc-hex {
        width: 110px !important;
        height: 110px !important;
    }

    .shc-row {
        margin-top: -16px;
    }
}

@media (max-width: 767px) {
    .srcil-honeycomb {
        padding: 10px 0 20px;
    }

    .shc-row {
        gap: 6px;
        margin-top: -10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .shc-row.shc-offset {
        margin-left: 0;
    }

    .shc-item {
        width: 90px;
    }

    .shc-hex-wrap {
        width: 88px !important;
        height: 88px !important;
    }

    .shc-hex-wrap .shc-hex {
        width: 80px !important;
        height: 80px !important;
    }

    .shc-label {
        font-size: 10px;
        max-width: 90px;
    }
}

/* ======================================================
   INDUSTRIES WE SERVE — Clean Hexagon Grid (iws-)
   Fixed: labels BELOW hex, no overlap, proper honeycomb
   ====================================================== */

/* Grid container */
.iws-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0 40px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

/* Each row */
.iws-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

/* Offset rows */
.iws-row.iws-offset {
    padding-left: 110px;
}

/* Each item: hex + label stacked */
.iws-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 140px;
    flex-shrink: 0;
}

/* Outer border ring — green/blue gradient */
.iws-hex-outer {
    width: 140px;
    height: 140px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.iws-item:hover .iws-hex-outer {
    background: linear-gradient(135deg, #67B346 0%, #0F5286 100%);
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 8px 18px rgba(15, 82, 134, 0.35));
}

/* Inner photo hexagon */
.iws-hex-inner {
    width: 126px;
    height: 126px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    background: #eef4fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iws-hex-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.iws-item:hover .iws-hex-inner img {
    transform: scale(1.12);
}

/* Label below hex */
.iws-name {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.3;
    max-width: 120px;
    margin: 0;
    padding: 0;
}

/* ======================================================
   RESPONSIVE — iws- grid
   ====================================================== */
@media (max-width: 991px) {
    .iws-grid {
        max-width: 520px;
        gap: 12px;
    }

    .iws-item {
        width: 110px;
    }

    .iws-hex-outer {
        width: 110px;
        height: 110px;
    }

    .iws-hex-inner {
        width: 98px;
        height: 98px;
    }

    .iws-row.iws-offset {
        padding-left: 80px;
    }

    .iws-name {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .iws-grid {
        max-width: 100%;
        gap: 8px;
    }

    .iws-row {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .iws-row.iws-offset {
        padding-left: 0;
    }

    .iws-item {
        width: 90px;
    }

    .iws-hex-outer {
        width: 90px;
        height: 90px;
    }

    .iws-hex-inner {
        width: 80px;
        height: 80px;
    }

    .iws-name {
        font-size: 10px;
        max-width: 90px;
    }
}

/* ======================================================
   INDUSTRIES WE SERVE — True Brochure Honeycomb
   5-column interlocked layout with labels outside
   ====================================================== */

.iws-brochure-wrap {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 10px 0 30px;
}

/* Label rows above/below */
.iws-label-row-top {
    display: flex;
    justify-content: center;
    gap: 180px;
    margin-bottom: 4px;
    padding-left: 120px;
}

.iws-label-row-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    margin-top: 12px;
    padding-left: 20px;
}

.iws-lbl {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.35;
}

/* 5-column main grid */
.iws-main-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.iws-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.iws-col-3 {
    margin-top: -30px;
    margin-bottom: -30px;
}

.iws-lbl-side {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.35;
    max-width: 110px;
    margin-top: 4px;
}

/* BASE HEX SHAPE */
.iws-hex {
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.iws-hex:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 6px 16px rgba(15, 82, 134, 0.3));
}

.iws-hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.iws-hex:hover img {
    transform: scale(1.1);
}

/* SIZES */
.iws-hex-xl {
    width: 185px;
    height: 185px;
}

.iws-hex-lg {
    width: 160px;
    height: 160px;
}

.iws-hex-md {
    width: 140px;
    height: 140px;
}

.iws-hex-sm {
    width: 115px;
    height: 115px;
}

/* BORDER COLORS — outer ring effect via drop-shadow */
.iws-border-green {
    filter: drop-shadow(0 0 0 3px #67B346);
    outline: none;
    box-shadow: 0 0 0 4px #67B346;
    /* Use background wrapper for border */
}

.iws-border-blue {
    box-shadow: 0 0 0 4px #2773B7;
}

.iws-border-teal {
    box-shadow: 0 0 0 4px #0F5286;
}

/* Better border approach: wrap with gradient bg */
.iws-hex-wrap-green {
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    background: #67B346;
    padding: 4px;
    display: inline-block;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.iws-hex-wrap-blue {
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    background: #2773B7;
    padding: 4px;
    display: inline-block;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.iws-hex-wrap-teal {
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    background: #0F5286;
    padding: 4px;
    display: inline-block;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.iws-hex-wrap-green:hover,
.iws-hex-wrap-blue:hover,
.iws-hex-wrap-teal:hover {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 8px 16px rgba(15, 82, 134, 0.3));
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 991px) {
    .iws-brochure-wrap {
        max-width: 680px;
    }

    .iws-hex-xl {
        width: 145px;
        height: 145px;
    }

    .iws-hex-lg {
        width: 125px;
        height: 125px;
    }

    .iws-hex-md {
        width: 110px;
        height: 110px;
    }

    .iws-hex-sm {
        width: 90px;
        height: 90px;
    }

    .iws-label-row-top {
        gap: 130px;
        padding-left: 80px;
    }
}

@media (max-width: 767px) {
    .iws-main-grid {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .iws-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .iws-col-3 {
        margin: 0;
    }

    .iws-hex-xl,
    .iws-hex-lg {
        width: 100px;
        height: 100px;
    }

    .iws-hex-md {
        width: 90px;
        height: 90px;
    }

    .iws-hex-sm {
        width: 80px;
        height: 80px;
    }

    .iws-label-row-top,
    .iws-label-row-bottom {
        display: none;
    }

    .iws-lbl-side {
        font-size: 10px;
    }
}

/* ======================================================
   INDUSTRIES WE SERVE v3 — iws-hw/iws-hi wrapper system
   Outer colored hex wrapper + inner photo hex
   ====================================================== */

.iws-brochure-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0 30px;
    overflow: hidden;
}

.iws-top-labels {
    display: flex;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
    padding-left: 60px;
}

.iws-main-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.iws-bottom-row {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-top: 10px;
    padding-left: 60px;
}

.iws-col-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.iws-side-lbl {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.35;
    max-width: 110px;
    display: block;
}

/* Outer colored hexagon wrapper */
.iws-hw {
    clip-path: polygon(50% 0%, 97% 26%, 97% 74%, 50% 100%, 3% 74%, 3% 26%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.32s ease;
}

.iws-hw:hover {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 8px 18px rgba(15, 82, 134, 0.32));
}

/* Border colors */
.iws-hw-green {
    background: #67B346;
}

.iws-hw-blue {
    background: #2773B7;
}

.iws-hw-teal {
    background: #0F5286;
}

/* Inner photo hexagon */
.iws-hi {
    clip-path: polygon(50% 0%, 97% 26%, 97% 74%, 50% 100%, 3% 74%, 3% 26%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4fb;
}

.iws-hi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.iws-hw:hover .iws-hi img {
    transform: scale(1.1);
}

/* SIZES — outer wrapper */
.iws-hw.iws-hi-xl,
.iws-hw>.iws-hi-xl {
    width: 190px;
    height: 190px;
}

.iws-hw.iws-hi-lg,
.iws-hw>.iws-hi-lg {
    width: 168px;
    height: 168px;
}

.iws-hw.iws-hi-md,
.iws-hw>.iws-hi-md {
    width: 148px;
    height: 148px;
}

.iws-hw.iws-hi-sm,
.iws-hw>.iws-hi-sm {
    width: 124px;
    height: 124px;
}

/* Inner sizes — 8px smaller for border gap */
.iws-hi.iws-hi-xl {
    width: 176px;
    height: 176px;
}

.iws-hi.iws-hi-lg {
    width: 154px;
    height: 154px;
}

.iws-hi.iws-hi-md {
    width: 134px;
    height: 134px;
}

.iws-hi.iws-hi-sm {
    width: 110px;
    height: 110px;
}

/* Outer wrapper sizes to match */
.iws-hw:has(.iws-hi-xl) {
    width: 190px;
    height: 190px;
}

.iws-hw:has(.iws-hi-lg) {
    width: 168px;
    height: 168px;
}

.iws-hw:has(.iws-hi-md) {
    width: 148px;
    height: 148px;
}

.iws-hw:has(.iws-hi-sm) {
    width: 124px;
    height: 124px;
}

/* Responsive */
@media (max-width: 991px) {
    .iws-brochure-wrap {
        max-width: 700px;
    }

    .iws-hi.iws-hi-xl {
        width: 140px;
        height: 140px;
    }

    .iws-hi.iws-hi-lg {
        width: 122px;
        height: 122px;
    }

    .iws-hi.iws-hi-md {
        width: 106px;
        height: 106px;
    }

    .iws-hi.iws-hi-sm {
        width: 88px;
        height: 88px;
    }

    .iws-hw:has(.iws-hi-xl) {
        width: 152px;
        height: 152px;
    }

    .iws-hw:has(.iws-hi-lg) {
        width: 134px;
        height: 134px;
    }

    .iws-hw:has(.iws-hi-md) {
        width: 118px;
        height: 118px;
    }

    .iws-hw:has(.iws-hi-sm) {
        width: 100px;
        height: 100px;
    }

    .iws-main-grid {
        gap: 4px;
    }
}

@media (max-width: 767px) {
    .iws-main-grid {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .iws-col-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .iws-hi.iws-hi-xl,
    .iws-hi.iws-hi-lg {
        width: 100px;
        height: 100px;
    }

    .iws-hi.iws-hi-md {
        width: 90px;
        height: 90px;
    }

    .iws-hw:has(.iws-hi-xl),
    .iws-hw:has(.iws-hi-lg) {
        width: 112px;
        height: 112px;
    }

    .iws-hw:has(.iws-hi-md) {
        width: 102px;
        height: 102px;
    }

    .iws-top-labels,
    .iws-bottom-row {
        display: none;
    }

    .iws-side-lbl {
        font-size: 10px;
    }
}

/* ======================================================
   INDUSTRIES WE SERVE — CSS Grid Honeycomb (Final)
   Exact brochure layout: 5 cols × 3 rows
   ====================================================== */

.iws-container {
    width: 100%;
    max-width: 920px;
    margin: 20px auto 40px;
    padding: 0 20px;
}

/* 5-column grid */
.iws-honeycomb {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto auto;
    gap: 6px 6px;
    align-items: center;
    justify-items: center;
}

/* Each cell */
.iws-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.iws-cell-lbl-left {
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.iws-cell-lbl-right {
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

/* Labels */
.iws-top-lbl,
.iws-bot-lbl,
.iws-left-lbl,
.iws-right-lbl {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.35;
}

.iws-left-lbl {
    text-align: right;
}

.iws-right-lbl {
    text-align: left;
}

/* HEXAGON — outer colored border */
.ihex {
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ihex:hover {
    transform: scale(1.07) translateY(-4px);
    filter: drop-shadow(0 8px 18px rgba(15, 82, 134, 0.35));
}

/* Border colors */
.ihex-green {
    background: #67B346;
}

.ihex-blue {
    background: #2773B7;
}

.ihex-teal {
    background: #0D5C9E;
}

/* Inner photo — sits inside with padding gap = border thickness */
.ihex img {
    position: absolute;
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ihex:hover img {
    transform: scale(1.1);
}

/* SIZE SYSTEM — outer hex / inner photo inset by 6px */
.ihex-xl {
    width: 200px;
    height: 200px;
}

.ihex-xl img {
    width: 188px;
    height: 188px;
    top: 6px;
    left: 6px;
}

.ihex-lg {
    width: 172px;
    height: 172px;
}

.ihex-lg img {
    width: 160px;
    height: 160px;
    top: 6px;
    left: 6px;
}

.ihex-md {
    width: 148px;
    height: 148px;
}

.ihex-md img {
    width: 136px;
    height: 136px;
    top: 6px;
    left: 6px;
}

/* Center column offset — shift Dairy and Sugar down to interlock */
.iws-honeycomb>[style*="grid-column:3"] {
    margin-top: 40px;
}

/* Row 2 middle items — nudge up slightly */
.iws-honeycomb>[style*="grid-row:2"] {
    margin-top: -20px;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 991px) {
    .iws-container {
        max-width: 720px;
    }

    .ihex-xl {
        width: 160px;
        height: 160px;
    }

    .ihex-xl img {
        width: 148px;
        height: 148px;
        top: 6px;
        left: 6px;
    }

    .ihex-lg {
        width: 138px;
        height: 138px;
    }

    .ihex-lg img {
        width: 126px;
        height: 126px;
        top: 6px;
        left: 6px;
    }

    .ihex-md {
        width: 118px;
        height: 118px;
    }

    .ihex-md img {
        width: 106px;
        height: 106px;
        top: 6px;
        left: 6px;
    }
}

@media (max-width: 767px) {
    .iws-honeycomb {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        gap: 16px;
    }

    /* Reset all grid positions on mobile */
    .iws-honeycomb>* {
        grid-column: auto !important;
        grid-row: auto !important;
        margin-top: 0 !important;
    }

    .ihex-xl {
        width: 130px;
        height: 130px;
    }

    .ihex-xl img {
        width: 118px;
        height: 118px;
    }

    .ihex-lg {
        width: 115px;
        height: 115px;
    }

    .ihex-lg img {
        width: 103px;
        height: 103px;
    }

    .ihex-md {
        width: 100px;
        height: 100px;
    }

    .ihex-md img {
        width: 88px;
        height: 88px;
    }

    .iws-cell-lbl-left,
    .iws-cell-lbl-right {
        flex-direction: column;
    }

    .iws-top-lbl,
    .iws-bot-lbl,
    .iws-left-lbl,
    .iws-right-lbl {
        font-size: 11px;
    }
}

/* ======================================================
   INDUSTRIES WE SERVE — Final Column-Based Honeycomb
   5 flex columns, center col offset for interlock effect
   ====================================================== */

.iws-container {
    width: 100%;
    max-width: 960px;
    margin: 10px auto 40px;
    padding: 0 10px;
    overflow: visible;
}

/* 5-column flex row */
.iws-honeycomb {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Each column */
.iws-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 6px;
    flex-shrink: 0;
}

/* Center column shifted DOWN for true interlock */
.iws-col-offset {
    margin-top: 90px;
}

/* Each item: hex + optional label */
.iws-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Horizontal cell (label beside hex) */
.iws-cell-h {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

/* Labels */
.iws-top-lbl,
.iws-bot-lbl {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1.35;
    max-width: 120px;
}

.iws-left-lbl {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: right;
    line-height: 1.35;
    max-width: 80px;
}

.iws-right-lbl {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: left;
    line-height: 1.35;
    max-width: 80px;
}

/* HEXAGON OUTER — colored border */
.ihex {
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.32s ease;
    position: relative;
}

.ihex:hover {
    transform: scale(1.07) translateY(-5px);
    filter: drop-shadow(0 8px 18px rgba(15, 82, 134, 0.4));
    z-index: 2;
}

.ihex-green {
    background: #67B346;
}

.ihex-blue {
    background: #2773B7;
}

.ihex-teal {
    background: #0D5C9E;
}

/* INNER PHOTO */
.ihex-inner {
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    overflow: hidden;
    background: #e8f3fb;
}

.ihex-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ihex:hover .ihex-inner img {
    transform: scale(1.1);
}

/* SIZES */
.ihex-xl {
    width: 195px;
    height: 195px;
}

.ihex-xl .ihex-inner {
    width: 181px;
    height: 181px;
}

.ihex-lg {
    width: 168px;
    height: 168px;
}

.ihex-lg .ihex-inner {
    width: 154px;
    height: 154px;
}

.ihex-md {
    width: 148px;
    height: 148px;
}

.ihex-md .ihex-inner {
    width: 134px;
    height: 134px;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1100px) {
    .iws-container {
        max-width: 820px;
    }

    .ihex-xl {
        width: 165px;
        height: 165px;
    }

    .ihex-xl .ihex-inner {
        width: 153px;
        height: 153px;
    }

    .ihex-lg {
        width: 142px;
        height: 142px;
    }

    .ihex-lg .ihex-inner {
        width: 130px;
        height: 130px;
    }

    .ihex-md {
        width: 124px;
        height: 124px;
    }

    .ihex-md .ihex-inner {
        width: 112px;
        height: 112px;
    }

    .iws-col-offset {
        margin-top: 76px;
    }
}

@media (max-width: 767px) {
    .iws-honeycomb {
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
    }

    .iws-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .iws-col-offset {
        margin-top: 0;
    }

    .ihex-xl {
        width: 120px;
        height: 120px;
    }

    .ihex-xl .ihex-inner {
        width: 108px;
        height: 108px;
    }

    .ihex-lg {
        width: 106px;
        height: 106px;
    }

    .ihex-lg .ihex-inner {
        width: 94px;
        height: 94px;
    }

    .ihex-md {
        width: 96px;
        height: 96px;
    }

    .ihex-md .ihex-inner {
        width: 84px;
        height: 84px;
    }

    .iws-left-lbl,
    .iws-right-lbl {
        display: none;
    }

    .iws-top-lbl,
    .iws-bot-lbl {
        font-size: 10px;
    }
}

/* ======================================================
   INDUSTRIES WE SERVE — ELEGANT GRID LAYOUT
   ====================================================== */
.industries-section {
    background: #fcfdfe !important;
    padding: 80px 0 !important;
    overflow: hidden !important;
}

.clients-brochure-title {
    text-align: center !important;
    color: #55a83a !important;
    font-size: 44px !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
}

.industries-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 24px !important;
    margin-top: 20px !important;
}

@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .clients-brochure-title {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr !important;
    }
}

.industry-card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 82, 134, 0.08) !important;
    border-radius: 12px !important;
    padding: 24px 16px !important;
    text-align: center !important;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.industry-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: var(--primary-blue) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.35s ease !important;
}

.industry-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 30px rgba(15, 82, 134, 0.08) !important;
    border-color: rgba(103, 179, 70, 0.2) !important;
}

.industry-card:hover::before {
    background: var(--brand-green) !important;
    transform: scaleX(1) !important;
}

.industry-icon-wrap {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: rgba(15, 82, 134, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 16px !important;
    transition: all 0.35s ease !important;
}

.industry-icon-wrap i {
    font-size: 24px !important;
    color: var(--primary-blue) !important;
    transition: all 0.35s ease !important;
}

.industry-card:hover .industry-icon-wrap {
    background: var(--brand-green) !important;
}

.industry-card:hover .industry-icon-wrap i {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

.industry-card h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #0d2744 !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.industry-card p {
    font-size: 13px !important;
    color: #55687a !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ======================================================
   ALL INNER PAGE HEROES — Final override
   Use research-hero-bg.jpg (chemical molecular blue)
   Smaller height
   ====================================================== */
.common-hero {
    padding: 40px 0 32px !important;
    background-image:
        linear-gradient(105deg, rgba(13, 31, 53, 0.90) 0%, rgba(15, 82, 134, 0.72) 55%, rgba(13, 31, 53, 0.55) 100%),
        url('assets/img/bg/research-hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 767px) {
    .common-hero {
        padding: 28px 0 22px !important;
    }
}

/* Remove angled separator line from inner page heroes */
.common-hero::after {
    display: none !important;
}

.common-hero {
    padding: 28px 0 24px !important;
}

/* ======================================================
   COPYRIGHT BAR — Clearer, bigger, better contrast
   ====================================================== */
.coppy-right1 {
    background: rgba(0, 0, 0, 0.35) !important;
    margin: 40px 0 0 !important;
    padding: 18px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.coppy-right1 .col-lg-8 p,
.coppy-right1 .col-lg-8 p a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.6 !important;
    letter-spacing: 0.2px !important;
}

.coppy-right1 .col-lg-8 p a:hover {
    color: var(--brand-green) !important;
    text-decoration: underline !important;
}

.conditons-area1 a {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.2s !important;
    letter-spacing: 0.2px !important;
}

.conditons-area1 a:hover {
    color: var(--brand-green) !important;
    text-decoration: underline !important;
}

/* Copyright row — full width fix */
.coppy-right1 {
    margin: 40px -12px 0 -12px !important;
    padding: 18px 12px !important;
    width: calc(100% + 24px) !important;
}

/* Copyright row — match footer background exactly */
.coppy-right1 {
    background: var(--dark-navy) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* ======================================================
   INNER PAGE HERO — Absolute path fix + proper image
   ====================================================== */
.common-hero {
    background-image:
        linear-gradient(105deg, rgba(13, 31, 53, 0.88) 0%, rgba(15, 82, 134, 0.68) 55%, rgba(13, 31, 53, 0.50) 100%),
        url('assets/img/bg/research-hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: 28px 0 24px !important;
}

/* CSS file is at assets/css/ so path to bg image = ../img/bg/ */
.common-hero {
    background-image:
        linear-gradient(105deg, rgba(13, 31, 53, 0.88) 0%, rgba(15, 82, 134, 0.68) 55%, rgba(13, 31, 53, 0.50) 100%),
        url('../img/bg/research-hero-bg.jpg') !important;
}

/* ======================================================
   INNER PAGE HERO — Use video-area1-bg.jpg (best quality)
   ====================================================== */
.common-hero {
    background-image:
        linear-gradient(105deg, rgba(13, 31, 53, 0.85) 0%, rgba(15, 82, 134, 0.65) 55%, rgba(13, 31, 53, 0.50) 100%),
        url('../img/bg/video-area1-bg.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: 28px 0 24px !important;
}

/* ======================================================
   INNER PAGE HERO — Hexagonal Chemical Pattern BG
   NO blue overlay — full image visible
   ====================================================== */
.common-hero {
    background-image: url('../img/bg/hex-bg.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: 28px 0 24px !important;
}

/* Remove overlay pseudo-element */
.common-hero::before {
    display: none !important;
}

/* ======================================================
   INNER PAGE HERO — REVERT to original research-hero-bg
   with blue overlay restored
   ====================================================== */
.common-hero {
    background-image:
        url('../img/bg/research-hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: 28px 0 24px !important;
}

.common-hero::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: transparent !important;
    z-index: 1 !important;
}

.common-hero::after {
    display: none !important;
}

/* ======================================================
   CONTACT FORM — Clean White Card Design
   ====================================================== */
.contact-form,
.contact-form form,
div[style*="background:#fff"][style*="border-top:4px solid"] {
    background: #fff !important;
}

/* Form wrapper override */
.contact-form>div,
.contact-form form>div {
    background: transparent !important;
}

/* Labels — dark text */
.single-input label,
.contact-form label {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--dark-text) !important;
    display: block !important;
    margin-bottom: 6px !important;
}

/* Inputs — light gray bg, dark border */
.single-input input,
.single-input textarea,
.contact-form input,
.contact-form textarea {
    background: #F5F7FA !important;
    border: 1.5px solid rgba(15, 82, 134, 0.18) !important;
    border-radius: 8px !important;
    padding: 13px 16px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: var(--dark-text) !important;
    width: 100% !important;
    transition: all 0.25s ease !important;
    outline: none !important;
}

.single-input input:focus,
.single-input textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(15, 82, 134, 0.08) !important;
}

.single-input input::placeholder,
.single-input textarea::placeholder {
    color: #a0aec0 !important;
    font-size: 13px !important;
}

/* Send Now button — green pill */
.contact-form button[type="submit"],
.contact-form .theme-btn1 {
    background: var(--primary-blue) !important;
    color: #fff !important;
    border: none !important;
    padding: 13px 28px !important;
    border-radius: 8px !important;
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    justify-content: center !important;
}

.contact-form button[type="submit"]:hover {
    background: var(--brand-green) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(103, 179, 70, 0.35) !important;
}

/* Contact section wrapper */
.contact-form .row {
    gap: 0 !important;
}

.contact-form .col-lg-6,
.contact-form .col-lg-12 {
    margin-bottom: 16px !important;
}

/* Overall form card */
.contact-form {
    background: #fff !important;
    border-radius: 14px !important;
    padding: 32px !important;
    box-shadow: 0 6px 30px rgba(15, 82, 134, 0.10) !important;
    border-top: 4px solid var(--primary-blue) !important;
}

/* Get in touch heading */
.sp h2.text-44.font-semibold.title1 {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 800 !important;
    color: var(--dark-text) !important;
}

.footer1 .row {
    align-items: flex-start;
}

.footer1 .logo-area {
    padding-right: 30px;
}

/* Footer column heading — reusable */
.footer-col-heading {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #67B346 !important;
    margin-bottom: 18px !important;
    display: inline-block !important;
}

/* Industrial plant banner — taller */
.srcil-industry-banner {
    height: 380px !important;
}

@media (max-width: 767px) {
    .srcil-industry-banner {
        height: 220px !important;
    }
}

/* ======================================================
   PERFORMANCE — reduce paint/layout costs
   ====================================================== */

/* Will-change hint for animated elements */
.service-box1,
.research-box,
.srcil-tes-card,
.ihex,
.srcil-client-card,
.srcil-represent-card {
    will-change: transform;
}

/* Contain layout for card sections */
.service.sp,
.test1.sp,
.why-grid-section,
.clients-brochure-section {
    contain: layout style;
}

/* Preconnect hint for Google Fonts (handled in HTML head) */
/* Font-display swap already applied via Google Fonts URL param */

/* Remove white gap below hero */
.common-hero::after {
    display: none !important;
}

.common-hero {
    margin-bottom: 0 !important;
    overflow: hidden !important;
}

/* Remove ALL white gaps before footer */
.footer1 {
    margin-top: 0 !important;
}

.cta1.sp {
    margin-bottom: 0 !important;
    padding-bottom: 80px !important;
}

.cta1.sp::after {
    display: none !important;
}

.cta1.sp::before {
    display: none !important;
}

/* Remove any white space from sections just before footer */
section:last-of-type,
div.sp:last-of-type {
    margin-bottom: 0 !important;
}

/* The white line between sections — it's the green bar on footer top */
.footer1::before {
    content: '' !important;
    display: block !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--brand-green) 50%, var(--primary-blue) 100%) !important;
    width: 100% !important;
}

/* Eliminate any white body gap before footer */
body>.footer1,
body .footer1 {
    display: block;
    margin-top: 0 !important;
}

/* Any element directly before footer — remove bottom margin */
.cta1+.footer1,
.sp+.footer1,
div+.footer1 {
    margin-top: 0 !important;
}

/* White line is actually the green bar top border of footer showing on white bg */
/* Make body background match footer so no flash */
body {
    background-color: var(--dark-navy) !important;
}

/* But sections themselves stay white */
.about1.sp,
.service.sp,
.why-grid-section,
.test1.sp,
.clients-brochure-section,
.we-represent-brochure,
.sp[style*="white"],
.sp[style*="light-gray"],
.sp[style*="var(--light-gray)"],
.process.sp,
.about-service.bg1,
.about-us-text-section,
.mv-block-light,
.iws-container,
.iws-container+.sp {
    background: inherit;
}

/* ======================================================
   FIX WHITE GAP BEFORE FOOTER
   The gap is body background showing — make it dark navy
   But keep page content sections white via their own bg
   ====================================================== */
html,
body.body {
    background-color: var(--dark-navy) !important;
}

/* Ensure white sections still appear white */
.about1.sp {
    background: #fff !important;
}

.service.sp {
    background: var(--light-gray) !important;
}

.why-grid-section {
    background: #fff !important;
}

.test1.sp {
    background: #fff !important;
}

.process.sp {
    background: var(--light-gray) !important;
}

.about-service.bg1 {
    background: var(--light-gray) !important;
}

.about-us-text-section {
    background: #fff !important;
}

.mv-block-light {
    background: #fff !important;
}

.clients-brochure-section {
    background: #fff !important;
}

.we-represent-brochure {
    background: var(--light-gray) !important;
}

.sp[style*="background:#fff"] {
    background: #fff !important;
}

.sp[style*="background: #fff"] {
    background: #fff !important;
}

.sp[style*="background: var(--light-gray)"] {
    background: var(--light-gray) !important;
}

.iws-container {
    background: #fff !important;
}

.iws-container~.sp {
    background: #fff !important;
}

/* Hide top info bar */
.header-top4 {
    display: none !important;
}

/* Remove dark body bg showing above header */
html,
body.body {
    background-color: #fff !important;
}

/* Footer dark gap fix — use a wrapper instead */
.footer1 {
    background-color: var(--dark-navy) !important;
}

/* ======================================================
   MOBILE — Fix huge gap in about section image area
   ====================================================== */
@media (max-width: 991px) {
    .about1-images {
        min-height: auto !important;
        height: auto !important;
        margin-bottom: 20px !important;
    }

    .about1-images .image1 {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        display: block;
    }

    .about1-images .image2 {
        display: none !important;
    }

    .about1-images .image1 img {
        height: 240px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    /* Remove absolute positioning on mobile */
    .about1-images .absolute {
        position: relative !important;
    }
}

@media (max-width: 767px) {
    .about1-images .image1 img {
        height: 200px !important;
    }

    .about1.sp {
        padding: 40px 0 !important;
    }
}

/* ==============================
   GLOBAL TEXT SIZE INCREASE
   ============================== */

/* All paragraph text */
p,
.pera1,
.pera2 {
    font-size: 20px !important;
    line-height: 1.8 !important;
}

/* Cards & boxes paragraph text */
.service-box1 .heading1 p,
.about-service-single-slider .heading4 p,
.our-values-box .heading1 p,
.process-bottom-box .heading1 p,
.research-box .heading1 p,
.why-choose-card p,
.single-slider1 p,
.details-content p,
.details-content p.pera1,
.details-content p.text-18,
.blog1-box .heading-area p,
.srcil-tes-text,
.about-us-text-section p,
.mv-text p,
.mv-block-dark .mv-text p,
.mv-block-light .mv-text p,
.commitment-banner p,
.commitment-brochure-banner p,
.footer1 .logo-area p {
    font-size: 20px !important;
    line-height: 1.8 !important;
}

/* Nav dropdown links */
.main-menu-ex1 ul ul li a {
    font-size: 17px !important;
}

/* Footer links */
.footer-list1 li a {
    font-size: 17px !important;
}

/* Contact info text */
.contact-box-p .heading a,
.contact-info-item .heading a {
    font-size: 17px !important;
    line-height: 1.6 !important;
    display: inline-block !important;
    overflow: visible !important;
    color: var(--dark-text) !important;
}

.contact-info-item .heading a:hover {
    color: var(--primary-blue) !important;
}

/* Product list items */
.product-info-card .card-body-content ul li {
    font-size: 17px !important;
}

/* Table text */
table td,
table th {
    font-size: 17px !important;
}

/* Fix: pera1 with leading-16 class - line-height conflict fix */
.pera1.leading-16,
a.pera1.leading-16,
.text-16.pera1,
a.text-16.pera1 {
    line-height: 1.6 !important;
    font-size: 16px !important;
    display: inline-block !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* ==============================
   FOOTER — CLEAN TEXT OVERHAUL
   ============================== */

/* Footer tagline */
.footer1 .logo-area p {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
}

/* Footer column headings */
.footer-col-heading,
.footer1 h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 18px !important;
}

/* Footer nav links */
.footer-list1 li a {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.footer-list1 li a:hover {
    color: var(--brand-green) !important;
}

/* Footer contact section - email, address, phone */
.contact-section p,
.contact-section a,
.contact-section p a {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
}

.contact-section a:hover,
.contact-section p a:hover {
    color: var(--brand-green) !important;
}

/* Copyright bar */
.coppy-right1 p,
.coppy-right1 p a {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.60) !important;
    font-weight: 400 !important;
}

.coppy-right1 p a:hover {
    color: var(--brand-green) !important;
}

/* ==============================
   FOOTER — LIGHT BLUE BACKGROUND
   ============================== */
.footer1,
.footer1 * {
    --dark-navy: #1a5fa8 !important;
    --mid-navy: #1a5fa8 !important;
}

.footer1 {
    background: #1a5fa8 !important;
    background-color: #1a5fa8 !important;
}

.coppy-right1 {
    background: #155090 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* ==============================
   PRELOADER — LIGHT BLUE BG
   ============================== */
.preloader-sec {
    background: #e8f1fb !important;
    background: linear-gradient(135deg, #ddeeff 0%, #c8e0f8 50%, #ddeeff 100%) !important;
}

.preloader-sec u:before {
    border-top-color: #2773B7 !important;
}

.preloader-sec u:after {
    border-top-color: #67B346 !important;
}

.preloader-sec .app-loader svg path {
    fill: #2773B7 !important;
}

/* ==============================
   COUNTER / STAT LABELS — Dark text fix
   ============================== */
.about1 .counter-box p,
.about1 .counter-box .pera1 {
    color: var(--medium-text) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
}

.hero-stats-bar .stat-number {
    color: var(--primary-blue) !important;
}

.hero-stats-bar .stat-label {
    color: var(--medium-text) !important;
    font-weight: 600 !important;
}

/* ==============================
   GLOBAL LIGHT THEME — Replace dark blue backgrounds
   ============================== */

/* Service cards — dark blue → white with blue border */
.service-box1 {
    background: #ffffff !important;
    border: 1.5px solid rgba(39, 115, 183, 0.2) !important;
    border-bottom: 4px solid var(--brand-green) !important;
    box-shadow: 0 4px 24px rgba(39, 115, 183, 0.10) !important;
}

.service-box1 .heading1 h4 a {
    color: var(--primary-blue) !important;
}

.service-box1 .heading1 p {
    color: var(--medium-text) !important;
}

/* Our Values section — dark navy → light blue */
.our-values.sp {
    background: #eef5fc !important;
}

.our-values .heading1 h2 {
    color: var(--dark-text) !important;
}

.our-values-box {
    background: #ffffff !important;
    border-left: 4px solid var(--brand-green) !important;
    box-shadow: 0 2px 12px rgba(39, 115, 183, 0.10) !important;
}

.our-values-box .heading1 h4 {
    color: var(--dark-text) !important;
}

.our-values-box .heading1 p {
    color: var(--medium-text) !important;
}

/* Process section dark bg → light */
.process.sp,
.process.bg1 {
    background: #f4f8fd !important;
}

/* About service dark bg → light */
.about-service.bg1 {
    background: #eef5fc !important;
}

.about-service-single-slider {
    background: #ffffff !important;
    border-top: 4px solid var(--primary-blue) !important;
}

.about-service-single-slider .heading4 h4 a {
    color: var(--dark-text) !important;
}

.about-service-single-slider .heading4 p {
    color: var(--medium-text) !important;
}

/* Research/Blog boxes dark → light */
.research-box {
    background: #ffffff !important;
    border: 1px solid rgba(39, 115, 183, 0.12) !important;
    border-top: 4px solid var(--primary-blue) !important;
}

.research-box .heading1 p {
    color: var(--medium-text) !important;
}

/* Process bottom boxes */
.process-bottom-box {
    background: #ffffff !important;
    border: 1px solid rgba(39, 115, 183, 0.12) !important;
}

.process-bottom-box .heading1 p {
    color: var(--medium-text) !important;
}

/* Why choose cards */
.why-choose-card {
    background: #ffffff !important;
    border: 1px solid rgba(39, 115, 183, 0.12) !important;
    box-shadow: 0 2px 12px rgba(39, 115, 183, 0.08) !important;
}

.why-choose-card p {
    color: var(--medium-text) !important;
}

/* Mobile sidebar — keep dark but lighter */
.mobile-sidebar {
    background: #1a5fa8 !important;
}

/* Dark section overrides */
.bg-dark-navy,
[style*="background: var(--dark-navy)"],
[style*="background:var(--dark-navy)"] {
    background: #eef5fc !important;
    color: var(--dark-text) !important;
}

/* Testimonial section */
.test1.sp {
    background: #f4f8fd !important;
}

.single-slider1 {
    background: #ffffff !important;
    border-left: 4px solid var(--primary-blue) !important;
    box-shadow: 0 2px 16px rgba(39, 115, 183, 0.10) !important;
}

.single-slider1 p {
    color: var(--medium-text) !important;
}

/* ==============================
   REMOVE ALL LINK OUTLINES/BORDERS ON HOVER & FOCUS
   ============================== */
a,
a:hover,
a:focus,
a:active,
a:visited,
h4 a,
h4 a:hover,
h4 a:focus,
h3 a:hover,
h3 a:focus,
.service-box1 .heading1 h4 a:focus,
.service-box1 .heading1 h4 a:hover,
.research-box .heading1 h4 a:focus,
.about-service-single-slider .heading4 h4 a:focus {
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
}

/* Only show outline on real keyboard focus for accessibility */
a:focus-visible {
    outline: 2px solid var(--brand-green) !important;
    outline-offset: 3px !important;
    border: none !important;
    box-shadow: none !important;
}

/* ==============================
   FOOTER — WHITE BACKGROUND
   ============================== */
.footer1,
.footer1 {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.coppy-right1 {
    background: #f4f8fd !important;
    border-top: 1px solid rgba(39, 115, 183, 0.15) !important;
}

/* Text colors for white bg */
.footer1 .logo-area p {
    color: var(--medium-text) !important;
}

.footer-col-heading,
.footer1 h3 {
    color: var(--dark-text) !important;
}

.footer-list1 li a {
    color: var(--medium-text) !important;
}

.footer-list1 li a:hover {
    color: var(--primary-blue) !important;
}

.contact-section p,
.contact-section a,
.contact-section p a {
    color: var(--medium-text) !important;
}

.contact-section a:hover,
.contact-section p a:hover {
    color: var(--primary-blue) !important;
}

.coppy-right1 p,
.coppy-right1 p a {
    color: var(--medium-text) !important;
}

/* Social icons */
.footer-social-area1 li a {
    color: var(--primary-blue) !important;
    border-color: rgba(39, 115, 183, 0.3) !important;
}

.footer-social-area1 li a:hover {
    background: var(--primary-blue) !important;
    color: #fff !important;
}

/* ==============================
   COPYRIGHT BAR — FULL FIX
   ============================== */
.coppy-right1 {
    background: #f0f5fb !important;
    border-top: 2px solid rgba(39, 115, 183, 0.15) !important;
    margin: 40px 0 0 0 !important;
    padding: 18px 0 !important;
    width: 100% !important;
}

.coppy-right1 p,
.coppy-right1 p a,
.coppy-right1 .col-lg-8 p,
.coppy-right1 .col-lg-8 p a {
    color: var(--dark-text) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.coppy-right1 p a:hover {
    color: var(--primary-blue) !important;
}

.coppy-right1 .conditons-area1 a {
    color: var(--medium-text) !important;
    font-size: 14px !important;
}

.coppy-right1 .conditons-area1 a:hover {
    color: var(--primary-blue) !important;
}

/* ==============================
   CONTACT INFO ITEMS — Green border → Blue
   ============================== */
.contact-info-item {
    border-left: 3px solid var(--primary-blue) !important;
}

.contact-info-item:hover {
    border-left-color: var(--primary-blue) !important;
}

.contact-section {
    border-left: 3px solid var(--primary-blue) !important;
}

/* ==============================
   SECTION BACKGROUNDS — Plain colors
   ============================== */

/* Service section */
.service.sp {
    background: #F1F5FD !important;
}

.service.sp::before {
    display: none !important;
}

/* Testimonial section */
.test1.sp {
    background: #ffffff !important;
}

.test1.sp::before {
    display: none !important;
}

/* Why choose us section */
.why-grid-section {
    background: #eef5fc !important;
}

.why-grid-section::before {
    display: none !important;
}

/* About section */
.about1.sp {
    background: #ffffff !important;
}

.about1.sp::before {
    display: none !important;
}

/* ==============================
   REMOVE ALL FOCUS/HOVER OUTLINES GLOBALLY
   ============================== */
*,
*:focus,
*:hover,
*:active {
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
}

a,
a:focus,
a:hover,
a:active,
a:visited,
button,
button:focus,
button:hover,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
}

/* Re-apply needed box-shadows only where required */
.header-area.header-area1 {
    box-shadow: 0 2px 20px rgba(15, 82, 134, 0.1) !important;
}

.service-box1 {
    box-shadow: 0 4px 24px rgba(39, 115, 183, 0.10) !important;
}

.single-slider1 {
    box-shadow: 0 2px 16px rgba(39, 115, 183, 0.10) !important;
}

.contact-info-single-box {
    box-shadow: 0 4px 24px rgba(15, 82, 134, 0.10) !important;
}

/* ==============================
   SERVICE CARD TITLES — Dark navy color (same as section heading)
   ============================== */
.service-box1 .heading1 h4 a,
.service-box1 .heading1 h4 a:visited {
    color: #1A2B3C !important;
    font-weight: 800 !important;
}

.service-box1 .heading1 h4 a:hover {
    color: var(--primary-blue) !important;
}

/* ==============================
   HERO BG — WIBE.jpg
   ============================== */
.hero1-bg1 {
    background-image: none !important;
}

/* ==============================
   HERO TEXT — White → Black
   ============================== */
.hero1-single-slider .main-heading1 h1,
.hero1-single-slider .main-heading1 h1 .white {
    color: #ffffff !important;
}

.hero1-single-slider .main-heading1 p,
.hero1-single-slider .main-heading1 p.white {
    color: #e2e8f0 !important;
}

.hero1-single-slider .main-heading1 h1 span {
    color: var(--brand-green) !important;
}

/* Stat bar text */
.hero-stats-bar .stat-number {
    color: #1A2B3C !important;
}

.hero-stats-bar .stat-label {
    color: #3d5166 !important;
}

/* Stat bar background — light so text visible */
.hero-stats-bar .container>div {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(39, 115, 183, 0.2) !important;
}

/* ==============================
   HERO PARAGRAPH — Thicker/Bolder text
   ============================== */
.hero1-single-slider .main-heading1 p {
    font-weight: 600 !important;
    font-size: 18px !important;
    color: #1A2B3C !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

/* ==============================
   GLOBAL — All content text thicker/bolder
   ============================== */
p,
.pera1,
.pera2,
li,
a,
span,
td,
th,
label,
.service-box1 .heading1 p,
.about-service-single-slider .heading4 p,
.our-values-box .heading1 p,
.process-bottom-box .heading1 p,
.research-box .heading1 p,
.why-choose-card p,
.single-slider1 p,
.srcil-tes-text,
.details-content p,
.about-us-text-section p,
.mv-text p,
.commitment-banner p,
.commitment-brochure-banner p,
.footer1 .logo-area p,
.contact-section p,
.contact-section a,
.footer-list1 li a,
.bfc-body,
.why-num-text {
    font-weight: 600 !important;
}

/* ==============================
   TESTIMONIAL CARD — White text
   ============================== */
.srcil-tes-text,
.srcil-tes-card p,
.single-slider1.srcil-tes-card p {
    color: #ffffff !important;
}

/* ======================================================
   INNER PAGE HERO — COLOR.png (Final Override)
   Light bright image — no dark overlay, dark text
   ====================================================== */
.common-hero {
    background-image: url('../img/added/LONG.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Remove dark overlay pseudo-element so image shows clearly */
.common-hero::before {
    display: none !important;
    background: transparent !important;
}

/* Page title → dark navy (readable on light bg) */
.common-hero-heading h1 {
    color: #0d1f35 !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.7) !important;
}

/* Breadcrumb links → dark + BIGGER */
.common-hero .page-change ul li a {
    color: rgba(13, 31, 53, 0.85) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
}

.common-hero .page-change ul li a:hover {
    color: var(--primary-blue) !important;
}

/* Arrow separator bigger */
.common-hero .page-change ul li.arrow {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
}

/* Current breadcrumb item (last li — no link) */
.common-hero .page-change ul li:last-child {
    color: rgba(13, 31, 53, 0.75) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* All breadcrumb li items */
.common-hero .page-change ul li {
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* ==============================
   HERO BG — MAIN.png (Homepage)
   ============================== */
.hero1-bg1 {
    background-image: none !important;
}

.hero1-bg1::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    right: auto !important;
    height: 100% !important;
    width: 100% !important;
    background-image: url('../img/added/MAIN.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    clip-path: none !important;
    z-index: -4 !important;
}

/* ==============================
   HEADER LOGO — Force show
   ============================== */
.site-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    width: auto !important;
    margin: 0 !important;
}

.site-logo a {
    display: inline-flex !important;
    align-items: center !important;
}

.site-logo img,
.header-area1 .site-logo img {
    display: block !important;
    height: 65px !important;
    width: auto !important;
    max-width: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-area1 .header-elements {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 28px 0 !important;
    gap: 20px !important;
}

/* ==============================
   NAV MENU TEXT — Bigger
   ============================== */
.main-menu-ex1>ul>li>a {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--dark-text) !important;
}

/* ==============================
   HEADER — Force logo & button always visible
   ============================== */
.header-area .header-elements,
.header-area1 .header-elements {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 28px 0 !important;
}

.header-area .site-logo,
.header-area1 .site-logo {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
}

.header-area .site-logo img,
.header-area1 .site-logo img {
    display: block !important;
    height: 65px !important;
    width: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-area .header1-buttons,
.header-area1 .header1-buttons {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
}

/* NAV TEXT — Bigger */
.main-menu-ex1>ul>li>a {
    font-size: 19px !important;
    font-weight: 700 !important;
}

/* ==============================
   ABOUT SECTION — Paragraph text bigger
   ============================== */
.about1 .heading1 p,
.about1 p.pera1,
.about1 p {
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
    color: var(--dark-text) !important;
}

/* ==============================
   HEADER — Nav text & Button bigger
   ============================== */
.main-menu-ex1>ul>li>a {
    font-size: 20px !important;
    font-weight: 700 !important;
    padding: 12px 16px !important;
}

.header1-buttons .theme-btn1 {
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
}

/* ==============================
   HEADER — Nav & Button even bigger
   ============================== */
.main-menu-ex1>ul>li>a {
    font-size: 22px !important;
    font-weight: 700 !important;
    padding: 14px 18px !important;
}

.header1-buttons .theme-btn1 {
    font-size: 19px !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
}

/* Logo bhi thodu motu */
.header-area1 .site-logo img,
.site-logo img {
    height: 75px !important;
}

/* NAV — font-weight 500 */
.main-menu-ex1>ul>li>a {
    font-weight: 500 !important;
}

/* ==============================
   TESTIMONIAL CARDS — White bg, Blue text, Blue button
   ============================== */
.single-slider1.srcil-tes-card,
.srcil-tes-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(39, 115, 183, 0.2) !important;
    border-left: 4px solid var(--primary-blue) !important;
}

.srcil-tes-text,
.srcil-tes-card p {
    color: var(--primary-blue) !important;
}

.srcil-tes-quote {
    color: var(--primary-blue) !important;
}

.srcil-tes-footer {
    background: var(--primary-blue) !important;
    border-radius: 40px !important;
}

.srcil-tes-name {
    color: #ffffff !important;
}

.srcil-tes-sub {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ==============================
   TESTIMONIAL — Blue text→White, Green button→Blue
   ============================== */
.single-slider1.srcil-tes-card,
.srcil-tes-card {
    background: var(--primary-blue) !important;
    border: none !important;
    border-left: none !important;
}

.srcil-tes-text,
.srcil-tes-card p {
    color: #ffffff !important;
}

.srcil-tes-quote {
    color: #ffffff !important;
}

/* Footer box — Green → Blue */
.srcil-tes-footer {
    background: var(--primary-blue) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 40px !important;
}

.srcil-tes-name {
    color: #ffffff !important;
}

.srcil-tes-sub {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* TESTIMONIAL CARD — Remove bg */
.single-slider1.srcil-tes-card,
.srcil-tes-card {
    background: #ffffff !important;
}

/* ==============================
   TESTIMONIAL — Premium Corporate White Design
   ============================== */

/* Card */
.single-slider1.srcil-tes-card,
.srcil-tes-card {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    border-left: 1px solid #E5E7EB !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    padding: 32px !important;
}

/* Quote icon */
.srcil-tes-quote {
    color: #0F5286 !important;
    font-size: 48px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    opacity: 1 !important;
}

/* Testimonial text */
.srcil-tes-text,
.srcil-tes-card p,
.single-slider1.srcil-tes-card p {
    color: #0F5286 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
    font-style: italic !important;
}

/* Footer pill */
.srcil-tes-footer {
    background: #ffffff !important;
    border: 1px solid #0F5286 !important;
    border-radius: 40px !important;
    padding: 12px 24px !important;
    margin-top: 20px !important;
    box-shadow: none !important;
}

/* Name */
.srcil-tes-name {
    color: #0F5286 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* Sub label */
.srcil-tes-sub {
    color: #0F5286 !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    opacity: 0.75 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

/* ==============================
   TESTIMONIAL — FINAL CLEAN OVERRIDE
   ============================== */

/* Outer card wrapper */
.srcil-tes-card.single-slider1,
.single-slider1.srcil-tes-card,
.srcil-tes-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Inner card — WHITE bg */
.srcil-tes-card .srcil-tes-inner,
.srcil-tes-inner {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    padding: 32px 28px !important;
}

/* Quote icon — keep GREEN */
.srcil-tes-quote {
    background: var(--brand-green) !important;
    color: #ffffff !important;
}

/* Quote text — BLUE */
.srcil-tes-text {
    color: #0F5286 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    font-style: italic !important;
    line-height: 1.8 !important;
}

/* Footer pill — WHITE bg, BLUE border */
.srcil-tes-footer-inner {
    background: #ffffff !important;
    border: 1px solid #0F5286 !important;
    border-radius: 40px !important;
    padding: 10px 24px !important;
    box-shadow: none !important;
}

/* Name — BLUE */
.srcil-tes-name {
    color: #0F5286 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* Sub — BLUE muted */
.srcil-tes-sub {
    color: #0F5286 !important;
    opacity: 0.7 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Hover — lift only */
.srcil-tes-card:hover .srcil-tes-inner {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(15, 82, 134, 0.12) !important;
}

/* ==============================
   TESTIMONIAL PILL — Single border fix
   ============================== */

/* Remove ALL borders from outer footer wrapper */
.srcil-tes-footer {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-top: 18px !important;
    text-align: center !important;
}

/* Single clean border ONLY on inner pill */
.srcil-tes-footer-inner {
    display: inline-block !important;
    background: #ffffff !important;
    border: 1px solid #0F5286 !important;
    border-radius: 40px !important;
    padding: 10px 28px !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ==============================
   TESTIMONIAL — FINAL REFERENCE STYLE
   ============================== */

/* Inner card — Light blue bg */
.srcil-tes-card .srcil-tes-inner,
.srcil-tes-inner {
    background: #EEF4FF !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07) !important;
    padding: 36px 28px 28px !important;
}

/* Quote circle — Blue */
.srcil-tes-quote {
    background: #0F5286 !important;
    color: #ffffff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

/* Quote text — dark navy, normal weight, readable */
.srcil-tes-text {
    color: #101033 !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 1.7 !important;
    text-align: left !important;
}

/* Footer outer — no border, no bg */
.srcil-tes-footer {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-top: 20px !important;
    text-align: center !important;
}

/* Footer pill — Full BLUE */
.srcil-tes-footer-inner {
    display: inline-block !important;
    background: #0F5286 !important;
    border: none !important;
    border-radius: 40px !important;
    padding: 12px 32px !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Name — white, bold */
.srcil-tes-name {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* Sub — white, lighter */
.srcil-tes-sub {
    color: rgba(255, 255, 255, 0.80) !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 1 !important;
}

/* Hover lift */
.srcil-tes-card:hover .srcil-tes-inner {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(15, 82, 134, 0.14) !important;
}

/* ==============================
   TESTIMONIAL PILL — Pastel Blue Final
   ============================== */
.srcil-tes-footer-inner {
    background: #D6E5F6 !important;
    border: none !important;
    border-radius: 40px !important;
    padding: 12px 32px !important;
    box-shadow: none !important;
    outline: none !important;
    transition: background 0.3s ease !important;
}

.srcil-tes-footer-inner:hover {
    background: #C5D9F0 !important;
}

.srcil-tes-name {
    color: #0F2B5B !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

.srcil-tes-sub {
    color: #0F2B5B !important;
    opacity: 0.75 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* ==============================
   TESTIMONIAL PILL CLASS
   ============================== */
.testimonial-pill {
    background: #D6E5F6;
    color: #0F2B5B;
    border: none;
}

.testimonial-pill h4,
.testimonial-pill p {
    color: #0F2B5B;
}

/* TESTIMONIAL — Bigger fonts */
.srcil-tes-text {
    font-size: 20px !important;
    line-height: 1.75 !important;
}

.srcil-tes-name {
    font-size: 19px !important;
    font-weight: 700 !important;
}

.srcil-tes-sub {
    font-size: 14px !important;
}

/* TESTIMONIAL — Even bigger fonts */
.srcil-tes-text {
    font-size: 22px !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
}

.srcil-tes-name {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0F2B5B !important;
}

.srcil-tes-sub {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #0F2B5B !important;
}

/* Section heading "Say" - bigger */
.test1.sp .heading1 h2,
.test1 h2 {
    font-size: clamp(36px, 4vw, 52px) !important;
    font-weight: 800 !important;
}

/* ==============================
   TESTIMONIAL — Poppins Typography Final
   ============================== */

/* Quote text */
.srcil-tes-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    color: #2B264F !important;
    text-align: left !important;
    letter-spacing: 0px !important;
    font-style: normal !important;
    margin-bottom: 20px !important;
}

/* Title */
.srcil-tes-name {
    font-family: 'Poppins', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0B0B4F !important;
    line-height: 1.3 !important;
}

/* Subtitle */
.srcil-tes-sub {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #6B7280 !important;
    opacity: 1 !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
}

/* ======================================================
   TESTIMONIAL CARDS — STYLE FROM FIRST IMAGE
   ====================================================== */

/* 1. Card Container & Wrapper */
.srcil-tes-card.single-slider1,
.single-slider1.srcil-tes-card,
.srcil-tes-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 15px !important;
}

.srcil-tes-card .srcil-tes-inner,
.srcil-tes-inner {
    background: #F4F8FC !important;
    /* Premium soft light blue card background */
    border: 1px solid rgba(15, 82, 134, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(15, 82, 134, 0.04) !important;
    padding: 40px 32px 32px !important;
    position: relative !important;
    text-align: left !important;
    min-height: 350px !important;
    /* Make card taller as requested */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.3s ease !important;
}

/* Hover Lift */
.srcil-tes-card:hover .srcil-tes-inner {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 40px rgba(15, 82, 134, 0.15) !important;
}

/* 2. Left Aligned Overlapping Quote Circle */
.srcil-tes-card .srcil-tes-quote {
    position: absolute !important;
    top: -24px !important;
    left: 32px !important;
    transform: none !important;
    background: #0F5286 !important;
    /* Premium Blue */
    color: #ffffff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-shadow: 0 4px 12px rgba(15, 82, 134, 0.25) !important;
    z-index: 3 !important;
}

/* 3. Quote Text — Large, non-italic, clean sans-serif */
.single-slider1.srcil-tes-card p.srcil-tes-text,
.srcil-tes-card .srcil-tes-inner p.srcil-tes-text,
.srcil-tes-card p,
.single-slider1.srcil-tes-card p,
.srcil-tes-inner .srcil-tes-text,
p.srcil-tes-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 27px !important;
    /* Set to 27px as requested */
    font-weight: 500 !important;
    line-height: 1.6 !important;
    color: #1A2B3C !important;
    /* Dark navy */
    font-style: normal !important;
    text-align: left !important;
    margin-bottom: 24px !important;
}

/* 4. Footer Wrapper — Left aligned, no pill background/border */
.srcil-tes-footer {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-top: 24px !important;
    text-align: left !important;
}

.srcil-tes-footer-inner,
.testimonial-pill {
    display: block !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-align: left !important;
}

/* 5. Author Name — Bold and Navy */
.srcil-tes-name {
    font-family: 'Poppins', sans-serif !important;
    font-size: 24px !important;
    /* Made a bit larger */
    font-weight: 700 !important;
    color: #1A2B3C !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* 6. Author Subtitle — Grayish/muted blue below the name */
.srcil-tes-sub {
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    /* Made a bit larger */
    font-weight: 500 !important;
    color: #64748B !important;
    /* Modern slate gray */
    opacity: 1 !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
    margin-top: 4px !important;
}

/* ==============================
   HOMEPAGE GLASSY NAV LINK COLORS
   ============================== */

/* On load (transparent overlay state), homepage text is white */
.home-page .header-area1:not(.sticky) .main-menu-ex1>ul>li>a {
    color: #ffffff !important;
}

.home-page .header-area1:not(.sticky) .main-menu-ex1>ul>li>a i {
    color: #ffffff !important;
}

.home-page .header-area1:not(.sticky) .main-menu-ex1>ul>li>a:hover {
    color: var(--brand-green) !important;
}

.home-page .header-area1:not(.sticky) .main-menu-ex1>ul>li>a:hover i {
    color: var(--brand-green) !important;
}

/* Sticky state (white background), homepage text transitions back to dark navy */
.home-page .header-area1.sticky .main-menu-ex1>ul>li>a {
    color: #1A2B3C !important;
}

.home-page .header-area1.sticky .main-menu-ex1>ul>li>a i {
    color: #1A2B3C !important;
}

.home-page .header-area1.sticky .main-menu-ex1>ul>li>a:hover {
    color: var(--brand-green) !important;
}

.home-page .header-area1.sticky .main-menu-ex1>ul>li>a:hover i {
    color: var(--brand-green) !important;
}

/* Sticky state padding reduction */
.header-area.header-area1.sticky .header-elements {
    padding: 15px 0 !important;
}

/* SERVICE CARD — Bigger image height */
.service-box1 .image {
    height: 320px !important;
}

.service-box1 .image img {
    height: 320px !important;
    object-fit: cover !important;
}

/* SERVICE CARD — Read More button bigger */
.service-box1 .heading1 a.learn {
    font-size: 15px !important;
    padding: 16px 32px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
}

/* ==============================
   GLOBAL BUTTONS — Green + Blue Gradient
   ============================== */

/* Theme btn1 */
.theme-btn1,
.theme-btn1:visited {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    border: none !important;
    color: #ffffff !important;
}

.theme-btn1:hover {
    background: linear-gradient(135deg, #67B346 0%, #2773B7 100%) !important;
    border: none !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Theme btn2 */
.theme-btn2,
.theme-btn2:visited {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    border: none !important;
    color: #ffffff !important;
}

.theme-btn2:hover {
    background: linear-gradient(135deg, #67B346 0%, #2773B7 100%) !important;
    border: none !important;
    color: #ffffff !important;
}

/* Theme btn3 */
.theme-btn3,
.theme-btn3:visited {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    border: none !important;
    color: #ffffff !important;
}

/* Read More buttons */
.service-box1 .heading1 a.learn,
a.learn {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    border: none !important;
    color: #ffffff !important;
}

.service-box1 .heading1 a.learn:hover,
a.learn:hover {
    background: linear-gradient(135deg, #67B346 0%, #2773B7 100%) !important;
    color: #ffffff !important;
}

/* Header Business Inquiry button */
.header1-buttons .theme-btn1 {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    border: none !important;
    color: #ffffff !important;
}

.header1-buttons .theme-btn1:hover {
    background: linear-gradient(135deg, #67B346 0%, #2773B7 100%) !important;
    border: none !important;
}

/* ==============================
   GLOBAL SECTION BACKGROUNDS — COLOR.png + bg-1.svg
   ============================== */

/* About section */
.about1.sp {
    background-image: url('../img/added/COLOR.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Service section */
.service.sp {
    background-image: url('../img/added/bg-1.svg'), url('../img/added/COLOR.png') !important;
    background-size: 400px, cover !important;
    background-position: right center, center !important;
    background-repeat: no-repeat, no-repeat !important;
}

/* Testimonial section */
.test1.sp {
    background-image: url('../img/added/bg-1.svg'), url('../img/added/COLOR.png') !important;
    background-size: 350px, cover !important;
    background-position: left center, center !important;
    background-repeat: no-repeat, no-repeat !important;
}

/* Why choose section */
.why-grid-section {
    background-image: url('../img/added/bg-1.svg'), url('../img/added/COLOR.png') !important;
    background-size: 400px, cover !important;
    background-position: right bottom, center !important;
    background-repeat: no-repeat, no-repeat !important;
}

/* Process section */
.process.sp,
.about-service.bg1 {
    background-image: url('../img/added/bg-1.svg') !important;
    background-size: 350px !important;
    background-position: left top !important;
    background-repeat: no-repeat !important;
    background-color: #eef5fc !important;
}

/* Product pages */
.research.sp,
.product-area {
    background-image: url('../img/added/bg-1.svg') !important;
    background-size: 300px !important;
    background-position: right center !important;
    background-repeat: no-repeat !important;
    background-color: #f4f8fd !important;
}

/* Footer */
.footer1 {
    background-image: url('../img/added/bg-1.svg') !important;
    background-size: 280px !important;
    background-position: right bottom !important;
    background-repeat: no-repeat !important;
    background-color: #ffffff !important;
}

/* ==============================
   HOME PAGE — Remove all section backgrounds
   ============================== */
.about1.sp,
.service.sp,
.test1.sp,
.why-grid-section,
.process.sp,
.about-service.bg1,
.footer1 {
    background-image: none !important;
}

.about1.sp {
    background-color: #ffffff !important;
}

.service.sp {
    background-color: #F1F5FD !important;
}

.test1.sp {
    background-color: #ffffff !important;
}

.why-grid-section {
    background-color: #eef5fc !important;
}

.process.sp {
    background-color: #f4f8fd !important;
}

.about-service.bg1 {
    background-color: #eef5fc !important;
}

.footer1 {
    background-color: #ffffff !important;
}

/* HEADER — Less padding */
.header-area1 .header-elements,
.header-area .header-elements {
    padding: 10px 0 !important;
}

/* TESTIMONIAL — Smaller fonts */
.srcil-tes-inner .srcil-tes-text,
.srcil-tes-card .srcil-tes-text,
p.srcil-tes-text {
    font-size: 17px !important;
    line-height: 1.7 !important;
}

.srcil-tes-name {
    font-size: 18px !important;
}

.srcil-tes-sub {
    font-size: 14px !important;
}

/* TESTIMONIAL — Smaller fonts */
.srcil-tes-inner .srcil-tes-text,
.srcil-tes-card .srcil-tes-text,
p.srcil-tes-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.srcil-tes-name {
    font-size: 16px !important;
}

.srcil-tes-sub {
    font-size: 13px !important;
}

/* ==============================
   WHY CHOOSE US — Light theme cards
   ============================== */

/* Section bg - light */
.why-grid-section {
    background-color: #f4f8fd !important;
}

/* Section title */
.why-grid-title {
    color: var(--dark-text) !important;
}

/* Feature cards — bfc-card */
.bfc-card {
    background: #ffffff !important;
    border: 1px solid rgba(39, 115, 183, 0.15) !important;
    box-shadow: 0 4px 16px rgba(39, 115, 183, 0.08) !important;
}

/* Card header — gradient instead of solid green */
.bfc-header {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    color: #ffffff !important;
}

/* Card body text */
.bfc-body {
    color: var(--medium-text) !important;
    background: #ffffff !important;
}

/* Numbered cards */
.why-num-card {
    background: #ffffff !important;
    border: 1px solid rgba(39, 115, 183, 0.15) !important;
    box-shadow: 0 2px 10px rgba(39, 115, 183, 0.07) !important;
}

.why-num-badge {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    color: #ffffff !important;
}

.why-num-text {
    color: var(--dark-text) !important;
}

/* Commitment banner */
.commitment-brochure-banner {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    color: #ffffff !important;
}

.commitment-brochure-banner h2,
.commitment-brochure-banner p {
    color: #ffffff !important;
}

/* ==============================
   WHY NUM CARDS — Black text, no hover color change
   ============================== */
.why-num-card {
    background: #ffffff !important;
    border: 1px solid rgba(39, 115, 183, 0.15) !important;
    transition: none !important;
}

.why-num-card:hover {
    background: #ffffff !important;
    border-color: rgba(39, 115, 183, 0.25) !important;
    transform: none !important;
}

.why-num-text {
    color: #1A2B3C !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.why-num-badge {
    background: linear-gradient(135deg, #2773B7 0%, #67B346 100%) !important;
    color: #ffffff !important;
    flex-shrink: 0 !important;
}

/* WHY NUM TEXT — Force black */
.why-num-card .why-num-text,
.why-num-card div.why-num-text,
div.why-num-card .why-num-text {
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ==============================
   ALL BUTTONS — Square shape
   ============================== */
.theme-btn1,
.theme-btn2,
.theme-btn3,
.header1-buttons .theme-btn1,
.service-box1 .heading1 a.learn,
a.learn,
.mobile-button .theme-btn3,
button,
input[type="submit"],
input[type="button"] {
    border-radius: 0px !important;
}

/* TESTIMONIAL QUOTE — Exact style */
.srcil-tes-inner .srcil-tes-text,
.srcil-tes-card .srcil-tes-text,
.single-slider1 .srcil-tes-text,
p.srcil-tes-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 25px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    color: #1A2B3C !important;
    font-style: normal !important;
    text-align: left !important;
    margin-bottom: 24px !important;
}

/* TESTIMONIAL CARD — Less padding */
.srcil-tes-card .srcil-tes-inner,
.srcil-tes-inner {
    padding: 20px 18px !important;
}

/* TESTIMONIAL — Smaller fonts */
.srcil-tes-inner .srcil-tes-text,
.srcil-tes-card .srcil-tes-text,
p.srcil-tes-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 14px !important;
}

.srcil-tes-name {
    font-size: 15px !important;
}

.srcil-tes-sub {
    font-size: 12px !important;
}

/* ==============================
   ALL BUTTONS — Solid Blue #2773B7
   ============================== */
.theme-btn1,
.theme-btn1:visited,
.theme-btn2,
.theme-btn2:visited,
.theme-btn3,
.theme-btn3:visited,
.header1-buttons .theme-btn1,
.service-box1 .heading1 a.learn,
a.learn,
.mobile-button .theme-btn3 {
    background: #2773B7 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: none !important;
}

.theme-btn1:hover,
.theme-btn2:hover,
.theme-btn3:hover,
.header1-buttons .theme-btn1:hover,
.service-box1 .heading1 a.learn:hover,
a.learn:hover {
    background: #1a5fa8 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: none !important;
}

/* ==============================
   ABOUT PAGE — Full Theme Fix
   ============================== */

/* About heading green → blue */
.about-green-heading {
    color: var(--primary-blue) !important;
}

/* Why Choose SRCIL — section bg */
.about-service.bg1 {
    background: #f4f8fd !important;
    background-image: none !important;
}

/* Why Choose cards */
.about-service-single-slider {
    background: #ffffff !important;
    border: 1px solid rgba(39, 115, 183, 0.12) !important;
    border-top: 3px solid var(--primary-blue) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(39, 115, 183, 0.08) !important;
}

/* Remove green round from icon — make it plain/blue */
.about-service-single-slider .icon {
    background: #e8f1fb !important;
    border-radius: 10px !important;
    padding: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
}

.about-service-single-slider .icon img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 0 !important;
    filter: none !important;
}

/* Card title */
.about-service-single-slider .heading4 h4 a {
    color: var(--dark-text) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* Card text */
.about-service-single-slider .heading4 p {
    color: var(--medium-text) !important;
    font-size: 15px !important;
}

/* Process section — Core Services */
.process-bottom-box {
    background: #ffffff !important;
    border: 1px solid rgba(39, 115, 183, 0.12) !important;
    border-radius: 12px !important;
    padding: 24px !important;
    box-shadow: 0 4px 16px rgba(39, 115, 183, 0.07) !important;
}

/* Process icon — remove green round */
.process-bottom-box .icon {
    background: #e8f1fb !important;
    border-radius: 10px !important;
    padding: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
}

.process-bottom-box .icon img {
    border-radius: 8px !important;
    width: 70px !important;
    height: 70px !important;
}

/* Process card title — green → blue */
.process-bottom-box .heading1 h4 a {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
}

.process-bottom-box .heading1 p {
    color: var(--medium-text) !important;
}

/* Mission/Vision sections */
.mv-block-dark {
    background: #f4f8fd !important;
}

.mv-block-light {
    background: #ffffff !important;
}

.mv-block-dark .mv-heading,
.mv-block-light .mv-heading {
    color: var(--primary-blue) !important;
}

.mv-block-dark .mv-text p,
.mv-block-light .mv-text p {
    color: var(--medium-text) !important;
}

/* Nav slider buttons */
.about-service-buttons button {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    border: none !important;
}

.about-service-buttons button:hover {
    background: var(--brand-green) !important;
}

/* ==============================
   ABOUT PAGE — Final fixes
   ============================== */

/* Read More button — Blue + Square */
.about-service-single-slider a.learn {
    background: #2773B7 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-radius: 0px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 12px 24px !important;
    border: none !important;
}

.about-service-single-slider a.learn:hover {
    background: #1a5fa8 !important;
    color: #ffffff !important;
}

/* Card title — bigger */
.about-service-single-slider .heading4 h4 a {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--dark-text) !important;
}

/* Process card title — bigger */
.process-bottom-box .heading1 h4 a {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
}

/* Hide icon area if empty */
.about-service-single-slider .icon:empty,
.process-bottom-box .icon:empty {
    display: none !important;
}

/* PROCESS CARDS — Remove link styling from titles */
.process-bottom-box .heading1 h4 a,
.process-bottom-box .heading1 h4 a:hover,
.process-bottom-box .heading1 h4 a:focus {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
    color: var(--dark-text) !important;
}

/* ABOUT SERVICE CARDS — Remove link styling from titles */
.about-service-single-slider .heading4 h4 a,
.about-service-single-slider .heading4 h4 a:hover,
.about-service-single-slider .heading4 h4 a:focus {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
    color: var(--dark-text) !important;
}

/* MISSION/VISION BADGE — Green → Blue */
.mv-badge {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
}

/* MISSION/VISION HEADING — Same dark navy as main heading */
.mv-heading {
    color: #1A2B3C !important;
    font-weight: 800 !important;
}

/* ==============================
   CLIENTS PAGE — Green → Blue
   ============================== */

/* "Industries We Serve" heading */
.clients-page h2,
.industries-heading,
h2.text-44.title1,
.srcil-industry-heading {
    color: var(--primary-blue) !important;
}

/* Client logo cards — green border → blue */
.srcil-client-card,
.client-logo-box,
.brand-box,
.clients-logo-box {
    border-color: var(--primary-blue) !important;
}

/* Green underline under headings → blue */
.heading1 .span1,
.section-heading::after,
h2::after {
    background: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

/* Any remaining green text → blue */
.green-text,
.text-green,
[style*="color: #67B346"],
[style*="color:#67B346"],
[style*="color: green"] {
    color: var(--primary-blue) !important;
}

/* Industries section icons — green → blue */
.industry-icon,
.srcil-industry-icon {
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

/* Bottom green dot/scroll button */
.progress-wrap svg.progress-circle path {
    stroke: var(--primary-blue) !important;
}

.progress-wrap {
    background: var(--primary-blue) !important;
}

.progress-wrap::after {
    color: #ffffff !important;
}

/* CLIENTS PAGE — Specific fixes */
.clients-brochure-title {
    color: var(--primary-blue) !important;
}

/* Company We Represent — green top border → blue */
div[style*="border-top: 4px solid var(--brand-green)"] {
    border-top-color: var(--primary-blue) !important;
}

.we-represent-title {
    color: var(--dark-text) !important;
}

/* ==============================
   PRODUCT CARDS — Top border green → blue
   ============================== */
.research-box,
.product-card,
.srcil-product-card,
.research-box.mt-30,
.col-lg-4 .research-box,
.col-lg-3 .research-box {
    border-top: 4px solid var(--primary-blue) !important;
    border-left: none !important;
}

/* Image top border inside card */
.research-box .image,
.research-box .image img {
    border-top: none !important;
}

/* Card hover top border */
.research-box:hover {
    border-top-color: var(--primary-blue) !important;
}

/* ==============================
   PRODUCT CARDS — All blue
   ============================== */

/* Product name/title — green → blue */
.research-box .heading1 h4 a,
.research-box .heading1 h4,
.research-box h4 a,
.research-box h4 {
    color: var(--primary-blue) !important;
}

.research-box .heading1 h4 a:hover {
    color: #1a5fa8 !important;
}

/* Card top border — solid blue only */
.research-box {
    border-top: 4px solid var(--primary-blue) !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* Remove any green from card */
.research-box * {
    border-color: var(--primary-blue) !important;
}

/* Keep card border only on top */
.research-box {
    box-shadow: 0 4px 20px rgba(39, 115, 183, 0.10) !important;
    border: 1px solid rgba(39, 115, 183, 0.12) !important;
    border-top: 4px solid var(--primary-blue) !important;
}

/* ==============================
   RESEARCH/PRODUCT CARD — Pure blue top bar only
   ============================== */
.research-box {
    border-top: 5px solid #2773B7 !important;
    border-bottom: 1px solid rgba(39, 115, 183, 0.12) !important;
    border-left: 1px solid rgba(39, 115, 183, 0.12) !important;
    border-right: 1px solid rgba(39, 115, 183, 0.12) !important;
    border-image: none !important;
    background-image: none !important;
    outline: none !important;
}

/* Remove any gradient/rainbow border */
.research-box::before,
.research-box::after {
    display: none !important;
    border: none !important;
    background: none !important;
}

/* Image top area — no extra border */
.research-box .image,
.research-box .image._relative {
    border: none !important;
    border-top: none !important;
    outline: none !important;
}

/* Read More button — blue */
.research-box a.learn,
.research-box .heading1 a.learn {
    background: #2773B7 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-radius: 0px !important;
    border: none !important;
}

/* OUR SERVICE badge — White bg, Black text FINAL */
.heading1 .span1,
span.span1,
.span1 {
    background: #ffffff !important;
    color: #1A2B3C !important;
    border-left: 3px solid var(--primary-blue) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

/* ==============================
   ALL BUTTONS — Perfect center text FINAL
   ============================== */
.theme-btn1,
.theme-btn2,
.theme-btn3,
a.learn,
.service-box1 .heading1 a.learn,
.research-box a.learn,
.research-box .heading1 a.learn,
.about-service-single-slider a.learn,
.header1-buttons .theme-btn1,
button[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px !important;
}

/* Hide arrow2 completely everywhere */
.theme-btn1 .arrow2,
.theme-btn2 .arrow2,
.theme-btn3 .arrow2,
a.learn .arrow2,
button .arrow2 {
    display: none !important;
}

/* Arrow1 inline */
.theme-btn1 .arrow1,
.theme-btn2 .arrow1,
.theme-btn3 .arrow1,
a.learn .arrow1 {
    display: inline-flex !important;
    align-items: center !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* ==============================
   WHY CHOOSE — Pure Blue, No Gradient
   ============================== */
.bfc-header {
    background: #2773B7 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-radius: 40px !important;
}

.why-num-badge {
    background: #2773B7 !important;
    background-image: none !important;
    color: #ffffff !important;
}

.commitment-brochure-banner {
    background: #2773B7 !important;
    background-image: none !important;
    color: #ffffff !important;
}

.commitment-brochure-banner h2,
.commitment-brochure-banner p {
    color: #ffffff !important;
}

/* COPYRIGHT BAR — White bg, dark text FINAL */
.coppy-right1 {
    background: #ffffff !important;
    border-top: 1px solid rgba(39, 115, 183, 0.12) !important;
    margin: 30px 0 0 0 !important;
    padding: 16px 0 !important;
}

.coppy-right1 p,
.coppy-right1 p a,
.coppy-right1 .col-lg-8 p,
.coppy-right1 .col-lg-8 p a,
.conditons-area1 a {
    color: #1A2B3C !important;
    font-size: 14px !important;
}

.coppy-right1 p a:hover,
.conditons-area1 a:hover {
    color: var(--primary-blue) !important;
}

/* FOOTER — Remove hexagon shape completely */
.footer1::after,
.footer1::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
    clip-path: none !important;
}

/* FOOTER CONTACT SECTION — Remove left border lines */
.contact-section {
    border-left: none !important;
    border: none !important;
    background: transparent !important;
    padding: 8px 0 !important;
    margin-bottom: 8px !important;
}

.contact-section:hover {
    background: transparent !important;
}

/* SOCIAL ICONS — No bg, no hover effect */
.footer-social-area1 li a {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    color: var(--primary-blue) !important;
    font-size: 20px !important;
    padding: 4px 8px !important;
    transition: none !important;
}

.footer-social-area1 li a:hover {
    background: transparent !important;
    color: var(--primary-blue) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* SOCIAL ICONS — Blue circular background */
.footer-social-area1 li a {
    background: #2773B7 !important;
    color: #ffffff !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    padding: 0 !important;
    transition: background 0.3s ease !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-social-area1 li a:hover {
    background: #1a5fa8 !important;
    color: #ffffff !important;
    transform: none !important;
}

/* ==============================
   ALL PAGES — Nav text WHITE always
   ============================== */
.header-area1 .main-menu-ex1 > ul > li > a,
.header-area.header-area1 .main-menu-ex1 > ul > li > a {
    color: #ffffff !important;
}

.header-area1 .main-menu-ex1 > ul > li > a i,
.header-area.header-area1 .main-menu-ex1 > ul > li > a i {
    color: #ffffff !important;
}

.header-area1 .main-menu-ex1 > ul > li > a:hover,
.header-area.header-area1 .main-menu-ex1 > ul > li > a:hover {
    color: var(--brand-green) !important;
}

/* Sticky state — dark text */
.header-area1.sticky .main-menu-ex1 > ul > li > a,
.header-area.header-area1.sticky .main-menu-ex1 > ul > li > a {
    color: #1A2B3C !important;
}

.header-area1.sticky .main-menu-ex1 > ul > li > a:hover {
    color: var(--primary-blue) !important;
}

/* NAV HOVER — Blue */
.header-area1 .main-menu-ex1 > ul > li > a:hover,
.header-area.header-area1 .main-menu-ex1 > ul > li > a:hover {
    color: var(--primary-blue) !important;
}

/* NAV HOVER — Blue on ALL pages always */
.main-menu-ex1 > ul > li > a:hover,
.main-menu-ex1 > ul > li:hover > a,
.header-area1 .main-menu-ex1 > ul > li > a:hover,
.header-area1 .main-menu-ex1 > ul > li:hover > a,
.home-page .header-area1 .main-menu-ex1 > ul > li > a:hover,
.home-page .header-area1.sticky .main-menu-ex1 > ul > li > a:hover {
    color: var(--primary-blue) !important;
}

/* Green underline remove — blue instead */
.main-menu-ex1 > ul > li > a::after {
    background: var(--primary-blue) !important;
}

/* ==============================
   NAV — No hover color change, No underline
   ============================== */
.main-menu-ex1 > ul > li > a,
.main-menu-ex1 > ul > li > a:hover,
.main-menu-ex1 > ul > li:hover > a,
.header-area1 .main-menu-ex1 > ul > li > a,
.header-area1 .main-menu-ex1 > ul > li > a:hover,
.header-area1 .main-menu-ex1 > ul > li:hover > a {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Remove underline animation completely */
.main-menu-ex1 > ul > li > a::after,
.main-menu-ex1 > ul > li > a:hover::after,
.main-menu-ex1 > ul > li:hover > a::after {
    display: none !important;
    content: none !important;
    transform: scaleX(0) !important;
    opacity: 0 !important;
    height: 0 !important;
    background: none !important;
}


/* ==============================
   WHY CHOOSE US — New Hub Layout
   ============================== */
.wcu-section {
    background: #ffffff;
    padding: 80px 0 90px;
}

/* Title */
.wcu-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 46px);
    color: #1a2b3c;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.wcu-highlight {
    display: inline-block;
    background: #2773B7;
    color: #fff;
    padding: 0 5px 2px 5px;
    border-radius: 3px;
    line-height: 1.15;
    font-weight: 900;
}

/* 3-column layout */
.wcu-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.wcu-col {
    flex: 1;
}

/* Left col — text right-aligned, icon on right */
.wcu-col-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 40px;
}

/* Right col — icon on left, text left-aligned */
.wcu-col-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
}

/* Center col — now defined with wcu-center-circle block above */

/* Feature rows */
.wcu-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wcu-feature-left {
    justify-content: flex-start;
    flex-direction: row;
}

.wcu-feature-right {
    justify-content: flex-start;
    flex-direction: row;
}

/* Text block */
.wcu-text h4 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #0b1f3a;
    margin: 0 0 6px 0;
    text-align: left !important;
}

.wcu-text p {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    text-align: left !important;
}

/* Both left and right text blocks — always left aligned */
.wcu-text-right,
.wcu-text-left,
.wcu-text {
    text-align: left !important;
}

/* Icon circle — light cyan */
.wcu-icon-circle {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #d6f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0e7fa0;
    border: 2px solid #b2e4e8;
    transition: var(--transition);
}

.wcu-icon-circle:hover {
    background: var(--secondary-blue);
    color: #fff;
    border-color: var(--secondary-blue);
}

/* Center circle image */
.wcu-center-circle {
    width: 460px;
    height: 460px;
    border-radius: 0;
    border: none;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    flex-shrink: 0;
    padding: 0;
}

.wcu-center-circle img {
    width: 460px;
    height: 460px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 0;
}

/* Center col */
.wcu-col-center {
    flex: 0 0 auto;
    width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Mobile Responsive ── */
@media (max-width: 991px) {
    .wcu-layout {
        flex-direction: column;
        gap: 40px;
    }

    .wcu-col-left,
    .wcu-col-right {
        width: 100%;
        padding: 0;
        gap: 24px;
    }

    .wcu-col-center {
        width: 100%;
        justify-content: center;
    }

    .wcu-feature-left,
    .wcu-feature-right {
        justify-content: flex-start;
        flex-direction: row;
    }

    .wcu-text-right,
    .wcu-text-left,
    .wcu-text,
    .wcu-text h4,
    .wcu-text p {
        text-align: left !important;
    }

    /* On mobile left features: keep same order, no reverse */
    .wcu-feature-left {
        flex-direction: row;
        justify-content: flex-start;
    }

    .wcu-feature-left .wcu-text {
        text-align: left !important;
    }

    .wcu-center-circle {
        width: 220px;
        height: 220px;
    }

    .wcu-center-circle img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 575px) {
    .wcu-section {
        padding: 50px 0 60px;
    }

    .wcu-title {
        margin-bottom: 36px;
    }

    .wcu-center-circle {
        width: 200px;
        height: 200px;
    }

    .wcu-center-circle img {
        width: 200px;
        height: 200px;
    }

    .wcu-icon-circle {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* ==============================
   INDUSTRIES WE SERVE SECTION
   ============================== */
.iws-section {
    background: #f4f8fd;
    padding: 70px 0 80px;
}

.iws-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(26px, 3.5vw, 40px);
    color: #1a2b3c;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 48px;
}

/* 5 columns desktop, responsive */
.iws-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Card */
.iws-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(15, 82, 134, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.iws-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(15, 82, 134, 0.16);
}

/* Image area */
.iws-img-wrap {
    width: 100%;
    height: 130px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.iws-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.iws-card:hover .iws-img-wrap img {
    transform: scale(1.06);
}

/* Industry name */
.iws-name {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a2b3c;
    text-align: center;
    padding: 14px 10px;
    line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .iws-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .iws-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .iws-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .iws-img-wrap {
        height: 100px;
    }

    .iws-name {
        font-size: 13px;
        padding: 10px 8px;
    }
}

/* ==============================
   INDUSTRY CARD — image+name style (clients.php)
   ============================== */
.industry-card .iws-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.industry-card .iws-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.industry-card:hover .iws-img-wrap img {
    transform: scale(1.06);
}

/* Remove old icon-wrap styling when image is used */
.industry-card:has(.iws-img-wrap) .industry-icon-wrap {
    display: none;
}

.industry-card:has(.iws-img-wrap) h3 {
    padding: 12px 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #1a2b3c;
}

/* Override card padding when image is used */
.industry-card:has(.iws-img-wrap) {
    padding: 0 !important;
    overflow: hidden !important;
    align-items: stretch !important;
}

.industry-card:has(.iws-img-wrap)::before {
    display: none !important;
}

/* ==============================
   CERTIFICATE PAGE
   ============================== */
.cert-section {
    background: #f4f8fd;
}

/* Card */
.cert-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(15, 82, 134, 0.10);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(15, 82, 134, 0.18);
    border-color: #67B346;
}

/* Image area */
.cert-img-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 560px;
    background: #fff;
}

.cert-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
    padding: 10px;
}

.cert-card:hover .cert-img-wrap img {
    transform: scale(1.03);
}

/* Hover overlay */
.cert-overlay {
    display: none;
}

/* Label bar */
.cert-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a2b3c;
    background: #fff;
    border-top: 1px solid rgba(15, 82, 134, 0.08);
}

.cert-label i {
    color: #67B346;
    font-size: 16px;
}

/* ── Lightbox ── */
.cert-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.cert-lightbox-inner {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    margin: auto;
}

.cert-lightbox-inner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.cert-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #1a2b3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: background 0.2s;
}

.cert-close:hover {
    background: #67B346;
}

/* ==============================
   CLIENTS — 4+4 grid layout
   ============================== */
.represent-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 740px;
    margin: 0 auto;
}

.represent-grid .srcil-represent-card {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
}

/* Tablet */
@media (max-width: 991px) {
    .represent-grid .srcil-represent-card {
        flex: 0 0 140px;
        width: 140px;
        height: 140px;
    }
    .represent-grid {
        max-width: 640px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .represent-grid .srcil-represent-card {
        flex: 0 0 130px;
        width: 130px;
        height: 130px;
    }
    .represent-grid {
        gap: 14px;
        max-width: 100%;
    }
}
