/* =========================================================================
   RESET & VARIABLES
   ========================================================================= */
:root {
    --primary-blue: #12304A;
    /* Industrial Navy */
    --primary-dark: #0E253A;
    /* Darker Navy Hover */
    --navy-dark: #1F2937;
    /* Engineering Gray */
    --footer-gray: #F8F9FA;
    /* Background Gray */
    --navbar-blue: #12304A;
    /* Industrial Navy */
    --bg-light: #F8F9FA;
    /* Background Gray */
    --text-dark: #1F2937;
    /* Engineering Gray Text */
    --text-muted: #6B7280;
    /* Secondary Text Gray */
    --accent-orange: #E53935;
    /* Muted Industrial Orange Accent */
    --accent-orange-hover: #B71C1C;
    /* Darker Orange Accent Hover */
    --border-color: #D9E0E7;
    /* Soft Corporate Border Gray */
    --white: #ffffff;
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #000;
    line-height: 1.3;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Spacing Utilities */
.section-padding {
    padding: 80px 0;
}

.py-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-4 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.my-5 {
    margin-top: 50px;
    margin-bottom: 50px;
}

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

/* =========================================================================
   TOP BAR & HEADER
   ========================================================================= */
.top-bar {
    background-color: #1a1a1a;
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    margin-right: 20px;
}

.top-contact a:hover {
    color: var(--primary-blue);
}

.top-contact i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.top-social a {
    margin-left: 15px;
}

.top-social a:hover {
    color: var(--primary-blue);
}

.main-header {
    background-color: var(--white);
    padding: 15px 0;
}

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

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box .icon {
    font-size: 24px;
    color: var(--primary-blue);
    background: #eef5ff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box .text {
    font-size: 14px;
    font-weight: 500;
}

.info-box .text a {
    color: var(--text-dark);
}

.info-box .text a:hover {
    color: var(--primary-blue);
}

.btn-ecat {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ecat:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    background-color: var(--navbar-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: slideDown 0.3s ease-in-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 56px;
}

.nav-links {
    display: flex;
}

.nav-links li a {
    display: block;
    padding: 18px 18px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.nav-links li a:hover,
.nav-links li a.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown i {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

/* Base styling for submenus if they exist */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a {
    color: var(--white);
    font-size: 18px;
}

.nav-icons a:hover {
    opacity: 0.8;
}

.nav-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-right: 2px;
    font-size: 14px;
    color: #fff !important;
    transition: all 0.3s ease;
}

.nav-social-icon:hover {
    background: #fff;
    color: var(--navbar-blue) !important;
}

@media (max-width: 768px) {
    .nav-social-icon {
        display: none;
        /* Hide social icons in mobile nav bar to save space */
    }
}

/* =========================================================================
   HERO SECTION — PREMIUM MINIMAL
   ========================================================================= */
.hero-section {
    position: relative;
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: background-image 0.8s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(8, 12, 28, 0.92) 0%,
            rgba(8, 12, 28, 0.78) 40%,
            rgba(8, 12, 28, 0.55) 70%,
            rgba(8, 12, 28, 0.35) 100%);
}

/* Subtle particle dots */
.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle, rgba(227, 30, 36, 0.06) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
    animation: heroParticleShift 18s linear infinite;
}

@keyframes heroParticleShift {
    0% {
        background-position: 0 0, 30px 30px;
    }

    100% {
        background-position: 60px 60px, 90px 90px;
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 5;
    color: #ffffff;
    max-width: 760px;
    padding-top: 40px;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.35);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: heroFadeUp 0.9s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.25);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(227, 30, 36, 0.1);
    }
}

/* Heading */
.hero-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
    animation: heroFadeUp 0.9s 0.18s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-title-accent {
    color: var(--accent-orange);
    display: inline;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(15px, 1.9vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
    animation: heroFadeUp 0.9s 0.26s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    animation: heroFadeUp 0.9s 0.34s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 24px 0 0;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    letter-spacing: -0.5px;
}

.hero-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 24px 0 0;
    flex-shrink: 0;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.9s 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff8c33, #cc5500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn-primary:hover::before {
    opacity: 1;
}

.hero-btn-primary span,
.hero-btn-primary .hero-btn-icon {
    position: relative;
    z-index: 1;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227, 30, 36, 0.45);
    color: #ffffff;
}

.hero-btn-icon {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .hero-btn-icon {
    transform: translateX(4px);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-btn-icon-left {
    font-size: 13px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
    opacity: 0.5;
    animation: scrollFadeIn 1s 1.5s both;
}

@keyframes scrollFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 0.5;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-scroll-line {
    width: 1.5px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Nav arrows */
.hero-nav {
    position: absolute;
    bottom: 28px;
    right: 32px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-nav i {
    pointer-events: auto;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    font-size: 13px;
}

.hero-nav i:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
    transform: scale(1.08);
}

/* Legacy button styles — keep for other sections */
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* =========================================================================
   WELCOME RIBBON
   ========================================================================= */
.welcome-ribbon-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: flex-end;
}

.ribbon-grey-piece {
    position: absolute;
    left: -2%;
    top: 0;
    bottom: 0;
    width: 12%;
    background-color: #0c1728;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}

.welcome-ribbon {
    width: 93.6%;
    background-color: #00366b;
    text-align: center;
    padding: 25px 0;
    color: var(--white);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 3.84% 100%);
}

.welcome-ribbon h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.welcome-ribbon p {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
}

.inline-logo {
    height: 20px;
    vertical-align: middle;
}

/* =========================================================================
   SERVICES FLIP CARDS
   ========================================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 23, 40, 0.5) 0%, rgba(7, 13, 24, 0.95) 85%);
    z-index: 1;
    transition: background 0.4s ease;
}

.service-card:hover::before {
    background: linear-gradient(180deg, rgba(12, 23, 40, 0.3) 0%, rgba(7, 13, 24, 0.98) 75%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: flex-end;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.12);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-orange);
    font-size: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.1);
}

.service-card:hover .service-icon {
    background: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
    border-color: var(--accent-orange);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.service-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.service-card .service-cta-link {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-card .service-cta-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-cta-link {
    color: #ffffff;
}

.service-card:hover .service-cta-link i {
    transform: translateX(5px);
    color: #ffffff;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(227, 30, 36, 0.1);
}

.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.service-card-front {
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.service-card-front .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 23, 40, 0.9) 0%, rgba(12, 23, 40, 0.7) 100%);
    z-index: 1;
}

.service-card-front .content {
    position: relative;
    z-index: 2;
}

.service-card-front i {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--accent-orange);
    text-shadow: 0 0 15px rgba(227, 30, 36, 0.5);
}

.service-card-front h3 {
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.service-card-back {
    background-color: #e3f2fd;
    /* Light blue like image 2 */
    color: var(--text-dark);
    transform: rotateY(180deg);
}

.service-card-back i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card-back h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-back p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.six-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {

    .services-grid,
    .six-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .services-grid,
    .six-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
/* =========================================================================
   COMMON SECTION TITLES
   ========================================================================= */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 55px;
    width: 100%;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2d;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-orange) 50%, var(--accent-orange) 50%);
    border-radius: 2px;
}

.section-header h2::after {
    display: none;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 4px;
    background-color: var(--accent-orange);
    /* Red */
}

/* Hide the old title decor */
.title-decor {
    display: none;
}

/* =========================================================================
   CLIENTS SECTION
   ========================================================================= */
.clients-carousel {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header-clients {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-clients h2 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.section-header-clients .decor-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header-clients .decor-line::before,
.section-header-clients .decor-line::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: var(--primary-blue);
}

.section-header-clients .decor-line i {
    color: #ff0000;
    font-size: 16px;
    animation: rotate-infinite 4s linear infinite;
}

@keyframes rotate-infinite {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.clients-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clients-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 31));
    }

    /* 300px is width, 31 is number of unique logos */
}

.clients-marquee-track:hover {
    animation-play-state: paused;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 160px;
    padding: 25px;
    border: 1px solid #eeeeee;
    margin-right: -1px;
    background: var(--white);
    transition: var(--transition);
}

.client-logo img {
    max-height: 100px;
    max-width: 85%;
    transition: var(--transition);
}

.client-logo:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transform: translateY(-5px);
}

/* Testimonials Marquee */
.testimonials-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.testimonials-marquee-track {
    display: flex;
    width: max-content;
    animation: testimonial-marquee 50s linear infinite;
}

@keyframes testimonial-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-550px * 4));
    }

    /* 550px is card width, 4 is number of unique cards */
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-card-large {
    width: 550px;
    height: 750px;
    margin-right: 30px;
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid #f9f9f9;
}

.testimonial-card-large:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.carousel-nav i {
    width: 45px;
    height: 40px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.carousel-nav .prev-client {
    background-color: #ff0000;
    /* Red as in image 2 */
}

.carousel-nav .next-client {
    background-color: #555555;
    /* Dark grey */
}

.carousel-nav i:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .clients-marquee-track {
        animation: marquee 20s linear infinite;
        /* Slower feel on mobile because of smaller screen width */
    }

    .client-logo {
        width: 180px;
        height: 100px;
    }
}

/* =========================================================================
   ABOUT US SECTION — PLACEHOLDER (overridden at bottom of file)
   ========================================================================= */

/* 2-Column Split Layout */
.about-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* LEFT: Image */
.about-image-column {
    position: relative;
}

.about-image-column::before {
    display: none;
    /* remove the orange offset border */
}

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    background-color: #f1f5f9;
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

/* Subtle Overlay on Image */
.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 19, 43, 0) 50%, rgba(27, 48, 88, 0.3) 100%);
    pointer-events: none;
}

/* Orange border behind image offset */
.about-image-column::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

/* Right Side Content */
.about-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Glassmorphism Badge */
.about-badge-wrapper {
    margin-bottom: 20px;
}

.about-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(227, 30, 36, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(227, 30, 36, 0.4);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.05);
}

/* Main Heading */
.about-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 25px 0;
    text-align: left;
}

/* Description */
.about-description {
    font-family: 'Poppins', sans-serif;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}

.about-company-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 25px;
}

.about-company-intro strong {
    color: #ffffff;
    font-weight: 600;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
}

.highlight-title {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-title i {
    color: var(--accent-orange);
    font-size: 16px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    line-height: 1.4;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list li::before {
    content: '•';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.about-services-offered {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    margin-bottom: 25px;
}

.solutions-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.solution-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-tag:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: rgba(227, 30, 36, 0.4);
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.about-serving-text {
    font-size: 14px;
    font-style: italic;
    color: #94a3b8;
    border-left: 3px solid var(--accent-orange);
    padding-left: 12px;
    margin-bottom: 30px;
}

/* Stats Section */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 40px;
}

.about-stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.about-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(227, 30, 36, 0.3);
    transition: all 0.4s ease;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 30, 36, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.15);
}

.about-stat-card:hover::after {
    background: var(--accent-orange);
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.8);
}

.stat-icon {
    font-size: 24px;
    color: var(--accent-orange);
    margin-bottom: 8px;
    transition: transform 0.4s ease;
}

.about-stat-card:hover .stat-icon {
    transform: scale(1.15);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* CTA Group */
.about-cta-group {
    display: flex;
    gap: 20px;
    width: 100%;
}

.btn-about-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E05300 100%);
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.5), 0 0 15px rgba(227, 30, 36, 0.3);
    color: #ffffff;
}

.btn-about-secondary {
    background: transparent;
    color: #ffffff;
    padding: 13px 35px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-about-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsiveness */
@media (max-width: 1199px) {
    .about-main-heading {
        font-size: 32px;
    }

    .about-split-layout {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-column {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .about-image-column::before {
        top: 15px;
        left: -15px;
    }
}

@media (max-width: 575px) {
    .about-home-section {
        padding: 60px 0 !important;
    }

    .about-main-heading {
        font-size: 28px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 26px;
    }

    .about-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
    }
}

.inline-logo-large {
    height: 40px;
    vertical-align: middle;
    margin: 0 8px;
}

.btn-know-more {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.btn-know-more:hover {
    background-color: #0056b3;
    color: var(--white);
}


/* =========================================================================
   PRODUCTS RANGE SECTION
   ========================================================================= */
.products-range {
    background-color: var(--white);
    padding: 60px 0;
}

.products-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.products-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
    gap: 30px;
}

.products-marquee-track:hover {
    animation-play-state: paused;
}

.products-marquee-track .product-card {
    width: 380px;
}

.product-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-img-box {
    background-color: #f2f2f2;
    padding: 30px 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 18px 14px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}

.product-text-box {
    padding: 30px;
    text-align: left;
    background: #fff;
}

.product-category {
    font-size: 16px;
    font-weight: 700;
    color: #444;
    margin-bottom: 5px;
}

.product-text-box h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #666;
}

.product-text-box p {
    font-size: 13.5px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.product-read-more {
    font-size: 13px;
    font-weight: 700;
    color: #00d2ff;
    text-transform: capitalize;
    transition: var(--transition);
}

.product-read-more i {
    font-size: 11px;
    margin-left: 5px;
}

.product-read-more:hover {
    color: #00aacc;
}

/* =========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
    display: block;
}

/* =========================================================================
   CTA BAR
   ========================================================================= */
.cta-bar {
    background-color: var(--primary-blue);
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    color: var(--white);
    font-size: 22px;
}

.btn-dark {
    background-color: #111;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-dark:hover {
    background-color: #333;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: #3d3d3d;
    color: #bbb;
    padding-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 50px;
}

.footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-outline-small {
    display: inline-block;
    border: 1px solid #777;
    color: #ddd;
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 3px;
    margin-bottom: 25px;
}

.btn-outline-small:hover {
    border-color: var(--white);
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.footer-social a:hover {
    background-color: var(--primary-blue);
}

.visitor-counter {
    display: flex;
    gap: 2px;
}

.visitor-counter .digit {
    background: #000;
    color: #0f0;
    padding: 5px;
    font-family: monospace;
    font-size: 18px;
    font-weight: bold;
}

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

.footer-links li a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--white);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.project-gallery img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 3px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.5;
}

.contact-list i {
    color: var(--white);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #2b2b2b;
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
}

.footer-bottom-inner a {
    color: var(--white);
}

.footer-bottom-inner a:hover {
    color: var(--primary-blue);
}

/* =========================================================================
   WHATSAPP FLOAT
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================================================
   ABOUT US PAGE STYLES
   ========================================================================= */
.mb-3 {
    margin-bottom: 15px;
}

.mt-3 {
    margin-top: 15px;
}

.mb-4 {
    margin-bottom: 25px;
}

.mt-4 {
    margin-top: 25px;
}

.pt-4 {
    padding-top: 25px;
}

.pt-5 {
    padding-top: 40px;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}



.about-page-details {
    padding: 70px 0;
    background-color: var(--white);
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
}

.about-lead {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.auth-partner-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 600;
}

.auth-partner-left img {
    height: 30px;
}

.activities-list {
    margin-left: 20px;
    margin-top: 15px;
}

.activities-list li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activities-list i {
    color: var(--primary-blue);
    font-size: 14px;
}

/* =========================================================================
   PAGE BANNERS & HEADERS
   ========================================================================= */
.page-title-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 45, 0.7);
}

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

.banner-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.section-header.text-center {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.title-decor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.title-decor::before,
.title-decor::after {
    content: "";
    height: 1px;
    width: 40px;
    background-color: #ddd;
}

.title-decor span {
    display: flex;
    gap: 2px;
}

.title-decor span::before {
    content: "";
    width: 15px;
    height: 4px;
    background-color: var(--primary-blue);
}

.title-decor span::after {
    content: "";
    width: 15px;
    height: 4px;
    background-color: var(--accent-orange);
}

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

.title-decor {
    margin: 10px auto;
    display: block;
}

.title-decor img {
    width: 60px;
}

/* =========================================================================
   INDUSTRIES & ABOUT
   ========================================================================= */

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ornament-left {
    display: flex;
    margin-bottom: 25px;
}

.ornament-left span {
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
    position: relative;
}

.ornament-left span::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #ddd;
    top: 0;
    right: -40px;
}

.two-col-list {
    display: flex;
    gap: 30px;
}

.two-col-list ul {
    flex: 1;
}

.two-col-list li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    gap: 10px;
}

.two-col-list i {
    color: var(--primary-blue);
    margin-top: 5px;
    font-size: 12px;
}

.full-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policies-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.policies-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.policies-list i {
    color: var(--primary-blue);
    font-size: 24px;
}

.bg-light-blue {
    background-color: #f4f9ff;
}

.section-main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.about-partner-line {
    font-size: 20px;
    font-weight: 600;
    color: #444;
}

.about-us-detailed p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.activity-list {
    list-style: none;
    padding: 0;
}

.activity-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.activity-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #28a745;
    font-size: 16px;
}

.highlight-quote {
    background: var(--accent-orange);
    color: #fff;
    padding: 30px;
    border-radius: 5px;
    font-size: 18px;
    font-style: italic;
    text-align: center;
    position: relative;
}

.highlight-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--accent-orange);
    padding: 0 5px;
    font-size: 24px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.industry-item a {
    display: block;
    background: #fff;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    color: #444;
    font-weight: 600;
    transition: var(--transition);
}

.industry-item a:hover {
    background: var(--accent-orange);
    color: #fff;
    border-color: var(--accent-orange);
}

.product-links-list {
    list-style: none;
    padding: 0;
}

.product-links-list li {
    margin-bottom: 10px;
}

.product-links-list a {
    color: #555;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-links-list a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.product-links-list i {
    font-size: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.value-item i {
    font-size: 50px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 20px;
    color: #333;
}

.feature-box {
    background: #fff;
    padding: 40px 20px;
    border: 1px solid #eee;
    transition: var(--transition);
    height: 100%;
}

.feature-box i {
    font-size: 40px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.feature-box p {
    font-weight: 700;
    color: #333;
    margin: 0;
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.the-future p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   CARDS & COUNTERS
   ========================================================================= */
.counters-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

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

.counter-box .num {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cert-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.cert-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-card img {
    width: 100%;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form button {
    cursor: pointer;
    border: none;
    padding: 15px 30px;
}

/* =========================================================================
   HOME PAGE SPECIFIC SECTIONS
   ========================================================================= */
.six-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    /* Match screenshot proportions */
    gap: 20px;
}

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

.two-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cta-bar {
    background-color: var(--primary-blue);
    padding: 30px 0;
    color: var(--white);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    font-size: 24px;
    margin: 0;
}

.btn-dark {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 4px;
}

.welcome-ribbon {
    background-color: #0b224e;
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.welcome-ribbon h2 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.inline-logo {
    height: 20px;
    vertical-align: middle;
}

.product-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.product-card .read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 14px;
}

.corner-ribbon {
    width: 140px;
    background: var(--primary-blue);
    color: #fff;
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 0;
}

.corner-ribbon.blue {
    background: var(--accent-orange);
    /* Red for Danfoss */
}

.testimonial-card img {
    width: 100%;
    border: 1px solid #ddd;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    text-align: center;
}

.client-logo img {
    max-width: 100%;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 9999;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.ribbon-secondary {
    background-color: #f1f1f1;
    border-left: 5px solid var(--primary-blue);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .two-col-list {
        flex-direction: column;
        gap: 10px;
    }

    .policies-list {
        grid-template-columns: 1fr;
    }
}

/* --- About Us Page Full Width Layouts --- */
.about-range-full,
.about-partners-full {
    overflow: hidden;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.full-img-cover {
    height: 100%;
    min-height: 600px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.arrow-list {
    list-style: none;
    padding: 0;
}

.arrow-list li {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.arrow-list li i {
    color: #000;
    font-size: 18px;
}

.simple-flex-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    max-width: 900px;
    margin: 30px auto 0;
}

.simple-flex-list li {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.simple-flex-list li i {
    color: #cc0000;
}

.industries-text-list {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.5px;
}

.max-800 {
    max-width: 800px;
}

@media (max-width: 991px) {

    .col-lg-7,
    .col-lg-6,
    .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .full-img-cover {
        min-height: 350px;
    }
}

/* Animations */
.fa-spin-slow {
    animation: fa-spin 5s infinite linear;
}

@keyframes fa-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================================================
   PRODUCTS & SUBPAGES LAYOUT
   ========================================================================= */
.products-layout {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.products-sidebar {
    flex: 0 0 350px;
    background-color: #FFFFFF;
    color: #1F2937;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

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

.products-sidebar ul li {
    border-bottom: 1px solid var(--border-color);
}

.products-sidebar ul li:last-child {
    border-bottom: none;
}

.products-sidebar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    color: #1F2937;
    transition: all 0.3s ease;
}

.products-sidebar ul li a i {
    font-size: 14px;
    opacity: 0.7;
}

.ribbon-secondary {
    background-color: #f1f1f1;
    border-left: 5px solid var(--primary-blue);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .two-col-list {
        flex-direction: column;
        gap: 10px;
    }

    .policies-list {
        grid-template-columns: 1fr;
    }
}

/* --- About Us Page Full Width Layouts --- */
.about-range-full,
.about-partners-full {
    overflow: hidden;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.full-img-cover {
    height: 100%;
    min-height: 600px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.arrow-list {
    list-style: none;
    padding: 0;
}

.arrow-list li {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.arrow-list li i {
    color: #000;
    font-size: 18px;
}

.simple-flex-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    max-width: 900px;
    margin: 30px auto 0;
}

.simple-flex-list li {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.simple-flex-list li i {
    color: #cc0000;
}

.industries-text-list {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.5px;
}

.max-800 {
    max-width: 800px;
}

@media (max-width: 991px) {

    .col-lg-7,
    .col-lg-6,
    .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .full-img-cover {
        min-height: 350px;
    }
}

/* Animations */
.fa-spin-slow {
    animation: fa-spin 5s infinite linear;
}

@keyframes fa-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================================================
   PRODUCTS & SUBPAGES LAYOUT
   ========================================================================= */
.products-layout {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.products-sidebar {
    flex: 0 0 350px;
    background-color: #FFFFFF;
    color: #1F2937;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ribbon-secondary {
    background-color: #f1f1f1;
    border-left: 5px solid var(--primary-blue);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .two-col-list {
        flex-direction: column;
        gap: 10px;
    }

    .policies-list {
        grid-template-columns: 1fr;
    }
}

/* --- About Us Page Full Width Layouts --- */
.about-range-full,
.about-partners-full {
    overflow: hidden;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.full-img-cover {
    height: 100%;
    min-height: 600px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.arrow-list {
    list-style: none;
    padding: 0;
}

.arrow-list li {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.arrow-list li i {
    color: #000;
    font-size: 18px;
}

.simple-flex-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    max-width: 900px;
    margin: 30px auto 0;
}

.simple-flex-list li {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.simple-flex-list li i {
    color: #cc0000;
}

.industries-text-list {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.5px;
}

.max-800 {
    max-width: 800px;
}

@media (max-width: 991px) {

    .col-lg-7,
    .col-lg-6,
    .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .full-img-cover {
        min-height: 350px;
    }
}

/* Animations */
.fa-spin-slow {
    animation: fa-spin 5s infinite linear;
}

@keyframes fa-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================================================
   PRODUCTS & SUBPAGES LAYOUT
   ========================================================================= */
.products-layout {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.products-sidebar {
    flex: 0 0 350px;
    background-color: #FFFFFF;
    color: #1F2937;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

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

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 9999;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.ribbon-secondary {
    background-color: #f1f1f1;
    border-left: 5px solid var(--primary-blue);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .two-col-list {
        flex-direction: column;
        gap: 10px;
    }

    .policies-list {
        grid-template-columns: 1fr;
    }
}

/* --- About Us Page Full Width Layouts --- */
.about-range-full,
.about-partners-full {
    overflow: hidden;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.full-img-cover {
    height: 100%;
    min-height: 600px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.arrow-list {
    list-style: none;
    padding: 0;
}

.arrow-list li {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.arrow-list li i {
    color: #000;
    font-size: 18px;
}

.simple-flex-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    max-width: 900px;
    margin: 30px auto 0;
}

.simple-flex-list li {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.simple-flex-list li i {
    color: #cc0000;
}

.industries-text-list {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.5px;
}

.max-800 {
    max-width: 800px;
}

@media (max-width: 991px) {

    .col-lg-7,
    .col-lg-6,
    .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .full-img-cover {
        min-height: 350px;
    }
}

/* Animations */
.fa-spin-slow {
    animation: fa-spin 5s infinite linear;
}

@keyframes fa-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================================================
   PRODUCTS & SUBPAGES LAYOUT
   ========================================================================= */
.products-layout {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.products-sidebar {
    flex: 0 0 350px;
    background-color: #FFFFFF;
    color: #1F2937;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

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

.products-sidebar ul li {
    border-bottom: 1px solid var(--border-color);
}

.products-sidebar ul li:last-child {
    border-bottom: none;
}

.products-sidebar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    color: #1F2937;
    transition: all 0.3s ease;
}

.products-sidebar ul li a i {
    font-size: 14px;
    opacity: 0.7;
}

.products-sidebar ul li a:hover {
    background-color: #F9FAFB;
    color: var(--accent-orange) !important;
}

.products-sidebar ul li.active>a {
    background-color: #FFF0E5;
    color: var(--accent-orange) !important;
}

/* Submenu in Sidebar */
.products-sidebar .submenu {
    background-color: #F9FAFB;
    border-top: 1px solid var(--border-color);
}

.products-sidebar .submenu li a {
    padding-left: 45px;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
}

.products-sidebar .submenu li a:hover {
    background-color: #FFF0E5;
    color: var(--accent-orange) !important;
}

.products-main-content {
    flex: 1;
}

.products-main-content h2 {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.products-main-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.product-image-box img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-specs {
    margin-top: 30px;
}

.product-specs h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.specs-table td:first-child {
    font-weight: 700;
    color: #0c1728;
    width: 40%;
}

@media (max-width: 992px) {
    .products-layout {
        flex-direction: column;
    }

    .products-sidebar {
        flex: none;
        width: 100%;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   MEGA MENU STYLES
   ========================================================================= */
.navbar .dropdown.mega-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0c1728;
    color: #fff;
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.mega-menu-col {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 20px;
}

.mega-menu-col:last-child {
    border-right: none;
}

.mega-menu-col h3 {
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.mega-menu-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-orange);
}

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

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

.mega-menu-col ul li a {
    color: #ccc;
    font-size: 13px;
    display: block;
    transition: all 0.2s ease;
    font-weight: 500;
}

.mega-menu-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .mega-menu {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 20px;
    }

    .mega-dropdown.active .mega-menu {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mega-menu-col {
        border-right: none;
        padding-right: 0;
    }
}

/* =========================================================================
   AJAX LOADING STYLES
   ========================================================================= */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    z-index: 9999;
    transition: width 0.3s ease;
}

#loader.loading {
    width: 60%;
}

#loader.finish {
    width: 100%;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s 0.3s ease;
}

#page-content {
    transition: opacity 0.3s ease;
    min-height: 60vh;
}

#page-content.fade-out {
    opacity: 0;
}


/* =========================================================================
   ENHANCED LOOK & ANIMATIONS
   ========================================================================= */

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: none;
}

/* Glassmorphism for Navbar Submenus */
.mega-menu,
.dropdown-menu {
    backdrop-filter: blur(10px);
    background-color: rgba(12, 23, 40, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Button Refinement */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-dark,
.btn-ecat {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before,
.btn-ecat::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before,
.btn-ecat:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 109, 228, 0.3);
}

/* Service Card Lift Effect */
.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-card-new .card-img img {
    transition: transform 0.8s ease;
}

.service-card-new:hover .card-img img {
    transform: scale(1.1);
}

/* Smooth Progress Bar Enhancement */
#loader {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), #ff5e62);
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.5);
}

/* Parallax Background for Banners */
.page-title-banner {
    background-attachment: fixed;
}

/* Typography Enhancements */
.section-title h2 {
    font-size: 40px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin-bottom: 25px;
}

.subtitle {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}


/* =========================================================================
   ADDITIONAL ENHANCEMENTS
   ========================================================================= */

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Glassmorphism for Sticky Navbar */
.navbar.sticky {
    background-color: rgba(27, 124, 241, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section Enhancements */
.hero-content h1 {
    font-size: 60px;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 18px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Card Hover Glow */
.service-card-new,
.cert-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-new:hover,
.cert-card:hover {
    box-shadow: 0 30px 60px rgba(0, 109, 228, 0.15) !important;
}

/* Custom Selection Color */
::selection {
    background: var(--primary-blue);
    color: #fff;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

/* =========================================================================
   SERVICES PAGE STYLES (MATCHING DESIGN)
   ========================================================================= */

.page-hero-banner {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content-inner {
    position: relative;
    z-index: 2;
}

.hero-content-inner h1 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.breadcrumb-nav {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.breadcrumb-nav i {
    font-size: 10px;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav span {
    color: var(--white);
}

/* Support Section */
.support-info-section {
    background-color: #fff9f4;
    /* Subtle peach/warm white from design */
}

.support-flex-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.support-text-content {
    flex: 1;
    min-width: 320px;
}

.section-heading-main {
    font-size: 32px;
    color: var(--accent-orange);
    /* Blue color for heading as per image */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.section-heading-main i {
    color: var(--accent-orange);
    /* Red icon */
    animation: phoneShake 2s infinite;
}

@keyframes phoneShake {

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

    10%,
    30%,
    50% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(10deg);
    }

    70% {
        transform: rotate(0);
    }
}

.support-description p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.support-illustration {
    flex: 0.8;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.support-illustration img {
    max-width: 100%;
    height: auto;
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

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

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

/* Services Grid (New Page) */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-feature-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image-box {
    height: 220px;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-feature-card:hover .card-image-box img {
    transform: scale(1.1);
}

.card-caption {
    background-color: var(--accent-orange);
    padding: 15px;
    text-align: center;
}

.card-caption h3 {
    color: var(--white);
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

/* Repairing Banner */
.repairing-banner-wide {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.banner-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repair-text-bar {
    position: relative;
    z-index: 2;
    background-color: var(--accent-orange);
    padding: 20px 30px;
    text-align: center;
}

.repair-text-bar h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 991px) {
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid-container {
        grid-template-columns: 1fr;
    }

    .support-flex-layout {
        text-align: center;
    }

    .section-heading-main {
        justify-content: center;
    }

    .repairing-banner-wide {
        height: 300px;
    }

    .repair-text-bar h3 {
        font-size: 16px;
    }
}

/* =========================================================================
   GLOBAL RESPONSIVE — COMPLETE DEVICE-FRIENDLY OVERHAUL
   Breakpoints: 1200px | 991px | 768px | 480px
   ========================================================================= */

/* ---------- 1200px: Large Tablets / Small Laptops ---------- */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .nav-links li a {
        padding: 18px 13px;
        font-size: 13px;
    }

    .hero-title,
    .hero-content h1 {
        font-size: 46px !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-sidebar {
        flex: 0 0 280px;
    }
}

/* ---------- 991px: Tablets ---------- */
@media (max-width: 991px) {

    /* === TOP BAR === */
    .top-bar {
        display: none;
        /* hide on tablets for cleaner look */
    }

    /* === HEADER === */
    .main-header {
        padding: 10px 0;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-info {
        flex-wrap: wrap;
        gap: 10px;
    }

    .info-box {
        display: none;
        /* hide email info block on smaller screens */
    }

    .logo img {
        height: 50px;
    }

    /* === NAVBAR / HAMBURGER === */
    .navbar-inner {
        padding: 0 15px;
        justify-content: flex-end;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0c1728;
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
        padding-bottom: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links li a {
        padding: 14px 20px;
        font-size: 14px;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background-color: var(--primary-blue);
        color: #fff;
        opacity: 1;
    }

    /* Keep hamburger icon visible */
    #mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    /* === MEGA MENU mobile override === */
    .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        padding: 15px 20px;
        box-shadow: none;
        background-color: #121d31 !important;
    }

    .mega-dropdown.active .mega-menu {
        display: block !important;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .mega-menu-col {
        border-right: none;
        padding-right: 0;
    }

    /* === HERO === */
    .hero-section {
        height: 380px;
    }

    .hero-title,
    .hero-content h1 {
        font-size: 38px !important;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    /* === SERVICES SIX GRID → 3 cols === */
    .six-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    /* === PRODUCTS RANGE THREE GRID → 1 col === */
    .three-grid {
        grid-template-columns: 1fr;
    }

    /* === TESTIMONIALS TWO GRID → 1 col === */
    .two-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* === CLIENTS GRID → 2 cols === */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* === FOOTER: 2 col → handled above, keep here too === */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        padding-top: 60px;
    }

    /* === CTA BAR === */
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-text {
        font-size: 20px;
    }

    /* === ABOUT PAGE DETAILS GRID → 1 col === */
    .details-grid {
        grid-template-columns: 1fr;
    }

    /* === PRODUCTS LAYOUT → stack sidebar above === */
    .products-layout {
        flex-direction: column;
        gap: 20px;
    }

    .products-sidebar {
        flex: none;
        width: 100%;
    }

    /* === PRODUCT DETAIL GRID → 1 col === */
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    /* === PAGE BANNER === */
    .page-title-banner {
        padding: 70px 0;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    /* === SECTION TITLES === */
    .section-header h2,
    .section-main-title {
        font-size: 26px;
    }

    /* === COUNTERS → 1 row === */
    .counters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* ---------- 768px: Large Phones / Phablets ---------- */
@media (max-width: 768px) {

    /* === HEADER: stack logo + e-cat === */
    .header-inner {
        justify-content: space-between;
    }

    .btn-ecat {
        padding: 9px 16px;
        font-size: 13px;
    }

    /* === HERO === */
    .hero-section {
        height: 320px;
    }

    .hero-title,
    .hero-content h1 {
        font-size: 30px !important;
        text-shadow: none;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 22px;
        font-size: 13px;
    }

    /* Hero slide arrows — smaller */
    .hero-nav i {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* === WELCOME RIBBON === */
    .welcome-ribbon-wrapper {
        justify-content: center;
    }

    .welcome-ribbon {
        width: 100%;
        clip-path: none;
        padding: 18px 15px;
    }

    .welcome-ribbon h2 {
        font-size: 15px;
    }

    .welcome-ribbon p {
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* === SERVICES GRID → 2 cols === */
    .six-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* service card shorter on mobile */
    .service-card {
        height: 200px;
    }

    .service-card-front h3 {
        font-size: 13px;
    }

    .service-card-front i {
        font-size: 32px;
    }

    /* === PRODUCTS THREE GRID → 1 col === */
    .three-grid {
        grid-template-columns: 1fr;
    }

    /* === CLIENTS → 2 cols === */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* === FOOTER → 1 col === */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .project-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* === SECTION HEADERS === */
    .section-header h2 {
        font-size: 22px;
    }

    /* === PAGE TITLE BANNER === */
    .page-title-banner {
        padding: 50px 0;
    }

    .banner-content h1 {
        font-size: 26px;
    }

    .banner-content p {
        font-size: 14px;
    }

    /* === ABOUT HOME SECTION === */
    .about-home-section h3 {
        font-size: 18px;
    }

    .ribbon-secondary {
        padding: 15px;
        margin: 20px 0;
    }

    .ribbon-secondary h4 {
        font-size: 15px;
    }

    /* === COUNTERS BAR → stack === */
    .counters-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .counter-box .num {
        font-size: 38px;
    }

    /* === INDUSTRIES GRID → 2 col === */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* === ABOUT HEADING === */
    .about-heading {
        font-size: 26px;
    }

    /* === HERO SERVICES PAGE === */
    .hero-content-inner h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    /* === MEGA MENU GRID → 1 col on narrow === */
    .mega-menu-grid {
        grid-template-columns: 1fr;
    }

    /* === PRODUCTS SIDEBAR SUBMENU === */
    .products-sidebar ul li a {
        font-size: 14px;
        padding: 14px 20px;
    }

    /* === SPECS TABLE === */
    .specs-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ---------- 480px: Small Phones ---------- */
@media (max-width: 480px) {

    /* === GENERAL SPACING === */
    .py-5 {
        padding-top: 35px;
        padding-bottom: 35px;
    }

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

    /* === HEADER === */
    .logo img {
        height: 42px;
    }

    .btn-ecat {
        padding: 8px 12px;
        font-size: 12px;
        gap: 5px;
    }

    /* === HERO === */
    .hero-section {
        height: 280px;
        background-position: center center;
    }

    .hero-title,
    .hero-content h1 {
        font-size: 22px !important;
        line-height: 1.3;
        word-wrap: break-word;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn-primary,
    .btn-outline {
        padding: 9px 18px;
        font-size: 12px;
    }

    /* === SERVICES → 1 col on tiny screens === */
    .six-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        height: 160px;
    }

    .service-card-front h3 {
        font-size: 11px;
    }

    .service-card-front i {
        font-size: 26px;
        margin-bottom: 8px;
    }

    /* === CLIENTS → 1 col, or small 2 cols === */
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .client-logo {
        min-width: auto;
        max-width: 100%;
        height: 90px;
    }

    /* === SECTION HEADERS === */
    .section-header h2 {
        font-size: 19px;
    }

    /* === WELCOME RIBBON === */
    .welcome-ribbon h2 {
        font-size: 13px;
    }

    .welcome-ribbon p {
        font-size: 12px;
    }

    /* === CTA BAR === */
    .cta-text {
        font-size: 17px;
    }

    .btn-dark {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* === FOOTER === */
    .footer {
        padding-top: 40px;
    }

    .footer h3 {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 13px;
    }

    .contact-list li {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    /* === PAGE BANNER === */
    .page-title-banner {
        padding: 40px 0;
    }

    .banner-content h1 {
        font-size: 22px;
    }

    .banner-content p {
        font-size: 13px;
    }

    /* === ABOUT HOME === */
    .about-home-section h3 {
        font-size: 15px;
    }

    .about-home-section p {
        font-size: 13px;
    }

    /* === PRODUCT CARDS === */
    .product-card {
        padding: 15px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    /* === INDUSTRIES === */
    .industries-grid {
        grid-template-columns: 1fr;
    }

    /* === COUNTERS === */
    .counter-box .num {
        font-size: 32px;
    }

    .counter-box p {
        font-size: 14px;
    }

    /* === SPECS TABLE === */
    .specs-table td {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* === WHATSAPP FLOAT === */
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    /* === BACK TO TOP === */
    #back-to-top {
        bottom: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* === PRODUCTS SIDEBAR === */
    .products-sidebar ul li a {
        font-size: 13px;
        padding: 12px 15px;
    }

    /* === FORM === */
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Partners Page --- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #dddddd;
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
}

/* --- Clients Page --- */
.client-grid-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.client-box {
    background: #fff;
    border: 1px solid #eeeeee;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.client-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px) scale(1.08);
    z-index: 10;
    border-color: var(--accent-orange);
}

.client-box img {
    max-width: 100%;
    max-height: 65px;
    object-fit: contain;
    filter: none;
    /* Changed from grayscale */
    opacity: 1;
    /* Changed from 0.7 */
    transition: all 0.3s ease;
}

.client-box:hover img {
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .client-grid-main {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .client-grid-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .client-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Logo with Company Name --- */
.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.company-name {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .company-name {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .company-name {
        display: none;
    }

    /* Hide on very small screens to save space */
}

/* Visibility Fix */
.dropdown-menu li a {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--accent-orange) !important;
}

/* Contact Page New Layout Styles */
.contact-section-new {
    background-color: #f9f9f9;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid #ebebeb;
}

.contact-box-item:hover {
    transform: translateX(10px);
    color: var(--primary-blue);
}

.box-icon {
    font-size: 28px;
    color: var(--accent-orange);
    width: 40px;
    text-align: center;
}

.box-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0c1728;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.box-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-map-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

@media (max-width: 991px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* AJAX Loader Progress Bar */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    z-index: 100000;
    transition: width 0.3s ease;
}

#loader.loading {
    width: 70%;
}

#loader.finish {
    width: 100%;
}

/* Page Fade Effect */
#page-content {
    transition: opacity 0.3s ease;
}

#page-content.fade-out {
    opacity: 0.2;
}

/* Custom Selection Color */
::selection {
    background: var(--primary-blue);
    color: #fff;
}

/* Scroll Padding for Sticky Header */
section,
main>section {
    scroll-margin-top: 80px;
}

/* Responsive Table Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide the old title decor */
.title-decor {
    display: none;
}

.section-header .section-subheading {
    font-size: 16px;
    color: #556375;
    margin-top: 18px;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
}

/* =========================================================================
   GLOBAL UX & DEVICE FRIENDLY FIXES
   ========================================================================= */

html {
    scroll-behavior: smooth;
}

/* Back to Top Button Styling */
#back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--navy-dark);
    transform: translateY(-5px);
}

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .btn-primary,
    .btn-outline,
    .btn-ecat {
        padding: 10px 20px;
        min-height: 44px;
        /* Better for touch */
    }

    .info-action {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .btn-ecat {
        width: 100%;
        justify-content: center;
    }
}



/* Fix for Horizontal Scroll on small screens */
body,
html {
    overflow-x: hidden;
}

/* =========================================================================
   NEW GALLERY GRID GLOBAL STYLES (Moving from inline to global)
   ========================================================================= */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item-new {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-new:hover img {
    transform: scale(1.1);
}

.gallery-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 40, 50, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-new:hover .gallery-overlay-new {
    opacity: 1;
}

.camera-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item-new:hover .camera-icon-wrapper {
    transform: scale(1);
}

@media (max-width: 576px) {
    .gallery-grid-new {
        grid-template-columns: 1fr;
    }

    .gallery-item-new {
        height: 200px;
    }
}

/* =========================================================================
   PREMIUM REDESIGN: HEADER, HERO, MEGA MENU
   ========================================================================= */
/* Header Wrapper: Absolute positioning over hero */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

/* Hide top-bar globally */
.top-bar {
    display: none !important;
}

/* Main Header White Background */
.premium-header,
.main-header {
    background: #ffffff !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01) !important;
    transition: all 0.3s ease;
}

.logo img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img:hover {
    transform: scale(1.04);
}

.info-box {
    background: rgba(240, 246, 255, 0.45);
    padding: 8px 18px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(0, 109, 228, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.info-box:hover {
    background: rgba(240, 246, 255, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 109, 228, 0.08);
    border-color: rgba(0, 109, 228, 0.15) !important;
}

.info-box .icon {
    background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 100%) !important;
    color: var(--primary-blue) !important;
    border: 1px solid rgba(0, 109, 228, 0.1) !important;
    box-shadow: 0 2px 6px rgba(0, 109, 228, 0.04) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.info-box:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-blue) !important;
    color: #ffffff !important;
}

.info-box .text a {
    color: #2c3e50 !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.info-box .text a:hover {
    color: var(--primary-blue) !important;
}

.btn-ecat {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0052b3 100%) !important;
    border: none !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(0, 109, 228, 0.2) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-ecat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0052b3 0%, var(--primary-blue) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-ecat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 109, 228, 0.35) !important;
    color: var(--white) !important;
}

.btn-ecat:hover::before {
    opacity: 1;
}

.btn-ecat i {
    transition: transform 0.3s ease;
}

.btn-ecat:hover i {
    transform: translateY(2px);
}

/* Navbar Premium Styling */
.navbar {
    background-color: #ffffff !important;
    box-shadow: none !important;
    border-top: none !important;
}

.navbar.sticky {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    animation: stickySlideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes stickySlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-links li a {
    color: var(--navy-dark) !important;
    text-transform: uppercase;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    padding: 20px 18px !important;
    position: relative;
    overflow: hidden;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: transparent !important;
    color: var(--accent-orange) !important;
}

@media (min-width: 992px) {
    .nav-icons {
        display: none !important;
    }
}

.nav-icons a {
    color: var(--navy-dark) !important;
    transition: all 0.3s ease;
}

.nav-icons a:hover {
    color: var(--accent-orange) !important;
}

/* Mega Menu Redesign */
.mega-dropdown .mega-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    padding: 30px 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-col h3 {
    color: var(--primary-blue) !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-menu-col ul li a {
    color: #555555 !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease;
}

.mega-menu-col ul li a::after {
    display: none;
}

.mega-menu-col ul li a:hover {
    color: var(--accent-orange) !important;
    padding-left: 8px !important;
    background: transparent !important;
}

/* Dropdown styling */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.dropdown-menu li a {
    color: #333333 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(227, 30, 36, 0.05) !important;
    color: var(--accent-orange) !important;
    padding-left: 25px !important;
}

/* Restructured desktop mega menu styling */
.mega-menu-desktop-container {
    display: none;
}

@media (min-width: 992px) {
    .mega-menu-grid {
        display: none !important;
    }

    .mega-dropdown .mega-menu {
        width: 100vw !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(20px) !important;
        right: 0 !important;
        position: absolute !important;
        max-width: 100vw !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
        border-bottom: 2px solid var(--accent-orange) !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mega-dropdown:hover .mega-menu {
        transform: translateX(-50%) translateY(0) !important;
    }

    .mega-menu-desktop-container {
        display: flex !important;
        min-height: 480px;
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
    }

    /* Left Sidebar */
    .mega-menu-sidebar {
        width: 280px;
        background: #fcfcfd;
        border-right: 1px solid #f0f0f2;
        padding: 20px 0;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
    }

    .mega-sidebar-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 24px;
        color: #333333;
        font-size: 13.5px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.25s ease;
        border-left: 3px solid transparent;
    }

    .mega-sidebar-item:hover {
        color: var(--accent-orange);
        background: rgba(229, 57, 53, 0.04);
        padding-left: 28px;
    }

    .mega-sidebar-item.active {
        color: var(--accent-orange);
        background: rgba(229, 57, 53, 0.08);
        border-left-color: var(--accent-orange);
        font-weight: 600;
        padding-left: 28px;
    }

    .mega-sidebar-item .icon-arrow {
        font-size: 10px;
        opacity: 0;
        transition: transform 0.25s ease, opacity 0.25s ease;
        transform: translateX(-5px);
    }

    .mega-sidebar-item:hover .icon-arrow,
    .mega-sidebar-item.active .icon-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    /* Right Panels Container */
    .mega-menu-panels {
        flex-grow: 1;
        padding: 30px 40px;
        background: #ffffff;
        overflow-y: auto;
        max-height: 520px;
    }

    .mega-menu-panel {
        display: none;
        animation: fadeInMega 0.3s ease-in-out forwards;
    }

    .mega-menu-panel.active {
        display: block;
    }

    @keyframes fadeInMega {
        from {
            opacity: 0;
            transform: translateY(5px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Panel Header */
    .mega-panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f2;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }

    .mega-panel-title {
        color: var(--primary-blue);
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .mega-panel-view-all {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--accent-orange);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.25s ease;
    }

    .mega-panel-view-all:hover {
        color: var(--accent-orange-hover);
        gap: 10px;
    }

    /* Grid layout for list inside active panel */
    .mega-panel-list {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px 24px !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mega-panel-list li {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mega-panel-list li a {
        display: inline-block !important;
        color: #4B5563 !important;
        font-size: 13.5px !important;
        line-height: 1.4 !important;
        padding: 6px 0 !important;
        font-weight: 400 !important;
        transition: all 0.2s ease !important;
        position: relative !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    .mega-panel-list li a:hover {
        color: var(--accent-orange) !important;
        transform: translateX(4px) !important;
        padding-left: 0 !important; /* Reset old hover padding shift */
        background: transparent !important;
    }
}


/* Hero Section Premium Override — nullify outdated rules */
.hero-section {
    min-height: 75vh !important;
    background-attachment: fixed !important;
}

.hero-overlay {
    background: linear-gradient(135deg,
            rgba(8, 12, 28, 0.92) 0%,
            rgba(8, 12, 28, 0.78) 40%,
            rgba(8, 12, 28, 0.55) 70%,
            rgba(8, 12, 28, 0.35) 100%) !important;
}

.hero-content {
    padding-top: 0 !important;
}

.hero-title {
    font-size: clamp(36px, 5vw, 58px) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    text-transform: none !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
}

.hero-subtitle {
    font-size: clamp(15px, 1.9vw, 18px) !important;
    max-width: 620px !important;
    line-height: 1.75 !important;
    margin-bottom: 36px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-weight: 400 !important;
}

/* Page Title Banner clearance for absolute header */
@media (min-width: 992px) {
    .page-title-banner {
        padding-top: 180px !important;
        padding-bottom: 80px !important;
    }
}

/* Mobile Responsive Fixes */
.mobile-only-btn {
    display: none;
}

@media (max-width: 991px) {

    /* 1. Prevent scrolling the page when menu is open */
    body.menu-open {
        overflow: hidden !important;
    }

    /* 2. Global Page Content Offset to clear fixed header */
    #page-content {
        margin-top: 60px !important;
    }

    /* 3. Sticky/Fixed Header Wrapper on Mobile */
    .header-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 60px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
        z-index: 1000 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
    }

    /* 4. Make sure premium header contents scale properly */
    .premium-header,
    .main-header {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100% !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .premium-header>div,
    .main-header>div {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100% !important;
    }

    /* 5. Logo alignment and sizing */
    .logo {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .logo a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .logo img {
        height: 38px !important;
        width: auto !important;
        object-fit: contain !important;
    }


    /* 6. Clean Info details container */
    .premium-header .logo+div,
    .main-header .logo+div {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin-left: auto !important;
        padding-right: 62px !important;
        /* Space for the absolute navbar toggle */
    }

    /* 7. Style Email block as a visible and aligned flex container on mobile */
    .premium-header .hidden.sm\:flex,
    .main-header .hidden.sm\:flex {
        display: flex !important;
        position: relative !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        gap: 6px !important;
    }

    /* Reduce email icon size on mobile to save space */
    .premium-header .hidden.sm\:flex>div:first-child,
    .main-header .hidden.sm\:flex>div:first-child {
        width: 30px !important;
        height: 30px !important;
    }

    .premium-header .hidden.sm\:flex>div:first-child i,
    .main-header .hidden.sm\:flex>div:first-child i {
        font-size: 13px !important;
    }

    .premium-header .hidden.sm\:flex .flex-col,
    .main-header .hidden.sm\:flex .flex-col {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .premium-header .hidden.sm\:flex .flex-col span,
    .main-header .hidden.sm\:flex .flex-col span {
        display: block !important;
        font-size: 8px !important;
        line-height: 1.1 !important;
        color: #9ca3af !important;
        /* text-gray-400 style */
        text-transform: uppercase !important;
        font-weight: 700 !important;
    }

    .premium-header .hidden.sm\:flex .flex-col a,
    .main-header .hidden.sm\:flex .flex-col a {
        display: block !important;
        font-size: 9.5px !important;
        line-height: 1.2 !important;
        text-indent: 0 !important;
        color: #0c1728 !important;
        /* brand-dark color */
        font-weight: 600 !important;
        white-space: nowrap !important;
        transition: color 0.2s ease !important;
    }

    .premium-header .hidden.sm\:flex .flex-col a:hover,
    .main-header .hidden.sm\:flex .flex-col a:hover {
        color: var(--accent-orange) !important;
        /* brand-orange color on hover */
    }

    /* Entire container clickable via pseudo-element stretch */
    .premium-header .hidden.sm\:flex a::after,
    .main-header .hidden.sm\:flex a::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 10 !important;
        cursor: pointer !important;
    }

    /* Hide other header info blocks on mobile */
    .premium-header .logo+div>div:nth-child(2),
    .main-header .logo+div>div:nth-child(2),
    .premium-header .info-action,
    .main-header .info-action {
        display: none !important;
    }

    /* 8. Position Navbar & Toggle */
    .navbar,
    .navbar.sticky {
        position: absolute !important;
        right: 15px !important;
        top: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: auto !important;
        height: 60px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 1020 !important;
        animation: none !important;
    }

    .navbar>div {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
    }

    .navbar .nav-icons a:not(#mobile-toggle) {
        display: none !important;
        /* Hide search icon on mobile for clean header */
    }

    #mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 40px !important;
        width: 40px !important;
        cursor: pointer !important;
        z-index: 1060 !important;
        position: relative !important;
        color: #0c1728 !important;
        /* Dark when menu is closed */
        transition: color 0.3s ease !important;
        font-size: 22px !important;
    }

    .nav-links.active~.nav-icons #mobile-toggle {
        color: #ffffff !important;
        /* White when menu is open */
    }

    /* 9. Slide-in Drawer Container */
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #0a1423 !important;
        z-index: 1050 !important;
        padding: 80px 0 30px !important;
        overflow-y: auto !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4) !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        width: 100% !important;
    }

    .nav-links li a {
        display: block !important;
        padding: 14px 24px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        letter-spacing: 0.5px !important;
        background: transparent !important;
    }

    .nav-links li a::after {
        display: none !important;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--accent-orange) !important;
        background: rgba(227, 30, 36, 0.08) !important;
    }

    /* Dropdown & Mega Menu inside Mobile Drawer */
    .nav-links .mega-menu,
    .nav-links .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 0 0 16px !important;
        backdrop-filter: none !important;
    }

    .nav-links .dropdown.active .mega-menu,
    .nav-links .dropdown.open .dropdown-menu {
        display: block !important;
    }

    .mega-menu-grid {
        display: block !important;
    }

    .mega-menu-col h3 {
        color: rgba(255, 255, 255, 0.5) !important;
        font-size: 11px !important;
        margin: 12px 0 6px !important;
        padding-bottom: 6px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .mega-menu-col ul li a,
    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 13px !important;
        padding: 10px 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
        text-transform: none !important;
    }

    .mega-menu-col ul li a:hover,
    .dropdown-menu li a:hover {
        color: var(--accent-orange) !important;
        background: transparent !important;
        padding-left: 18px !important;
    }

    .dropdown.active>a i,
    .dropdown.open>a i {
        transform: rotate(180deg) !important;
    }

    /* 10. Drawer Mobile E-catalogue Button */
    .mobile-only-btn {
        display: block !important;
        padding: 15px 24px !important;
        border-bottom: none !important;
    }

    .mobile-ecat {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8800 100%) !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        padding: 12px 24px !important;
        border-radius: 30px !important;
        box-shadow: 0 4px 15px rgba(227, 30, 36, 0.35) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border: none !important;
    }

    .nav-links li a.mobile-ecat:hover,
    .nav-links li a.mobile-ecat:focus,
    .mobile-ecat:hover {
        background: linear-gradient(135deg, #FF8800 0%, var(--accent-orange) 100%) !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(227, 30, 36, 0.5) !important;
    }

    /* 11. Overlay and Pointer Events */
    body.menu-open::after {
        content: '' !important;
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 1040 !important;
        pointer-events: auto !important;
    }

    body.menu-open .header-wrapper {
        background: transparent !important;
        box-shadow: none !important;
        z-index: 1100 !important;
    }

    body.menu-open .premium-header {
        opacity: 0.35 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
    }

    body.menu-open .navbar {
        pointer-events: auto !important;
    }
}

/* =========================================================================
   HERO — MOBILE RESPONSIVE
   ========================================================================= */
@media (max-width: 991px) {
    .hero-section {
        background-attachment: scroll !important;
        /* no parallax on mobile */
        min-height: 75svh !important;
    }

    .hero-content {
        padding-top: 0 !important;
        max-width: 100% !important;
    }

    .hero-badge {
        font-size: 10px !important;
        letter-spacing: 0.8px !important;
        padding: 5px 12px !important;
        margin-bottom: 20px !important;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 38px) !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.65 !important;
        margin-bottom: 28px !important;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px 0 !important;
        margin-bottom: 28px !important;
    }

    .hero-stat-number {
        font-size: 22px !important;
    }

    .hero-stat-divider {
        display: none !important;
    }

    .hero-stat {
        padding: 0 20px 0 0 !important;
        min-width: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px !important;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 13px 24px !important;
    }

    .hero-scroll-indicator {
        display: none !important;
    }

    .hero-nav {
        bottom: 16px !important;
        right: 16px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(26px, 8vw, 32px) !important;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        max-width: 100% !important;
    }
}

/* =========================================================================
   PREMIUM HERO SECTION (REDESIGNED)
   ========================================================================= */
.hero-section-new {
    position: relative;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 35%, rgba(255, 255, 255, 0.75) 60%, rgba(255, 255, 255, 0.45) 100%), url('images/Sider%20Image/background.png') no-repeat center center / cover;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 40px 0 0 !important;
    font-family: 'Poppins', sans-serif;
}

/* Background grid effect */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(18, 48, 74, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.container.hero-container-new {
    max-width: 1600px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.hero-container-new {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 0.7fr 1.4fr;
    gap: 30px;
    align-items: center;
    width: 100%;
}

/* Left Content Area */
.hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 540px;
    animation: heroFadeInLeft 1s ease forwards;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 30, 36, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #E31E24;
    border-radius: 50%;
    box-shadow: 0 0 8px #E31E24;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 12px #E31E24;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.hero-heading-new {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: left;
}

.hero-heading-new span {
    color: #E31E24;
}

.hero-subheading-new {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.7;
    color: #12304A;
    /* Industrial Navy */
    margin-bottom: 35px;
    max-width: 620px;
    text-align: left;
}

.hero-ctas-new {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E31E24;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.3);
}

.hero-btn-primary-new:hover {
    background: #cc1a1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.45);
    color: #ffffff;
}

.hero-btn-primary-new i {
    transition: transform 0.3s ease;
}

.hero-btn-primary-new:hover i {
    transform: translateX(4px);
}

.hero-btn-outline-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(18, 48, 74, 0.02);
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-btn-outline-new:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Feature Bullet Points */
.hero-features-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    width: 100%;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #e2e8f0;
}

.feature-item-new i {
    color: var(--accent-orange);
    font-size: 15px;
}

/* Right Visuals Area */
.hero-visual-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: heroFadeInRight 1.2s ease forwards;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: rgba(15, 34, 63, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease;
}

.main-card {
    width: 310px;
    height: 310px;
    position: relative;
    z-index: 10;
}

.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: scale 0.5s ease;
}

.main-card:hover .visual-img {
    scale: 1.05;
}

/* Glassmorphism Floating Cards */
.sub-card {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(18, 48, 74, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sub-card-1 {
    top: 30px;
    right: -20px;
}

.sub-card-2 {
    bottom: 30px;
    left: -20px;
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.15);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.card-info h4 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.card-info p {
    color: #a0aec0;
    font-size: 11px;
    margin: 2px 0 0;
}

/* Animations */
.floating-card {
    animation: floatAnim 6s ease-in-out infinite;
}

.floating-card-delayed {
    animation: floatAnim 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes floatAnim {

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

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

/* HUD / Glow Rings */
.hud-circle {
    position: absolute;
    border: 1px dashed rgba(227, 30, 36, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.ring-1 {
    width: 370px;
    height: 370px;
    animation: rotateRing 30s linear infinite;
}

.ring-2 {
    width: 430px;
    height: 430px;
    animation: rotateRingBack 40s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRingBack {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.glow-accent-orange {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
    from {
        opacity: 0.6;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Keyframes for layout fade-in */
@keyframes heroFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes heroFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

/* =========================================================================
   HERO RESPONSIVE STYLING (NEW HERO ONLY)
   ========================================================================= */
@media (max-width: 991px) {
    .hero-section-new {
        padding: 110px 0 60px !important;
    }

    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content-left {
        align-items: center;
    }

    .hero-heading-new {
        font-size: clamp(28px, 6vw, 38px);
        text-align: center;
    }

    .hero-subheading-new {
        margin-inline: auto;
        text-align: center;
    }

    .hero-ctas-new {
        justify-content: center;
        width: 100%;
    }

    .hero-btn-primary-new,
    .hero-btn-outline-new {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-features-new {
        max-width: 500px;
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-features-new {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }

    .visual-wrapper {
        max-width: 300px;
        height: 300px;
    }

    .main-card {
        width: 230px;
        height: 230px;
    }

    .sub-card-1 {
        top: 10px;
        right: -10px;
        padding: 8px 12px;
    }

    .sub-card-2 {
        bottom: 10px;
        left: -10px;
        padding: 8px 12px;
    }

    .ring-1 {
        width: 270px;
        height: 270px;
    }

    .ring-2 {
        width: 310px;
        height: 310px;
    }
}

/* =========================================================================
   ANIMATED TICKER BAR STYLES
   ========================================================================= */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--bg-light);
    /* Clean light alternate background */
    border-bottom: 1px solid var(--border-color);
    /* Clean subtle borders */
    border-top: 1px solid var(--border-color);
    padding: 12px 0;
    position: relative;
    z-index: 99;
}

@media (min-width: 992px) {
    .ticker-wrap {
        margin-top: 180px;
        /* Offset for desktop absolute header */
    }
}

@media (max-width: 991px) {
    .ticker-wrap {
        margin-top: 0;
        /* Offset already cleared by page-content's margin-top on mobile */
    }
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: tickerMove 25s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    color: #1F2937;
    /* Dark Charcoal Text */
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ticker-item i {
    color: var(--accent-orange);
    margin-right: 10px;
    font-size: 14px;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }

    /* Loop seamlessly */
}

/* =========================================================================
   ABOUT US SECTION — Centered, No Image
   ========================================================================= */

.about-home-section {
    background-color: var(--primary-blue);
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/sada.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 0 !important;
    position: relative;
}

/* Centered description */
.about-description-center {
    max-width: 720px;
    margin: 0 auto 36px auto;
    text-align: center;
}

.about-description-center p {
    font-size: 15px;
    line-height: 1.85;
    color: #4a5568;
    margin: 0;
}

.about-description-center strong {
    color: var(--navy-dark, #0c1728);
    font-weight: 600;
}

/* Stats Row — full width, 4 columns */
.about-stats-horizontal {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    max-width: 860px;
    margin: 0 auto 36px auto;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.about-stat-item {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 12px;
    transition: background-color 0.2s ease;
}

.about-stat-item:hover {
    background-color: #fff9f5;
}

.about-stat-item+.about-stat-item {
    border-left: 1px solid #e8edf2;
}

.stat-number {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--accent-orange) !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    display: block !important;
    line-height: 1.4 !important;
}

/* Centered CTA */
.about-cta-center {
    text-align: center;
}

/* Learn More Button */
.about-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-orange);
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--accent-orange);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-learn-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.about-learn-btn:hover {
    background-color: transparent;
    color: var(--accent-orange) !important;
    transform: translateY(-2px);
}

.about-learn-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 767px) {
    .about-stats-horizontal {
        flex-wrap: wrap;
        border-radius: 0;
    }

    .about-stat-item {
        flex: 0 0 50%;
        padding: 22px 8px;
    }

    .about-stat-item:nth-child(3),
    .about-stat-item:nth-child(4) {
        border-top: 1px solid #e8edf2;
    }

    .about-stat-item:nth-child(3) {
        border-left: none;
    }

    .stat-number {
        font-size: 26px !important;
    }

    .about-learn-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hide all old overlay markup */
.about-grid-overlay,
.about-glow-accent,
.about-image-overlay,
.about-image-column::before {
    display: none !important;
}

/* 2-Column Grid */
.about-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

/* ---------- IMAGE ---------- */
.about-image-column {
    position: relative;
}

.about-image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    background: #e8ecf1;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    min-height: 460px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

/* ---------- CONTENT ---------- */
.about-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Sub-heading inside content column */
.about-sub-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 18px 0;
    line-height: 1.3;
}

/* Description text */
.about-description {
    width: 100%;
    margin-bottom: 28px;
}

.about-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 14px 0;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-description strong {
    color: var(--navy-dark);
    font-weight: 600;
}

/* ---------- STATS ROW ---------- */
.about-stats-horizontal {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    max-width: 860px;
    margin: 0 auto 32px auto;
    border-top: 2px solid #f0f2f5;
    border-bottom: 2px solid #f0f2f5;
    padding: 20px 0;
}

.about-stat-item {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

.about-stat-item+.about-stat-item {
    border-left: 1px solid #e2e8f0;
}

.stat-number {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    color: var(--accent-orange) !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 5px !important;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    display: block !important;
    line-height: 1.4 !important;
}

/* ---------- LEARN MORE BUTTON ---------- */
/* Uses same style as site's read-more links */
.about-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-orange);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--accent-orange);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-learn-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.about-learn-btn:hover {
    background-color: transparent;
    color: var(--accent-orange) !important;
    transform: translateY(-2px);
}

.about-learn-btn:hover i {
    transform: translateX(4px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .about-split-layout {
        gap: 44px;
    }
}

@media (max-width: 991px) {
    .about-home-section {
        padding: 50px 0 !important;
    }

    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 36px;
    }

    .about-image-wrapper img {
        min-height: 320px;
    }
}

@media (max-width: 575px) {
    .about-home-section {
        padding: 40px 0 !important;
    }

    .about-stats-horizontal {
        flex-wrap: wrap;
        padding: 16px 0;
    }

    .about-stat-item {
        flex: 0 0 50%;
        padding: 12px 8px;
    }

    .about-stat-item:nth-child(3),
    .about-stat-item:nth-child(4) {
        border-top: 1px solid #e2e8f0;
    }

    .about-stat-item:nth-child(3) {
        border-left: none;
    }

    .stat-number {
        font-size: 26px !important;
    }

    .about-learn-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Top orange accent bar */
.about-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, #ffaa5e 60%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

.about-home-section .container {
    padding-top: 80px;
}

/* Overlays hidden */
.about-grid-overlay,
.about-glow-accent,
.about-image-overlay {
    display: none !important;
}

/* Remove orange offset border from image column */
.about-image-column::before {
    display: none !important;
}

/* 2-Column Layout */
.about-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---------- IMAGE SIDE ---------- */
.about-image-column {
    position: relative;
}

/* Decorative orange corner accent behind image */
.about-image-column::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border: 3px solid var(--accent-orange);
    border-radius: 4px;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

.about-image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
    background-color: #e8ecf1;
    position: relative;
    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: center 20%;
    filter: none;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

/* ---------- CONTENT SIDE ---------- */
.about-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge */
.about-badge-wrapper {
    margin-bottom: 16px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-orange);
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0;
}

.about-badge::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: var(--accent-orange);
    flex-shrink: 0;
}

/* Heading */
.about-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0c1728;
    line-height: 1.18;
    margin: 0 0 24px 0;
    text-align: left;
    letter-spacing: -0.5px;
}

/* Accent underline on heading */
.about-main-heading span {
    position: relative;
}

.about-main-heading span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

/* Description */
.about-description {
    width: 100%;
    margin-bottom: 0;
}

.about-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #4a5568;
    margin: 0 0 14px 0;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Hide legacy elements */
.about-company-intro,
.about-highlights,
.highlight-item,
.highlight-title,
.about-list,
.about-services-offered,
.solutions-tag-container,
.solution-tag,
.about-serving-text,
.about-stats-grid,
.about-stat-card,
.stat-icon,
.about-cta-group {
    display: none !important;
}

/* ---------- HORIZONTAL STATS ---------- */
.about-stats-horizontal {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    width: 100%;
    max-width: 860px;
    margin: 36px auto 40px auto;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8edf2;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.about-stat-item {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px;
    position: relative;
    transition: background-color 0.2s ease;
}

.about-stat-item:hover {
    background-color: #fff9f5;
}

.about-stat-item+.about-stat-item {
    border-left: 1px solid #e8edf2;
}

.stat-number {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    color: var(--accent-orange) !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
    letter-spacing: -1px;
}

.stat-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    display: block !important;
    line-height: 1.4 !important;
}

/* ---------- CTA BUTTON ---------- */
.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-orange);
    color: #ffffff !important;
    padding: 14px 36px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid var(--accent-orange);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.25);
}

.btn-about-primary::after {
    content: '\2192';
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-about-primary:hover {
    background-color: #e05e00;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227, 30, 36, 0.35);
}

.btn-about-primary:hover::after {
    transform: translateX(4px);
}

.btn-about-secondary {
    display: none !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199px) {
    .about-split-layout {
        gap: 56px;
    }

    .about-main-heading {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .about-home-section {
        padding: 0 0 72px 0 !important;
    }

    .about-home-section .container {
        padding-top: 64px;
    }

    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-image-column::after {
        display: none;
    }

    .about-image-wrapper img {
        min-height: 340px;
    }

    .about-main-heading {
        font-size: 30px;
    }

    .about-stats-horizontal {
        flex-wrap: wrap;
        border-radius: 0;
    }

    .about-stat-item {
        flex: 0 0 50%;
        padding: 22px 8px;
    }

    .about-stat-item:nth-child(3),
    .about-stat-item:nth-child(4) {
        border-top: 1px solid #e8edf2;
    }

    .about-stat-item:nth-child(even) {
        border-left: 1px solid #e8edf2;
    }

    .about-stat-item:nth-child(3) {
        border-left: none;
    }
}

@media (max-width: 575px) {
    .about-home-section {
        padding: 0 0 56px 0 !important;
    }

    .about-home-section .container {
        padding-top: 48px;
    }

    .about-main-heading {
        font-size: 26px;
    }

    .stat-number {
        font-size: 28px !important;
    }

    .btn-about-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Overlays hidden in minimal design */
.about-grid-overlay,
.about-glow-accent,
.about-image-overlay {
    display: none !important;
}

/* Remove orange offset border from image */
.about-image-column::before {
    display: none !important;
}

/* 2-Column Layout */
.about-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Image Column */
.about-image-column {
    position: relative;
}

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    background-color: #f1f5f9;
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    min-height: 460px;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: none;
}

/* Content Column */
.about-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

/* Badge / Label */
.about-badge-wrapper {
    margin-bottom: 14px;
}

.about-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 4px;
    background: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

/* Heading */
.about-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0c1728;
    line-height: 1.2;
    margin: 0 0 28px 0;
    text-align: left;
    letter-spacing: -0.3px;
}

/* Description Paragraphs */
.about-description {
    width: 100%;
    margin-bottom: 32px;
}

.about-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #475569;
    margin: 0 0 14px 0;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Legacy elements hidden in minimal design */
.about-company-intro,
.about-highlights,
.highlight-item,
.highlight-title,
.about-list,
.about-services-offered,
.solutions-tag-container,
.solution-tag,
.about-serving-text,
.about-stats-grid,
.about-stat-card,
.stat-icon,
.about-cta-group {
    display: none !important;
}

/* Horizontal Stats Row */
.about-stats-horizontal {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    max-width: 860px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 26px 0;
    margin: 0 auto 36px auto;
}

.about-stat-item {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.about-stat-item+.about-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: 1px;
    background: #cbd5e1;
}

.stat-number {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--accent-orange) !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 5px !important;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    display: block !important;
    line-height: 1.4 !important;
}

/* CTA Button */
.btn-about-primary {
    display: inline-block;
    background-color: var(--accent-orange);
    color: #ffffff !important;
    padding: 13px 32px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    border: 2px solid var(--accent-orange);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-about-primary:hover {
    background-color: transparent;
    color: var(--accent-orange) !important;
    transform: translateY(-2px);
}

.btn-about-secondary {
    display: none !important;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-split-layout {
        gap: 48px;
    }

    .about-main-heading {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .about-home-section {
        padding: 72px 0 !important;
    }

    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img {
        min-height: 320px;
    }

    .about-main-heading {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .about-home-section {
        padding: 52px 0 !important;
    }

    .about-main-heading {
        font-size: 24px;
    }

    .about-stats-horizontal {
        flex-wrap: wrap;
        gap: 0;
    }

    .about-stat-item {
        flex: 0 0 50%;
        padding: 14px 8px;
        border-bottom: 1px solid #e2e8f0;
    }

    .about-stat-item+.about-stat-item::before {
        display: none;
    }

    .stat-number {
        font-size: 26px !important;
    }
}

/* =========================================================================
   FULLSCREEN SWIPER HERO SLIDER SECTION
   ========================================================================= */
.hero-slider-section {
    width: 100%;
    height: 75vh;
    background: #070d18;
    position: relative;
    overflow: hidden;
}

.hero-slide-new {
    width: 100%;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Grid & Glow Overlays */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(18, 48, 74, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-gradient-overlay-panel {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(0, 109, 228, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-container-new {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 15px !important;
}

@media (min-width: 1040px) {
    .hero-container-new {
        grid-template-columns: 540px 440px;
        justify-content: center;
        gap: 40px;
    }
}

/* Left Content Area */
.hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: heroFadeInLeft 1s ease forwards;
    max-width: 540px;
}

.hero-desc-new {
    font-size: 15px;
    line-height: 1.6;
    color: #1F2937;
    /* High-contrast Charcoal Engineering Gray */
    margin-bottom: 25px;
    max-width: 600px;
    text-align: left;
}

/* Dynamic Animation Triggers */
.swiper-slide-active .hero-content-left {
    animation: slideInLeftText 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.swiper-slide-active .hero-visual-right {
    animation: slideInRightVisual 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInLeftText {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes slideInRightVisual {
    from {
        opacity: 0;
        transform: scale(0.9) translateX(60px);
    }

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

/* Swiper Pagination and Buttons Override */
.hero-slider-section .swiper-button-next,
.hero-slider-section .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(10, 20, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.hero-slider-section .swiper-button-next:hover,
.hero-slider-section .swiper-button-prev:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.4);
}

.hero-slider-section .swiper-button-next::after,
.hero-slider-section .swiper-button-prev::after {
    display: none;
    /* Hide default swiper icons */
}

.hero-slider-section .swiper-button-next i,
.hero-slider-section .swiper-button-prev i {
    font-size: 16px;
}

.hero-slider-section .swiper-pagination {
    bottom: 30px !important;
}

.hero-slider-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.hero-slider-section .swiper-pagination-bullet-active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.5);
}

/* =========================================================================
   VISUAL INTERACTIVE ANIMATIONS
   ========================================================================= */
/* Custom LT Panel Card Grid styling */
.panel-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 10;
}

.panel-card-new {
    background: rgba(10, 20, 36, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.panel-card-new i {
    font-size: 20px;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.panel-card-new span {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-card-new:hover {
    background: rgba(10, 20, 36, 0.95);
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.15);
    transform: translateY(-5px);
}

.panel-card-new:hover i {
    transform: scale(1.15);
}

/* Glowing electric circuit lines */
.circuit-glow-container {
    position: absolute;
    inset: -30px;
    pointer-events: none;
    z-index: 2;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    border-radius: 50px;
    opacity: 0.6;
}

.circuit-line.line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: pulseLine1 4s infinite linear;
}

.circuit-line.line-2 {
    bottom: 20%;
    right: 0;
    width: 100%;
    height: 1px;
    animation: pulseLine2 4s infinite linear;
}

@keyframes pulseLine1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes pulseLine2 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Drive HUD Graphics */
.drive-graphic-wrapper {
    background: rgba(10, 20, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    z-index: 10;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.drive-visual-img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 109, 228, 0.2));
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.drive-graphic-wrapper:hover .drive-visual-img {
    transform: translateY(-5px) scale(1.03);
}

.hud-metrics {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-label {
    font-size: 8px;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.metric-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-orange);
    text-shadow: 0 0 10px rgba(227, 30, 36, 0.3);
}

/* Rotating Mechanical Gears */
.rotating-gears-box {
    position: relative;
    width: 250px;
    height: 250px;
    z-index: 10;
}

.gear-svg {
    position: absolute;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

.gear-large {
    width: 170px;
    height: 170px;
    top: 20px;
    left: 20px;
    animation: rotateGearClockwise 15s linear infinite;
}

.gear-medium {
    width: 110px;
    height: 110px;
    bottom: 20px;
    right: 20px;
    animation: rotateGearCounterClockwise 10s linear infinite;
}

@keyframes rotateGearClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateGearCounterClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* =========================================================================
   TRUST BRAND SLIDER SECTION
   ========================================================================= */
.trust-brand-section {
    background: #070d18;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.trust-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.trust-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.trust-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.brandSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.brand-logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-section {
    padding: 80px 0 !important;
    margin-top: 50px !important;
}

.services-section .container {
    max-width: 1400px !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
    width: 100%;
}

@media (max-width: 992px) {
    .services-section .container {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .services-grid {
        gap: 25px !important;
    }
}

@media (max-width: 576px) {
    .services-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .services-grid {
        gap: 20px !important;
    }
}

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 55px;
    width: 100%;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2d;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-header h2::after {
    display: none;
}

.brand-logo-card {
    height: 70px;
    width: 100%;
    max-width: 160px;
    background: #ffffff;
    /* Solid White for visual uniformity */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-card:hover {
    background: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.25);
    /* Premium orange accent glow */
    border-color: rgba(227, 30, 36, 0.3);
}

.brand-img {
    max-height: 42px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.75);
    /* Modern corporate default grayscale */
    transition: all 0.3s ease;
}

.brand-logo-card:hover .brand-img {
    filter: grayscale(0%) opacity(1);
    /* Color transition on hover */
}

.brand-svg {
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.brand-logo-card:hover .brand-svg {
    color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.brand-logo-card:hover .brand-svg text[stroke="var(--accent-orange)"] {
    filter: drop-shadow(0 0 8px var(--accent-orange));
}

/* =========================================================================
   RESPONSIVE ADJUSTMENTS FOR HERO CAROUSEL
   ========================================================================= */
@media (max-width: 991px) {
    .hero-slider-section {
        height: auto;
        min-height: 75vh;
    }

    .hero-slide-new {
        padding: 110px 0 60px !important;
        height: auto !important;
    }

    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 0 !important;
    }

    .hero-content-left {
        align-items: center;
        text-align: center;
    }

    .hero-heading-new {
        font-size: clamp(28px, 6vw, 36px);
        text-align: center;
    }

    .hero-subheading-new {
        text-align: center;
        margin-inline: auto;
        font-size: 14px;
    }

    .hero-desc-new {
        text-align: center;
        margin-inline: auto;
        font-size: 13.5px;
    }

    .hero-ctas-new {
        justify-content: center;
        width: 100%;
    }

    .hero-features-new {
        max-width: 480px;
        margin: 0 auto;
        text-align: left;
    }

    .hero-visual-right {
        margin-top: 20px;
    }

    .panel-grid-new {
        margin: 0 auto;
    }

    .drive-graphic-wrapper {
        margin: 0 auto;
    }

    .rotating-gears-box {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-features-new {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand-logo-card {
        height: 60px;
        padding: 8px 10px;
    }

    .brand-img {
        max-height: 30px;
    }
}

/* =========================================================================
   SINGLE SLIDE 1 SPECIFIC STYLES
   ========================================================================= */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 48, 74, 0.06);
    border: 1px solid rgba(18, 48, 74, 0.15);
    box-shadow: none;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-subheading-new .highlight-orange {
    color: #E31E24;
    font-weight: 700;
}

/* Floating brand cards styling */
.brand-float-card {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 48, 74, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 12px rgba(227, 30, 36, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.brand-float-card:hover {
    background: rgba(15, 30, 54, 0.98);
    border-color: rgba(227, 30, 36, 0.45);
    box-shadow: 0 12px 28px rgba(227, 30, 36, 0.25);
    transform: translateY(-5px) scale(1.05) !important;
}

.brand-float-card img {
    height: 16px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-mini-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.abb-color {
    color: #ff3333;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.25);
}

.siemens-color {
    color: #00cccc;
    text-shadow: 0 0 5px rgba(0, 204, 204, 0.25);
}

.hem-color {
    color: #44ff44;
    text-shadow: 0 0 5px rgba(68, 255, 68, 0.25);
}

.rotomotive-color {
    color: #ffcc00;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.25);
}

.hpl-color {
    color: #ff7700;
    text-shadow: 0 0 5px rgba(255, 119, 0, 0.25);
}

/* Placement around main visual */
.brand-card-danfoss {
    top: 30px;
    left: -30px;
}

.brand-card-abb {
    top: 90px;
    right: -30px;
}

.brand-card-siemens {
    top: 190px;
    left: -40px;
}

.brand-card-hem {
    bottom: 130px;
    right: -40px;
}

.brand-card-rotomotive {
    bottom: 40px;
    left: -20px;
}

.brand-card-hpl {
    bottom: -10px;
    right: 20px;
}

/* Floating motion animations */
.float-anim-1 {
    animation: floatY1 6s ease-in-out infinite;
}

.float-anim-2 {
    animation: floatY2 7s ease-in-out infinite;
}

.float-anim-3 {
    animation: floatY1 8s ease-in-out infinite;
    animation-delay: -1.5s;
}

.float-anim-4 {
    animation: floatY2 6.5s ease-in-out infinite;
    animation-delay: -2s;
}

.float-anim-5 {
    animation: floatY1 7.5s ease-in-out infinite;
    animation-delay: -3.5s;
}

.float-anim-6 {
    animation: floatY2 8.5s ease-in-out infinite;
    animation-delay: -1s;
}

@keyframes floatY1 {

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

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

@keyframes floatY2 {

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

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

/* Bottom Feature Highlight Strip styling */
.hero-feature-strip-wrap {
    width: 100%;
    background: var(--bg-light);
    /* Same as top ticker strap (#F8F9FA) */
    border-top: 1px solid var(--border-color);
    /* Same as top ticker strap (#D9E0E7) */
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
    padding: 12px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10;
    margin-top: auto;
    /* Push to bottom of flex container */
    overflow: hidden;
    /* Hide offscreen content for infinite scroll */
}

.hero-feature-strip {
    display: flex;
    white-space: nowrap;
    width: max-content;
    align-items: center;
    gap: 0;
    animation: heroStripMove 30s linear infinite;
}

.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 35px;
    /* Premium spacing between scrolling items */
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-dark);
    /* Same as top ticker strap (#1F2937) */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.strip-item i {
    color: var(--accent-orange);
    /* Same as top ticker strap (#E53935) */
    font-size: 14px;
}

@keyframes heroStripMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }

    /* Seamless marquee loop */
}

/* =========================================================================
   RESPONSIVE ADJUSTMENTS FOR SINGLE HERO SLIDE
   ========================================================================= */
@media (max-width: 991px) {
    .hero-section-new {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 65%, rgba(255, 255, 255, 0.5) 100%), url('images/Sider%20Image/background.png') no-repeat center center / cover;
        height: auto;
        min-height: 75vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 110px !important;
    }

    .hero-feature-strip-wrap {
        margin-top: 50px;
    }

    /* Disable extreme floating positioning on tablet */
    .brand-card-danfoss {
        top: 10px;
        left: 0px;
    }

    .brand-card-abb {
        top: 70px;
        right: 0px;
    }

    .brand-card-siemens {
        top: 160px;
        left: 0px;
    }

    .brand-card-hem {
        bottom: 110px;
        right: 0px;
    }

    .brand-card-rotomotive {
        bottom: 30px;
        left: 0px;
    }

    .brand-card-hpl {
        bottom: -10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .strip-item {
        padding: 0 20px;
        font-size: 11px;
    }

    /* Hide some floating brand badges on small screens for spacing */
    .brand-card-hem,
    .brand-card-rotomotive {
        display: none !important;
    }
}

/* Logos Showcase Image Styling */
.logos-showcase-card {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.logos-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 25px rgba(227, 30, 36, 0.15));
    transition: transform 0.5s ease;
}

.logos-showcase-card:hover .logos-img {
    transform: scale(1.03) translateY(-5px);
}

@media (max-width: 991px) {
    .logos-showcase-card {
        margin-top: 30px;
        max-width: 320px;
    }
}

/* =========================================================================
   SINGLE SLIDE 2 SPECIFIC STYLES
   ========================================================================= */

.slide2-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.slide5-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (max-width: 1200px) {
    .slide5-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

@media (max-width: 576px) {
    .slide5-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 10px;
    }
}

.feature-card-premium {
    background: rgba(18, 48, 74, 0.95);
    border: 1px solid rgba(227, 30, 36, 0.2);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.panel-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(227, 30, 36, 0.15);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .panel-card-img {
    border-color: rgba(227, 30, 36, 0.5);
    filter: brightness(1.1);
    transform: scale(1.05);
}

.panel-card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    background: rgba(0, 0, 0, 0.2);
}

.panel-card-content i {
    font-size: 18px;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(227, 30, 36, 0.4));
}

.panel-card-content span {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card-premium:hover {
    background: rgba(15, 30, 54, 0.98);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
    transform: translateY(-5px);
}

.feature-card-premium:hover .panel-card-content i {
    transform: scale(1.15);
}

@media (max-width: 576px) {
    .slide2-feature-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card-premium {
        padding: 15px 12px;
    }
}

/* =========================================================================
   HERO SWIPER CONTROLS STYLING
   ========================================================================= */

.hero-swiper-next,
.hero-swiper-prev {
    color: var(--primary-blue) !important;
    background: rgba(18, 48, 74, 0.04);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    border: 1px solid rgba(18, 48, 74, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-swiper-next:hover,
.hero-swiper-prev:hover {
    background: var(--primary-blue);
    color: #ffffff !important;
    border-color: var(--primary-blue);
    box-shadow: none;
}

.hero-swiper-next::after,
.hero-swiper-prev::after {
    font-size: 20px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    background: rgba(18, 48, 74, 0.2);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 10px;
    box-shadow: none;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* =========================================================================
   SINGLE SLIDE 5 SPECIFIC STYLES
   ========================================================================= */
.slide-bg-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.25;
    pointer-events: none;
}

/* Left Highlights Grid */
.slide5-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    margin-bottom: 30px;
    z-index: 5;
}

.slide5-highlight-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide5-highlight-card i {
    color: var(--accent-orange);
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(227, 30, 36, 0.5));
    transition: transform 0.3s ease;
}

.slide5-highlight-card span {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.slide5-highlight-card:hover {
    background: var(--bg-light);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(18, 48, 74, 0.05);
    transform: translateY(-2px);
}

.slide5-highlight-card:hover i {
    transform: scale(1.15);
}

/* Primary CTA Pill Style */
.slide5-cta-btn {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8800 100%) !important;
    border-radius: 30px !important;
    padding: 14px 32px !important;
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.35) !important;
}

.slide5-cta-btn:hover {
    background: linear-gradient(135deg, #FF8800 0%, var(--accent-orange) 100%) !important;
    box-shadow: 0 8px 28px rgba(227, 30, 36, 0.55) !important;
}

/* Right Side Product Showcase */
.slide5-showcase-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.slide5-showcase-container .main-showcase-card {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed rgba(227, 30, 36, 0.4);
    background: rgba(10, 20, 36, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(227, 30, 36, 0.15);
    z-index: 5;
    transition: all 0.3s ease;
}

.slide5-showcase-container .main-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: contrast(1.1) brightness(0.9);
    transition: all 0.5s ease;
}

.slide5-showcase-container .main-showcase-card:hover img {
    transform: scale(1.08);
}

/* HUD Decorative Circles */
.slide5-showcase-container .ring-1 {
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(227, 30, 36, 0.25);
    position: absolute;
    border-radius: 50%;
    animation: rotateRing 25s linear infinite;
    z-index: 2;
}

.slide5-showcase-container .ring-2 {
    width: 440px;
    height: 440px;
    border: 1px dashed rgba(0, 109, 228, 0.2);
    position: absolute;
    border-radius: 50%;
    animation: rotateRingBack 35s linear infinite;
    z-index: 2;
}

.slide5-showcase-container .glow-accent-orange {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    animation: glowPulse 4s infinite alternate;
}

/* Circuit Lines inside Slide 5 */
.slide5-showcase-container .circuit-glow-container {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    z-index: 2;
}

.slide5-showcase-container .circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    border-radius: 50px;
    opacity: 0.5;
}

.slide5-showcase-container .circuit-line.line-1 {
    top: 15%;
    left: 0;
    width: 100%;
    height: 1.5px;
    animation: pulseLine1 6s infinite linear;
}

.slide5-showcase-container .circuit-line.line-2 {
    bottom: 25%;
    right: 0;
    width: 100%;
    height: 1.5px;
    animation: pulseLine2 8s infinite linear;
}

.slide5-showcase-container .circuit-line.line-3 {
    left: 30%;
    top: 0;
    width: 1.5px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent-orange), transparent);
    animation: pulseLineVertical 7s infinite linear;
}

@keyframes pulseLineVertical {
    0% {
        transform: translateY(-100%);
    }

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

/* Floating Product Showcase Cards */
.slide5-prod-card {
    border: 1px solid rgba(227, 30, 36, 0.35) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(227, 30, 36, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.slide5-prod-card:hover {
    border-color: var(--accent-orange) !important;
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.35), 0 0 20px rgba(227, 30, 36, 0.2) !important;
}

.slide5-showcase-container .card-pos-1 {
    top: 20px;
    left: -50px;
}

.slide5-showcase-container .card-pos-2 {
    top: 80px;
    right: -60px;
}

.slide5-showcase-container .card-pos-3 {
    bottom: 70px;
    left: -60px;
}

.slide5-showcase-container .card-pos-4 {
    bottom: 10px;
    right: -40px;
}

/* Slide 5 Responsive Adjustments */
@media (max-width: 991px) {
    .slide5-showcase-container {
        max-width: 420px;
        height: 400px;
        margin: 0 auto;
    }

    .slide5-showcase-container .main-showcase-card {
        width: 260px;
        height: 260px;
    }

    .slide5-showcase-container .ring-1 {
        width: 310px;
        height: 310px;
    }

    .slide5-showcase-container .ring-2 {
        width: 360px;
        height: 360px;
    }

    .slide5-showcase-container .card-pos-1 {
        top: 0px;
        left: -30px;
    }

    .slide5-showcase-container .card-pos-2 {
        top: 50px;
        right: -40px;
    }

    .slide5-showcase-container .card-pos-3 {
        bottom: 50px;
        left: -40px;
    }

    .slide5-showcase-container .card-pos-4 {
        bottom: 0px;
        right: -20px;
    }
}

@media (max-width: 576px) {
    .slide5-highlights-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .slide5-showcase-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
    }

    .slide5-showcase-container .main-showcase-card {
        width: 220px;
        height: 220px;
        position: static;
        margin-bottom: 10px;
    }

    .slide5-prod-card {
        display: none !important;
    }

    .slide5-showcase-container .hud-circle,
    .slide5-showcase-container .glow-accent-orange,
    .slide5-showcase-container .circuit-glow-container {
        display: none !important;
    }
}

/* Overrides for Slide 5 */
.hero-slide-5 .slide-bg-media {
    opacity: 0.32 !important;
}

/* =========================================================================
   SLIDE 5 BENTO GRID
   ========================================================================= */
.slide5-bento-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 620px;
    height: 420px;
}

.bento-cell {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.bento-cell:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.18);
}

.bento-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.bento-cell:hover img {
    transform: scale(1.07);
}

/* Large cell spans 2 rows */
.bento-cell.bento-large {
    grid-row: span 2;
    border: 2px solid rgba(227, 30, 36, 0.25);
}

.bento-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 10, 25, 0.95) 0%, rgba(5, 10, 25, 0.5) 60%, transparent 100%);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 800;
    padding: 30px 10px 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
}

.bento-label i {
    color: var(--accent-orange);
    font-size: 13px;
    flex-shrink: 0;
}

/* Brand badge tag at top of each cell */
.bento-cell .bento-brand-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(227, 30, 36, 0.92);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive */
@media (max-width: 991px) {
    .slide5-bento-grid {
        max-width: 100%;
        height: 300px;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .slide5-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        max-width: 100%;
        margin-top: 20px;
    }

    .bento-cell {
        height: 120px;
    }

    .bento-cell.bento-large {
        grid-row: span 1;
        grid-column: span 2;
        height: 150px;
    }
}

/* =========================================================================
   PREMIUM PRODUCT GRID SECTION
   ========================================================================= */

/* Keyframes */
@keyframes shimmerSlide {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(250%) skewX(-15deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0);
    }

    50% {
        box-shadow: 0 0 20px 4px rgba(227, 30, 36, 0.25);
    }
}

@keyframes floatBadge {

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

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.products-section-new {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
}

.products-section-new .container {
    max-width: 1400px !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
    width: 100%;
}

@media (max-width: 992px) {
    .products-section-new .container {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

/* Section Subtitle Label */
.section-subtitle {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

/* ---- GRID ---- */
.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* ---- CARD ---- */
.product-card-premium {
    position: relative;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 400ms ease-in-out,
        box-shadow 400ms ease-in-out;
}

/* top accent line */
.product-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #D32F2F;
    opacity: 1;
    transition: box-shadow 400ms ease-in-out;
    z-index: 5;
}

.product-card-premium:hover {
    transform: translateY(-4px);
    border-color: #D32F2F;
    box-shadow: 0 12px 30px rgba(18, 48, 74, 0.06);
}

.product-card-premium:hover::before {
    box-shadow: 0 2px 10px rgba(211, 47, 47, 0.2);
}

/* ---- IMAGE WRAP ---- */
.product-card-image-wrap {
    height: 190px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    flex-shrink: 0;
    border-bottom: 1px solid #F3F4F6;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-premium:hover .product-card-image-wrap img {
    transform: scale(1.04);
}

/* category badge on image */
.product-card-image-wrap .prod-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #E53935;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

/* ---- BODY ---- */
.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* icon row */
.product-card-icon-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.product-card-icon {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-icon i {
    font-size: 20px;
    color: #D32F2F;
    transition: transform 400ms ease;
}

.product-card-premium:hover .product-card-icon i {
    transform: translateY(-2px) scale(1.08);
}

/* ---- TITLE ---- */
.product-card-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #12304A;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 350ms ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
}

.product-card-premium:hover .product-card-title {
    color: #D32F2F;
}

/* ---- DESC ---- */
.product-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #556172;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 350ms ease;
}

/* ---- DIVIDER ---- */
.product-card-divider {
    display: none;
}

/* ---- BUTTON ---- */
.product-card-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 0;
    color: #D32F2F !important;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 350ms ease;
    margin-top: auto;
}

.product-card-btn i {
    font-size: 12px;
    transition: transform 350ms ease;
}

.product-card-btn:hover {
    color: #b71c1c !important;
}

.product-card-premium:hover .product-card-btn i {
    transform: translateX(4px);
}

/* ---- BOTTOM CTA ---- */
.products-bottom-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #0c1728 0%, #0f2040 100%);
    border: 1px solid rgba(227, 30, 36, 0.25);
    border-left: 4px solid var(--accent-orange);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.products-bottom-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.products-bottom-cta p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.products-bottom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-orange);
    color: #ffffff !important;
    border: 2px solid var(--accent-orange);
    padding: 12px 32px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.products-bottom-btn:hover {
    background-color: transparent;
    color: var(--accent-orange) !important;
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .products-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .products-section-new {
        padding: 60px 0;
    }

    .products-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-bottom-cta {
        padding: 30px 20px;
    }
}

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

.why-choose-section {
    background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.7)), url('images/Sider%20Image/background.png') no-repeat center center / cover;
    padding: 80px 0;
    position: relative;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
}

.why-choose-section .container {
    max-width: 1400px !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
    width: 100%;
}

@media (max-width: 992px) {
    .why-choose-section .container {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

/* Small label above heading — matches brand orange label style */
.wcu-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* ---- GRID ---- */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    margin-bottom: 50px;
}

/* ---- CARD ---- */
.wcu-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 6px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
    cursor: default;
}

/* Orange top accent line — hidden until hover */
.wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 6px 6px 0 0;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.wcu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 30, 36, 0.35);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.07);
}

.wcu-card:hover::before {
    opacity: 1;
}

/* ---- ICON ---- */
.wcu-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(227, 30, 36, 0.07);
    border: 1px solid rgba(227, 30, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.28s ease, transform 0.28s ease;
}

.wcu-icon-wrap i {
    font-size: 18px;
    color: var(--accent-orange);
    transition: transform 0.28s ease;
}

.wcu-card:hover .wcu-icon-wrap {
    background: rgba(227, 30, 36, 0.13);
    transform: scale(1.05);
}

.wcu-card:hover .wcu-icon-wrap i {
    transform: scale(1.1);
}

/* ---- CARD BODY ---- */
.wcu-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---- TITLE ---- */
.wcu-card-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: #0c1728;
    margin: 0;
    line-height: 1.4;
    transition: color 0.28s ease;
}

.wcu-card:hover .wcu-card-title {
    color: var(--accent-orange);
}

/* ---- DESC ---- */
.wcu-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* ---- TRUST STRIP ---- */
.wcu-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #f8f9fa;
    border: 1px solid #eaeef2;
    border-radius: 6px;
    padding: 20px 30px;
}

.wcu-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0c1728;
    white-space: nowrap;
}

.wcu-trust-item i {
    color: var(--accent-orange);
    font-size: 14px;
    flex-shrink: 0;
}

.wcu-trust-divider {
    width: 1px;
    height: 24px;
    background: #dde1e7;
    flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .wcu-trust-strip {
        gap: 0;
        padding: 16px 20px;
    }

    .wcu-trust-divider {
        display: none;
    }

    .wcu-trust-item {
        width: 50%;
        padding: 8px 16px;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wcu-card {
        padding: 24px 20px;
    }

    .wcu-trust-item {
        width: 100%;
        padding: 6px 12px;
    }
}

/* =========================================================================
   TESTIMONIALS SECTION — CORPORATE SLIDER
   ========================================================================= */

.testi-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
}

.testi-section .container {
    max-width: 1400px !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
    width: 100%;
}

/* ---- SWIPER WRAPPER ---- */
.testiSwiper {
    padding: 16px 4px 60px !important;
    overflow: visible !important;
}

/* ---- CARD ---- */
.testi-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 8px;
    padding: 36px 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.testi-card:hover {
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 8px 28px rgba(227, 30, 36, 0.07);
}

/* left orange top accent */
.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.testi-card:hover::before {
    opacity: 1;
}

/* ---- QUOTE ICON ---- */
.testi-quote-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(227, 30, 36, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-quote-icon i {
    color: var(--accent-orange);
    font-size: 16px;
}

/* ---- STARS ---- */
.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    color: var(--accent-orange);
    font-size: 14px;
}

.testi-stars i.fa-regular {
    color: #d1d5db;
}

/* ---- REVIEW TEXT ---- */
.testi-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    flex-grow: 1;
    font-style: italic;
}

/* ---- DIVIDER ---- */
.testi-card-divider {
    height: 1px;
    background: #eaeef2;
    margin: 4px 0;
}

/* ---- AUTHOR BLOCK ---- */
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid #eaeef2;
}

/* Avatar circle with initials */
.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c1728 0%, #1a2e4a 100%);
    border: 2px solid rgba(227, 30, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.testi-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0c1728;
    line-height: 1.3;
}

.testi-role {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.testi-company {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    color: var(--accent-orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.testi-company i {
    font-size: 10px;
}

/* ---- NAVIGATION ARROWS ---- */
.testi-prev,
.testi-next {
    color: var(--accent-orange) !important;
    background: #ffffff !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 1px solid #eaeef2 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
    top: auto !important;
    bottom: 0px !important;
    z-index: 15 !important;
    transition: all 0.25s ease !important;
}

.testi-prev {
    left: calc(50% - 110px) !important;
}

.testi-next {
    right: calc(50% - 110px) !important;
}

.testi-prev:hover,
.testi-next:hover {
    background: var(--accent-orange) !important;
    color: #ffffff !important;
    border-color: var(--accent-orange) !important;
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.25) !important;
}

.testi-prev::after,
.testi-next::after {
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* ---- PAGINATION ---- */
.testi-pagination {
    bottom: 8px !important;
    pointer-events: none !important;
}

.testi-pagination .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
    pointer-events: auto !important;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--accent-orange);
    width: 24px;
    border-radius: 10px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .testi-section .container {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

@media (max-width: 768px) {
    .testi-section {
        padding: 60px 0;
    }

    .testi-card {
        padding: 28px 24px 24px;
    }

    .testi-prev {
        left: calc(50% - 110px) !important;
    }

    .testi-next {
        right: calc(50% - 110px) !important;
    }
}

@media (max-width: 576px) {
    .testi-card {
        padding: 24px 20px 20px;
    }
}

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

.clients-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid #eaeef2;
}

.clients-section .container {
    max-width: 1400px !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
    width: 100%;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.clientsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.clientsSwiper {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    overflow: hidden;
}

.client-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 4px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.client-card:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 30, 36, 0.35);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.08);
}

.client-logo-img {
    width: 100%;
    height: auto;
    max-width: 150px;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.65) brightness(0.85);
    /* default premium monochrome gray */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover .client-logo-img {
    filter: grayscale(0) opacity(1) brightness(1);
    /* transition to full brand color on hover */
}

.clients-trust-statement {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin-top: 36px;
    margin-bottom: 50px;
    font-weight: 500;
}



@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-section .container {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

}

@media (max-width: 640px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}


/* =========================================================================
   FAQ SECTION
   ========================================================================= */

.faq-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
}

.faq-section .container {
    max-width: 1000px !important;
    /* centered compact reader layout */
    padding-left: 30px !important;
    padding-right: 30px !important;
    width: 100%;
}

.faq-accordion-container {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    user-select: none;
    transition: background-color 0.25s ease;
}

.faq-header h3 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: #0c1728;
    margin: 0;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.faq-icon-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-toggle i {
    font-size: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover & Active States */
.faq-header:hover h3 {
    color: var(--accent-orange);
}

.faq-header:hover .faq-icon-toggle {
    background: rgba(227, 30, 36, 0.08);
    color: var(--accent-orange);
}

/* Open Accordion State styling */
.faq-item.open {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.05);
}

.faq-item.open .faq-header {
    background-color: rgba(227, 30, 36, 0.02);
    border-bottom: 1px solid rgba(227, 30, 36, 0.08);
}

.faq-item.open .faq-header h3 {
    color: var(--accent-orange);
}

.faq-item.open .faq-icon-toggle {
    background: var(--accent-orange);
    color: #ffffff;
}

.faq-item.open .faq-icon-toggle i {
    transform: rotate(45deg);
    /* convert plus to cross */
}

/* Accordion slide animation panel */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 24px 28px 28px;
    background: #ffffff;
}

.faq-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.faq-content strong {
    color: #0c1728;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        padding: 18px 20px;
    }

    .faq-content {
        padding: 18px 20px 22px;
    }

    .faq-header h3 {
        font-size: 14px;
    }
}


/* =========================================================================
   PREMIUM CTA BAR OVERRIDES
   ========================================================================= */

.cta-bar {
    background: linear-gradient(135deg, #0c1728 0%, #15243b 100%) !important;
    padding: 50px 0 !important;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 2px solid var(--accent-orange) !important;
    /* premium orange brand highlight */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-text {
    color: #ffffff !important;
    font-family: 'Poppins', 'Montserrat', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    position: relative;
    padding-left: 16px;
}

.cta-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
    background: var(--accent-orange);
    /* accent indicator */
    border-radius: 2px;
}

.cta-bar .btn-dark {
    background-color: var(--accent-orange) !important;
    color: #ffffff !important;
    border: 2px solid var(--accent-orange) !important;
    padding: 12px 36px !important;
    border-radius: 4px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.cta-bar .btn-dark:hover {
    background-color: transparent !important;
    color: var(--accent-orange) !important;
    border-color: var(--accent-orange) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4) !important;
}

@media (max-width: 768px) {
    .cta-bar {
        padding: 40px 0 !important;
    }

    .cta-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .cta-text {
        font-size: 20px !important;
        padding-left: 0 !important;
    }

    .cta-text::before {
        display: none !important;
    }

    .cta-bar .btn-dark {
        width: 100% !important;
        max-width: 300px;
    }
}


/* =========================================================================
   PREMIUM CORPORATE FOOTER OVERRIDES
   ========================================================================= */

.footer {
    background-color: #0B1F3A !important;
    color: #CBD5E1 !important;
    padding-top: 80px !important;
    font-family: 'Poppins', 'Montserrat', sans-serif !important;
    position: relative !important;
    z-index: 5 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 30px !important;
    padding-bottom: 60px !important;
    max-width: 1200px !important;
}

.footer-col {
    display: flex !important;
    flex-direction: column !important;
}

.footer-col h3 {
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 25px !important;
    position: relative !important;
    padding-bottom: 10px !important;
    border: none !important;
    margin-top: 0 !important;
}

.footer-col h3::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 35px !important;
    height: 2px !important;
    background-color: var(--accent-orange) !important;
}

.footer-description {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #94A3B8 !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}

.footer-logo-wrapper {
    margin-bottom: 20px !important;
}

.footer-logo {
    height: 48px !important;
    width: auto !important;
    object-fit: contain !important;
}

.footer-company-name {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 12px !important;
    text-transform: none !important;
}

.footer-partner-badge {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border-left: 3px solid var(--accent-orange) !important;
    padding: 12px 14px !important;
    margin-bottom: 20px !important;
    border-radius: 0 4px 4px 0 !important;
}

.partner-title {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: var(--accent-orange) !important;
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 4px !important;
}

.partner-brands {
    font-size: 11.5px !important;
    color: #E2E8F0 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

/* Social Media Section */
.footer-social-icons {
    display: flex !important;
    gap: 10px !important;
    margin-top: 5px !important;
}

.footer-social-icons a {
    width: 36px !important;
    height: 36px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 4px !important;
    color: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: transparent !important;
}

.footer-social-icons a:hover {
    background-color: var(--accent-orange) !important;
    border-color: var(--accent-orange) !important;
    color: #FFFFFF !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3) !important;
}

/* Quick & Product Links */
.footer-nav-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-nav-links li {
    margin-bottom: 12px !important;
}

.footer-nav-links a {
    color: #94A3B8 !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.footer-nav-links a i {
    font-size: 10px !important;
    color: rgba(227, 30, 36, 0.6) !important;
    transition: transform 0.3s ease !important;
}

.footer-nav-links a:hover {
    color: var(--accent-orange) !important;
}

.footer-nav-links a:hover i {
    transform: translateX(4px) !important;
    color: var(--accent-orange) !important;
}

.view-all-li {
    margin-top: 18px !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.08) !important;
    padding-top: 12px !important;
}

.view-all-link {
    color: var(--accent-orange) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.8px !important;
}

/* Brands List */
.footer-brand-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-brand-list li {
    color: #94A3B8 !important;
    font-size: 13.5px !important;
    margin-bottom: 12px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.brand-bullet {
    width: 6px !important;
    height: 6px !important;
    background-color: var(--accent-orange) !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

/* Contact List */
.footer-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact-list li {
    display: flex !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
    align-items: flex-start !important;
}

.contact-icon {
    color: var(--accent-orange) !important;
    font-size: 14px !important;
    margin-top: 4px !important;
    width: 16px !important;
    text-align: center !important;
}

.contact-label {
    display: block !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    color: #FFFFFF !important;
    margin-bottom: 2px !important;
}

.contact-value {
    display: block !important;
    font-size: 13px !important;
    color: #CBD5E1 !important;
    line-height: 1.5 !important;
}

.contact-link {
    color: #CBD5E1 !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

.contact-link:hover {
    color: var(--accent-orange) !important;
}

/* Trust Strip Section */
.footer-trust-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 24px 0 !important;
    background-color: rgba(255, 255, 255, 0.01) !important;
}

.trust-strip-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.5px !important;
}

.trust-item i {
    color: var(--accent-orange) !important;
    font-size: 15px !important;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    background-color: #071526 !important;
    padding: 25px 0 !important;
    border-top: none !important;
}

.bottom-bar-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.copyright-text {
    font-size: 13px !important;
    color: #94A3B8 !important;
}

.developer-credit {
    font-size: 13px !important;
    color: #94A3B8 !important;
}

.dev-link {
    color: #FFFFFF !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

.dev-link:hover {
    color: var(--accent-orange) !important;
}

/* RESPONSIVE FOOTER STYLES */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 60px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .footer-col h3 {
        margin-bottom: 20px !important;
    }

    .trust-strip-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }

    .bottom-bar-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
}

/* Mobile & Tablet adjustments for hero slider section */
@media (max-width: 991px) {
    .hero-section-new {
        min-height: auto !important;
        height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-section-new .swiper-wrapper {
        height: auto !important;
    }

    .hero-section-new .swiper-slide {
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .hero-container-new {
        gap: 15px !important;
        padding-top: 10px !important;
        padding-bottom: 40px !important;
        /* Spacing above bottom strip */
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .hero-visual-right {
        display: none !important;
    }

    .hero-content-left {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 15px !important;
        height: auto !important;
        margin-inline: auto !important;
    }

    .hero-badge-pill {
        margin-inline: auto !important;
        margin-bottom: 15px !important;
    }

    .hero-heading-new {
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 12px !important;
    }

    .hero-subheading-new {
        text-align: center !important;
        width: 100% !important;
        margin-inline: auto !important;
        margin-bottom: 12px !important;
    }

    .hero-desc-new {
        text-align: center !important;
        width: 100% !important;
        margin-inline: auto !important;
        margin-bottom: 20px !important;
    }

    .hero-feature-list {
        justify-content: center !important;
        padding: 0 !important;
        width: 100% !important;
        margin-inline: auto !important;
        margin-bottom: 20px !important;
    }

    .hero-feature-columns {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 15px !important;
        margin-inline: auto !important;
        margin-bottom: 20px !important;
    }

    .hero-feature-columns>div {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-feature-columns ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .slide5-highlights-grid {
        grid-template-columns: 1fr !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin-inline: auto !important;
        margin-bottom: 20px !important;
    }

    .slide5-highlight-card {
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-ctas-new {
        justify-content: center !important;
        width: 100% !important;
    }

    .hero-feature-strip-wrap {
        margin-top: 0 !important;
        /* Sit directly below active slide content */
        position: relative !important;
    }
}

/* =========================================================================
   ABOUT US REDESIGN STYLES
   ========================================================================= */

/* Timeline styling */
.about-timeline {
    position: relative;
    padding-left: 32px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 7px;
    width: 2px;
    background-color: #e5e7eb;
}

.about-timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

.about-timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    border: 3px solid var(--accent-orange);
    z-index: 2;
    transition: all 0.3s ease;
}

.about-timeline-item:hover .about-timeline-dot {
    background-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.25);
}

.about-timeline-content {
    background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.7)), url('images/Sider%20Image/background.png') no-repeat center center / cover;
    padding: 20px;
    border: 1px solid #e8edf2;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.about-timeline-item:hover .about-timeline-content {
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.05);
    transform: translateX(4px);
}

.about-timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.about-timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0c1728;
}

/* Grayscale hover effects for partner/client logos */
.logo-hover-grayscale {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-hover-grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

/* Minimal card hover effects */
.minimal-hover-card {
    background-color: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-hover-card:hover {
    border-color: rgba(227, 30, 36, 0.4);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.06);
    transform: translateY(-4px);
}

/* Accent top border on card hover */
.minimal-accent-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.minimal-accent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.minimal-accent-card:hover::before {
    transform: scaleX(1);
}

.minimal-accent-card:hover {
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

/* CTA light button styling */
.btn-about-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #0c1728;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid rgba(12, 23, 40, 0.15);
    transition: all 0.3s ease;
}

.btn-about-outline-dark:hover {
    background: #0c1728;
    color: #ffffff !important;
    border-color: #0c1728;
    transform: translateY(-2px);
}


.hero-content-left .highlight-orange {
    color: #E31E24 !important;
    font-weight: 700;
}




/* =========================================================================
   NEW SERVICE CARD REDESIGN (MODERN ENHANCED)
   ========================================================================= */
.services-grid .service-card {
    border: 1px solid rgba(227, 0, 15, 0.15);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: auto;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    isolation: isolate;
}

.services-grid .service-card::before {
    display: none;
}

.services-grid .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(227, 0, 15, 0.15);
    border-color: #e3000f;
}

.services-grid .service-card-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center top;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid .service-card:hover .service-card-image {
    transform: scale(1.08);
}

.services-grid .service-card-content {
    background: linear-gradient(180deg, #ffffff 0%, #fcfdfd 100%);
    padding: 60px 25px 35px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -40px;
    border-top-left-radius: 50% 40px;
    border-top-right-radius: 50% 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.04);
}

.services-grid .service-icon {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff1a2b 0%, #cc000b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 38px;
    box-shadow: 0 10px 25px rgba(227, 0, 15, 0.3);
    margin: 0;
    border: 4px solid #fff;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-grid .service-card:hover .service-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(227, 0, 15, 0.4);
}

.services-grid .service-icon i {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid .service-card:hover .service-icon i {
    transform: rotateY(360deg);
}

.services-grid .service-card h3 {
    color: #0b1c2d;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.services-grid .service-card:hover h3 {
    color: #e3000f;
}

.services-grid .service-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.services-grid .service-card:hover p {
    color: #333;
}

.services-grid .service-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 6px 6px 6px 24px;
    border: 2px solid #f0f0f0;
    background: transparent;
    border-radius: 50px;
    color: #0b1c2d;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.services-grid .service-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e3000f;
    border-radius: 50px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid .service-card:hover .service-cta-link {
    border-color: #e3000f;
    box-shadow: 0 8px 25px rgba(227, 0, 15, 0.2);
    color: #e3000f;
}

.services-grid .service-card:hover .service-cta-link:hover {
    color: #fff;
    border-color: #e3000f;
}

.services-grid .service-card:hover .service-cta-link:hover::before {
    transform: scaleX(1);
}

.services-grid .service-cta-link .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #e3000f;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.services-grid .service-card:hover .service-cta-link .arrow-icon {
    background-color: #e3000f;
    color: #fff;
}

.services-grid .service-card:hover .service-cta-link:hover .arrow-icon {
    background: #fff;
    color: #e3000f;
    transform: translateX(3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ══════════════════════════════════════════════════════════════════════
   PRODUCTS MODULE — PREMIUM INDUSTRIAL DESIGN SYSTEM
   Matches homepage: Poppins/Montserrat, Navy #12304A, Orange #E53935
   ══════════════════════════════════════════════════════════════════════ */

/* ── Shared: Products Landing Hero ─────────────────────────────────── */
.pm-hero {
    position: relative;
    background: linear-gradient(135deg, #12304A 0%, #0E253A 60%, #0a1e30 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
}

.pm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.pm-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.13) 0%, transparent 65%);
    pointer-events: none;
}

.pm-hero .container {
    position: relative;
    z-index: 2;
}

.pm-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 57, 53, 0.15);
    border: 1px solid rgba(229, 57, 53, 0.4);
    color: #E53935;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pm-hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E53935;
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.pm-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.pm-hero-title span {
    color: #E53935;
}

.pm-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 32px;
}

.pm-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E53935;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 13px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(229, 57, 53, 0.35);
}

.pm-hero-cta:hover {
    background: #B71C1C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.45);
}

/* ── Shared: Page Sub-Hero (category + detail pages) ────────────────── */
.pm-page-hero {
    position: relative;
    background: linear-gradient(135deg, #12304A 0%, #0E253A 100%);
    padding: 80px 0 0;
    overflow: hidden;
}

.pm-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.pm-page-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

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

.pm-page-hero__content {
    padding-bottom: 32px;
}

.pm-page-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(229, 57, 53, 0.15);
    border: 1px solid rgba(229, 57, 53, 0.35);
    color: #E53935;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pm-page-hero__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.pm-page-hero__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Breadcrumb */
.pm-breadcrumb {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    font-size: 0.8rem;
}

.pm-breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.pm-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.pm-breadcrumb a:hover {
    color: #E53935;
}

.pm-breadcrumb .pm-bc-sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.25);
}

.pm-breadcrumb .pm-bc-current {
    color: #E53935;
    font-weight: 600;
}

/* ── Stats Strip ────────────────────────────────────────────────────── */
.pm-stats-strip {
    background: #fff;
    border-bottom: 1px solid #E8ECF0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pm-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pm-stat-item {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid #E8ECF0;
    transition: background 0.2s;
}

.pm-stat-item:last-child {
    border-right: none;
}

.pm-stat-item:hover {
    background: #FDEAEA;
}

.pm-stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E53935, #B71C1C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pm-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #12304A;
    line-height: 1;
    margin-bottom: 4px;
}

.pm-stat-label {
    font-size: 0.78rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .pm-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 500px) {
    .pm-stats-inner {
        grid-template-columns: 1fr;
    }

    .pm-stat-item {
        border-right: none;
        border-bottom: 1px solid #E8ECF0;
    }
}

/* ── Section Header Component ───────────────────────────────────────── */
.pm-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.pm-section-header--left {
    text-align: left;
}

.pm-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #E53935;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pm-section-label::before,
.pm-section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: #E53935;
}

.pm-section-header--left .pm-section-label::after {
    display: none;
}

.pm-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #12304A;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pm-section-subtitle {
    font-size: 0.975rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Shared Buttons ─────────────────────────────────────────────────── */
.pm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.855rem;
    letter-spacing: 0.4px;
    text-decoration: none;
    border-radius: 50px;
    padding: 11px 22px;
    transition: all 0.28s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.pm-btn-primary {
    background: #E53935;
    color: #fff;
    border-color: #E53935;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.28);
}

.pm-btn-primary:hover {
    background: #B71C1C;
    border-color: #B71C1C;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.38);
}

.pm-btn-navy {
    background: #12304A;
    color: #fff;
    border-color: #12304A;
}

.pm-btn-navy:hover {
    background: #0E253A;
    border-color: #0E253A;
    color: #fff;
}

.pm-btn-outline {
    background: transparent;
    color: #12304A;
    border-color: #C9D4DF;
}

.pm-btn-outline:hover {
    background: #12304A;
    color: #fff;
    border-color: #12304A;
}

.pm-btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.pm-btn-outline-white:hover {
    background: #fff;
    color: #12304A;
    border-color: #fff;
}

.pm-btn-sm {
    font-size: 0.8rem;
    padding: 8px 18px;
}

.pm-btn-lg {
    font-size: 0.95rem;
    padding: 14px 30px;
}

/* ════════════════════════════════════════════════════════════════════
   PAGE 1 — PRODUCTS LANDING PAGE
   ════════════════════════════════════════════════════════════════════ */

.pm-cat-section {
    padding: 80px 0 90px;
    background: #F8F9FA;
}

/* Category Card Grid */
.pm-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}

.pm-cat-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E8ECF0;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pm-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(18, 48, 74, 0.11);
    border-color: #E53935;
}

.pm-cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E53935, #B71C1C);
    transition: width 0.35s ease;
}

.pm-cat-card:hover::after {
    width: 100%;
}

.pm-cat-card__img {
    position: relative;
    height: 196px;
    overflow: hidden;
    background: #F0F4F8;
}

.pm-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.pm-cat-card:hover .pm-cat-card__img img {
    transform: scale(1.07);
}

.pm-cat-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(18, 48, 74, 0.55) 100%);
}

.pm-cat-card__img-icon {
    position: absolute;
    bottom: 14px;
    left: 16px;
    width: 38px;
    height: 38px;
    background: rgba(229, 57, 53, 0.92);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
}

.pm-cat-card__body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pm-cat-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #12304A;
    margin-bottom: 7px;
    line-height: 1.3;
    transition: color 0.2s;
}

.pm-cat-card:hover .pm-cat-card__name {
    color: #E53935;
}

.pm-cat-card__desc {
    font-size: 0.845rem;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.pm-cat-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #F0F4F8;
}

.pm-cat-card__count {
    font-size: 0.77rem;
    color: #9CA3AF;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pm-cat-card__count i {
    font-size: 0.7rem;
}

.pm-cat-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #E53935;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: gap 0.2s, color 0.2s;
}

.pm-cat-card__cta:hover {
    gap: 9px;
    color: #B71C1C;
}

.pm-cat-card__cta i {
    font-size: 0.72rem;
}

/* CTA Strip */
.pm-cta-strip {
    background: linear-gradient(135deg, #12304A 0%, #0E253A 100%);
    padding: 64px 0;
}

.pm-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.pm-cta-strip__text h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.pm-cta-strip__text p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0;
}

.pm-cta-strip__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pm-cta-strip__inner {
        flex-direction: column;
        text-align: center;
    }

    .pm-cta-strip__text p {
        margin: 0 auto;
    }

    .pm-cta-strip__actions {
        justify-content: center;
    }
}

/* ════════════════════════════════════════════════════════════════════
   PAGE 2 — CATEGORY / PRODUCT LIST PAGE
   ════════════════════════════════════════════════════════════════════ */

.pm-catalog-section {
    padding: 40px 0 70px;
    background: #F8F9FA;
    min-height: 60vh;
}

@media (max-width: 768px) {
    .pm-catalog-section {
        padding: 24px 0 48px;
    }
}

.pm-catalog-layout {
    display: grid;
    grid-template-columns: 272px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 960px) {
    .pm-catalog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── Sidebar Mobile Toggle ── */
.pm-sidebar-toggle {
    display: none;
    width: 100%;
    background: #fff;
    border: 1px solid #E8ECF0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #12304A;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.pm-sidebar-toggle:hover {
    border-color: #E53935;
}

.pm-sidebar-toggle i {
    color: #E53935;
    transition: transform 0.3s ease;
}

.pm-sidebar-toggle.open i {
    transform: rotate(180deg);
}

@media (max-width: 960px) {
    .pm-sidebar-toggle {
        display: flex;
    }
}


/* ── Sidebar Body (collapsible on mobile) ── */
.pm-sidebar-body {
    /* Desktop: always visible */
}

@media (max-width: 960px) {
    .pm-sidebar-body {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
        background: #ffffff;
        border: 1px solid #E8ECF0;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(18, 48, 74, 0.15);
        margin-top: 8px;
        padding: 16px 24px 16px 16px;
        max-height: 420px;
        overflow-y: auto;
    }

    .pm-sidebar-body.open {
        display: block;
        animation: sidebarSlideDown 0.3s ease;
    }

    .pm-sidebar-body::-webkit-scrollbar {
        width: 6px;
    }

    .pm-sidebar-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .pm-sidebar-body::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .pm-sidebar-body::-webkit-scrollbar-thumb:hover {
        background: #aaa;
    }
}

@keyframes sidebarSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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


/* ── Sidebar Connected Circuit Redesign ── */
.pm-sidebar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: sticky !important;
    top: 100px !important;
}

@media (max-width: 960px) {
    .pm-sidebar {
        position: relative !important;
        z-index: 1000 !important;
        top: 0 !important;
    }
}

.pm-sidebar-header {
    background: transparent !important;
    padding: 12px 10px 24px !important;
    border-bottom: 2px dashed #E2E8F0 !important;
    margin-bottom: 24px !important;
    position: relative !important;
}

.pm-sidebar-header h3 {
    color: #12304A !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.pm-sidebar-header h3::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #E53935;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #E53935;
    animation: sidebar-pulse-glow 2s infinite;
}

@keyframes sidebar-pulse-glow {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

.pm-sidebar-nav {
    position: relative !important;
    list-style: none !important;
    padding: 0 0 0 24px !important;
    margin: 0 0 30px !important;
    max-height: none !important;
    overflow: visible !important;
    border: none !important;
}

@media (max-width: 960px) {
    .pm-sidebar-nav {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 8px !important;
    }

    .pm-sidebar-nav::before {
        display: none !important;
    }

    .pm-sidebar-nav li::before,
    .pm-sidebar-nav li::after {
        display: none !important;
    }

    .pm-sidebar-nav li {
        margin-bottom: 0 !important;
    }
}

/* Vertical Busbar Line */
.pm-sidebar-nav::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 15px;
    width: 2px;
    background: linear-gradient(to bottom, #E53935, #12304A 70%, #E2E8F0);
    border-radius: 1px;
}

.pm-sidebar-nav li {
    position: relative !important;
    margin-bottom: 12px !important;
}

/* Horizontal Connector Line & Node */
.pm-sidebar-nav li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: #E2E8F0;
    transition: background 0.3s ease;
}

.pm-sidebar-nav li::after {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #CBD5E1;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Connector Line Hover & Active States */
.pm-sidebar-nav li:hover::before {
    background: #E53935;
}

.pm-sidebar-nav li:hover::after {
    border-color: #E53935;
    background: #E53935;
    box-shadow: 0 0 6px rgba(229, 57, 53, 0.8);
}

.pm-sidebar-nav li.active::before {
    background: #E53935;
}

.pm-sidebar-nav li.active::after {
    border-color: #E53935;
    background: #E53935;
    box-shadow: 0 0 10px #E53935;
    width: 10px;
    height: 10px;
    left: -23px;
}

/* Glassmorphic Cards */
.pm-sidebar-nav li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #4B5563 !important;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 2px 5px rgba(18, 48, 74, 0.02) !important;
}

.pm-sidebar-nav li a .pm-nav-icon {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: #E53935 !important;
    font-size: 0.95rem !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
    margin-right: 2px !important;
}

.pm-sidebar-nav li a .pm-nav-arrow {
    margin-left: auto !important;
    font-size: 0.7rem !important;
    color: #9CA3AF !important;
    opacity: 0.5;
    transition: all 0.3s ease !important;
}

/* Hover Action */
.pm-sidebar-nav li a:hover {
    background: #ffffff !important;
    color: #E53935 !important;
    border-color: rgba(229, 57, 53, 0.4) !important;
    transform: translateY(-2px) translateX(4px) !important;
    box-shadow: 0 8px 20px rgba(18, 48, 74, 0.06) !important;
}

.pm-sidebar-nav li a:hover .pm-nav-arrow {
    opacity: 1;
    color: #E53935 !important;
    transform: translateX(3px) !important;
}

/* Active Highlight */
.pm-sidebar-nav li.active a {
    background: #ffffff !important;
    color: #12304A !important;
    border-color: #E53935 !important;
    border-left: 4px solid #E53935 !important;
    box-shadow: 0 10px 25px rgba(18, 48, 74, 0.08), 0 0 0 1px rgba(229, 57, 53, 0.1) !important;
    font-weight: 700 !important;
    transform: translateX(6px) !important;
}

.pm-sidebar-nav li.active a .pm-nav-arrow {
    opacity: 1;
    color: #12304A !important;
    transform: translateX(3px) scale(1.1) !important;
}

/* Support/Expert Panel Card Redesign */
.pm-sidebar-expert {
    margin: 10px 0 0 24px !important;
    background: linear-gradient(135deg, #12304A, #0a1b2a) !important;
    border-radius: 16px !important;
    padding: 24px 20px !important;
    text-align: center !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(18, 48, 74, 0.25) !important;
}

@media (max-width: 960px) {
    .pm-sidebar-expert {
        margin: 10px 0 0 0 !important;
    }
}

.pm-sidebar-expert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(229, 57, 53, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(18, 48, 74, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.pm-sidebar-expert__icon {
    width: 48px !important;
    height: 48px !important;
    background: rgba(229, 57, 53, 0.15) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 16px !important;
    color: #E53935 !important;
    font-size: 1.25rem !important;
    border: 1px solid rgba(229, 57, 53, 0.3) !important;
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.2) !important;
}

.pm-sidebar-expert h4 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
}

.pm-sidebar-expert p {
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.pm-sidebar-expert .pm-btn-primary {
    background: #E53935 !important;
    border-color: #E53935 !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3) !important;
}

.pm-sidebar-expert .pm-btn-primary:hover {
    background: #B71C1C !important;
    border-color: #B71C1C !important;
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.45) !important;
    transform: translateY(-1px) !important;
}

.pm-sidebar-expert .pm-inquiry-card__tel {
    margin-top: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #E53935 !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.pm-sidebar-expert .pm-inquiry-card__tel:hover {
    color: #fff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* ── Product Grid Main ──────────────────────────────────────────── */
.pm-catalog-main {
    min-width: 0;
}

.pm-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding: 13px 18px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E8ECF0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pm-sort-bar__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pm-sort-bar__title {
    font-size: 1rem;
    font-weight: 700;
    color: #12304A;
}

.pm-sort-bar__count {
    background: #F0F4F8;
    color: #6B7280;
    font-size: 0.77rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

@media (max-width: 480px) {
    .pm-sort-bar {
        padding: 10px 14px;
    }

    .pm-sort-bar__title {
        font-size: 0.9rem;
    }
}

/* Product Grid */
.pm-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.pm-product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E8ECF0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.pm-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(18, 48, 74, 0.1);
    border-color: #E53935;
}

.pm-product-card__img-wrap {
    position: relative;
    height: 196px;
    overflow: hidden;
    background: #F8F9FA;
}

.pm-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pm-product-card:hover .pm-product-card__img-wrap img {
    transform: scale(1.05);
}

.pm-product-card__brand-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(18, 48, 74, 0.88);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.pm-product-card__body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pm-product-card__name {
    font-size: 0.965rem;
    font-weight: 700;
    color: #12304A;
    margin-bottom: 6px;
    line-height: 1.4;
    transition: color 0.2s;
}

.pm-product-card:hover .pm-product-card__name {
    color: #E53935;
}

.pm-product-card__range {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FDEAEA;
    color: #B71C1C;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid rgba(229, 57, 53, 0.18);
    align-self: flex-start;
}

.pm-product-card__desc {
    font-size: 0.838rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.pm-product-card__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .pm-product-card__actions {
        flex-direction: column;
    }

    .pm-product-card__actions .pm-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ════════════════════════════════════════════════════════════════════
   PAGE 3 — PRODUCT DETAIL PAGE
   ════════════════════════════════════════════════════════════════════ */

.pm-detail-section {
    padding: 56px 0 80px;
    background: #F8F9FA;
}

/* Two-column layout */
.pm-detail-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

@media (max-width: 960px) {
    .pm-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Gallery / Image Column */
.pm-detail-gallery {
    position: sticky;
    top: 100px;
}

.pm-main-image-wrap {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E8ECF0;
    padding: 24px;
    text-align: center;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.pm-main-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.pm-main-image-wrap:hover img {
    transform: scale(1.04);
}

/* Inquiry Card under image */
.pm-inquiry-card {
    margin-top: 18px;
    background: linear-gradient(135deg, #12304A, #1a4a72);
    border-radius: 12px;
    padding: 22px;
    color: #fff;
    text-align: center;
}

.pm-inquiry-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.pm-inquiry-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 16px;
    line-height: 1.5;
}

.pm-inquiry-card__tel {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #E53935;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
}

.pm-inquiry-card__tel:hover {
    color: #FDB97A;
}

/* Product Info Column */
.pm-detail-info {}

.pm-product-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pm-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-badge-cat {
    background: rgba(18, 48, 74, 0.08);
    color: #12304A;
    border: 1px solid rgba(18, 48, 74, 0.14);
}

.pm-badge-brand {
    background: rgba(229, 57, 53, 0.1);
    color: #B71C1C;
    border: 1px solid rgba(229, 57, 53, 0.22);
}

.pm-product-name {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #12304A;
    margin-bottom: 14px;
    line-height: 1.25;
}

.pm-power-range-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F8F9FA;
    border: 1px solid #E8ECF0;
    border-left: 4px solid #E53935;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
}

.pm-power-range-tag i {
    color: #E53935;
}

.pm-product-desc {
    font-size: 0.925rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8ECF0;
}

.pm-action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Specs Block */
.pm-specs-block {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E8ECF0;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pm-specs-block__header {
    background: linear-gradient(135deg, #12304A, #1a3d5c);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.pm-specs-block__header h3 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.pm-specs-block__header i {
    color: #E53935;
    font-size: 0.9rem;
}

.pm-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.pm-specs-table tr:nth-child(even) td {
    background: #F8F9FA;
}

.pm-specs-table td {
    padding: 10px 16px;
    font-size: 0.86rem;
    border-bottom: 1px solid #F0F4F8;
    color: #4B5563;
    line-height: 1.5;
    vertical-align: top;
}

.pm-specs-table td:first-child {
    font-weight: 600;
    color: #12304A;
    width: 40%;
}

.pm-specs-table tr:last-child td {
    border-bottom: none;
}

/* Highlights block */
.pm-highlights-block {
    background: #FDEAEA;
    border-radius: 10px;
    border-left: 4px solid #E53935;
    padding: 16px 18px;
    margin-bottom: 22px;
}

.pm-highlights-block h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #12304A;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pm-highlights-block h3 i {
    color: #E53935;
}

.pm-highlights-block p {
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.75;
    margin: 0;
}

/* Section Block (shared frame for features/applications/why-us) */
.pm-detail-block {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E8ECF0;
    padding: 28px 30px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pm-block-title {
    font-size: 1rem;
    font-weight: 700;
    color: #12304A;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 2px solid #E8ECF0;
}

.pm-block-title i {
    color: #E53935;
}

/* Key Features */
.pm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}

.pm-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 13px;
    background: #F8F9FA;
    border-radius: 8px;
    font-size: 0.86rem;
    color: #374151;
    line-height: 1.5;
    border: 1px solid #F0F4F8;
    transition: background 0.18s, border-color 0.18s;
}

.pm-feature-item:hover {
    background: #FDEAEA;
    border-color: rgba(229, 57, 53, 0.18);
}

.pm-feature-item i {
    color: #22C55E;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.88rem;
}

/* Applications */
.pm-app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.pm-app-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #EEF2FF;
    color: #3730A3;
    border: 1px solid rgba(55, 48, 163, 0.14);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.81rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: default;
}

.pm-app-tag:hover {
    background: #12304A;
    color: #fff;
    border-color: #12304A;
}

.pm-app-tag i {
    font-size: 0.76rem;
}

/* Why Choose Us */
.pm-whyus-block {
    background: linear-gradient(135deg, #12304A 0%, #0E253A 100%);
    border-radius: 14px;
    padding: 28px 30px;
    margin-bottom: 24px;
}

.pm-whyus-block .pm-block-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pm-whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.pm-whyus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.18s;
}

.pm-whyus-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pm-whyus-item i {
    color: #E53935;
    flex-shrink: 0;
}

/* Back-link nav */
.pm-detail-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 4px;
}

/* ── Related Products ─────────────────────────────────────────────── */
.pm-related-section {
    padding: 70px 0;
    background: #fff;
    border-top: 1px solid #E8ECF0;
}

.pm-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* ── Inquiry Section ──────────────────────────────────────────────── */
.pm-inq-section {
    padding: 70px 0;
    background: #F8F9FA;
}

.pm-inq-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

@media (max-width: 768px) {
    .pm-inq-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.pm-inq-info h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #12304A;
    margin-bottom: 12px;
}

.pm-inq-info p {
    color: #6B7280;
    font-size: 0.915rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.pm-inq-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pm-inq-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #374151;
}

.pm-inq-contact-item .pm-contact-icon {
    width: 38px;
    height: 38px;
    background: #FDEAEA;
    color: #E53935;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pm-inq-contact-item a {
    color: #12304A;
    font-weight: 600;
    text-decoration: none;
}

.pm-inq-contact-item a:hover {
    color: #E53935;
}

/* Form Card */
.pm-inq-form-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E8ECF0;
    padding: 34px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pm-inq-form-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #12304A;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #E53935;
}

.pm-form-group {
    margin-bottom: 16px;
}

.pm-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-form-group input,
.pm-form-group select,
.pm-form-group textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #D9E0E7;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: #1F2937;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.pm-form-group input:focus,
.pm-form-group textarea:focus,
.pm-form-group select:focus {
    border-color: #E53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.pm-form-group textarea {
    min-height: 96px;
    resize: vertical;
}

.pm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ── Products module responsive cascade (largest → smallest) ── */
@media (max-width: 960px) {
    .pm-sidebar {
        position: static !important;
        top: auto !important;
    }

    .pm-cat-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .pm-sidebar-header {
        padding: 10px 10px 16px !important;
        margin-bottom: 14px !important;
    }
}

@media (max-width: 768px) {
    .pm-hero {
        padding: 72px 0 56px;
        min-height: auto;
    }

    .pm-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-detail-layout {
        grid-template-columns: 1fr;
    }

    .pm-detail-gallery {
        position: static;
    }

    .pm-detail-block {
        padding: 20px 18px;
    }

    .pm-whyus-block {
        padding: 20px 18px;
    }

    .pm-product-card__img-wrap {
        height: 170px;
    }

    .pm-sort-bar {
        margin-bottom: 16px;
    }
}

@media (max-width: 600px) {

    /* 1-column product grid on phones */
    .pm-product-grid {
        grid-template-columns: 1fr;
    }

    .pm-related-grid {
        grid-template-columns: 1fr;
    }

    .pm-product-card__img-wrap {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .pm-form-row {
        grid-template-columns: 1fr;
    }

    .pm-cat-grid {
        grid-template-columns: 1fr;
    }

    .pm-features-grid {
        grid-template-columns: 1fr;
    }

    .pm-whyus-grid {
        grid-template-columns: 1fr;
    }

    .pm-product-grid {
        grid-template-columns: 1fr;
    }

    .pm-sidebar-nav {
        grid-template-columns: 1fr !important;
    }
}

/* Bottom CTA in category pages (uses inline styles — override for mobile) */
@media (max-width: 600px) {

    /* Target the inline-styled bottom CTA block */
    .pm-catalog-main>div[style*="linear-gradient(135deg,#12304A"] {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px 18px !important;
        gap: 16px !important;
    }

    .pm-catalog-main>div[style*="linear-gradient(135deg,#12304A"] a {
        width: 100%;
        justify-content: center;
    }

    /* Ensure hero text wraps nicely on small phones */
    .hero-heading-new {
        font-size: clamp(1.6rem, 7vw, 2.6rem) !important;
    }

    .hero-desc-new {
        font-size: 0.88rem !important;
    }

    .hero-ctas-new {
        gap: 10px !important;
    }
}

/* ── Page Hero ─────────────────────────────────────────────────────── */
.page-hero {
    position: relative;
    background: url('images/LT-Panel.jpg') center/cover no-repeat;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
    overflow: hidden;
}

.page-hero--products {
    background-image: url('images/VFD-Panel.jpg');
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.85) 0%, rgba(220, 68, 17, 0.4) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 0;
}

.page-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 600px;
}

/* ── Breadcrumb ────────────────────────────────────────────────────── */
.breadcrumb-bar {
    background: rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 0;
}

.breadcrumb-bar a {
    color: #e8a04a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.breadcrumb-bar a:hover {
    color: #fff;
}

.breadcrumb-bar span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.breadcrumb-bar .sep {
    margin: 0 0.4rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Products Overview Grid (index.html) ───────────────────────────── */
.pcat-section {
    padding: 70px 0;
    background: #f7f9fc;
}

.pcat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.pcat-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 1px solid #eaeef3;
}

.pcat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pcat-card__img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pcat-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pcat-card:hover .pcat-card__img-wrap img {
    transform: scale(1.05);
}

.pcat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 20, 40, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.pcat-card__overlay i {
    font-size: 1.8rem;
    color: #e8632e;
}

.pcat-card__body {
    padding: 20px 22px 22px;
}

.pcat-card__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #e8632e, #c74a1c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pcat-card__icon i {
    color: #fff;
    font-size: 1.1rem;
}

.pcat-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1428;
    margin-bottom: 8px;
}

.pcat-card__desc {
    font-size: 0.875rem;
    color: #5a6a7e;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pcat-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pcat-card__count {
    font-size: 0.8rem;
    color: #7f8c9a;
    font-weight: 500;
}

.pcat-card__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e8632e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.pcat-card__cta:hover {
    gap: 10px;
}

/* ── Category / Product List Page ─────────────────────────────────── */
.plist-section {
    padding: 60px 0;
    background: #f7f9fc;
}

.plist-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 900px) {
    .plist-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.plist-sidebar {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeef3;
    overflow: hidden;
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, #0a1428, #1a2d50);
    padding: 14px 18px;
}

.sidebar-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.875rem;
    color: #3d4f63;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.sidebar-list li a .arrow {
    margin-left: auto;
    font-size: 0.65rem;
    color: #aaa;
    transition: transform 0.2s;
}

.sidebar-list li a:hover,
.sidebar-list li.active a {
    background: #fff7f4;
    color: #e8632e;
}

.sidebar-list li a:hover .arrow,
.sidebar-list li.active a .arrow {
    color: #e8632e;
    transform: translateX(3px);
}

.sidebar-list li.active a {
    font-weight: 600;
    border-left: 3px solid #e8632e;
}

/* Product list grid */
.plist-main {
    min-width: 0;
}

.plist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8632e;
}

.plist-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1428;
}

.plist-count {
    font-size: 0.8rem;
    color: #7f8c9a;
    background: #f0f3f7;
    padding: 4px 12px;
    border-radius: 20px;
}

.plist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.plist-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeef3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.plist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.plist-card__img-wrap {
    height: 200px;
    overflow: hidden;
    background: #f0f3f7;
}

.plist-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.plist-card:hover .plist-card__img-wrap img {
    transform: scale(1.04);
}

.plist-card__body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plist-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1428;
    margin-bottom: 8px;
    line-height: 1.4;
}

.plist-card__range {
    font-size: 0.78rem;
    color: #e8632e;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plist-card__desc {
    font-size: 0.855rem;
    color: #5a6a7e;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.plist-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #e8632e;
    color: #e8632e;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.plist-card__cta:hover {
    background: #e8632e;
    color: #fff;
}

/* ── Product Detail Page ──────────────────────────────────────────── */
.pdetail-section-wrap {
    padding: 60px 0;
    background: #f7f9fc;
}

.pdetail-main {
    min-width: 0;
}

.pdetail-top {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #eaeef3;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

@media (max-width: 860px) {
    .pdetail-top {
        grid-template-columns: 1fr;
    }
}

.pdetail-main-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eaeef3;
}

.pdetail-info {
    display: flex;
    flex-direction: column;
}

.pdetail-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a1428;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pdetail-desc {
    font-size: 0.925rem;
    color: #4a5a70;
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

.pdetail-enquiry {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdetail-section {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid #eaeef3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pdetail-section__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1428;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8632e;
}

.pdetail-section__title i {
    color: #e8632e;
}

.pdetail-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.pdetail-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #4a5a70;
    line-height: 1.5;
}

.pdetail-features li i {
    color: #22c55e;
    margin-top: 2px;
    flex-shrink: 0;
}

.pdetail-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.pdetail-specs-table th,
.pdetail-specs-table td {
    padding: 10px 14px;
    text-align: left;
    font-size: 0.875rem;
    border-bottom: 1px solid #eaeef3;
}

.pdetail-specs-table th {
    background: #f4f7fb;
    color: #0a1428;
    font-weight: 600;
    width: 200px;
}

.pdetail-specs-table td {
    color: #4a5a70;
}

.pdetail-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdetail-range__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #4a5a70;
    background: #f7f9fc;
    padding: 8px 14px;
    border-radius: 8px;
    border-left: 3px solid #e8632e;
}

.pdetail-range__item i {
    color: #e8632e;
}

.pdetail-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pdetail-app-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff7f4;
    color: #c04a1a;
    border: 1px solid #f5c4a8;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* ── Related Products ─────────────────────────────────────────────── */
.related-products {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid #eaeef3;
}

.related-products__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1428;
    margin-bottom: 28px;
}

.related-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.related-card {
    border-radius: 10px;
    border: 1px solid #eaeef3;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
    background: #fff;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-card__img {
    height: 150px;
    overflow: hidden;
    background: #f0f3f7;
}

.related-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

.related-card:hover .related-card__img img {
    transform: scale(1.05);
}

.related-card__body {
    padding: 14px 16px;
}

.related-card__body h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0a1428;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-card__link {
    font-size: 0.8rem;
    color: #e8632e;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── CTA Strip ────────────────────────────────────────────────────── */
.cta-strip {
    background: linear-gradient(135deg, #0a1428 0%, #1a2d50 100%);
    padding: 40px 0;
}

.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-strip__inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 600px) {
    .cta-strip__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Homepage Product Section Override ───────────────────────────── */
.hprod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.hprod-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 1px solid #eaeef3;
}

.hprod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.hprod-card__img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.hprod-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hprod-card:hover .hprod-card__img-wrap img {
    transform: scale(1.05);
}

.hprod-card__icon-overlay {
    position: absolute;
    bottom: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    background: rgba(232, 99, 46, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hprod-card__icon-overlay i {
    color: #fff;
    font-size: 1rem;
}

.hprod-card__body {
    padding: 18px 20px 20px;
}

.hprod-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1428;
    margin-bottom: 6px;
}

.hprod-card__desc {
    font-size: 0.82rem;
    color: #5a6a7e;
    line-height: 1.5;
    margin-bottom: 14px;
}

.hprod-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hprod-card__count {
    font-size: 0.78rem;
    color: #7f8c9a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hprod-card__cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e8632e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.hprod-card__cta:hover {
    gap: 9px;
}

/* Section header used on products pages */
.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #0a1428;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #5a6a7e;
    font-size: 1rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === Product Detail Feature List === */
.product-detail-section ul li {
    padding: 8px 0;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #374151;
    font-size: 0.9rem;
}

.product-detail-section ul li:last-child {
    border-bottom: none;
}

.product-detail-section ul li i.fa-check-circle {
    color: #E53935;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .product-detail-section .container>div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================ */
/* FLAT CATEGORY & PRODUCT PAGE STYLES                         */
/* ============================================================ */

/* Page Hero */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #12304A 0%, #1a4a72 60%, #0e2238 100%);
    padding: 80px 0 40px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(229, 57, 53, 0.15) 0%, transparent 60%);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 0 30px;
}

.page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb-bar {
    padding: 8px 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-bar a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-bar a:hover {
    color: #E53935;
}

.breadcrumb-bar .sep {
    margin: 0 6px;
}

.breadcrumb-bar span:last-child {
    color: #E53935;
}

/* Product Listing Section */
.plist-section {
    padding: 60px 0;
    background: #f5f7fa;
    min-height: 60vh;
}

.plist-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .plist-layout {
        grid-template-columns: 1fr;
    }

    .plist-sidebar {
        display: none;
    }
}

/* Sidebar */
.plist-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    background: #12304A;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 20px;
    margin: 0;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-list li a i {
    width: 16px;
    color: #9CA3AF;
    font-size: 0.85rem;
}

.sidebar-list li a .arrow {
    margin-left: auto;
    font-size: 0.7rem;
    opacity: 0;
}

.sidebar-list li a:hover,
.sidebar-list li.active a {
    color: #E53935;
    background: #FDEAEA;
    border-left-color: #E53935;
}

.sidebar-list li a:hover i,
.sidebar-list li.active a i {
    color: #E53935;
}

.sidebar-list li a:hover .arrow,
.sidebar-list li.active a .arrow {
    opacity: 1;
}

/* Product Listing Main */
.plist-main {
    min-width: 0;
}

.plist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E5E7EB;
}

.plist-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #12304A;
    margin: 0;
}

.plist-count {
    background: #12304A;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Product Cards Grid */
.plist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.plist-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.plist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.plist-card__img-wrap {
    height: 200px;
    overflow: hidden;
}

.plist-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.plist-card:hover .plist-card__img-wrap img {
    transform: scale(1.06);
}

.plist-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plist-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #12304A;
    margin: 0 0 6px;
    line-height: 1.4;
}

.plist-card__range {
    font-size: 0.8rem;
    color: #E53935;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plist-card__desc {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.plist-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid #12304A;
    color: #12304A;
    width: fit-content;
}

.plist-card__cta:hover {
    background: #12304A;
    color: #fff;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, #E53935, #B71C1C);
    padding: 32px 0;
}

.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-strip__inner p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 600px) {
    .cta-strip__inner {
        justify-content: center;
        text-align: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
}

.btn--primary {
    background: #E53935;
    color: #fff;
    border: 2px solid #E53935;
}

.btn--primary:hover {
    background: #B71C1C;
    border-color: #B71C1C;
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: #12304A;
    border: 2px solid #12304A;
}

.btn--outline:hover {
    background: #12304A;
    color: #fff;
}

.btn--lg {
    padding: 12px 30px;
    font-size: 1rem;
}

.cta-strip .btn--primary {
    background: #fff;
    color: #E53935;
    border-color: #fff;
}

.cta-strip .btn--primary:hover {
    background: #12304A;
    color: #fff;
    border-color: #12304A;
}

/* Subpage Hero Clearance for Absolute Header */
@media (min-width: 992px) {

    .pm-hero-subpage,
    .pm-page-hero,
    .page-hero {
        margin-top: 180px !important;
    }
}

/* Mobile Responsive Sidebar (Horizontal Scrolling Chips) */
@media (max-width: 960px) {
    .pm-sidebar {
        position: static !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        margin-bottom: 24px !important;
    }

    .pm-sidebar-header {
        display: none !important;
    }

    .pm-sidebar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;
        max-height: none !important;
        padding: 8px 4px !important;
        gap: 8px !important;
        border: none !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .pm-sidebar-nav::-webkit-scrollbar {
        height: 4px;
    }

    .pm-sidebar-nav::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.03);
        border-radius: 4px;
    }

    .pm-sidebar-nav::-webkit-scrollbar-thumb {
        background: #E53935;
        border-radius: 4px;
    }

    .pm-sidebar-nav li {
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    .pm-sidebar-nav li a {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        padding: 8px 16px !important;
        background: #fff !important;
        border-radius: 30px !important;
        border: 1px solid #E8ECF0 !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        color: #12304A !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        transition: all 0.25s ease;
    }

    .pm-sidebar-nav li.active a {
        background: #12304A !important;
        color: #fff !important;
        border-color: #12304A !important;
    }

    .pm-sidebar-nav li a .pm-nav-arrow {
        display: none !important;
    }

    .pm-sidebar-nav li a .pm-nav-icon {
        font-size: 0.9rem !important;
        margin-right: 0 !important;
    }

    .pm-sidebar-expert {
        display: none !important;
    }
}

/* Mobile Product Card Action Buttons (Equal Width & Full Span) */
@media (max-width: 480px) {
    .pm-product-card__actions {
        display: flex !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .pm-product-card__actions .pm-btn {
        flex: 1 !important;
        justify-content: center !important;
        padding: 10px 8px !important;
        font-size: 0.78rem !important;
        text-align: center !important;
    }
}

/* Global Mobile Responsiveness Constraints (Bypassing horizontal overflow) */
html,
body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Hide header email block on narrow viewports to avoid overlapping with Logo/Hamburger */
@media (max-width: 767px) {

    .premium-header .hidden.sm\:flex,
    .main-header .hidden.sm\:flex {
        display: none !important;
    }
}

/* Responsive Sort Bar for Mobile Viewports */
@media (max-width: 576px) {
    .pm-sort-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        text-align: center !important;
        padding: 12px 14px !important;
    }

    .pm-sort-bar__left {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .pm-sort-bar .pm-btn {
        justify-content: center !important;
        width: 100% !important;
    }
}


   . c o n t a i n - i m g    {
       o b j e c t - f i t :    c o n t a i n    ! i m p o r t a n t ;
       b a c k g r o u n d - c o l o r :    # f f f f f f ;
       p a d d i n g :    1 5 p x ;
       
}

     

/* =========================================================================
   ABOUT US PAGE REDESIGN
   ========================================================================= */

.timeline-modern {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #eaeef2;
    margin-left: 1rem;
}

.timeline-modern-item {
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-modern-item:last-child {
    margin-bottom: 0;
}

.timeline-modern-dot {
    position: absolute;
    left: calc(-2rem - 6px);
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--accent-orange);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.timeline-modern-item:hover .timeline-modern-dot {
    background: var(--accent-orange);
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(229, 57, 53, 0.15);
}

.timeline-modern-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
}

.timeline-modern-item:hover .timeline-modern-year {
    transform: translateX(4px);
}

.timeline-modern-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.timeline-modern-item:hover .timeline-modern-title {
    color: var(--accent-orange);
}

.timeline-modern-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.glass-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.05), 0 2px 8px rgba(0, 0, 0, 0.01);
    transform: translateY(-4px);
}

.btn-minimal-underline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.btn-minimal-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-orange);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-minimal-underline:hover {
    color: var(--accent-orange);
}

.btn-minimal-underline:hover::after {
    transform: scaleX(1);
}

.minimal-partner-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.minimal-partner-card:hover {
    border-color: rgba(229, 57, 53, 0.25);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.04);
    transform: translateY(-4px);
}

.minimal-partner-card img {
    max-height: 40px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.minimal-partner-card:hover img {
    filter: grayscale(0) opacity(1);
}

/* =========================================================================
   PARTNERS PAGE REDESIGN
   ========================================================================= */

.premium-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(229, 57, 53, 0.3);
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.animate-bounce-slow {
    animation: bounceSlow 3s infinite ease-in-out;
}

@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    cursor: pointer;
}

.accordion-content {
    transition: all 0.3s ease-in-out;
}

/* =========================================================================
   SERVICES REDESIGN EXTRA LAYOUTS & STYLES
   ========================================================================= */

/* Section spacing & common styles */
.section-header-center-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header-center-new .section-subtitle {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header-center-new h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.section-header-center-new .title-decor {
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header-center-new .section-subheading {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Hero Section */
.services-hero {
    position: relative;
    padding: 120px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    min-height: 70vh;
    color: #ffffff;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 20, 36, 0.95) 0%, rgba(8, 20, 36, 0.8) 50%, rgba(8, 20, 36, 0.5) 100%);
    z-index: 1;
}

.services-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 5;
}

.services-hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* Floating element visual */
.services-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .services-hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    .services-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .services-hero-right {
        display: none; /* Hide visual column on mobile */
    }
}

.services-hero-left h1 {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.services-hero-left h1 span {
    color: var(--accent-orange);
}

.services-hero-left p {
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 680px;
}

.services-hero-left .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.services-hero-left .breadcrumb-nav a {
    color: var(--accent-orange);
}

.services-hero-left .breadcrumb-nav i {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.services-hero-left .breadcrumb-nav span {
    color: rgba(255,255,255,0.6);
}

.floating-industrial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-width: 380px;
    animation: floatVertical 6s infinite ease-in-out;
}

@keyframes floatVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-industrial-card img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* Core Service Cards Extended */
.core-service-card-new {
    background: #ffffff;
    border: 1px solid #f0f0f2;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.core-service-card-new::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.core-service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(229, 57, 53, 0.15);
}

.core-service-card-new:hover::after {
    transform: scaleX(1);
}

.core-service-card-new .card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(229, 57, 53, 0.08);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.core-service-card-new:hover .card-icon-wrap {
    background: var(--accent-orange);
    color: #ffffff;
    transform: scale(1.05);
}

.core-service-card-new h3 {
    font-size: 17px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.core-service-card-new p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.core-service-card-new .benefits-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.core-service-card-new .benefits-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-dark);
    font-weight: 500;
}

.core-service-card-new .benefits-checklist li i {
    color: #2ECC71;
    font-size: 13px;
}

.core-service-card-new .learn-more-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.core-service-card-new .learn-more-btn:hover {
    gap: 10px;
    color: var(--accent-orange-hover);
}

/* Detailed Showcase Alternating */
.showcase-section {
    background: #fbfbfc;
    padding: 80px 0;
}

.showcase-section.alternate-bg {
    background: #ffffff;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-row.reverse-layout {
    direction: ltr;
}

.showcase-row.reverse-layout .showcase-col-text {
    order: 2;
}

.showcase-row.reverse-layout .showcase-col-image {
    order: 1;
}

@media (max-width: 991px) {
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .showcase-row.reverse-layout .showcase-col-text {
        order: 1;
    }
    .showcase-row.reverse-layout .showcase-col-image {
        order: 2;
    }
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(229, 57, 53, 0.08);
    color: var(--accent-orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.showcase-col-text h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.showcase-col-text p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.showcase-list-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

@media (max-width: 480px) {
    .showcase-list-features {
        grid-template-columns: 1fr;
    }
}

.showcase-list-features li {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.showcase-list-features li i {
    color: var(--accent-orange);
    font-size: 14px;
    margin-top: 2px;
}

.showcase-footer-info {
    border-top: 1px solid #eef0f2;
    padding-top: 20px;
    display: flex;
    gap: 30px;
}

.showcase-footer-item p {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.showcase-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.showcase-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-image-wrap:hover img {
    transform: scale(1.05);
}

/* Industry serving grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1199px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    background: #ffffff;
    border: 1px solid #f0f0f2;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(229, 57, 53, 0.15);
}

.industry-card .ind-icon {
    font-size: 32px;
    color: var(--accent-orange);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.industry-card:hover .ind-icon {
    transform: scale(1.1);
}

.industry-card h4 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.3;
}

/* Process Timeline Section */
.process-timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #d9e0e7 0px, #d9e0e7 8px, transparent 8px, transparent 16px);
}

.process-step {
    position: relative;
    padding-left: 90px;
    margin-bottom: 45px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-badge {
    position: absolute;
    left: 16px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 0 6px #ffffff;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-badge {
    background: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 0 0 6px #ffffff, 0 10px 20px rgba(229, 57, 53, 0.2);
}

.process-step-content {
    background: #ffffff;
    border: 1px solid #f0f0f2;
    border-radius: 8px;
    padding: 24px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-content {
    border-color: rgba(229, 57, 53, 0.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.process-step-content h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Technology Partner Logos */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tech-logo-card {
    background: #ffffff;
    border: 1px solid #f0f0f2;
    border-radius: 8px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
}

.tech-logo-card img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.tech-logo-card:hover {
    border-color: rgba(229, 57, 53, 0.2);
    box-shadow: 0 12px 24px rgba(229, 57, 53, 0.05);
}

.tech-logo-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.tech-logo-card span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.tech-logo-card:hover span {
    color: var(--primary-blue);
    transform: scale(1.05);
}

/* Why Choose Glassmorphism Card style */
.choose-card-glass {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.choose-card-glass:hover {
    background: #ffffff !important;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(229, 57, 53, 0.15);
}

.choose-card-glass .icon-box-choose {
    font-size: 24px;
    color: var(--accent-orange);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.choose-card-glass:hover .icon-box-choose {
    transform: scale(1.1);
}

.choose-card-glass h4 {
    font-size: 15.5px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.choose-card-glass p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Swiper Slider styling inside Services */
.projects-slider-wrap {
    position: relative;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .projects-slider-wrap {
        padding: 0;
    }
}

.project-card-new {
    background: #ffffff;
    border: 1px solid #f0f0f2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.project-card-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.project-card-badge {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.project-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-info h4 {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-card-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.project-card-stats {
    background: #fcfcfd;
    border-top: 1px solid #eef0f2;
    padding: 12px 24px;
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

.project-card-stats span {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Carousel arrows override styling */
.projects-swiper-prev,
.projects-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #f0f0f2;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.projects-swiper-prev:hover,
.projects-swiper-next:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(229, 57, 53, 0.2);
}

.projects-swiper-prev {
    left: -15px;
}

.projects-swiper-next {
    right: -15px;
}

@media (max-width: 767px) {
    .projects-swiper-prev,
    .projects-swiper-next {
        display: none;
    }
}

.projects-swiper-pagination {
    margin-top: 30px;
    text-align: center;
}

.projects-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-orange) !important;
}

/* Premium Consultation Form */
.premium-inquiry-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef0f2;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

@media (max-width: 575px) {
    .premium-inquiry-box {
        padding: 24px;
    }
}

.form-grid-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 575px) {
    .form-grid-services {
        grid-template-columns: 1fr;
    }
}

.form-col-full {
    grid-column: span 2;
}

@media (max-width: 575px) {
    .form-col-full {
        grid-column: span 1;
    }
}

.form-group-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-services label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-inquiry-box input,
.premium-inquiry-box select,
.premium-inquiry-box textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d9e0e7;
    border-radius: 6px;
    font-size: 13.5px;
    color: var(--text-dark);
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.premium-inquiry-box input:focus,
.premium-inquiry-box select:focus,
.premium-inquiry-box textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Service CTA Premium Banner */
.premium-service-cta {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d1e2d 100%);
    border-radius: 12px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.premium-service-cta-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 30%, rgba(229, 57, 53, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.premium-service-cta .container {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
}

.premium-service-cta h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff !important;
    text-transform: uppercase;
}

.premium-service-cta p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.premium-service-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.premium-service-cta .cta-actions .hero-btn-primary-new {
    border: none;
}

/* Contrast styling for outline buttons on dark background (Hero & CTA sections) */
.services-hero .hero-btn-outline-new,
.premium-service-cta .hero-btn-outline-new {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.services-hero .hero-btn-outline-new:hover,
.premium-service-cta .hero-btn-outline-new:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ==========================================================================
   Our Clients Page Custom Redesign Styles
   ========================================================================== */

/* Clients Hero Section */
.clients-hero {
    position: relative;
    padding: 120px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    min-height: 55vh;
    color: #ffffff;
    overflow: hidden;
}

.clients-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 20, 36, 0.95) 0%, rgba(8, 20, 36, 0.85) 50%, rgba(8, 20, 36, 0.6) 100%);
    z-index: 1;
}

.clients-hero .container {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
}

.clients-hero h1 {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.clients-hero h1 span {
    color: var(--accent-orange);
}

.clients-hero p {
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}

.clients-hero .breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.clients-hero .breadcrumb-nav a {
    color: var(--accent-orange);
}

.clients-hero .breadcrumb-nav i {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.clients-hero .breadcrumb-nav span {
    color: rgba(255,255,255,0.6);
}

/* Stat Grid Override for Clients */
.clients-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1199px) {
    .clients-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: -30px;
    }
}

@media (max-width: 767px) {
    .clients-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .clients-stats-grid {
        grid-template-columns: 1fr;
    }
}

.client-stat-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.2);
}

.client-stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.client-stat-card .stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client Card Grid - Section 3 */
.client-card-premium {
    background: #ffffff;
    border: 1px solid #f0f0f2;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.client-card-premium .logo-wrap-premium {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.client-card-premium .logo-wrap-premium img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65);
    transition: all 0.35s ease;
}

.client-card-premium h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.client-card-premium .industry-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-orange);
    background: rgba(229, 57, 53, 0.08);
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.client-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: rgba(229, 57, 53, 0.25);
}

.client-card-premium:hover .logo-wrap-premium img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Category Filtering - Section 4 */
.client-category-tabs-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.client-category-btn {
    padding: 10px 20px;
    border: 1px solid #d9e0e7;
    background: #ffffff;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.client-category-btn:hover,
.client-category-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.2);
}

/* Project Showcase Card - Section 5 */
.project-showcase-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.project-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: rgba(229, 57, 53, 0.15);
}

.project-showcase-card .proj-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.project-showcase-card .proj-client-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-showcase-card .proj-industry {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: #f8f9fa;
    padding: 3px 10px;
    border-radius: 4px;
}

.project-showcase-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-showcase-card p {
    font-size: 13.5px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-showcase-card .tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.project-showcase-card .tech-badge-item {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-blue);
    background: #eef2f6;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Solutions connection badges - Section 6 */
.solution-deliv-badge {
    background: #ffffff;
    border: 1px solid #f0f0f2;
    border-radius: 6px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    transition: all 0.25s ease;
}

.solution-deliv-badge i {
    color: var(--accent-orange);
    font-size: 18px;
}

.solution-deliv-badge span {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-blue);
}

.solution-deliv-badge:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.08);
}

/* Section 10 Lightbox Masonry Gallery */
.gallery-masonry-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .gallery-masonry-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .gallery-masonry-container {
        grid-template-columns: 1fr;
    }
}

.gallery-masonry-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    cursor: pointer;
}

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 48, 74, 0.9) 0%, rgba(18, 48, 74, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.gallery-masonry-item:hover img {
    transform: scale(1.1);
}

.gallery-masonry-item:hover .gallery-masonry-overlay {
    opacity: 1;
}

.gallery-masonry-overlay h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-masonry-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

/* Lightbox popup */
.lightbox-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 36, 0.95);
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-popup-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-popup-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close-btn:hover {
    color: var(--accent-orange);
}

/* Custom additions for About Us page */
.animate-bounce-slow {
    animation: floatAnim 5s ease-in-out infinite;
}

/* -- Slide 5 Bento Grid ---------------------------------------------- */
.slide5-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 160px);
    gap: 16px;
    width: 100%;
    max-width: 650px;
    padding: 10px;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0d1726;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.15), inset 0 0 0 1px rgba(229, 57, 53, 0.5);
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.85;
    transition: transform 0.7s ease, opacity 0.4s ease;
}

.bento-card:hover .bento-bg {
    transform: scale(1.15);
    opacity: 1;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 20, 40, 0.3) 0%, rgba(10, 20, 40, 0) 40%, rgba(10, 20, 40, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
    transition: background 0.4s ease;
}

.bento-icon-wrapper {
    position: relative;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bento-icon-wrapper i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.bento-card:hover .bento-icon-wrapper {
    background: #E53935;
    border-color: #E53935;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    transform: scale(1.05);
}

.bento-card:hover .bento-icon-wrapper i {
    color: #ffffff;
}

.bento-text-content {
    position: relative;
    z-index: 3;
}

.bento-text-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

/* Card Specific Grid Placement */
.card-wire {
    grid-column: span 2;
    grid-row: span 1;
}

.card-wire .bento-text-content h4 {
    font-size: 1.2rem;
}

.card-instru {
    grid-column: span 1;
    grid-row: span 1;
}

.card-elec {
    grid-column: span 1;
    grid-row: span 1;
}

.card-conn {
    grid-column: span 1;
    grid-row: span 1;
}

.card-sensors {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 991px) {
    .slide5-visual {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }
    
    .card-wire {
        grid-column: span 2;
    }
    
    .card-sensors {
        grid-column: span 2;
    }
}

@media (max-width: 575px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 140px;
    }
}



/* --- ABOUT US REDESIGN CSS --- */

/* Timeline */
.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}
.journey-node {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.journey-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}
.journey-node:hover .journey-icon,
.journey-node.active .journey-icon {
    border-color: #E53935;
    background: #E53935;
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 57, 53,0.3);
}
.journey-content {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    flex-grow: 1;
    transition: all 0.3s ease;
}
.journey-node:hover .journey-content {
    border-color: rgba(229, 57, 53,0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
.journey-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1F2937;
    margin-bottom: 8px;
}
.journey-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}
@media(max-width: 768px) {
    .journey-timeline::before { left: 24px; }
    .journey-icon { width: 50px; height: 50px; }
}

/* Expertise Grid */
.expertise-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
.expertise-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-5px);
    border-color: rgba(229, 57, 53,0.3);
}
.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #FDEAEA;
    color: #E53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.expertise-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1F2937;
    line-height: 1.4;
}

/* Glass Feature Cards (Section 6) */
.glass-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.glass-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(229, 57, 53,0.5);
}
.glass-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(229, 57, 53,0.15);
    color: #E53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.glass-feature-card:hover .glass-icon {
    background: #E53935;
    color: #fff;
    transform: scale(1.1);
}
.glass-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}
.glass-feature-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Mission Vision Cards */
.mission-vision-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mission-vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FDEAEA 0%, #fff 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}
.mission-vision-card:hover {
    transform: translateY(-8px);
    border-color: #FDEAEA;
    box-shadow: 0 15px 35px rgba(229, 57, 53,0.1);
}
.mission-vision-card:hover::before {
    opacity: 1;
}
.mv-icon {
    font-size: 2.5rem;
    color: #E53935;
    margin-bottom: 24px;
}
.mission-vision-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 16px;
}
.mission-vision-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Industries We Serve Cards */
.industry-serve-card {
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: default;
}
.industry-serve-card:hover {
    background: #1F2937;
    border-color: #1F2937;
    transform: translateY(-3px);
}
.industry-serve-card i {
    font-size: 2rem;
    color: #E53935;
    transition: all 0.3s ease;
}
.industry-serve-card span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #4b5563;
    transition: all 0.3s ease;
}
.industry-serve-card:hover span {
    color: #fff;
}

/* Technology Badges */
.tech-brand-badge {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #374151;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.tech-brand-badge:hover {
    background: #E53935;
    color: #fff;
    border-color: #E53935;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53,0.3);
}

/* Achievement Counters */
.achievement-counter {
    padding: 20px;
}
.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.counter-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Work Process Grid */
.work-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media(max-width: 1024px) { .work-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 640px) { .work-process-grid { grid-template-columns: 1fr; } }

.about-process-step {
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.about-process-step:hover {
    border-color: #E53935;
    border-style: solid;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 57, 53,0.1);
}
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1F2937;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.about-process-step:hover .step-num {
    background: #E53935;
    transform: scale(1.1);
}
.about-process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 10px;
}
.about-process-step p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}


/* --- CLIENTS MARQUEE SECTION --- */
.clients-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    margin: 30px 0;
    background: transparent;
}

.clients-marquee-container::before,
.clients-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #F8F9FA, transparent);
}

.clients-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #F8F9FA, transparent);
}

.clients-marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-clients 45s linear infinite;
    gap: 40px;
    align-items: center;
}

.clients-marquee-track:hover {
    animation-play-state: paused;
}

.client-marquee-item {
    width: 200px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-marquee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.3);
}

.client-marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Translates exactly half the width of the track (since it's duplicated) */
        transform: translateX(calc(-50% - 20px));
    }
}

@media (max-width: 768px) {
    .clients-marquee-container::before,
    .clients-marquee-container::after {
        width: 50px;
    }
    .client-marquee-item {
        width: 150px;
        height: 80px;
        padding: 15px;
    }
    .clients-marquee-track {
        gap: 20px;
    }
    @keyframes scroll-clients {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 10px)); }
    }
}


/* --- CERTIFICATIONS PAGE CSS --- */

/* Premium Cert Cards (JPEG) */
.premium-cert-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}
.premium-cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(229,57,53,0.1);
    border-color: rgba(229,57,53,0.3);
}
.cert-image-wrapper {
    position: relative;
    height: 300px;
    background: #f8f9fa;
    padding: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.premium-cert-card:hover .cert-img {
    transform: scale(1.05);
}
.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 41, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.premium-cert-card:hover .cert-overlay {
    opacity: 1;
}
.view-btn {
    background: #E53935;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.premium-cert-card:hover .view-btn {
    transform: translateY(0);
}
.cert-info {
    padding: 24px;
}
.cert-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 5px;
}
.cert-authority {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.cert-desc {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.cert-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
}
.cert-status.valid {
    background: #eefdf4;
    color: #16a34a;
}

/* Premium PDF Cards */
.premium-pdf-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}
.premium-pdf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(229,57,53,0.1);
    border-color: rgba(229,57,53,0.3);
}
.pdf-preview-wrapper {
    position: relative;
    height: 350px;
    background: #f8f9fa;
    overflow: hidden;
}
.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Prevents scroll hijacking */
    transform: scale(1.02);
}
.pdf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 41, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.premium-pdf-card:hover .pdf-overlay {
    opacity: 1;
}
.pdf-view-btn {
    background: #E53935;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    pointer-events: auto; /* Allows clicking */
    box-shadow: 0 10px 20px rgba(229,57,53,0.3);
}
.pdf-view-btn:hover {
    background: #d32f2f;
    color: white;
}
.pdf-info {
    padding: 24px;
    text-align: center;
}
.pdf-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 5px;
}
.pdf-info p {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.9rem;
}

/* QMS Process Grid */
.qms-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media(max-width: 1024px) { .qms-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 640px) { .qms-process-grid { grid-template-columns: 1fr; } }

.qms-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.qms-step:hover {
    border-color: #E53935;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229,57,53,0.1);
}
.qms-num {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #1F2937;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.qms-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FDEAEA;
    color: #E53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 10px auto 20px;
    transition: all 0.3s ease;
}
.qms-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1F2937;
    margin-bottom: 10px;
}
.qms-step p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}


/* --- CLIENTS PAGE CSS --- */
.client-logo-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.client-logo-card:hover {
    box-shadow: 0 10px 25px rgba(229,57,53,0.1);
    border-color: rgba(229,57,53,0.2);
}

.industry-tab {
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b5563;
    background: #f3f4f6;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.industry-tab:hover {
    background: #e5e7eb;
}
.industry-tab.active {
    background: #E53935;
    color: white;
    box-shadow: 0 4px 12px rgba(229,57,53,0.3);
}

.industry-client-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.industry-client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #E53935;
}

.featured-client-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.featured-client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.fc-header {
    background: #f9fafb;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}
.fc-body {
    padding: 32px 24px;
}

.project-delivered-row {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    md:flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .project-delivered-row {
        flex-direction: row;
    }
}
.project-delivered-row:hover {
    border-color: #E53935;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.pdr-client {
    font-weight: 700;
    color: #1F2937;
    font-size: 1.1rem;
    flex: 1;
}
.pdr-project {
    font-weight: 600;
    color: #4b5563;
    flex: 1;
    text-align: center;
}
.pdr-service {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    flex: 1;
    text-align: center;
}

.industry-empower-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.industry-empower-card i {
    font-size: 2.5rem;
    color: #9ca3af;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.industry-empower-card h4 {
    font-weight: 700;
    color: #1F2937;
    transition: all 0.3s ease;
}
.industry-empower-card:hover {
    background: #E53935;
    border-color: #E53935;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(229,57,53,0.2);
}
.industry-empower-card:hover i,
.industry-empower-card:hover h4 {
    color: white;
}

.success-story-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.ss-header {
    background: #f9fafb;
    padding: 24px;
    border-bottom: 1px solid #f3f4f6;
}
.ss-body {
    padding: 24px;
}

.glass-testimonial {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}
.glass-testimonial:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.feature-reason-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.feature-reason-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #E53935;
    transform: translateY(-5px);
}
\n
/* --- SERVICES PAGE CSS --- */
.premium-service-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, #E53935, #ff9800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.premium-service-card:hover::before {
    transform: scaleX(1);
}
.psc-icon {
    width: 64px;
    height: 64px;
    background: rgba(229,57,53,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E53935;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.premium-service-card:hover .psc-icon {
    background: #E53935;
    color: white;
}

.ind-serve-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.ind-serve-card i {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.ind-serve-card h4 {
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}
.ind-serve-card:hover {
    background: rgba(229,57,53,0.2);
    border-color: #E53935;
    transform: translateY(-5px);
}
.ind-serve-card:hover i {
    color: #E53935;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 24px;
    width: 2px;
    background: #e5e7eb;
}
@media (min-width: 768px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}
.process-step {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    padding-left: 64px;
}
@media (min-width: 768px) {
    .process-step {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 0;
    }
    .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }
}
.ps-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #E53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #E53935;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(229,57,53,0.2);
}
@media (min-width: 768px) {
    .ps-number {
        left: 50%;
        transform: translateX(-50%);
    }
}
.ps-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .ps-content {
        width: 45%;
    }
}
.process-step:hover .ps-content {
    border-color: #E53935;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.process-step:hover .ps-number {
    background: #E53935;
    color: white;
}

.tech-brand-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 20px;
    font-weight: 700;
    color: #4b5563;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.tech-brand-card:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #E53935;
    transform: translateY(-2px);
}

.project-highlight-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.project-highlight-card:hover {
    transform: translateY(-10px);
}
.phc-img {
    position: relative;
}
.phc-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #E53935;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}
.phc-content {
    padding: 24px;
}

/* Floating Forms */
.form-floating {
    position: relative;
}
.form-input-float {
    width: 100%;
    padding: 1rem 1rem 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.form-input-float:focus {
    border-color: #E53935;
    background: white;
}
.form-label-float {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.2s ease-out;
    font-size: 0.95rem;
}
.form-input-float:focus ~ .form-label-float,
.form-input-float:not(:placeholder-shown) ~ .form-label-float,
.label-active {
    top: 0.25rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: #E53935;
    font-weight: 600;
}
textarea.form-input-float {
    padding-top: 1.5rem;
}
textarea.form-input-float ~ .form-label-float {
    top: 1.5rem;
}
textarea.form-input-float:focus ~ .form-label-float,
textarea.form-input-float:not(:placeholder-shown) ~ .form-label-float {
    top: 0.25rem;
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
}
.faq-header {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-weight: 700;
    color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-header:hover {
    color: #E53935;
}
.faq-icon {
    transition: transform 0.3s ease;
    color: #E53935;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}


/* --- PROFESSIONAL SERVICE CARDS --- */
.service-card-pro {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}
.service-card-pro:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: #E53935;
}
.scp-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: #f9fafb;
    color: #1F2937;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    transition: all 0.4s;
}
.service-card-pro:hover .scp-icon {
    background: #E53935;
    color: #ffffff;
}
.scp-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #f3f4f6;
    line-height: 1;
    transition: all 0.4s;
}
.service-card-pro:hover .scp-number {
    color: rgba(229,57,53,0.1);
}
.scp-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.service-card-pro:hover .scp-title {
    color: #E53935;
}
.scp-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.scp-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1F2937;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}
.service-card-pro:hover .scp-footer a {
    color: #E53935;
    gap: 12px;
}


/* --- DEEP DIVE SECTION CSS --- */
.deep-dive-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.deep-dive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.2) 50%, transparent 100%);
    pointer-events: none;
}
.deep-dive-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #E53935;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.deep-dive-tech-tag {
    background: white;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}


/* Footer Logo Visibility Fix */
.footer-logo-wrapper {
    background-color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.footer-logo {
    display: block;
    max-height: 45px;
    width: auto;
    object-fit: contain;
}


/* --- ABOUT US REDESIGN CSS --- */

/* Timeline */
.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}
.journey-node {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.journey-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}
.journey-node:hover .journey-icon,
.journey-node.active .journey-icon {
    border-color: #E31E24;
    background: #E31E24;
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 30, 36,0.3);
}
.journey-content {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    flex-grow: 1;
    transition: all 0.3s ease;
}
.journey-node:hover .journey-content {
    border-color: rgba(227, 30, 36,0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
.journey-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1F2937;
    margin-bottom: 8px;
}
.journey-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}
@media(max-width: 768px) {
    .journey-timeline::before { left: 24px; }
    .journey-icon { width: 50px; height: 50px; }
}

/* Expertise Grid */
.expertise-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
.expertise-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-5px);
    border-color: rgba(227, 30, 36,0.3);
}
.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #FDF6EE;
    color: #E31E24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.expertise-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1F2937;
    line-height: 1.4;
}

/* Glass Feature Cards (Section 6) */
.glass-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.glass-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(227, 30, 36,0.5);
}
.glass-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(227, 30, 36,0.15);
    color: #E31E24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.glass-feature-card:hover .glass-icon {
    background: #E31E24;
    color: #fff;
    transform: scale(1.1);
}
.glass-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}
.glass-feature-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Mission Vision Cards */
.mission-vision-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mission-vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FDF6EE 0%, #fff 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}
.mission-vision-card:hover {
    transform: translateY(-8px);
    border-color: #FDF6EE;
    box-shadow: 0 15px 35px rgba(227, 30, 36,0.1);
}
.mission-vision-card:hover::before {
    opacity: 1;
}
.mv-icon {
    font-size: 2.5rem;
    color: #E31E24;
    margin-bottom: 24px;
}
.mission-vision-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 16px;
}
.mission-vision-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Industries We Serve Cards */
.industry-serve-card {
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: default;
}
.industry-serve-card:hover {
    background: #1F2937;
    border-color: #1F2937;
    transform: translateY(-3px);
}
.industry-serve-card i {
    font-size: 2rem;
    color: #E31E24;
    transition: all 0.3s ease;
}
.industry-serve-card span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #4b5563;
    transition: all 0.3s ease;
}
.industry-serve-card:hover span {
    color: #fff;
}

/* Technology Badges */
.tech-brand-badge {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #374151;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.tech-brand-badge:hover {
    background: #E31E24;
    color: #fff;
    border-color: #E31E24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36,0.3);
}

/* Achievement Counters */
.achievement-counter {
    padding: 20px;
}
.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.counter-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Work Process Grid */
.work-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media(max-width: 1024px) { .work-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 640px) { .work-process-grid { grid-template-columns: 1fr; } }

.process-step {
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.process-step:hover {
    border-color: #E31E24;
    border-style: solid;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36,0.1);
}
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1F2937;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.process-step:hover .step-num {
    background: #E31E24;
    transform: scale(1.1);
}
.process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 10px;
}
.process-step p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}
\n
/* --- SERVICES PAGE CSS --- */
.premium-service-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, #E53935, #ff9800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.premium-service-card:hover::before {
    transform: scaleX(1);
}
.psc-icon {
    width: 64px;
    height: 64px;
    background: rgba(229,57,53,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E53935;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.premium-service-card:hover .psc-icon {
    background: #E53935;
    color: white;
}

.ind-serve-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.ind-serve-card i {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.ind-serve-card h4 {
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}
.ind-serve-card:hover {
    background: rgba(229,57,53,0.2);
    border-color: #E53935;
    transform: translateY(-5px);
}
.ind-serve-card:hover i {
    color: #E53935;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 24px;
    width: 2px;
    background: #e5e7eb;
}
@media (min-width: 768px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}
.process-step {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    padding-left: 64px;
}
@media (min-width: 768px) {
    .process-step {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 0;
    }
    .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }
}
.ps-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #E53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #E53935;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(229,57,53,0.2);
}
@media (min-width: 768px) {
    .ps-number {
        left: 50%;
        transform: translateX(-50%);
    }
}
.ps-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .ps-content {
        width: 45%;
    }
}
.process-step:hover .ps-content {
    border-color: #E53935;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.process-step:hover .ps-number {
    background: #E53935;
    color: white;
}

.tech-brand-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 20px;
    font-weight: 700;
    color: #4b5563;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.tech-brand-card:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #E53935;
    transform: translateY(-2px);
}

.project-highlight-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.project-highlight-card:hover {
    transform: translateY(-10px);
}
.phc-img {
    position: relative;
}
.phc-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #E53935;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}
.phc-content {
    padding: 24px;
}

/* Floating Forms */
.form-floating {
    position: relative;
}
.form-input-float {
    width: 100%;
    padding: 1rem 1rem 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.form-input-float:focus {
    border-color: #E53935;
    background: white;
}
.form-label-float {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.2s ease-out;
    font-size: 0.95rem;
}
.form-input-float:focus ~ .form-label-float,
.form-input-float:not(:placeholder-shown) ~ .form-label-float,
.label-active {
    top: 0.25rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: #E53935;
    font-weight: 600;
}
textarea.form-input-float {
    padding-top: 1.5rem;
}
textarea.form-input-float ~ .form-label-float {
    top: 1.5rem;
}
textarea.form-input-float:focus ~ .form-label-float,
textarea.form-input-float:not(:placeholder-shown) ~ .form-label-float {
    top: 0.25rem;
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
}
.faq-header {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-weight: 700;
    color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-header:hover {
    color: #E53935;
}
.faq-icon {
    transition: transform 0.3s ease;
    color: #E53935;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}


/* --- CERTIFICATIONS PAGE CSS --- */

/* Premium Cert Cards (JPEG) */
.premium-cert-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}
.premium-cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(229,57,53,0.1);
    border-color: rgba(229,57,53,0.3);
}
.cert-image-wrapper {
    position: relative;
    height: 300px;
    background: #f8f9fa;
    padding: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.premium-cert-card:hover .cert-img {
    transform: scale(1.05);
}
.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 41, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.premium-cert-card:hover .cert-overlay {
    opacity: 1;
}
.view-btn {
    background: #E53935;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.premium-cert-card:hover .view-btn {
    transform: translateY(0);
}
.cert-info {
    padding: 24px;
}
.cert-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 5px;
}
.cert-authority {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.cert-desc {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.cert-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
}
.cert-status.valid {
    background: #eefdf4;
    color: #16a34a;
}

/* Premium PDF Cards */
.premium-pdf-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}
.premium-pdf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(229,57,53,0.1);
    border-color: rgba(229,57,53,0.3);
}
.pdf-preview-wrapper {
    position: relative;
    height: 350px;
    background: #f8f9fa;
    overflow: hidden;
}
.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Prevents scroll hijacking */
    transform: scale(1.02);
}
.pdf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 41, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.premium-pdf-card:hover .pdf-overlay {
    opacity: 1;
}
.pdf-view-btn {
    background: #E53935;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    pointer-events: auto; /* Allows clicking */
    box-shadow: 0 10px 20px rgba(229,57,53,0.3);
}
.pdf-view-btn:hover {
    background: #d32f2f;
    color: white;
}
.pdf-info {
    padding: 24px;
    text-align: center;
}
.pdf-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 5px;
}
.pdf-info p {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.9rem;
}

/* QMS Process Grid */
.qms-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media(max-width: 1024px) { .qms-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 640px) { .qms-process-grid { grid-template-columns: 1fr; } }

.qms-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.qms-step:hover {
    border-color: #E53935;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229,57,53,0.1);
}
.qms-num {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #1F2937;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.qms-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FDEAEA;
    color: #E53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 10px auto 20px;
    transition: all 0.3s ease;
}
.qms-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1F2937;
    margin-bottom: 10px;
}
.qms-step p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}


/* Footer Logo Visibility Fix */
.footer-logo-wrapper {
    background-color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.footer-logo {
    display: block;
    max-height: 45px;
    width: auto;
    object-fit: contain;
}


/* --- PROFESSIONAL SERVICE CARDS --- */
.service-card-pro {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}
.service-card-pro:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: #E53935;
}
.scp-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: #f9fafb;
    color: #1F2937;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    transition: all 0.4s;
}
.service-card-pro:hover .scp-icon {
    background: #E53935;
    color: #ffffff;
}
.scp-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #f3f4f6;
    line-height: 1;
    transition: all 0.4s;
}
.service-card-pro:hover .scp-number {
    color: rgba(229,57,53,0.1);
}
.scp-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.service-card-pro:hover .scp-title {
    color: #E53935;
}
.scp-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.scp-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1F2937;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}
.service-card-pro:hover .scp-footer a {
    color: #E53935;
    gap: 12px;
}


/* --- DEEP DIVE SECTION CSS --- */
.deep-dive-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.deep-dive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.2) 50%, transparent 100%);
    pointer-events: none;
}
.deep-dive-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #E53935;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.deep-dive-tech-tag {
    background: white;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}


/* --- ABOUT US REDESIGN CSS --- */

/* Timeline */
.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}
.journey-node {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.journey-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}
.journey-node:hover .journey-icon,
.journey-node.active .journey-icon {
    border-color: #E31E24;
    background: #E31E24;
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 30, 36,0.3);
}
.journey-content {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    flex-grow: 1;
    transition: all 0.3s ease;
}
.journey-node:hover .journey-content {
    border-color: rgba(227, 30, 36,0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
.journey-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1F2937;
    margin-bottom: 8px;
}
.journey-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}
@media(max-width: 768px) {
    .journey-timeline::before { left: 24px; }
    .journey-icon { width: 50px; height: 50px; }
}

/* Expertise Grid */
.expertise-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
.expertise-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-5px);
    border-color: rgba(227, 30, 36,0.3);
}
.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #FDF6EE;
    color: #E31E24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.expertise-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1F2937;
    line-height: 1.4;
}

/* Glass Feature Cards (Section 6) */
.glass-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.glass-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(227, 30, 36,0.5);
}
.glass-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(227, 30, 36,0.15);
    color: #E31E24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.glass-feature-card:hover .glass-icon {
    background: #E31E24;
    color: #fff;
    transform: scale(1.1);
}
.glass-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}
.glass-feature-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Mission Vision Cards */
.mission-vision-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mission-vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FDF6EE 0%, #fff 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}
.mission-vision-card:hover {
    transform: translateY(-8px);
    border-color: #FDF6EE;
    box-shadow: 0 15px 35px rgba(227, 30, 36,0.1);
}
.mission-vision-card:hover::before {
    opacity: 1;
}
.mv-icon {
    font-size: 2.5rem;
    color: #E31E24;
    margin-bottom: 24px;
}
.mission-vision-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 16px;
}
.mission-vision-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Industries We Serve Cards */
.industry-serve-card {
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: default;
}
.industry-serve-card:hover {
    background: #1F2937;
    border-color: #1F2937;
    transform: translateY(-3px);
}
.industry-serve-card i {
    font-size: 2rem;
    color: #E31E24;
    transition: all 0.3s ease;
}
.industry-serve-card span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #4b5563;
    transition: all 0.3s ease;
}
.industry-serve-card:hover span {
    color: #fff;
}

/* Technology Badges */
.tech-brand-badge {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #374151;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.tech-brand-badge:hover {
    background: #E31E24;
    color: #fff;
    border-color: #E31E24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36,0.3);
}

/* Achievement Counters */
.achievement-counter {
    padding: 20px;
}
.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.counter-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Work Process Grid */
.work-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media(max-width: 1024px) { .work-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 640px) { .work-process-grid { grid-template-columns: 1fr; } }

.process-step {
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.process-step:hover {
    border-color: #E31E24;
    border-style: solid;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36,0.1);
}
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1F2937;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.process-step:hover .step-num {
    background: #E31E24;
    transform: scale(1.1);
}
.process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 10px;
}
.process-step p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}
\n
/* --- SERVICES PAGE CSS --- */
.premium-service-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, #E53935, #ff9800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.premium-service-card:hover::before {
    transform: scaleX(1);
}
.psc-icon {
    width: 64px;
    height: 64px;
    background: rgba(229,57,53,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E53935;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.premium-service-card:hover .psc-icon {
    background: #E53935;
    color: white;
}

.ind-serve-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.ind-serve-card i {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.ind-serve-card h4 {
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}
.ind-serve-card:hover {
    background: rgba(229,57,53,0.2);
    border-color: #E53935;
    transform: translateY(-5px);
}
.ind-serve-card:hover i {
    color: #E53935;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 24px;
    width: 2px;
    background: #e5e7eb;
}
@media (min-width: 768px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}
.process-step {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    padding-left: 64px;
}
@media (min-width: 768px) {
    .process-step {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 0;
    }
    .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }
}
.ps-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #E53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #E53935;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(229,57,53,0.2);
}
@media (min-width: 768px) {
    .ps-number {
        left: 50%;
        transform: translateX(-50%);
    }
}
.ps-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .ps-content {
        width: 45%;
    }
}
.process-step:hover .ps-content {
    border-color: #E53935;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.process-step:hover .ps-number {
    background: #E53935;
    color: white;
}

.tech-brand-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 20px;
    font-weight: 700;
    color: #4b5563;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.tech-brand-card:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #E53935;
    transform: translateY(-2px);
}

.project-highlight-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.project-highlight-card:hover {
    transform: translateY(-10px);
}
.phc-img {
    position: relative;
}
.phc-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #E53935;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}
.phc-content {
    padding: 24px;
}

/* Floating Forms */
.form-floating {
    position: relative;
}
.form-input-float {
    width: 100%;
    padding: 1rem 1rem 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.form-input-float:focus {
    border-color: #E53935;
    background: white;
}
.form-label-float {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.2s ease-out;
    font-size: 0.95rem;
}
.form-input-float:focus ~ .form-label-float,
.form-input-float:not(:placeholder-shown) ~ .form-label-float,
.label-active {
    top: 0.25rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: #E53935;
    font-weight: 600;
}
textarea.form-input-float {
    padding-top: 1.5rem;
}
textarea.form-input-float ~ .form-label-float {
    top: 1.5rem;
}
textarea.form-input-float:focus ~ .form-label-float,
textarea.form-input-float:not(:placeholder-shown) ~ .form-label-float {
    top: 0.25rem;
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
}
.faq-header {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-weight: 700;
    color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-header:hover {
    color: #E53935;
}
.faq-icon {
    transition: transform 0.3s ease;
    color: #E53935;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}


/* --- CERTIFICATIONS PAGE CSS --- */

/* Premium Cert Cards (JPEG) */
.premium-cert-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}
.premium-cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(229,57,53,0.1);
    border-color: rgba(229,57,53,0.3);
}
.cert-image-wrapper {
    position: relative;
    height: 300px;
    background: #f8f9fa;
    padding: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.premium-cert-card:hover .cert-img {
    transform: scale(1.05);
}
.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 41, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.premium-cert-card:hover .cert-overlay {
    opacity: 1;
}
.view-btn {
    background: #E53935;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.premium-cert-card:hover .view-btn {
    transform: translateY(0);
}
.cert-info {
    padding: 24px;
}
.cert-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 5px;
}
.cert-authority {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.cert-desc {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.cert-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
}
.cert-status.valid {
    background: #eefdf4;
    color: #16a34a;
}

/* Premium PDF Cards */
.premium-pdf-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}
.premium-pdf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(229,57,53,0.1);
    border-color: rgba(229,57,53,0.3);
}
.pdf-preview-wrapper {
    position: relative;
    height: 350px;
    background: #f8f9fa;
    overflow: hidden;
}
.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Prevents scroll hijacking */
    transform: scale(1.02);
}
.pdf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 41, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.premium-pdf-card:hover .pdf-overlay {
    opacity: 1;
}
.pdf-view-btn {
    background: #E53935;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    pointer-events: auto; /* Allows clicking */
    box-shadow: 0 10px 20px rgba(229,57,53,0.3);
}
.pdf-view-btn:hover {
    background: #d32f2f;
    color: white;
}
.pdf-info {
    padding: 24px;
    text-align: center;
}
.pdf-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    margin-bottom: 5px;
}
.pdf-info p {
    font-family: 'Poppins', sans-serif;
    color: #6b7280;
    font-size: 0.9rem;
}

/* QMS Process Grid */
.qms-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media(max-width: 1024px) { .qms-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 640px) { .qms-process-grid { grid-template-columns: 1fr; } }

.qms-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.qms-step:hover {
    border-color: #E53935;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229,57,53,0.1);
}
.qms-num {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #1F2937;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.qms-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FDEAEA;
    color: #E53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 10px auto 20px;
    transition: all 0.3s ease;
}
.qms-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1F2937;
    margin-bottom: 10px;
}
.qms-step p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}


/* Footer Logo Visibility Fix */
.footer-logo-wrapper {
    background-color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.footer-logo {
    display: block;
    max-height: 45px;
    width: auto;
    object-fit: contain;
}


/* --- PROFESSIONAL SERVICE CARDS --- */
.service-card-pro {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}
.service-card-pro:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: #E53935;
}
.scp-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: #f9fafb;
    color: #1F2937;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    transition: all 0.4s;
}
.service-card-pro:hover .scp-icon {
    background: #E53935;
    color: #ffffff;
}
.scp-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #f3f4f6;
    line-height: 1;
    transition: all 0.4s;
}
.service-card-pro:hover .scp-number {
    color: rgba(229,57,53,0.1);
}
.scp-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.service-card-pro:hover .scp-title {
    color: #E53935;
}
.scp-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.scp-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1F2937;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}
.service-card-pro:hover .scp-footer a {
    color: #E53935;
    gap: 12px;
}


/* --- DEEP DIVE SECTION CSS --- */
.deep-dive-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.deep-dive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.2) 50%, transparent 100%);
    pointer-events: none;
}
.deep-dive-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #E53935;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.deep-dive-tech-tag {
    background: white;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* =========================================================================
   FLOATING ACTION BUTTONS (CALL + WHATSAPP)
   ========================================================================= */
.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-action-buttons .whatsapp-float,
.floating-action-buttons .call-float {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-action-buttons .whatsapp-float {
    background-color: #25d366 !important;
}

.floating-action-buttons .call-float {
    background-color: #ea580c !important; /* Matches brand orange */
}

.floating-action-buttons .whatsapp-float:hover,
.floating-action-buttons .call-float:hover {
    transform: scale(1.15) !important;
}
