/* KMS Technologies - Premium Corporate Industrial Style Sheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0B579E;
    --primary-light: #0D9488;
    --primary-dark: #08427B;
    --navy: #0F172A;
    --navy-light: #1E293B;
    --slate: #64748B;
    --slate-light: #94A3B8;
    --light-bg: #F1F5F9;
    --white: #FFFFFF;
    --accent: #0D9488;
    --border: #E2E8F0;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 6px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
}

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

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--navy);
    margin-bottom: 0.85rem;
}

.section-header p {
    color: var(--slate);
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    width: fit-content;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--navy);
}

.btn-accent:hover {
    background-color: #d97706;
    color: var(--white);
    transform: translateY(-2px);
}

/* Header & Sticky Navigation */
.main-header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s, border 0.3s;
}

.main-header.scrolled {
    background-color: var(--navy);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled .logo {
    display: none;
}

.main-header.scrolled .navbar {
    justify-content: center;
}

.main-header.scrolled .nav-link {
    color: var(--slate-light);
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: #fff;
}

.main-header.scrolled .nav-link::after {
    background-color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    transition: justify-content 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--navy);
}

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

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--navy-light);
    font-size: 0.95rem;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* Split Hero Section (Premium Light Theme & Glow Effects) */
.hero-split {
    position: relative;
    background-color: #FFFFFF;
    color: var(--navy);
    padding: 6rem 0;
    overflow: hidden;
    /* Soft cyan/blue radial lights */
    background-image:
        radial-gradient(circle at 15% 35%, rgba(13, 148, 136, 0.04) 0%, rgba(255, 255, 255, 0) 50%),
        radial-gradient(circle at 80% 65%, rgba(11, 87, 158, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-welcome {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate);
    display: block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.25rem;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight-orange {
    color: var(--primary);
    /* Bright premium blue-teal matching logo theme */
    background: linear-gradient(135deg, #0f1e64 0%, #0B579E 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--slate);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 650px;
}

/* Round Icons Row (Shubham Kumar Outlines) */
.hero-icons-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.hero-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background-color: rgba(248, 250, 252, 0.8);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: var(--transition);
    cursor: pointer;
}

.hero-icon-circle:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(11, 87, 158, 0.15);
    transform: translateY(-2px);
}

/* Actions Row Buttons */
.hero-actions-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.btn-accent-orange {
    background: linear-gradient(135deg, #0D9488 0%, #0B579E 100%);
    color: var(--white);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(11, 87, 158, 0.25);
}

.btn-accent-orange:hover {
    background: linear-gradient(135deg, #0A7E73 0%, #08427B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(11, 87, 158, 0.35);
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--navy);
}

.btn-outline-white:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Stats Container Card */
/* ── Hero Stats Glossy Card ── */
.hero-stats-card {
    position: relative;
    overflow: hidden;

    /* KMS teal-to-blue brand gradient — matches logo */
    background: linear-gradient(135deg,
            #0D9488 0%,
            #0A6FA8 50%,
            #0B579E 100%);

    border-radius: 18px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;

    /* Glowing branded border */
    border: 1.5px solid rgba(13, 148, 136, 0.5);

    /* Layered shadow: brand glow + depth */
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.15) inset,
        0 8px 32px rgba(11, 87, 158, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Top gloss shine strip */
.hero-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.04) 100%);
    border-radius: 18px 18px 60% 60%;
    pointer-events: none;
    z-index: 0;
}

/* Side sparkle dot (right corner accent) */
.hero-stats-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-stat-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
    align-items: center;
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.hero-stat-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 1.25rem;
    position: relative;
    z-index: 1;
}

/* Right side glowing circular building grid image */
.glowing-circle-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    margin-left: auto;
    padding: 6px;
    background: linear-gradient(135deg, #0D9488 0%, #0B579E 100%);
    box-shadow: 0 0 35px rgba(11, 87, 158, 0.25);
    animation: pulseGlow 4s infinite alternate;
}

.glowing-circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(0.95) contrast(1.05);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 25px rgba(11, 87, 158, 0.15);
    }

    100% {
        box-shadow: 0 0 45px rgba(11, 87, 158, 0.35);
    }
}

/* About Company Section */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro p {
    color: var(--slate);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.about-key-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.05rem;
}

/* 2x2 Stats Grid styling */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.stat-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bg-teal-light {
    background-color: rgba(13, 148, 136, 0.08);
    color: #0D9488;
}

.bg-blue-light {
    background-color: rgba(11, 87, 158, 0.08);
    color: #0B579E;
}

.bg-darkblue-light {
    background-color: rgba(8, 66, 123, 0.08);
    color: #08427B;
}

.bg-navy-light-box {
    background-color: rgba(15, 23, 42, 0.08);
    color: #0F172A;
}

.stat-number-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.stat-card p {
    font-size: 0.775rem;
    color: var(--slate);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stat-number-val {
        font-size: 1.4rem;
    }

    .stat-card h3 {
        font-size: 0.85rem;
    }

    .stat-card p {
        font-size: 0.75rem;
    }

    .stat-card-header {
        margin-bottom: 0.5rem;
    }

    .stat-icon-box {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.about-hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.25rem;
}

@media (max-width: 480px) {
    .about-hero-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .about-hero-buttons .about-btn {
        flex: 1;
        padding: 0.75rem 0.25rem;
        font-size: 0.75rem;
        display: flex;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
    }

    .about-hero-buttons .about-btn i {
        margin-right: 0.25rem !important;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Sliders (Services, Products, Clients, Feedback) */
.slider-wrapper {
    position: relative;
}

.slider-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 2rem 0.25rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Style custom scrollbar for sliders */
.slider-container::-webkit-scrollbar {
    height: 6px;
}

.slider-container::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 10px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: var(--slate-light);
    border-radius: 10px;
}

.slider-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Card Styling for Services & Products */
.card-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--slate);
    font-size: 0.9rem;
}

/* Manufacturing Plant Section */
.plant-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: stretch;
}

.plant-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: 100%;
}

.plant-images-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 55vh;
    /* object-fit: cover; */
}

.plant-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plant-info h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.plant-info p {
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.plant-specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.plant-spec-box {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.plant-spec-box h4 {
    font-size: 0.9rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.plant-spec-box span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

/* Client Logo Slider (Marquee style) */
.logo-marquee-wrapper {
    overflow: hidden;
    padding: 1.5rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.logo-marquee-content {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scrollMarquee 20s linear infinite;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-box:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-box span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

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

    100% {
        transform: translateX(calc(-50%));
    }
}

/* ==========================================================================
   CLIENT TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
    position: relative;
    width: 100%;
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

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

.testimonials-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.3px;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: var(--slate);
    max-width: 680px;
    margin: 1rem auto 0;
    line-height: 1.65;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.testimonials-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 2rem) / 3);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 280px;
}

.testimonial-quote-mark {
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--slate-light);
    opacity: 0.25;
    pointer-events: none;
}

.testimonial-stars {
    display: flex;
    gap: 0.15rem;
    color: #F59E0B;
    /* Yellow stars */
    font-size: 1rem;
}

.testimonial-text {
    flex: 1;
    color: var(--navy-light);
    font-size: 0.95rem;
    margin: 0;
    text-align: justify;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(11, 87, 158, 0.1);
}

.testimonial-avatar--photo {
    object-fit: cover;
    background: none;
    box-shadow: none;
    padding: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.3;
}

.testimonial-role {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.4;
    margin-top: 1px;
}

/* Arrows */
.testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 2;
}

.testimonials-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.testimonials-prev {
    left: 0;
}

.testimonials-next {
    right: 0;
}

/* Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: var(--slate-light);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background: var(--slate);
}

.testimonial-dot.is-active {
    background: var(--primary);
    width: 26px;
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 1rem) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 0rem 0 3rem;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonials-slider {
        padding: 0 2.25rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: 0;
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .testimonials-arrow {
        width: 38px;
        height: 38px;
    }
}

/* FAQ Accordion Section */
.faq-wrap {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.faq-q:hover {
    background-color: rgba(0, 86, 179, 0.02);
    color: var(--primary);
}

.faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--slate);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-a {
    padding: 1.15rem 1.5rem;
    max-height: 180px;
    border-top-color: var(--border);
}

.faq-q i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* ── Unified Page Hero Banner ────────────────────────────────────────────── */
.page-hero {
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #92400E 0%, #D97706 40%, #0B2345 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="g" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M0 15 L15 0 L30 15 L15 30Z" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23g)"/></svg>');
    pointer-events: none;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 35, 69, 0.9) 0%, rgba(13, 148, 136, 0.8) 100%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem 2rem;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.page-hero-eyebrow a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.page-hero-eyebrow a:hover {
    color: #fff;
}

.page-hero-eyebrow .sep {
    opacity: 0.4;
}

.page-hero-eyebrow .page-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4ADE80;
    display: inline-block;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0;
    /* Subtitle removed, no margin needed */
    letter-spacing: -0.01em;
}

.page-hero-title span {
    color: #FCD34D;
    /* Changed from dark orange to bright yellow so it doesn't blend into the background */
}

/* Mobile Hero Overrides */
@media (max-width: 768px) {
    .page-hero {
        min-height: 100px;
        /* height: auto; */
        /* align-items: flex-start; */
    }

    .page-hero-title {
        font-size: 2rem !important;
    }
}

/* About Page Specific Styles */
.about-timeline {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--border);
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -2.7rem;
    top: 0.25rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--primary);
}

.timeline-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-step p {
    color: var(--slate);
    font-size: 0.95rem;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.vision-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.vision-card h3 {
    margin-bottom: 0.75rem;
}

.vision-card p {
    color: var(--slate);
    font-size: 0.95rem;
}

/* Contact Page Two Column Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info-card {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.25rem;
    color: var(--accent);
}

.info-txt h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.info-txt p {
    color: var(--slate-light);
    font-size: 0.9rem;
}

/* Premium Dark Navy Contact Form Card */
.contact-form-card {
    background-color: #12192C;
    /* Extremely dark premium blue/navy */
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-card h3 {
    color: #FFC107 !important;
    /* Gold/yellow title */
    font-size: 1.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-form-card {
        padding: 2.25rem 1.5rem;
    }

    .contact-form-card h3 {
        font-size: 1.5rem;
    }
}

.form-group {
    margin-bottom: 0;
    /* Handled by grid gap */
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    /* White labels as in mockup */
}

.form-label .asterisk {
    color: #EF4444;
    margin-left: 0.15rem;
}

.form-label .optional {
    color: #94A3B8;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 0.25rem;
}

/* Input Icon Wrapper */
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper .input-icon {
    position: absolute;
    left: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
    /* Slate grey icon */
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.input-icon-wrapper .form-control {
    width: 100%;
    height: 3.25rem;
    padding: 0.5rem 1rem 0.5rem 2.75rem;
    /* Indent for icon */
    border: 1px solid #CBD5E1;
    background-color: #FFFFFF;
    border-radius: 12px;
    /* Smooth rounded corners */
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #0F172A;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    box-sizing: border-box;
}

.input-icon-wrapper .form-control:focus {
    outline: none;
    border-color: #FFC107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.input-icon-wrapper .form-control:focus+.input-icon {
    color: #FFC107;
    /* Highlight icon on focus */
}

/* Custom dropdown styles for select fields */
.input-icon-wrapper select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1rem;
    padding-right: 2.75rem;
    cursor: pointer;
}

/* Yellow/Gold Submit Button */
.btn-submit-gold {
    width: 100%;
    background-color: #FFC80A;
    /* Bright gold background */
    color: #0F172A !important;
    /* Dark text */
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 1.15rem 1.5rem;
    border-radius: 14px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 200, 10, 0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    /* Keep capitalization friendly as in mockup */
}

.btn-submit-gold:hover {
    background-color: #E2B208;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 200, 10, 0.45);
}

.btn-submit-gold:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(255, 200, 10, 0.2);
}

/* Secure Bottom Text */
.form-lock-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-lock-row i {
    color: #FFC107;
    /* Yellow lock */
}

/* Map frame */
.contact-map-full {
    height: 400px;
    width: 100%;
    line-height: 0;
}

.contact-map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Reusable Footer Includes (DESKTOP/LAPTOP ONLY) */
.main-footer {
    background-color: var(--navy);
    color: var(--slate-light);
    padding: 4rem 0 2rem 0;
    border-top: 3px solid var(--primary);
}

/* Desktop Only: hide below 1024px */
@media (max-width: 1023px) {
    .main-footer {
        display: none !important;
    }
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 3px;
}

.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
}

[data-aos="fade-left"] {
    transform: translateX(20px);
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ==========================================
   Scroll Progress Bar
   ========================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #0D9488 0%, #0B579E 100%);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ==========================================
   Floating WhatsApp CTA Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: waBounce 3s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 50% 50% 60% 60%;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65),
        0 4px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: var(--navy);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    font-family: var(--font-body);
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--navy);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
}

@keyframes waBounce {

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

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

/* ==========================================
   Services Page Styles
   ========================================== */
.srv-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.srv-feat-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.srv-feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.srv-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 87, 158, 0.2);
}

.srv-feat-card:hover::before {
    transform: scaleX(1);
}

.srv-feat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.srv-feat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.srv-feat-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--light-bg);
    line-height: 1;
    z-index: 0;
    transition: color 0.3s ease;
}

.srv-feat-card:hover .srv-feat-num {
    color: rgba(11, 87, 158, 0.05);
}

.srv-feat-body h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.srv-feat-body p {
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.srv-feat-list {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.srv-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--slate);
}

.srv-feat-list li i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.srv-feat-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.srv-feat-cta:hover {
    color: var(--navy);
    gap: 0.75rem;
}

/* ── CTA button group: WhatsApp + Phone side by side ──────────────────── */
.srv-feat-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

/* WhatsApp primary — inherits .srv-feat-cta, override color */
.srv-feat-cta-group .srv-feat-cta {
    background: rgba(37, 211, 102, 0.08);
    border: 1.5px solid rgba(37, 211, 102, 0.3);
    color: #128C7E;
    padding: 0.42rem 0.95rem;
    border-radius: 100px;
    font-size: 0.85rem;
}

.srv-feat-cta-group .srv-feat-cta:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #075E54;
    gap: 0.6rem;
}

/* Phone secondary */
.srv-feat-cta-phone {
    background: rgba(11, 87, 158, 0.07) !important;
    border: 1.5px solid rgba(11, 87, 158, 0.25) !important;
    color: var(--primary) !important;
    padding: 0.42rem 0.95rem;
    border-radius: 100px;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}

.srv-feat-cta-phone:hover {
    background: rgba(11, 87, 158, 0.14) !important;
    color: var(--navy) !important;
    gap: 0.6rem;
}


/* More Solutions Grid */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.srv-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.srv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 87, 158, 0.2);
}

.srv-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(11, 87, 158, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.srv-card:hover .srv-card-icon {
    background: var(--primary);
    color: #fff;
}

.srv-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.srv-card p {
    color: var(--slate);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.srv-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #128C7E;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.srv-card:hover .srv-card-link {
    gap: 0.6rem;
    color: #075E54;
}

/* Process Grid */
.srv-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.srv-proc-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.srv-proc-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.3);
}

.srv-proc-step {
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(13, 148, 136, 0.05);
    line-height: 1;
    transition: color 0.3s ease;
}

.srv-proc-card:hover .srv-proc-step {
    color: rgba(13, 148, 136, 0.1);
}

.srv-proc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(11, 87, 158, 0.1));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.srv-proc-card h4 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.srv-proc-card p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==========================================
   Mobile Responsive Adjustments
   ========================================== */
.toast-notification {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    min-width: 280px;
    max-width: 360px;
    background: var(--navy);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 9001;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid #0D9488;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification .toast-icon {
    font-size: 1.3rem;
    color: #0D9488;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.toast-notification .toast-body strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.toast-notification .toast-body span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.83rem;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1rem;
    margin-left: auto;
    flex-shrink: 0;
    padding: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #fff;
}

/* ==========================================
   Testimonial Star Ratings
   ========================================== */
.feedback-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.85rem;
    color: #F59E0B;
    font-size: 0.9rem;
}

/* Testimonial Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(11, 87, 158, 0.25);
}

.slider-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 4px;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0D9488 0%, #0B579E 100%);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 87, 158, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem auto;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(11, 87, 158, 0.1) 100%);
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #0D9488 0%, #0B579E 100%);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.why-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--navy);
}

.why-card p {
    font-size: 0.83rem;
    color: var(--slate);
    line-height: 1.5;
}

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

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

/* ==========================================
   Mobile Footer Strip (visible below 1024px)
   ========================================== */
.mobile-footer-strip {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-footer-strip {
        display: block;
        background: var(--navy);
        color: var(--slate-light);
        padding: 1rem;
        border-top: 3px solid var(--primary);
    }

    .mobile-footer-strip .mf-brand {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.75rem;
    }

    .mobile-footer-strip .mf-brand span {
        color: var(--accent);
    }

    .mobile-footer-strip p {
        font-size: 0.83rem;
        color: var(--slate-light);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .mf-contact-row {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .mf-contact-row a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.88rem;
        color: var(--slate-light);
        text-decoration: none;
        transition: color 0.2s;
    }

    .mf-contact-row a:hover {
        color: #fff;
    }

    .mf-contact-row a i {
        color: var(--accent);
        width: 16px;
        flex-shrink: 0;
    }

    .mf-social-row {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .mf-social-row a {
        font-size: 1.2rem;
        color: var(--slate-light);
        transition: color 0.2s;
    }

    .mf-social-row a:hover {
        color: #fff;
    }

    .mf-bottom {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.35);
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-top: 1rem;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    .hero-split,
    .about-split,
    .plant-grid,
    .contact-layout,
    .about-cards-grid,
    .form-group-row,
    .srv-featured-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    /* About page inner responsive */
    .inner-hero h1 {
        font-size: 1.75rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .about-cards-grid {
        grid-template-columns: 1fr !important;
    }

    /* Policy cards stack on mobile */
    [style*="grid-template-columns:repeat(auto-fit,minmax(280px"] {
        grid-template-columns: 1fr !important;
    }

    /* CTA button row wraps nicely */
    [style*="display:flex;gap:1rem;justify-content:center"] {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .main-header {
        background-color: transparent !important;
        backdrop-filter: none;
        border-bottom: none;
        box-shadow: none !important;
        pointer-events: none;
        /* Let clicks pass through empty space */
    }

    .main-header .navbar {
        justify-content: flex-end !important;
        padding-top: 1rem;
    }

    .main-header .logo {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 3rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
        pointer-events: auto;
        /* Reactivate clicks on menu itself */
        z-index: 1001;
        /* Above toggle button when open if needed */
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: transparent !important;
        color: var(--navy) !important;
        border-radius: 50%;
        box-shadow: none !important;
        pointer-events: auto;
        /* Reactivate clicks on the toggle button */
        position: relative;
        z-index: 1002;
    }
}

/* Winding Ribbon Services Timeline Styles */
.ribbon-timeline {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto 0 auto;
    padding: 0.5rem 0;
}

/* Straight vertical timeline track in the center */
.ribbon-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 22px;
    bottom: 22px;
    width: 4px;
    background: linear-gradient(to bottom, #0D9488 0%, #0B579E 35%, #08427B 70%, #0F172A 100%);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 4px;
    opacity: 0.8;
}

.ribbon-row {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 0.75rem;
}

.ribbon-col-card {
    display: flex;
}

.ribbon-row-right .ribbon-col-card {
    justify-content: flex-end;
}

.ribbon-row-left .ribbon-col-card {
    justify-content: flex-start;
}

.ribbon-col-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ribbon node circles with white icons in the middle curves */
.ribbon-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 3;
    border: 3px solid;
    transition: var(--transition);
}

.node-teal {
    background-color: #0D9488;
    border-color: #0D9488;
}

.node-blue {
    background-color: #0B579E;
    border-color: #0B579E;
}

.node-darkblue {
    background-color: #08427B;
    border-color: #08427B;
}

.node-navy {
    background-color: #0F172A;
    border-color: #0F172A;
}

.ribbon-node:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

/* Ribbon card elements matching sketch */
.ribbon-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 410px;
    transition: var(--transition);
    position: relative;
}

.ribbon-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.ribbon-card-body {
    flex: 1;
}

.ribbon-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.ribbon-card-body p {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.5;
}

/* Badges for start, numbers, and stop */
.ribbon-num-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon-number {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--slate-light);
    line-height: 1;
}

.ribbon-label-start,
.ribbon-label-stop {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--slate);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 0.15em;
    margin-left: 0.35rem;
    border-left: 1px solid var(--border);
    padding-left: 0.35rem;
}

/* Responsive collapse on mobile */
@media (max-width: 768px) {
    .ribbon-timeline::before {
        display: none;
    }

    .ribbon-row {
        grid-template-columns: 1fr;
        margin-bottom: 1.5rem;
    }

    .ribbon-col-empty,
    .ribbon-col-center {
        display: none;
    }

    .ribbon-card {
        max-width: 100%;
        width: 100%;
    }

    .ribbon-row-right .ribbon-col-card,
    .ribbon-row-left .ribbon-col-card {
        justify-content: fill;
    }
}

/* Glassy Button Styling */
.btn-glass {
    background: rgba(11, 87, 158, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(11, 87, 158, 0.25);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.btn-glass:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 87, 158, 0.2);
}

/* Products Grid Responsive Adjustments */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

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

    /* ── Mobile Transparent Header (Hamburger Only) ── */
    .main-header {
        position: absolute;
        /* Remove from document flow to fix top white space */
        width: 100%;
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
        z-index: 1000;
    }

    .main-header .navbar {
        justify-content: flex-end;
        /* Push hamburger to right */
        padding-right: 1.5rem;
        /* Ensure some spacing from edge */
    }

    .main-header .logo {
        display: none !important;
        /* Hide logo */
    }

    /* Ensure it remains transparent even when scrolled */
    .main-header.scrolled {
        background-color: transparent !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }
}

/* ==========================================
   Mobile Linktree-Style Page (≤ 768px)
   ========================================== */
.mobile-nav-layer {
    display: none;
    /* Hidden on desktop */
}

/* Call Now hero button — hidden on desktop, shown mobile-only */
.hero-call-btn {
    display: none;
}

@media (max-width: 768px) {

    /* ── Full-page dark gradient background on mobile homepage ── */
    body.home-page {
        background:
            linear-gradient(160deg, rgba(10, 20, 50, 0.91) 0%, rgba(8, 42, 90, 0.88) 50%, rgba(6, 30, 70, 0.92) 100%),
            url('../images/bg-building.jpg') center center / cover no-repeat fixed;
        min-height: 100vh;
    }

    /* Show the mobile linktree layer */
    .mobile-nav-layer {
        display: block;
        /* padding: 0 0 3rem 0; */
    }

    /* Hide all other homepage sections on mobile */
    .home-page section:not(.mobile-nav-layer) {
        display: none !important;
    }

    /* Compact hero on mobile */
    .home-page .hero-image-col {
        display: none !important;
    }

    .home-page .hero-actions-row .btn-outline-white {
        display: none !important;
    }

    .home-page .hero-split {
        padding: 0.75rem 0 0 0;
        background: transparent;
    }

    .home-page .hero-content h1 {
        font-size: 1.55rem;
        margin-bottom: 0.75rem;
        color: #fff;
    }

    .home-page .hero-content p {
        display: none;
    }

    .home-page .hero-welcome {
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.78rem;
    }

    .home-page .hero-actions-row {
        margin-bottom: 0.75rem;
        gap: 0.65rem;
    }

    .home-page .hero-stats-card {
        display: none;
    }

    /* Stats shown in mob-stats-strip */
    .home-page .highlight-orange {
        background: linear-gradient(135deg, #0D9488, #4FC3F7);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Call Now — green glossy button */
    .hero-call-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(160deg, #059669 0%, #047857 100%);
        color: #fff !important;
        font-weight: 700;
        font-size: 0.88rem;
        border: 1.5px solid rgba(5, 150, 105, 0.55);
        border-radius: 12px;
        padding: 0.85rem 1.25rem;
        box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
        transition: all 0.22s ease;
    }

    .hero-call-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(4, 120, 87, 0.55);
    }

    /* ── Linktree Wrapper ───────────────────────────────────── */
    .mob-lt-wrap {
        max-width: 480px;
        margin: 0 auto;
        padding: 0 1.1rem 2rem 1.1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    /* ── Profile Card ─────────────────────────────────────── */
    .mob-profile-card {
        text-align: center;
        padding: 1.5rem 1rem 1.25rem;
    }

    .mob-logo-ring {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        margin: 0 auto 0.85rem auto;
        padding: 4px;
        background: linear-gradient(135deg, #0D9488 0%, #0B579E 50%, #08427B 100%);
        box-shadow: 0 0 28px rgba(13, 148, 136, 0.55), 0 0 60px rgba(11, 87, 158, 0.25);
        animation: profileGlow 3s ease-in-out infinite alternate;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mob-logo-ring img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        background: #fff;
        padding: 6px;
    }

    .mob-logo-fallback {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #0D9488;
        font-size: 2rem;
        align-items: center;
        justify-content: center;
    }

    @keyframes profileGlow {
        0% {
            box-shadow: 0 0 20px rgba(13, 148, 136, 0.4), 0 0 40px rgba(11, 87, 158, 0.15);
        }

        100% {
            box-shadow: 0 0 40px rgba(13, 148, 136, 0.7), 0 0 80px rgba(11, 87, 158, 0.35);
        }
    }

    .mob-company-name {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.01em;
        margin-bottom: 0.3rem;
    }

    .mob-company-name span {
        background: linear-gradient(135deg, #0D9488, #4FC3F7);
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mob-tagline {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.65);
        margin-bottom: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .mob-badges-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        justify-content: center;
    }

    .mob-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0.25rem 0.6rem;
        border-radius: 20px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .mob-badge i {
        color: #0D9488;
        font-size: 0.65rem;
    }

    /* ── Stats Strip ─────────────────────────────────────── */
    .mob-stats-strip {
        display: flex;
        align-items: center;
        justify-content: space-around;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 0.9rem 0.5rem;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .mob-stat-pill {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
        flex: 1;
    }

    .mob-stat-pill strong {
        font-family: var(--font-heading);
        font-size: 1.3rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        background: linear-gradient(135deg, #0D9488, #4FC3F7);
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mob-stat-pill span {
        font-size: 0.62rem;
        color: rgba(255, 255, 255, 0.55);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
    }

    .mob-stat-sep {
        width: 1px;
        height: 32px;
        background: rgba(255, 255, 255, 0.12);
        flex-shrink: 0;
    }

    /* ── Promo CTA Card ──────────────────────────────────── */
    .mob-promo-card {
        position: relative;
        border-radius: 20px;
        padding: 1.4rem 1.25rem 1.25rem;
        overflow: hidden;
        background: linear-gradient(135deg, #0A1A40 0%, #0C2454 50%, #082050 100%);
        border: 1px solid rgba(13, 148, 136, 0.4);
        box-shadow: 0 8px 32px rgba(11, 87, 158, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    }

    /* Shimmer top gloss */
    .mob-promo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
        border-radius: 20px 20px 50% 50%;
        pointer-events: none;
    }

    /* Radial glow orb bottom-right */
    .mob-promo-card::after {
        content: '';
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
        pointer-events: none;
    }

    .mob-promo-badge {
        display: inline-block;
        font-size: 0.65rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #FFC107;
        background: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.25);
        padding: 0.2rem 0.65rem;
        border-radius: 20px;
        margin-bottom: 0.75rem;
    }

    .mob-promo-headline {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.35rem;
        line-height: 1.3;
        position: relative;
        z-index: 1;
    }

    .mob-promo-headline span {
        color: #FFC107;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: rgba(255, 193, 7, 0.4);
    }

    .mob-promo-sub {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .mob-promo-actions {
        display: flex;
        gap: 0.65rem;
        position: relative;
        z-index: 1;
    }

    .mob-promo-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 0.8rem 0.5rem;
        border-radius: 12px;
        font-family: var(--font-heading);
        font-size: 0.82rem;
        font-weight: 700;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .mob-promo-wa {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: #fff !important;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }

    .mob-promo-wa:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
    }

    .mob-promo-call {
        background: rgba(255, 255, 255, 0.08);
        color: #fff !important;
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(6px);
    }

    .mob-promo-call:hover {
        background: rgba(255, 255, 255, 0.14);
        transform: translateY(-2px);
    }

    /* ── Navigation Link Cards ───────────────────────────── */
    .mob-links-stack {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .mob-link-card {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.9rem 1rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        text-decoration: none;
        transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .mob-link-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
        border-radius: inherit;
        pointer-events: none;
    }

    .mob-link-card:hover,
    .mob-link-card:active {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(13, 148, 136, 0.4);
        transform: translateX(4px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Highlighted last card (Contact) */
    .mob-link-highlight {
        border-color: rgba(5, 150, 105, 0.35);
        background: rgba(5, 150, 105, 0.07);
    }

    .mob-link-highlight:hover {
        border-color: rgba(5, 150, 105, 0.6);
        background: rgba(5, 150, 105, 0.12);
    }

    .mob-link-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: #fff;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .mob-link-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
        min-width: 0;
    }

    .mob-link-title {
        font-family: var(--font-heading);
        font-size: 0.88rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
    }

    .mob-link-sub {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mob-link-arrow {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.3);
        flex-shrink: 0;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .mob-link-card:hover .mob-link-arrow {
        transform: translateX(3px);
        color: rgba(255, 255, 255, 0.7);
    }

    /* ── Trust Badges Row ────────────────────────────────── */
    .mob-trust-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .mob-trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.7);
        background: rgba(13, 148, 136, 0.1);
        border: 1px solid rgba(13, 148, 136, 0.25);
        padding: 0.3rem 0.7rem;
        border-radius: 20px;
    }

    .mob-trust-pill i {
        color: #0D9488;
        font-size: 0.65rem;
    }

    /* ── Social Bar ──────────────────────────────────────── */
    .mob-social-bar {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .mob-social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.55);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .mob-social-icon:hover {
        color: #fff;
        background: rgba(13, 148, 136, 0.2);
        border-color: rgba(13, 148, 136, 0.4);
        transform: translateY(-2px);
    }

    /* ── Footer copy ─────────────────────────────────────── */
    .mob-footer-copy {
        text-align: center;
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.25);
        letter-spacing: 0.03em;
        padding-top: 0.5rem;
    }

    /* ── Strengths grid (mobile) ──────────────────────────── */
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .strength-card {
        padding: 0.9rem 0.6rem;
        gap: 0.55rem;
        background: rgba(13, 148, 136, 0.18);
        border-color: rgba(13, 148, 136, 0.45);
    }

    .strength-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(13, 148, 136, 0.3);
        border-color: rgba(13, 148, 136, 0.6);
        color: #2DD4BF;
    }

    .strength-title {
        font-size: 0.72rem;
        color: #E0F7FA;
        letter-spacing: 0.01em;
    }

}

/* ============================================================
   Strengths Section (About Page – Section 8)
   ============================================================ */
.strengths-section {
    padding: 2rem 0;
    background: linear-gradient(145deg, #060f2e 0%, #0A1A4A 50%, #0A3060 100%);
    position: relative;
    overflow: hidden;
}

.strengths-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(13, 148, 136, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(11, 87, 158, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.strengths-section .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

/* Override global .section-header h2 navy color for dark background */
.strengths-section .section-header h2,
.strengths-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.strengths-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2DD4BF;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 12px rgba(45, 212, 191, 0.4);
}

/* Override global .section-header span for dark section */
.strengths-section .section-header span {
    color: #2DD4BF !important;
}

.strengths-highlight {
    background: linear-gradient(120deg, #0D9488, #4FC3F7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.strength-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: default;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.strength-card:hover {
    transform: translateY(-6px);
    background: rgba(13, 148, 136, 0.18);
    border-color: rgba(13, 148, 136, 0.5);
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.2), 0 0 0 1px rgba(13, 148, 136, 0.15);
}

.strength-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, rgba(13, 148, 136, 0.05) 70%);
    border: 1px solid rgba(13, 148, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #0D9488;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.strength-card:hover .strength-icon-wrap {
    background: radial-gradient(circle, rgba(13, 148, 136, 0.35) 0%, rgba(13, 148, 136, 0.1) 70%);
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.4);
    transform: scale(1.1) rotate(-5deg);
}

.strength-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #E8F4FD;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   Industries Image Grid (Services Page – Section 4)
   ============================================================ */
.industries-section {
    padding: 1rem 0 2rem;
    background: var(--light-bg);
}

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

.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.industry-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 15, 46, 0.15) 0%,
            rgba(6, 15, 46, 0.7) 60%,
            rgba(6, 15, 46, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    transition: background 0.35s ease;
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(180deg,
            rgba(13, 148, 136, 0.15) 0%,
            rgba(6, 15, 46, 0.75) 50%,
            rgba(6, 15, 46, 0.95) 100%);
}

.industry-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.industry-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.3);
    border: 1.5px solid rgba(13, 148, 136, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2DD4BF;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: rgba(13, 148, 136, 0.55);
    transform: scale(1.1);
}

.industry-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Responsive: tablet */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Responsive: mobile */
@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .industry-card {
        aspect-ratio: 1 / 1;
        border-radius: 12px;
    }

    .industry-title {
        font-size: 0.78rem;
    }

    .industry-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* ============================================================
   Reusable CTA Banner Component  (includes/components/cta-banner.php)
   ============================================================ */
.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    /* Default gradient – overridden per-page via inline style */
    background: linear-gradient(135deg, #0D9488 0%, #0B579E 100%);
}

/* Decorative ambient orbs */
.cta-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.18;
    filter: blur(70px);
}

.cta-orb-1 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    top: -80px;
    left: -80px;
}

.cta-orb-2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    bottom: -60px;
    right: -60px;
}

/* Inner container – text left, side image right */
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Text block */
.cta-text {
    flex: 1;
    text-align: center;
}

/* When a side image is present, shift text left-aligned on desktop */
.cta-has-side .cta-text {
    text-align: left;
}

.cta-headline {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 0.85rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
    max-width: 540px;
    line-height: 1.65;
}

/* Center description when no side image */
.cta-section:not(.cta-has-side) .cta-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Button row */
.cta-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-has-side .cta-buttons {
    justify-content: flex-start;
}

/* Shared button base */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 1.75rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-heading, sans-serif);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

/* Primary – solid white */
.cta-btn-primary {
    background: #ffffff;
    color: #075E54;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cta-btn-primary:hover {
    background: #f0fdf9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

/* Ghost – translucent outline */
.cta-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Optional side image */
.cta-side-img {
    flex-shrink: 0;
    width: 340px;
    max-width: 38%;
}

.cta-side-img img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    display: block;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .cta-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-has-side .cta-text {
        text-align: center;
    }

    .cta-has-side .cta-buttons {
        justify-content: center;
    }

    .cta-side-img {
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-headline {
        font-size: 1.55rem;
    }

    .cta-desc {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.78rem 1rem;
    }
}