/* ═══════════════════════════════════════════════════════════
   KINDEZ ENGINEERING SOLUTIONS - PROFESSIONAL STYLESHEET
   Palette: White (#FFFFFF) | Navy (#0c284f) | Grey (#8f8f8f)
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* ═══ BRAND COLORS ═══ */
    --primary:       #0c284f;   /* Navy - Primary */
    --primary-dark:  #071c3a;   /* Darker Navy */
    --primary-light: #1a3d6b;   /* Lighter Navy */

    --secondary:     #8f8f8f;   /* Grey - Secondary */
    --grey-light:    #b5b5b5;
    --grey-lighter:  #e9ecef;
    --bg-light:      #f8f9fa;
    --white:         #FFFFFF;

    /* Aliases (kept for backward compatibility) */
    --orange:       #0c284f;
    --orange-dark:  #071c3a;
    --orange-light: #1a3d6b;
    --navy:         #0c284f;
    --dark-navy:    #0c284f;
    --steel:        #8f8f8f;
    --steel-light:  #b5b5b5;
    --grey:         #8f8f8f;
    --light-grey:   #f4f4f4;

    /* ═══ FONTS ═══ */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body:    'Open Sans', sans-serif;

    /* ═══ EFFECTS ═══ */
    --transition:   all 0.35s ease;
    --shadow-sm:    0 4px 15px rgba(12,40,79,0.08);
    --shadow-md:    0 8px 30px rgba(12,40,79,0.12);
    --shadow-lg:    0 20px 60px rgba(12,40,79,0.18);
    --radius:       8px;
    --radius-lg:    16px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: #4a4a4a;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

a { text-decoration: none; transition: var(--transition); color: var(--primary); }
img { max-width: 100%; height: auto; }

/* ── Color Utilities ────────────────────────────────────────── */
.text-orange   { color: var(--primary) !important; }
.text-navy     { color: var(--primary) !important; }
.text-steel    { color: var(--secondary) !important; }
.text-muted    { color: var(--secondary) !important; }

.bg-orange     { background: var(--primary) !important; }
.bg-dark-navy  { background: var(--primary) !important; }
.bg-navy       { background: var(--primary) !important; }
.bg-steel      { background: var(--secondary) !important; }
.border-orange { border-color: var(--primary) !important; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-orange {
    background: var(--primary);
    color: #fff !important;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(12,40,79,0.25);
}
.btn-orange:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12,40,79,0.35);
}

.btn-outline-orange {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.btn-outline-orange:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12,40,79,0.25);
}

.btn-outline-light-custom {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff !important;
    background: transparent;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.btn-outline-light-custom:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ── Section Commons ────────────────────────────────────────── */
.section-badge {
    display: inline-block;
    background: rgba(12,40,79,0.08);
    color: var(--primary);
    border: 1px solid rgba(12,40,79,0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--primary);
    position: relative;
}
.section-title .highlight { color: var(--secondary); }

.section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}
.section-divider .line {
    height: 3px;
    width: 50px;
    background: var(--primary);
    border-radius: 3px;
}
.section-divider .dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
    background: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ── Navbar ─────────────────────────────────────────────────── */
#mainNavbar {
    background: #ffffff !important;
    border-bottom: 2px solid var(--primary);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#mainNavbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.navbar-brand img {
    transition: var(--transition);
}
.navbar-brand:hover img {
    transform: scale(1.03);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}
.brand-sub {
    font-size: 0.65rem;
    color: var(--secondary);
    letter-spacing: 1px;
    font-family: var(--font-body);
    text-transform: uppercase;
}

#mainNavbar .nav-link {
    color: #4a4a4a !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 8px 14px !important;
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    width: 60%;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: var(--primary) !important;
}

.navbar-toggler {
    color: var(--primary);
    border-color: var(--primary) !important;
}
.navbar-toggler-icon {
    filter: invert(15%) sepia(59%) saturate(1548%) hue-rotate(200deg) brightness(90%);
}

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 1040;
    transition: var(--transition);
    animation: whatsappPulse 2.5s infinite;
}
.whatsapp-float:hover {
    background: #1eb857;
    transform: scale(1.1);
    color: #fff;
}
@keyframes whatsappPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(12,40,79,0.35);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 60%, var(--primary-light) 100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(12,40,79,0.92) 0%,
        rgba(12,40,79,0.85) 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    filter: brightness(0.4);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    display: block;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-200px) scale(1.5); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}
.hero-title .accent { color: #b5b5b5; }

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item { text-align: left; }

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Right Visual */
.hero-visual { position: relative; z-index: 2; }

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-service-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    cursor: default;
}
.hero-service-card:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-5px);
}
.hero-service-card .icon {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 12px;
    display: block;
}
.hero-service-card h6 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.hero-service-card p { color: rgba(255,255,255,0.6) !important; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}
.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: .78rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}
.scroll-indicator a:hover { color: #ffffff; }
.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); opacity: 1; }
    50%     { transform: translateY(8px); opacity: .4; }
}

/* ── About Strip ────────────────────────────────────────────── */
.about-strip { background: #fff; overflow: hidden; }
.about-strip-img { position: relative; overflow: hidden; }
.about-strip-img img { display: block; width: 100%; height: 420px; object-fit: cover; }
.about-strip-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(12,40,79,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}
.about-strip-content { padding: 60px; }
@media(max-width:991px) {
    .about-strip-content { padding: 40px 20px; }
    .about-strip-img img { height: 300px; }
}

/* ── Services Overview (Home) ───────────────────────────────── */
.services-overview { padding: 100px 0; background: var(--bg-light); }

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    border: 1px solid var(--grey-lighter);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(12,40,79,0.08);
    border: 2px solid rgba(12,40,79,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(5deg) scale(1.05);
}

.service-card h4 { font-size: 1.25rem; color: var(--primary); margin-bottom: 12px; }
.service-card p  { color: #666; font-size: 0.92rem; line-height: 1.75; }

.service-card .read-more {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}
.service-card .read-more i { transition: var(--transition); }
.service-card:hover .read-more i { transform: translateX(4px); }

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-choose-us { padding: 100px 0; background: var(--bg-light); }
.why-choose-us .section-title,
.why-choose-us .section-title .highlight { color: var(--primary) !important; }
.why-choose-us .text-muted { color: var(--secondary) !important; }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--grey-lighter);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
}

.feature-item h5 { color: var(--primary); font-size: 1.05rem; margin-bottom: 6px; }
.feature-item p  { color: var(--secondary); font-size: 0.88rem; margin: 0; }

/* Why Image Overlay Card */
.why-img-stack { position: relative; }
.why-img-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(12,40,79,0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
}

/* ── Stats Counter ──────────────────────────────────────────── */
.stats-section { padding: 80px 0; background: var(--primary); }
.stat-box { text-align: center; }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

.stat-icon { font-size: 2rem; color: rgba(255,255,255,0.6); }

/* ── Industries Section ─────────────────────────────────────── */
.industry-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.industry-img { position: relative; overflow: hidden; }
.industry-img img { display: block; transition: transform .4s ease; }
.industry-card:hover .industry-img img { transform: scale(1.06); }

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12,40,79,0.3), rgba(12,40,79,0.8));
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}
.industry-card:hover .industry-overlay { opacity: 1; }
.industry-overlay i { font-size: 2.5rem; color: #ffffff; }
.industry-body { padding: 22px; }
.industry-body h5 { color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }
.industry-body p  { color: #666; font-size: .85rem; margin-bottom: 12px; }
.industry-link {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.industry-link i { transition: var(--transition); }
.industry-link:hover i { transform: translateX(4px); }

/* ── Featured Projects (Home) ───────────────────────────────── */
.fp-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.fp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.fp-img { position: relative; overflow: hidden; }
.fp-img img { display: block; transition: transform .4s ease; }
.fp-card:hover .fp-img img { transform: scale(1.05); }
.fp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,40,79,0.97) 0%, rgba(12,40,79,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: var(--transition);
}
.fp-card:hover .fp-overlay { opacity: 1; }
.fp-info { background: #fff; padding: 20px 24px; }
.fp-info h6 { color: var(--primary); }

/* ── Process Dark ───────────────────────────────────────────── */
.process-section { background: var(--primary) !important; }

.process-step-dark { text-align: center; padding: 20px 16px; }
.step-number-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 3px 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.step-icon-circle {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    margin: 0 auto;
}
.process-step-dark:hover .step-icon-circle {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: scale(1.08);
}

/* Light Process Step */
.process-step { text-align: center; padding: 30px 20px; position: relative; }
.step-circle {
    width: 80px; height: 80px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(12,40,79,0.06);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.process-step:hover .step-circle {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* ── Gallery Strip (Home) ───────────────────────────────────── */
.gallery-strip-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-strip-item img { display: block; transition: transform .4s ease; }
.gallery-strip-item:hover img { transform: scale(1.06); }
.gallery-strip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,40,79,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 16px;
    text-align: center;
}
.gallery-strip-item:hover .gallery-strip-overlay { opacity: 1; }
.gallery-strip-overlay i { color: #ffffff !important; }

/* ── Technology Cards ───────────────────────────────────────── */
.tech-card {
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid var(--grey-lighter);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: default;
}
.tech-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}
.tech-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 12px; }
.tech-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 4px;
}
.tech-label {
    font-size: .78rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section { padding: 100px 0; background: var(--bg-light); }

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--grey-lighter);
    position: relative;
    transition: var(--transition);
    height: 100%;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-card .quote-icon {
    font-size: 3.5rem;
    color: rgba(12,40,79,0.12);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}
.testimonial-card p {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.testimonial-card .rating { color: #f5b301; margin-bottom: 16px; }

.reviewer-info { display: flex; align-items: center; gap: 14px; }

.reviewer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}
.reviewer-company { color: var(--secondary); font-size: 0.82rem; }

/* ── Clients Marquee ────────────────────────────────────────── */
.clients-marquee-wrapper { overflow: hidden; }
.clients-marquee {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}
.clients-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-logo-item { flex-shrink: 0; }
.client-logo-box {
    background: #fff;
    border: 1px solid var(--grey-lighter);
    border-radius: var(--radius);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: .9rem;
    white-space: nowrap;
    transition: var(--transition);
}
.client-logo-box:hover { border-color: var(--primary); color: var(--primary); }
.client-logo-box i { color: var(--primary) !important; }

/* ── Certifications ─────────────────────────────────────────── */
.cert-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--grey-lighter);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.cert-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
    transform: translateX(5px);
}
.cert-icon {
    width: 52px;
    height: 52px;
    background: rgba(12,40,79,0.08);
    border: 1px solid rgba(12,40,79,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}
.cert-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 1rem;
}
.cert-desc { color: #666; font-size: .84rem; margin: 0; line-height: 1.6; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cta-banner .text-muted { color: rgba(255,255,255,0.75) !important; }

/* ── About Page ─────────────────────────────────────────────── */
.about-hero {
    padding: 120px 0 80px;
    background: var(--primary);
}

.page-hero {
    padding: 120px 0 80px;
    background: var(--primary) !important;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-dark::after { background: var(--primary); }
.page-hero-grey::after { background: var(--bg-light); }

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 16px;
}

.page-hero .section-badge {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.page-hero .text-muted { color: rgba(255,255,255,0.75) !important; }

.breadcrumb-custom { display: flex; align-items: center; gap: 8px; }
.breadcrumb-custom a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.breadcrumb-custom a:hover { color: #ffffff; }
.breadcrumb-custom span { color: rgba(255,255,255,0.4); }
.breadcrumb-custom .current { color: #ffffff; font-size: 0.9rem; }

.about-img-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 30px rgba(12,40,79,0.35);
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.experience-badge .label { font-size: 0.8rem; font-weight: 500; opacity: 0.9; }

/* Vision Mission Cards */
.vision-mission-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.vision-mission-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.vision-mission-card h4 { color: var(--primary); }
.vision-mission-card i { color: var(--primary) !important; }

/* VMV Cards */
.vmv-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.vmv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.vmv-icon-wrap {
    background: var(--primary);
    padding: 20px;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
}
.vmv-img img { display: block; }
.vmv-body { padding: 24px; }

/* Team Card */
.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-8px); }

.team-card .team-img-wrapper {
    height: 260px;
    overflow: hidden;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
}
.team-card img { width: 100%; height: 100%; object-fit: cover; }
.team-card .team-info { padding: 24px; }
.team-card .team-info h5 { color: var(--primary); margin-bottom: 4px; }
.team-card .team-info .role { color: var(--secondary); font-size: 0.85rem; font-weight: 600; }

/* Team Card Pro */
.team-card-pro {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.team-card-pro:hover { box-shadow: var(--shadow-md); transform: translateY(-8px); }
.team-img-pro { position: relative; overflow: hidden; }
.team-img-pro img { display: block; transition: transform .4s ease; }
.team-card-pro:hover .team-img-pro img { transform: scale(1.04); }

.team-social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,40,79,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}
.team-card-pro:hover .team-social-overlay { opacity: 1; }

.social-btn-sm {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .9rem;
    transition: var(--transition);
}
.social-btn-sm:hover { background: var(--primary); color: #fff; transform: scale(1.1); }

.team-info-pro { padding: 20px; }
.team-info-pro h5 { color: var(--primary); margin-bottom: 4px; font-size: 1.05rem; }
.team-role { color: var(--primary); font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.team-qual { color: var(--secondary); font-size: .78rem; margin: 0; line-height: 1.5; }

/* ── Services Page ──────────────────────────────────────────── */
.services-quick-nav {
    background: #fff;
    border-bottom: 2px solid var(--grey-lighter);
}
.svc-nav-tab:hover,
.svc-nav-tab.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
}

.service-detail-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.service-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }

.service-detail-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }

.service-detail-img .service-number {
    position: absolute;
    top: 16px; right: 16px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    line-height: 1;
}
.service-detail-img .service-icon-overlay {
    position: absolute;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.25);
}

.service-detail-body { padding: 28px; }
.service-detail-body .svc-icon {
    width: 54px; height: 54px;
    background: rgba(12,40,79,0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin-bottom: 16px;
}
.service-detail-body h4 { color: var(--primary); margin-bottom: 12px; }
.service-detail-body p  { color: #666; font-size: 0.9rem; line-height: 1.75; }

.service-feature-list { list-style: none; padding: 0; margin: 16px 0 0; }
.service-feature-list li {
    padding: 6px 0;
    color: #555;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.service-feature-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ── Projects Page ──────────────────────────────────────────── */
.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.project-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.project-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover .project-img-wrapper img { transform: scale(1.06); }

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,40,79,0.95) 0%, rgba(12,40,79,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }

.project-info { padding: 24px; background: #fff; }
.project-info h5 { color: var(--primary); margin-bottom: 8px; }
.project-info p { color: #666; font-size: 0.88rem; margin: 0; }

.project-tag {
    display: inline-block;
    background: rgba(12,40,79,0.08);
    color: var(--primary);
    border: 1px solid rgba(12,40,79,0.2);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Project Card Pro */
.project-card-pro {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.project-card-pro:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.project-img-pro { position: relative; overflow: hidden; }
.project-img-pro img { display: block; }
.project-card-pro:hover .project-img-pro img { transform: scale(1.05); }
.project-overlay-pro {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,40,79,0.97) 0%, rgba(12,40,79,0.5) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.project-card-pro:hover .project-overlay-pro { opacity: 1; }
.project-info-pro { padding: 20px 22px 16px; }
.project-info-pro h5 { color: var(--primary); }

.project-metrics {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px 0 10px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.metric { text-align: center; flex: 1; }
.metric-val {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}
.metric-lbl {
    font-size: .7rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: .8px;
}
.metric-divider { width: 1px; height: 30px; background: var(--grey-lighter); flex-shrink: 0; }

/* Filter Tabs */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }

.filter-tab {
    padding: 8px 22px;
    border: 2px solid var(--grey-lighter);
    border-radius: 50px;
    background: #fff;
    color: #555;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,40,79,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    padding: 16px;
    text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #ffffff; margin-bottom: 10px; }
.gallery-overlay p { font-size: 0.9rem; margin: 0; }

/* Gallery Pro */
.gallery-item-pro {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius);
}
.gallery-item-pro img { display: block; transition: transform .4s ease; }
.gallery-item-pro:hover img { transform: scale(1.07); }
.gallery-overlay-pro {
    position: absolute;
    inset: 0;
    background: rgba(12,40,79,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
    padding: 20px;
}
.gallery-item-pro:hover .gallery-overlay-pro { opacity: 1; }
.gallery-overlay-content { transform: translateY(10px); transition: var(--transition); }
.gallery-item-pro:hover .gallery-overlay-content { transform: translateY(0); }

/* Lightbox */
.lightbox-modal .modal-content { background: #000; border: none; border-radius: var(--radius-lg); }
.lightbox-modal .modal-body { padding: 0; position: relative; }
.lightbox-modal img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius-lg); }
.lightbox-modal .btn-close { filter: invert(1); position: absolute; top: 12px; right: 12px; z-index: 10; }

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}
.lb-nav:hover { background: var(--primary); border-color: var(--primary); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

#lightboxModal .modal-dialog { max-width: 900px; }
#lightboxModal .modal-content { background: rgba(0,0,0,0.95); border: none; }
#lightboxModal img { border-radius: var(--radius); max-height: 75vh; object-fit: contain; }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-info-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-detail-item:last-child { border-bottom: none; }

.contact-icon-box {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-detail-item h6 {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-detail-item p,
.contact-detail-item a {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
}
.contact-detail-item a:hover { color: var(--grey-light); }

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-strip { overflow: hidden; }
.contact-strip-map img { display: block; }
.contact-strip-form { background: var(--primary-dark) !important; }

/* Form Styles */
.form-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.88rem;
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 2px solid var(--grey-lighter);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.93rem;
    transition: var(--transition);
    color: #333;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12,40,79,0.1);
    outline: none;
}
.form-control::placeholder { color: #aaa; }

/* Map Wrapper */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 3px solid #fff;
}
.map-wrapper iframe { display: block; width: 100%; height: 400px; }

/* Quick Form (Dark) */
#quickForm .form-control::placeholder { color: rgba(255,255,255,0.5); }
#quickForm .form-control:focus {
    background: rgba(255,255,255,0.15) !important;
    border-color: #fff !important;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}

/* ── Careers Page ───────────────────────────────────────────── */
.job-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border: 1px solid var(--grey-lighter);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.job-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--primary);
    border-radius: 4px 0 0 4px;
}
.job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-color: var(--primary);
}
.job-card h5 { color: var(--primary); }

.job-badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-badge.full-time  { background: rgba(12,40,79,0.1);   color: var(--primary); }
.job-badge.part-time  { background: rgba(143,143,143,0.15); color: #666; }
.job-badge.contract   { background: rgba(12,40,79,0.08);  color: var(--primary); }
.job-badge.internship { background: rgba(143,143,143,0.12); color: #666; }

.apply-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.apply-form-card h4 { color: var(--primary); }

/* ── Quote Page ─────────────────────────────────────────────── */
.quote-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
}
.quote-form-card h4 { color: var(--primary); }

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section {
    background: var(--primary);
    border-top: 3px solid var(--secondary);
}

/* ── Main Footer ────────────────────────────────────────────── */
.main-footer { background: var(--primary); }

.footer-brand img { max-width: 220px; }

.footer-heading {
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-links { padding: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.footer-links a:hover { color: #ffffff; padding-left: 4px; }

.footer-contact { padding: 0; list-style: none; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
}
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: #ffffff; }

.social-links { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}
.social-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);
}

/* ── Alert Messages ─────────────────────────────────────────── */
.alert-custom {
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 0.93rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success-custom { background: rgba(13,200,100,0.1); color: #0a7a40; }
.alert-error-custom   { background: rgba(220,53,69,0.1);  color: #721c24; }

/* ── Spinner / Loading ──────────────────────────────────────── */
.btn-loading { position: relative; pointer-events: none; }
.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%; right: 14px;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    transform: translateY(-50%);
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ── Misc Utilities ─────────────────────────────────────────── */
.rounded-lg    { border-radius: var(--radius-lg) !important; }
.shadow-custom { box-shadow: var(--shadow-md) !important; }

/* ── Logo Styling ───────────────────────────────────────────── */
.navbar-brand .brand-logo {
    height: 55px;
    width: auto;
    max-width: 100%;
    transition: var(--transition);
}
.navbar-brand:hover .brand-logo { transform: scale(1.03); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-section { min-height: auto; padding: 100px 0 60px; }
    .hero-visual   { display: none; }
    .hero-stats    { gap: 20px; }
    .hero-title    { font-size: 2.4rem; }
}

@media (max-width: 767.98px) {
    .contact-form-card,
    .quote-form-card,
    .apply-form-card { padding: 28px 20px; }
    .section-title   { font-size: 1.8rem; }
    .about-img-wrapper img { height: 300px; }
    .navbar-brand img { height: 42px !important; }
    .footer-brand img { max-width: 180px; }
}

@media (max-width: 575.98px) {
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; text-align: center; }
    .filter-tabs { justify-content: center; }
}
















/* ═══════════════════════════════════════════════════════════
   HIGHLIGHT SPAN FIX - Context-Aware Colors
   ═══════════════════════════════════════════════════════════ */

/* Default highlight = Grey (works on white backgrounds) */
.section-title .highlight,
.text-orange {
    color: var(--secondary);   /* Grey #8f8f8f */
}

/* On DARK/NAVY backgrounds → make highlight WHITE or LIGHT GREY */
.hero-section .text-orange,
.hero-section .accent,
.hero-title .accent,

.stats-section .highlight,
.stats-section .text-orange,

.cta-banner .text-orange,
.cta-banner .highlight,

.page-hero .text-orange,
.page-hero .highlight,

.process-section .section-title .highlight,
.process-section .text-orange,

.why-choose-us .section-title .highlight,
.why-choose-us .text-orange,

.contact-info-card .text-orange,
.contact-strip-info .text-orange,
.contact-strip-form .text-orange,

.newsletter-section .text-orange,
.main-footer .text-orange {
    color: #b5b5b5 !important;   /* Light grey - visible on navy */
}

/* Icons inside navy sections should also be light */
.hero-section .text-orange i,
.stats-section .text-orange i,
.cta-banner .text-orange i,
.page-hero .text-orange i,
.process-section .text-orange i,
.contact-info-card .text-orange i {
    color: #b5b5b5 !important;
}

/* Fix hero title accent specifically */
.hero-title .accent {
    color: #b5b5b5 !important;   /* Was too dark */
}

/* Section badges on dark backgrounds */
.hero-section .section-badge,
.cta-banner .section-badge,
.page-hero .section-badge,
.process-section .section-badge,
.why-choose-us .section-badge,
.contact-strip-form .section-badge {
    background: rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
}

/* Section titles on dark backgrounds */
.stats-section .section-title,
.cta-banner .section-title,
.page-hero .section-title,
.process-section .section-title {
    color: #ffffff !important;
}

/* Section dividers on dark backgrounds */
.cta-banner .section-divider .line,
.cta-banner .section-divider .dot,
.page-hero .section-divider .line,
.page-hero .section-divider .dot,
.process-section .section-divider .line,
.process-section .section-divider .dot,
.stats-section .section-divider .line,
.stats-section .section-divider .dot {
    background: #ffffff !important;
}

/* WhatsApp Green stays green - override */
.btn[style*="25D366"],
a[style*="25D366"] {
    color: #fff !important;
}











/* logo increase, hover animation, hero card animation */

/* ═══════════════════════════════════════════════════════════
   TARGETED FIXES - Logo Size | Button Hover | Hero Cards
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   1. LOGO - Bigger without increasing navbar height
   ───────────────────────────────────────────────────────────── */
/* reduce navbar padding */
/* #mainNavbar {
    padding: 6px 0 !important;   
} */

/* logo overflows navbar bounds */
#mainNavbar .navbar-brand {
    /* padding: 0 !important; */
    /* margin: -10px 0;              */
}

/* bigger logo (was 55px) */
#mainNavbar .navbar-brand img,
#mainNavbar .brand-logo {
    height: 80px !important;     
    width: auto;
    transition: transform 0.35s ease;
}

/* slightly smaller when scrolled */
#mainNavbar.scrolled .navbar-brand img,
#mainNavbar.scrolled .brand-logo {
    height: 55px !important;     
}

@media (max-width: 767.98px) {
    #mainNavbar .navbar-brand img,
    #mainNavbar .brand-logo {
        height: 55px !important;
    }
}

/* ─────────────────────────────────────────────────────────────
   2. BUTTON HOVER - Distinctive & Premium Feel
   ───────────────────────────────────────────────────────────── */

/* Primary Button - Navy → White with Navy border */
.btn-orange {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #0c284f;
    color: #fff !important;
    border: 2px solid #0c284f;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-orange:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-orange:hover {
    color: #0c284f !important;
    border-color: #0c284f;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(12, 40, 79, 0.35);
    letter-spacing: 1px;
}

.btn-orange:hover i {
    transform: translateX(3px);
    transition: transform 0.35s ease;
}

/* Outline Button - White fill on hover */
.btn-outline-orange {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    color: #0c284f !important;
    border: 2px solid #0c284f;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0c284f;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline-orange:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.btn-outline-orange:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(12, 40, 79, 0.35);
    letter-spacing: 1px;
}

.btn-outline-orange:hover i {
    transform: translateX(3px);
    transition: transform 0.35s ease;
}

/* Light Outline (on dark bg) - White fill on hover */
.btn-outline-light-custom {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline-light-custom:hover::before {
    transform: scaleX(1);
}

.btn-outline-light-custom:hover {
    color: #0c284f !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.25);
    background: transparent !important;
}

.btn-outline-light-custom:hover i {
    transform: translateX(3px);
    transition: transform 0.35s ease;
}

/* ─────────────────────────────────────────────────────────────
   3. HERO SERVICE CARDS - Premium Design + Animation
   ───────────────────────────────────────────────────────────── */

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    perspective: 1000px;
}

.hero-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 32px 22px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    cursor: default;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFloat 4s ease-in-out infinite;
}

/* Staggered floating animation */
.hero-card-grid .hero-service-card:nth-child(1) { animation-delay: 0s; }
.hero-card-grid .hero-service-card:nth-child(2) { animation-delay: 0.8s; }
.hero-card-grid .hero-service-card:nth-child(3) { animation-delay: 1.6s; }
.hero-card-grid .hero-service-card:nth-child(4) { animation-delay: 2.4s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* Shine effect overlay */
.hero-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transition: left 0.8s ease;
    pointer-events: none;
}

/* Gradient border effect */
.hero-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.3)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-service-card:hover {
    animation-play-state: paused;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-service-card:hover::before {
    left: 100%;
}

.hero-service-card:hover::after {
    opacity: 1;
}

/* Icon Animation */
.hero-service-card .icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.hero-service-card:hover .icon {
    background: #ffffff;
    color: #0c284f;
    border-color: #ffffff;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Heading */
.hero-service-card h6 {
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin: 12px 0 8px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.hero-service-card:hover h6 {
    letter-spacing: 1.5px;
    transform: translateY(-2px);
}

/* Paragraph */
.hero-service-card p {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.78rem !important;
    line-height: 1.6;
    margin: 0 !important;
    transition: color 0.4s ease;
}

.hero-service-card:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Add a subtle bottom accent line */
.hero-service-card:hover {
    border-bottom: 3px solid #ffffff;
    padding-bottom: 29px;
}
















/* orbit design */

/* ═══════════════════════════════════════════════════════════
   ORBITAL HERO CARDS - Premium Rotating Design
   ═══════════════════════════════════════════════════════════ */

.orbital-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Orbital Rings - Enhanced Visibility ────────────────── */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring-1 {
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(255, 255, 255, 0.45);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(255, 255, 255, 0.15);
    animation: rotateRing 20s linear infinite;
}

.orbit-ring-2 {
    width: 380px;
    height: 380px;
    border: 1.5px dashed rgba(255, 255, 255, 0.35);
    box-shadow:
        inset 0 0 25px rgba(255, 255, 255, 0.06),
        0 0 40px rgba(255, 255, 255, 0.1);
    animation: rotateRing 30s linear infinite reverse;
}

.orbit-ring-3 {
    width: 520px;
    height: 520px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.04),
        0 0 50px rgba(255, 255, 255, 0.08);
    animation: rotateRing 40s linear infinite;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ─── Floating Dots - Premium Glow ───────────────────────── */
.orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
}

/* Dot 1 - Cyan/Blue Glow */
.orbit-dot-1 {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #ffffff 0%, #60a5fa 60%, #3b82f6 100%);
    box-shadow:
        0 0 15px #60a5fa,
        0 0 30px rgba(96, 165, 250, 0.6),
        0 0 50px rgba(96, 165, 250, 0.3);
    animation: orbitDot1 15s linear infinite, pulseGlow1 2s ease-in-out infinite;
}

/* Dot 2 - White/Silver Glow */
.orbit-dot-2 {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ffffff 0%, #e0e7ff 70%, #c7d2fe 100%);
    box-shadow:
        0 0 12px #ffffff,
        0 0 25px rgba(255, 255, 255, 0.7),
        0 0 40px rgba(255, 255, 255, 0.4);
    animation: orbitDot2 22s linear infinite, pulseGlow2 2.5s ease-in-out infinite;
}

/* Dot 3 - Teal/Aqua Glow */
.orbit-dot-3 {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #ffffff 0%, #5eead4 60%, #14b8a6 100%);
    box-shadow:
        0 0 15px #5eead4,
        0 0 30px rgba(94, 234, 212, 0.6),
        0 0 45px rgba(20, 184, 166, 0.3);
    animation: orbitDot3 18s linear infinite reverse, pulseGlow3 1.8s ease-in-out infinite;
}

/* Dot 4 - Golden Glow */
.orbit-dot-4 {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #ffffff 0%, #fcd34d 60%, #f59e0b 100%);
    box-shadow:
        0 0 12px #fcd34d,
        0 0 25px rgba(252, 211, 77, 0.7),
        0 0 40px rgba(245, 158, 11, 0.4);
    animation: orbitDot4 12s linear infinite, pulseGlow4 2.2s ease-in-out infinite;
}

/* Pulse Glow Animations for Each Dot */
@keyframes pulseGlow1 {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.4); }
}
@keyframes pulseGlow2 {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.5); }
}
@keyframes pulseGlow3 {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.3); }
}
@keyframes pulseGlow4 {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.4); }
}

/* Orbit paths (kept same) */
@keyframes orbitDot1 {
    from { transform: rotate(0deg) translateX(190px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(190px) rotate(-360deg); }
}
@keyframes orbitDot2 {
    from { transform: rotate(45deg) translateX(260px) rotate(-45deg); }
    to   { transform: rotate(405deg) translateX(260px) rotate(-405deg); }
}
@keyframes orbitDot3 {
    from { transform: rotate(180deg) translateX(110px) rotate(-180deg); }
    to   { transform: rotate(540deg) translateX(110px) rotate(-540deg); }
}
@keyframes orbitDot4 {
    from { transform: rotate(90deg) translateX(240px) rotate(-90deg); }
    to   { transform: rotate(450deg) translateX(240px) rotate(-450deg); }
}

/* ─── Center Main Card ──────────────────────────────────── */
.orbital-center {
    position: relative;
    z-index: 5;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 0 rgba(255,255,255,0.2); }
    50%      { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 20px rgba(255,255,255,0); }
}

.center-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0c284f;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
    animation: iconSpin 20s linear infinite;
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.orbital-center h5 {
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 4px 0 2px;
}

.orbital-center p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ─── Orbital Cards ─────────────────────────────────────── */
.orbital-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

/* Card Positions */
.orbital-card-top {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatUp 4s ease-in-out infinite;
}
.orbital-card-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation: floatRight 4s ease-in-out infinite 1s;
}
.orbital-card-bottom {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatDown 4s ease-in-out infinite 2s;
}
.orbital-card-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation: floatLeft 4s ease-in-out infinite 3s;
}

@keyframes floatUp {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-12px); }
}
@keyframes floatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(12px); }
}
@keyframes floatRight {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50%      { transform: translateY(-50%) translateX(12px); }
}
@keyframes floatLeft {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50%      { transform: translateY(-50%) translateX(-12px); }
}

/* Card Hover */
.orbital-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255,255,255,0.15);
    animation-play-state: paused;
    z-index: 10;
}

.orbital-card-top:hover    { transform: translateX(-50%) scale(1.08); }
.orbital-card-bottom:hover { transform: translateX(-50%) scale(1.08); }
.orbital-card-right:hover  { transform: translateY(-50%) scale(1.08); }
.orbital-card-left:hover   { transform: translateY(-50%) scale(1.08); }

/* Card Icon */
.orbital-card .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.orbital-card:hover .card-icon {
    background: #ffffff;
    color: #0c284f;
    transform: rotate(360deg);
}

/* Card Text */
.orbital-card .card-body-mini {
    text-align: left;
}

.orbital-card .card-body-mini h6 {
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 2px;
    letter-spacing: 0.5px;
}

.orbital-card .card-body-mini p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .orbital-wrapper {
        max-width: 480px;
        height: 480px;
    }
    .orbit-ring-1 { width: 200px; height: 200px; }
    .orbit-ring-2 { width: 340px; height: 340px; }
    .orbit-ring-3 { width: 460px; height: 460px; }
    .orbital-center { width: 160px; height: 160px; }
    .orbital-card { min-width: 160px; padding: 12px 15px; }
}

@media (max-width: 991.98px) {
    .orbital-wrapper { display: none; }
}