/* 
   ADIAN Solution & Services - Core Stylesheet
   Theme: Modern Industrial, B2B, Premium, Futuristic
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Custom Variables & Reset --- */
:root {
    --primary-color: #0A4DBF;
    --primary-glow: rgba(10, 77, 191, 0.4);
    --secondary-color: #062B6E;
    --accent-color: #FFC107;
    --accent-glow: rgba(255, 193, 7, 0.4);
    --white: #FFFFFF;
    --light-gray: #F7F9FC;
    --dark-blue: #031435;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --font-poppins: 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-blue-border: rgba(10, 77, 191, 0.6);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(10, 77, 191, 0.2);
    --success-color: #10B981;
    --warning-color: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    text-shadow: none;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* --- Container & Grid --- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    width: 100%;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1720px;
    }
}

/* --- Buttons & CTAs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 77, 191, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 43, 110, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-accent:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline-blue {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-blue:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 77, 191, 0.3);
}

/* Top Header Utility Bar */
.top-header-bar {
    background: rgba(3, 20, 53, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    padding: 8px 0;
    z-index: 1001;
    position: relative;
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.top-bar-link i {
    color: var(--accent-color);
    font-size: 13px;
}

.top-bar-link:hover {
    color: var(--white);
}

.top-bar-info {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.top-bar-info i {
    color: var(--accent-color);
    font-size: 13px;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.25);
}

.top-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 216, 255, 0.12);
    color: var(--accent-color);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 216, 255, 0.25);
    font-weight: 600;
    font-size: 11px;
}

/* Hide Mobile Close Cross Button on Desktop */
.mobile-nav-close {
    display: none !important;
}

/* --- Sticky/Fixed Navigation Bar with Smooth Slide & Blur Transition --- */
header.site-header {
    position: relative;
    width: 100%;
    z-index: 9999;
    background: rgba(3, 20, 53, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.site-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(3, 20, 53, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1.5px solid rgba(0, 216, 255, 0.3);
    animation: headerSlideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes headerSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Official Company Image Logo */
.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #FFFFFF;
    padding: 6px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.brand-logo:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 216, 255, 0.3);
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo {
    display: inline-block;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Nav Links */
nav.nav-menu ul {
    display: flex;
    gap: 30px;
}

nav.nav-menu ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

nav.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

nav.nav-menu ul li a:hover {
    color: var(--white);
}

nav.nav-menu ul li a.active,
nav.nav-menu ul li a:hover::after {
    width: 100%;
}

nav.nav-menu ul li a.active {
    color: var(--accent-color);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--white);
    margin: 6px 0;
    transition: var(--transition-smooth);
}

/* --- Hero Section (Maximum Image Brightness & Visibility) --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: url('../images/hero_bg.png') center/cover no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

/* --- Inner Pages Hero Video Background --- */
.inner-hero-section {
    position: relative;
    padding: 110px 0 70px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background: url('../images/hero_bg.png') center/cover no-repeat;
}

.inner-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.75;
    pointer-events: none;
    filter: brightness(0.9) contrast(1.1);
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 20, 53, 0.85) 0%, rgba(6, 43, 110, 0.78) 50%, rgba(4, 27, 68, 0.90) 100%);
    box-shadow: inset 0 0 120px rgba(3, 20, 53, 0.95);
    z-index: 1;
}

.inner-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, rgba(3, 20, 53, 0.80) 100%);
    pointer-events: none;
}

.inner-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    display: none;
}

.hero-section .container {
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--accent-color);
}

.hero-title {
    font-size: 64px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-title span {
    display: block;
}

.hero-title span.accent-text {
    color: var(--accent-color);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 580px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Floating Diamond Grid Right Side */
.hero-right {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-grid {
    position: relative;
    width: 620px;
    height: 580px;
    margin: 0 auto;
}

.diamond-card {
    position: absolute;
    width: 220px;
    height: 220px;
    transform: rotate(45deg);
    border: 3px solid #00D8FF;
    /* Bright Neon Cyan Glow Border */
    background: rgba(255, 255, 255, 0.96);
    /* Bright White Glass */
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(0, 216, 255, 0.5), inset 0 0 20px rgba(0, 216, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.diamond-card:hover {
    transform: rotate(45deg) scale(1.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.8), inset 0 0 25px rgba(255, 193, 7, 0.3);
    z-index: 10;
}

.diamond-content {
    transform: rotate(-45deg);
    width: 135%;
    height: 135%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
}

.diamond-content img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
    transition: var(--transition-smooth);
}

.diamond-card:hover .diamond-content img {
    transform: scale(1.1);
}

.diamond-label {
    position: absolute;
    bottom: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(3, 20, 53, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-smooth);
}

.diamond-card:hover .diamond-label {
    opacity: 1;
    bottom: 15px;
}

/* Spread Out Coordinates with Clear Gaps (Zero Overlapping) */
.dc-top {
    top: 15px;
    left: calc(50% - 110px);
    animation-delay: 0s;
}

.dc-left {
    top: calc(50% - 110px);
    left: 15px;
    animation-delay: 1.5s;
}

.dc-right {
    top: calc(50% - 110px);
    right: 15px;
    animation-delay: 1s;
}

.dc-bottom {
    bottom: 15px;
    left: calc(50% - 110px);
    animation-delay: 2.5s;
}

/* Central Ambient Glow */
.center-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 216, 255, 0.6) 0%, rgba(10, 77, 191, 0.15) 60%, transparent 80%);
    border-radius: 50%;
    top: calc(50% - 70px);
    left: calc(50% - 70px);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 0 40px rgba(0, 216, 255, 0.3);
}

/* Floating Keyframes */
@keyframes float {
    0% {
        transform: rotate(45deg) translateY(0px);
    }

    50% {
        transform: rotate(45deg) translateY(-15px);
    }

    100% {
        transform: rotate(45deg) translateY(0px);
    }
}

/* --- Statistics Strip --- */
.stats-strip {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 10;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
    border-bottom: 3px solid var(--primary-color);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    padding: 10px 20px;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card:nth-child(4n)::after,
.stat-card:last-child::after,
.stat-card.stat-duplicate::after {
    display: none !important;
}

.stat-icon {
    font-size: 36px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--white);
    font-family: var(--font-poppins);
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .stat-duplicate {
        display: none !important;
    }
}

/* Disable AOS Animations on Mobile (< 768px) */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Mobile Compact CSS3 Auto Scroll Animation for Stats Strip */
@media (max-width: 768px) {
    .stats-strip {
        padding: 16px 0;
        overflow: hidden;
    }

    .stats-strip .container {
        padding: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }

    .stats-grid {
        display: flex;
        grid-template-columns: none;
        width: max-content;
        gap: 12px;
        animation: statsAutoScroll 16s linear infinite;
        will-change: transform;
    }

    .stats-grid:hover,
    .stats-grid:active {
        animation-play-state: paused;
    }

    .stat-card {
        flex: 0 0 175px;
        box-sizing: border-box;
        padding: 8px 12px;
        gap: 12px;
        background: rgba(6, 30, 75, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 10px;
        border: 1px solid rgba(0, 216, 255, 0.3);
    }

    .stat-card .stat-icon {
        font-size: 24px;
    }

    .stat-card .stat-number {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .stat-card .stat-label {
        font-size: 10.5px;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .stat-card::after {
        display: none !important;
    }
}

@keyframes statsAutoScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* --- Section Global Layouts --- */
.section {
    padding: 120px 0;
    position: relative;
}

.bg-light {
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.3;
}

.section-title span {
    color: var(--primary-color);
}

/* --- Our Solutions --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(10, 77, 191, 0.05);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.solution-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: rgba(10, 77, 191, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.solution-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Hover effects */
.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(6, 43, 110, 0.12);
    border-color: rgba(10, 77, 191, 0.15);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover .solution-icon-container {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(10, 77, 191, 0.25);
}

/* --- Industries We Serve --- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.industry-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.industry-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Industries We Serve Section (Sleek Interactive Carousel Slider) --- */
.industries-section {
    position: relative;
    background: #031435 url('../images/industries_pattern_bg.svg') center/cover no-repeat;
    color: var(--white);
    padding: 90px 0;
    overflow: hidden;
}

#industries .section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

#industries .section-tag {
    color: var(--accent-color) !important;
    background: rgba(0, 216, 255, 0.18);
    border: 1px solid rgba(0, 216, 255, 0.4);
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

#industries .section-title {
    color: #FFFFFF !important;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 6px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95);
}

#industries .section-title span {
    color: var(--accent-color) !important;
}

#industries .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

/* Slider Controls */
.slider-nav-btns {
    display: flex;
    gap: 12px;
}

.slider-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(0, 216, 255, 0.35);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-arrow-btn:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 216, 255, 0.5);
    transform: scale(1.08);
}

.industries-slider-viewport {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    overflow: hidden;
    padding: 15px 10px 30px 10px;
    box-sizing: border-box;
}

.industries-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.industry-slider-card {
    flex: 0 0 calc(33.333% - 16px);
    box-sizing: border-box;
}

.industry-card-inner {
    background: rgba(6, 30, 75, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 216, 255, 0.22);
    border-radius: 16px;
    padding: 32px 26px;
    position: relative;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
    height: 100%;
    box-sizing: border-box;
}

.industry-card-num {
    position: absolute;
    top: 22px;
    right: 25px;
    font-size: 30px;
    font-weight: 800;
    color: rgba(0, 216, 255, 0.25);
    letter-spacing: 1px;
}

.industry-card-inner h3 {
    color: #FFFFFF !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.industry-card-inner p {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 14px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    margin: 0;
}

.industry-card-inner .industry-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 216, 255, 0.2);
    color: var(--accent-color);
    border: 1.5px solid rgba(0, 216, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 216, 255, 0.25);
    transition: var(--transition-smooth);
}

.industry-card-inner:hover {
    background: rgba(10, 50, 120, 0.98);
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 216, 255, 0.5);
}

.industry-card-inner:hover .industry-card-num {
    color: var(--accent-color);
}

.industry-card-inner:hover h3 {
    color: var(--accent-color) !important;
}

.industry-card-inner:hover .industry-icon-box {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px rgba(0, 216, 255, 0.6);
}

/* Dots & Action Strip */
.slider-dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    width: 32px;
    border-radius: 10px;
    background: var(--accent-color);
    box-shadow: 0 0 12px rgba(0, 216, 255, 0.6);
}

#industries .industry-action-strip {
    padding: 20px 30px;
    background: rgba(3, 20, 53, 0.95);
    border: 1px solid rgba(0, 216, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#industries .industry-action-strip span {
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

#industries .industry-action-strip span i {
    color: var(--accent-color);
    margin-right: 8px;
}

@media (max-width: 991px) {
    .industry-slider-card {
        flex: 0 0 calc(50% - 12px);
    }

    #industries .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    #industries .slider-nav-btns,
    #industries .slider-dots-container {
        display: none !important;
    }

    #industries .industries-slider-viewport {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    #industries .industries-slider-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        transform: none !important;
    }

    #industries .industry-slider-card {
        flex: none;
        width: 100%;
    }

    #industries .industry-action-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* --- Product Showcase --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.product-img-wrapper {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: var(--white);
    border-radius: 14px;
    padding: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(10, 77, 191, 0.08);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.01);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.1));
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.product-specs {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    width: 100%;
}

.product-specs span {
    display: block;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    padding-bottom: 5px;
}

.product-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Product Card Hover */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 77, 191, 0.15);
}

/* Layout adjusting for product grid center matching */
.product-grid-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-row-2 {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.product-row-2 .product-card {
    width: calc(33.333% - 27px);
}

@media (max-width: 991px) {
    .product-row-2 {
        flex-direction: column;
        align-items: center;
    }

    .product-row-2 .product-card {
        width: 100%;
    }
}

/* --- Why Choose Us --- */
.why-section .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

/* --- Contact Section & Form Styling --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: start;
}

.contact-col-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-col-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.legal-info-badges {
    margin-top: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.legal-badge {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
}

.gst-badge {
    border-left: 4px solid var(--primary-color);
}

.udyam-badge {
    border-left: 4px solid var(--accent-color);
}

.legal-badge-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.legal-badge-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-family: var(--font-poppins);
    font-size: 14px;
    color: var(--text-dark);
    background-color: #FAFAFA;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(10, 77, 191, 0.12);
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 15px;
}

.why-left {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

@keyframes humanMotion {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.06) translateY(-6px);
        filter: brightness(1.08);
    }

    100% {
        transform: scale(1.02) translateX(4px);
        filter: brightness(1);
    }
}

.why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: humanMotion 14s ease-in-out infinite alternate;
    transition: filter 0.5s ease;
}

/* Animated Live Status Badge on Engineer Photo */
.engineer-status-pill {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(3, 20, 53, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 216, 255, 0.4);
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.live-pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.why-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 77, 191, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px 35px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-badge-num {
    font-size: 44px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.why-badge-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.why-right {
    display: flex;
    flex-direction: column;
}

.why-heading {
    margin-bottom: 25px;
}

.why-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(10, 77, 191, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.why-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.why-feature-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* --- Work Process Timeline --- */
.process-timeline {
    position: relative;
    padding: 40px 0;
    margin-top: 30px;
}

/* Connecting Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color) 0%, rgba(10, 77, 191, 0.1) 100%);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid rgba(10, 77, 191, 0.1);
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-premium);
    position: relative;
    transition: var(--transition-smooth);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px dashed var(--primary-color);
    opacity: 0;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(10, 77, 191, 0.3);
}

.timeline-step:hover .step-number::after {
    opacity: 1;
    transform: rotate(45deg);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-light);
    max-width: 180px;
}

/* --- Modern Client Testimonials --- */
.testimonials-section {
    position: relative;
    background: #031435 url('../images/industries_pattern_bg.svg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-section .section-tag {
    color: var(--accent-color) !important;
    background: rgba(0, 216, 255, 0.18);
    border: 1px solid rgba(0, 216, 255, 0.4);
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.testimonials-section .section-title {
    color: #FFFFFF !important;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95);
}

.testimonials-section .section-title span {
    color: var(--accent-color) !important;
}

.testimonials-section .section-subtitle {
    color: var(--text-light);
}

.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

/* --- Universal Carousel Slider Arrow Controls --- */
.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 216, 255, 0.08);
    border: 1.5px solid rgba(0, 216, 255, 0.3);
    color: var(--accent-color);
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover:not(:disabled) {
    background: var(--accent-color);
    color: #020B1D;
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 216, 255, 0.5);
}

.slider-arrow:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

/* --- Universal Carousel Slider Pagination Dots --- */
.slider-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(0, 216, 255, 0.35);
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-dot:hover {
    background: rgba(0, 216, 255, 0.6);
    border-color: var(--accent-color);
}

.slider-dot.active {
    width: 34px;
    border-radius: 10px;
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 216, 255, 0.8);
}

.testimonials-slider-nav {
    display: flex;
    gap: 12px;
}

.testimonials-slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 25px 0;
}

.testimonials-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-slider-card {
    flex: 0 0 33.333333%;
    box-sizing: border-box;
    padding: 0 12px;
    height: 100%;
}

.testimonial-slider-card .testimonial-card {
    height: 100%;
}

/* --- Professional Light White Testimonial Card --- */
.testimonial-card {
    background: rgba(6, 30, 75, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(0, 216, 255, 0.25);
    border-radius: 20px;
    padding: 34px 26px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Mobile Non-Slider Grid Override */
@media (max-width: 768px) {

    .testimonials-slider-nav,
    #testimonialDots {
        display: none !important;
    }

    .testimonials-slider-viewport {
        overflow: visible;
        padding: 0;
    }

    .testimonials-slider-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        transform: none !important;
    }

    .testimonial-slider-card {
        flex: none;
        width: 100%;
        padding: 0;
    }
}

.testimonial-card:hover {
    background: rgba(10, 50, 120, 0.98);
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 216, 255, 0.35), 0 0 25px rgba(0, 216, 255, 0.2);
}

.quote-watermark {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 80px;
    color: rgba(0, 216, 255, 0.08);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.testimonial-card:hover .quote-watermark {
    color: rgba(0, 216, 255, 0.18);
    transform: scale(1.1);
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 15px;
    display: flex;
    gap: 4px;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
}

.verified-badge {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(0, 216, 255, 0.12);
    border: 1px solid rgba(0, 216, 255, 0.3);
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-review {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
}

.testimonial-avatar-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 216, 255, 0.35);
    flex-shrink: 0;
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-client-info h4 {
    color: #FFFFFF !important;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-client-info p {
    color: var(--accent-color);
    font-size: 12.5px;
    font-weight: 500;
    margin: 0;
}

/* --- Dedicated Testimonials Page Styling (Standalone White Theme - 2 Columns) --- */
.testimonials-standalone-page {
    position: relative;
    background-color: #FFFFFF;
    color: var(--text-dark);
    padding: 90px 0;
}

.testimonials-standalone-page .section-tag {
    color: var(--primary-color) !important;
    background: rgba(10, 77, 191, 0.08);
    border: 1px solid rgba(10, 77, 191, 0.2);
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.testimonials-standalone-page .section-title {
    color: var(--secondary-color) !important;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: none;
}

.testimonials-standalone-page .section-title span {
    color: var(--primary-color) !important;
}

/* 2-Column Grid Layout for Testimonials Page */
.testimonial-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .testimonial-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Standalone White Testimonial Card */
.testimonial-page-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 36px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-page-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 77, 191, 0.12);
}

.testimonial-page-card .quote-watermark {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 80px;
    color: rgba(10, 77, 191, 0.05);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.testimonial-page-card:hover .quote-watermark {
    color: rgba(10, 77, 191, 0.12);
    transform: scale(1.1);
}

.testimonial-page-card .testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-page-card .testimonial-rating {
    color: #F59E0B;
    font-size: 15px;
    display: flex;
    gap: 4px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.25));
}

.testimonial-page-card .verified-badge {
    font-size: 11.5px;
    font-weight: 700;
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-page-card .testimonial-review {
    font-size: 15px;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.testimonial-page-card .testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
}

.testimonial-page-card .testimonial-avatar-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(10, 77, 191, 0.15);
    flex-shrink: 0;
}

.testimonial-page-card .testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-page-card .testimonial-client-info h4 {
    color: var(--secondary-color) !important;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-page-card .testimonial-client-info p {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

/* --- Dedicated Industries Page Design Upgrades --- */
.industries-standalone-page {
    background-color: #F8FAFC;
    padding: 90px 0;
}

.industry-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .industry-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-card-grid {
        grid-template-columns: 1fr;
    }
}

.industry-page-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.industry-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 77, 191, 0.12);
    border-color: var(--primary-color);
}

.industry-card-image-box {
    position: relative;
    height: 320px;
    background: #031435;
    overflow: hidden;
}

.industry-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.industry-page-card:hover .industry-card-image-box img {
    transform: scale(1.06);
}

.industry-card-image-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 43, 110, 0.2) 0%, transparent 45%, rgba(3, 20, 53, 0.5) 100%);
    pointer-events: none;
}

.industry-number-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.industry-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.industry-card-body h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.industry-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.industry-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #F1F5F9;
}

.industry-tech-tags span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(10, 77, 191, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(10, 77, 191, 0.15);
}

/* Featured Impact Metrics Strip for Industries Page */
.industry-impact-strip {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #031435 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #FFFFFF;
    box-shadow: var(--shadow-premium);
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 992px) {
    .industry-impact-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industry-impact-strip {
        grid-template-columns: 1fr;
        padding: 35px 20px;
    }
}

.impact-metric-item h4 {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.impact-metric-item p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* --- Contact CTA --- */
.contact-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Footer --- */
footer.site-footer {
    background-color: var(--dark-blue);
    border-top: 3px solid var(--primary-color);
    padding: 80px 0 30px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links-list li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Corporate Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background-color: var(--white);
    border: 1px solid rgba(10, 77, 191, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.contact-item-box:hover {
    transform: translateX(6px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(10, 77, 191, 0.1);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(10, 77, 191, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-item-box:hover .contact-item-icon {
    background: var(--primary-color);
    color: var(--white);
}

.contact-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.footer-contact-icon {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact-text strong {
    display: block;
    color: var(--white);
    margin-bottom: 3px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* --- Modern Animations & Micro-Interactions --- */
@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 77, 191, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(10, 77, 191, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 77, 191, 0);
    }
}

.btn-primary {
    animation: btnPulse 3s infinite;
}

/* Vector Icon Animations */
.solution-icon-container,
.industry-icon-box,
.stat-icon,
.why-feature-icon {
    transition: var(--transition-smooth);
}

.solution-card:hover .solution-icon-container {
    transform: scale(1.15) rotate(6deg);
}

.industry-card:hover .industry-icon-box {
    transform: scale(1.15) rotate(-6deg);
}

/* Product Card Shimmer Effect */
.product-card {
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(10, 77, 191, 0.06) 50%, transparent 70%);
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.product-card:hover::after {
    transform: rotate(30deg) translateX(100%);
}

/* --- Hero Video Scanner Overlay --- */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(10, 77, 191, 0.3) 0%, rgba(3, 20, 53, 0.85) 100%),
        linear-gradient(180deg, rgba(3, 20, 53, 0.7) 0%, rgba(6, 43, 110, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-video-overlay::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 216, 255, 0.15) 50%, transparent 100%);
    animation: videoScan 8s linear infinite;
    pointer-events: none;
}

@keyframes videoScan {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* --- Left-Side Middle-Aligned Floating Action Dock --- */
.left-floating-dock {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
}

.left-dock-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    width: 48px;
    /* Icon-only view by default */
    height: 48px;
    border-radius: 0 30px 30px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}

.left-dock-btn i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.left-dock-btn span {
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.dock-call {
    background: linear-gradient(135deg, #0A4DBF 0%, #062B6E 100%);
    border: 1.5px solid rgba(0, 216, 255, 0.4);
    border-left: none;
}

.dock-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-left: none;
}

.dock-quote {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: var(--dark-blue);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-left: none;
}

.dock-quote:hover {
    color: var(--dark-blue);
}

/* Desktop Hover State: Expands width to show full text & pops up big */
.left-dock-btn:hover {
    width: 190px;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 12px 35px rgba(0, 216, 255, 0.45);
    z-index: 10;
}

.left-dock-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.dock-whatsapp:hover {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.dock-quote:hover {
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.55);
}

/* --- Section Banner Callouts (Desktop & Mobile) --- */
.section-cta-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    padding: 40px 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(10, 77, 191, 0.25);
    position: relative;
    overflow: hidden;
}

.section-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 216, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner-text h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-banner-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
}

.cta-banner-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.industry-action-strip {
    margin-top: 40px;
    background: rgba(10, 77, 191, 0.04);
    border: 1px dashed rgba(10, 77, 191, 0.25);
    border-radius: 14px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* --- Full Responsive Layouts --- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }

    .hero-section .container {
        gap: 35px;
    }

    .hero-right {
        height: 500px;
    }

    .diamond-grid {
        width: 500px;
        height: 480px;
    }

    .diamond-card {
        width: 170px;
        height: 170px;
    }

    .dc-top {
        top: 10px;
        left: calc(50% - 85px);
    }

    .dc-bottom {
        bottom: 10px;
        left: calc(50% - 85px);
    }

    .dc-left {
        top: calc(50% - 85px);
        left: 10px;
    }

    .dc-right {
        top: calc(50% - 85px);
        right: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card:not(:last-child)::after {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-row-2 .product-card {
        width: calc(50% - 20px);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-section .container {
        grid-template-columns: 1fr;
    }

    .why-left {
        height: 400px;
    }

    .timeline-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .section-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-actions .btn {
        width: 100%;
    }

    .industry-action-strip {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-header-bar {
        display: none !important;
    }

    header.site-header {
        width: 100%;
        z-index: 9999;
        padding: 12px 0;
        background: rgba(3, 20, 53, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-close {
        display: flex;
        position: absolute;
        top: 25px;
        right: 25px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: var(--white);
        font-size: 20px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-smooth);
        z-index: 10000;
    }

    .mobile-nav-close:hover {
        background: var(--accent-color);
        color: var(--secondary-color);
        transform: rotate(90deg);
    }

    nav.nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
        z-index: 99999;
        display: flex;
        flex-direction: column;
        padding: 90px 35px 40px;
        transition: var(--transition-smooth);
    }

    nav.nav-menu.active {
        right: 0;
    }

    nav.nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }

    header.site-header .btn {
        display: none;
    }

    /* Hide Navbar CTA on mobile */

    /* Mobile Specific Hero Section Layout & iOS Safari Background Fix */
    .hero-section {
        height: 100vh !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding-top: 0px;
        padding-bottom: 20px;
        background-attachment: scroll !important;
        /* Fixes iOS Safari background image invisibility bug */
        background-position: center center !important;
        background-size: cover !important;
    }

    .hero-section .container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
        padding-top: 0;
        width: 100%;
    }

    .hero-left {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        order: 1 !important;
    }

    /* Mobile Order: Heading -> Desc & Buttons (Image hidden on mobile) */
    .hero-heading-block {
        order: 1 !important;
        margin-bottom: 15px !important;
    }

    .hero-right {
        display: none !important;
    }

    .hero-desc {
        order: 2 !important;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-actions {
        order: 3 !important;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-tag {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-tag::before {
        display: none !important;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.25;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Responsive Diamond Grid for Mobile */
    .diamond-grid {
        width: 310px;
        height: 310px;
    }

    .diamond-card {
        width: 110px;
        height: 110px;
        border-width: 2px;
    }

    .diamond-label {
        font-size: 8px;
        padding: 3px 6px;
    }

    .dc-top {
        top: 0px;
        left: calc(50% - 55px);
    }

    .dc-bottom {
        bottom: 0px;
        left: calc(50% - 55px);
    }

    .dc-left {
        top: calc(50% - 55px);
        left: 0px;
    }

    .dc-right {
        top: calc(50% - 55px);
        right: 0px;
    }

    .center-glow {
        width: 70px;
        height: 70px;
        top: calc(50% - 35px);
        left: calc(50% - 35px);
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-row-2 {
        flex-direction: column;
    }

    .product-row-2 .product-card {
        width: 100%;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Mobile Fixed Bottom Navigation Bar */
    .left-floating-dock {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 65px;
        transform: none;
        flex-direction: row;
        gap: 6px;
        padding: 8px 10px;
        background: rgba(3, 20, 53, 0.96);
        backdrop-filter: blur(15px);
        border-top: 1.5px solid rgba(0, 216, 255, 0.3);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
        z-index: 99999;
        justify-content: space-around;
        align-items: center;
    }

    .left-dock-btn {
        width: 32% !important;
        height: 48px !important;
        border-radius: 12px !important;
        border-left: 1.5px solid rgba(255, 255, 255, 0.2) !important;
        padding: 6px 4px !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 3px !important;
        text-align: center !important;
        overflow: visible !important;
    }

    .left-dock-btn i {
        font-size: 16px !important;
        width: auto !important;
    }

    .left-dock-btn span {
        opacity: 1 !important;
        transform: none !important;
        font-size: 10px !important;
        letter-spacing: 0px !important;
        display: block !important;
    }

    .left-dock-btn:hover {
        width: 32% !important;
        transform: translateY(-3px) !important;
    }

    body {
        padding-bottom: 65px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-card {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .legal-info-badges {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .floating-cta-dock span {
        display: none;
    }

    .floating-cta-btn {
        padding: 14px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-right {
        display: none !important;
    }

    .diamond-grid {
        width: 280px;
        height: 280px;
    }

    .diamond-card {
        width: 95px;
        height: 95px;
        border-radius: 12px;
    }

    .dc-top {
        top: 0px;
        left: calc(50% - 47.5px);
    }

    .dc-bottom {
        bottom: 0px;
        left: calc(50% - 47.5px);
    }

    .dc-left {
        top: calc(50% - 47.5px);
        left: 0px;
    }

    .dc-right {
        top: calc(50% - 47.5px);
        right: 0px;
    }
}

/* --- SCHEDULE PLANT AUDIT MODAL POPUP --- */
.audit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 25, 44, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.audit-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.audit-modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 560px;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(10, 77, 191, 0.15);
}

.audit-modal-overlay.active .audit-modal-container {
    transform: scale(1) translateY(0);
}

.audit-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    font-size: 22px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.audit-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.audit-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 77, 191, 0.08);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.audit-modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.audit-modal-header p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.audit-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.audit-modal-form .form-group {
    margin-bottom: 14px;
}

.audit-modal-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.audit-modal-form .form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #0f172a;
}

.audit-modal-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(10, 77, 191, 0.15);
}

@media (max-width: 576px) {
    .audit-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .audit-modal-container {
        padding: 24px 18px;
    }
}