/* ============================================================
   QUIN INFO SOLUTIONS – style.css
   Main custom stylesheet (component styles, no media queries)
   ============================================================ */

/* ─── CSS VARIABLES ─── */
:root {
    --primary:        #032f67;
    --primary-light:  #0a4a9e;
    --secondary:      #f4b942;
    --secondary-dark: #d9a030;
    --dark:           #0b1120;
    --text-muted:     #6c757d;
    --bg-light:       #f8f9fc;
    --border-light:   #eef0f4;
    --white:          #ffffff;
    --shadow-sm:      0 4px 14px rgba(0,0,0,.06);
    --shadow-md:      0 8px 30px rgba(3,47,103,.10);
    --shadow-lg:      0 20px 50px rgba(3,47,103,.14);
    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      18px;
    --transition:     .25s ease;
}

/* ─── BASE ─── */
*  { box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

img { max-width: 100%; }

/* ─── NAVBAR ─── */
.site-navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 16px 0;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-navbar.scrolled {
    position: fixed;
    background: rgba(3, 20, 65, .97) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.site-navbar .navbar-brand img {
    height: 55px;
    transition: height var(--transition);
}

.site-navbar.scrolled .navbar-brand img { height: 46px; }

.site-navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 14.5px;
    padding: 6px 14px !important;
    position: relative;
    transition: color var(--transition);
}

.site-navbar .nav-link::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    margin-top: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.site-navbar .nav-link.active { color: var(--secondary) !important; }

.btn-get-in-touch {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    border: 2px solid rgba(255,255,255,.3);
    transition: background var(--transition), transform var(--transition), color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-get-in-touch:hover {
    background: var(--secondary);
    color: #000 !important;
    transform: translateY(-2px);
}

/* Mobile menu backdrop */
.navbar-collapse.show,
.navbar-collapse.collapsing {
    background: rgba(3, 20, 65, .98);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-top: 8px;
}

/* ─── HERO ─── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(3,20,65,.92) 0%, rgba(3,47,103,.85) 60%, rgba(5,60,120,.80) 100%),
        url('../assets/images/banner-bg1.jpg') center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.14) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 60px 60px, 30px 30px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
}

.hero-title {
    font-size: clamp(30px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
}

.highlight { color: var(--secondary); }

.hero-desc {
    font-size: 15.5px;
    line-height: 1.75;
    opacity: .88;
    max-width: 460px;
}

/* ─── HERO BUTTONS ─── */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-size: 15px;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}
.btn-hero-primary:hover { background: var(--secondary-dark); color: #000; transform: translateY(-2px); }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: var(--radius-sm);
    padding: 11px 28px;
    font-size: 15px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    text-decoration: none;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; transform: translateY(-2px); }

/* ─── SECTION HELPERS ─── */
.section-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.section-sub {
    color: var(--text-muted);
    font-size: 15.5px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── SERVICES SECTION ─── */
.services-section { padding: 90px 0 80px; background: var(--white); }

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 36px 28px 30px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon { background: var(--secondary); color: #000; }

.service-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 18px;
}

.learn-more {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition), gap var(--transition);
}
.learn-more:hover { color: var(--secondary); gap: 10px; }

/* ─── ABOUT SECTION ─── */
.about-section { padding: 90px 0; background: var(--bg-light); }

.about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.about-check-icon {
    width: 22px;
    height: 22px;
    background: var(--secondary);
    border-radius: 50%;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(3,47,103,.18);
}
.about-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 26px;
    font-size: 14.5px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}
.btn-about:hover { background: var(--secondary-dark); transform: translateY(-2px); }

/* ─── STATS SECTION ─── */
.stats-section {
    background: linear-gradient(135deg, #021e44 0%, #032f67 60%, #0a4a9e 100%);
    padding: 70px 0;
    color: #fff;
}

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

.stat-icon {
    font-size: 34px;
    color: var(--secondary);
    margin-bottom: 12px;
    display: block;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    margin-top: 6px;
    font-weight: 500;
    display: block;
}

/* divider between stats */
.stat-divider {
    border-left: 1px solid rgba(255,255,255,.12);
}

/* ─── TECHNOLOGIES SECTION ─── */
.tech-section { padding: 90px 0; background: var(--white); overflow: hidden; }

/* ── Marquee wrapper ── */
.tech-marquee-wrap {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 4px;
    /* fade edges with mask */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

/* ── One marquee row ── */
.tech-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}
.tech-marquee:last-child { margin-bottom: 0; }

/* ── The scrolling track (holds 2× the items) ── */
.tech-marquee__track {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    will-change: transform;
}

/* Left-scrolling row */
.tech-marquee--left .tech-marquee__track {
    animation: marqueeLeft 32s linear infinite;
}
/* Right-scrolling row */
.tech-marquee--right .tech-marquee__track {
    animation: marqueeRight 36s linear infinite;
}

/* Pause on hover anywhere on the track */
.tech-marquee:hover .tech-marquee__track { animation-play-state: paused; }

/* ── Keyframes ── */
@keyframes marqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ── Individual tech card ── */
.tech-marquee__item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 120px;
    height: 110px;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    cursor: default;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.tech-marquee__item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 14px 36px rgba(3,47,103,.14);
    border-color: var(--secondary);
}
.tech-marquee__item img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    display: block;
    transition: transform .3s ease;
}
.tech-marquee__item:hover img { transform: scale(1.12); }
.tech-marquee__item span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
}

/* Keep old .tech-card for Technologies inner page */
.tech-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(3,47,103,.12);
    border-color: var(--secondary);
}
.tech-card img {
    height: 52px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.tech-card span {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
}

.tech-brief {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #000;
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 12px 30px;
    font-size: 15px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}
.btn-view-all:hover { background: var(--secondary-dark); transform: translateY(-2px); }

/* ─── FOOTER ─── */
.site-footer {
    background: linear-gradient(180deg, #021e44 0%, #010d1e 100%);
    color: rgba(255,255,255,.8);
    padding: 65px 0 0;
}

.site-footer .footer-logo {
    height: 55px;
    margin-bottom: 16px;
    display: block;
}

.site-footer p { font-size: 14px; line-height: 1.75; }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--secondary);
    color: #000;
    transform: translateY(-2px);
}

.site-footer h6 {
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.site-footer h6::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-links li a::before {
    content: '›';
    font-size: 16px;
    color: var(--secondary);
    line-height: 1;
}
.footer-links li a:hover { color: var(--secondary); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.72);
    margin-bottom: 14px;
    line-height: 1.6;
}
.footer-contact-item i {
    color: var(--secondary);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 13.5px;
    color: rgba(255,255,255,.45);
}

/* ─── SCROLL-TO-TOP ─── */
#scrollTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 17px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: background var(--transition), transform var(--transition), opacity var(--transition);
    opacity: 0;
}
#scrollTop:hover { background: var(--secondary-dark); transform: scale(1.1); }
#scrollTop.visible { display: flex; opacity: 1; }

/* ─── PAGE BANNER (inner pages) ─── */
.page-banner {
    background:
        linear-gradient(135deg, rgba(3,20,65,.93) 0%, rgba(3,47,103,.88) 100%),
        url('../assets/images/banner-bg1.jpg') center / cover no-repeat;
    padding: 140px 0 70px;
    color: #fff;
}
.page-banner-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 14px;
}
.page-banner .breadcrumb-item a             { color: var(--secondary); text-decoration: none; }
.page-banner .breadcrumb-item.active        { color: rgba(255,255,255,.7); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ─── CONTACT PAGE ─── */
.contact-section { padding: 90px 0; background: var(--bg-light); }

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 44px;
    box-shadow: 0 12px 40px rgba(3,47,103,.10);
    height: 100%;
}

.contact-info-card {
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    color: #fff;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}
.contact-info-icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--secondary);
    transition: background var(--transition);
}
.contact-info-item:hover .contact-info-icon { background: rgba(255,255,255,.25); }

.contact-info-text h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .65;
    margin-bottom: 4px;
}
.contact-info-text p { margin: 0; font-size: 15px; font-weight: 500; }

/* Form overrides */
.form-control,
.form-select {
    border: 1.5px solid #dde3ed;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14.5px;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fafbfc;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(3,47,103,.08);
    background: var(--white);
}
.form-label {
    font-weight: 600;
    font-size: 13.5px;
    color: #444;
    margin-bottom: 6px;
}

.btn-submit {
    background: var(--secondary);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 14px 36px;
    font-size: 15px;
    transition: background var(--transition), transform var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}
.btn-submit:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.alert-success-custom {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ─── INNER PAGE SECTIONS ─── */
.inner-section     { padding: 90px 0; }
.inner-section-alt { padding: 90px 0; background: var(--bg-light); }

/* ─── PORTFOLIO GRID ─── */
.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--white);
    height: 100%;
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.portfolio-card:hover img { transform: scale(1.05); }

.portfolio-card-body        { padding: 20px 22px 24px; }
.portfolio-card-body h5     { font-weight: 700; color: var(--primary); margin-bottom: 8px; font-size: 16px; }
.portfolio-card-body p      { font-size: 13.5px; color: #666; margin-bottom: 14px; line-height: 1.6; }
.portfolio-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition), gap var(--transition);
}
.portfolio-link:hover { color: var(--secondary); gap: 10px; }

/* ─── VALUE CARDS (About page) ─── */
.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 34px 28px;
    border: 1.5px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(3,47,103,.10);
    border-color: var(--secondary);
}
.value-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: rgba(3,47,103,.07);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 18px;
    transition: background var(--transition);
}
.value-card:hover .value-icon { background: var(--secondary); color: #000; }
.value-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 10px; font-size: 16px; }
.value-card p  { font-size: 14px; color: #666; margin: 0; line-height: 1.65; }

/* ─── TECH CATEGORY TITLE ─── */
.tech-category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   PARTICLE CANVAS
   ═══════════════════════════════════════════════ */
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;          /* sits below content (z-index:1) */
    pointer-events: none;
    display: block;
}

/* Remove old CSS dot-grid pseudo layer — canvas replaces it */
.hero-section::before { display: none; }

/* ═══════════════════════════════════════════════
   HERO ENTRANCE ANIMATIONS
   ═══════════════════════════════════════════════ */

/* Left text block slides in from the left */
@keyframes heroSlideLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0);      }
}

/* Right logo slides in from the right */
@keyframes heroSlideRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0);    }
}

/* Logo gentle floating loop */
@keyframes heroFloat {
    0%,100% { transform: translateY(0px)    drop-shadow(0 20px 60px rgba(0,0,0,.4)); }
    50%      { transform: translateY(-18px) drop-shadow(0 30px 70px rgba(0,0,0,.5)); }
}

/* Pulsing gold glow ring behind logo */
@keyframes goldenPulse {
    0%,100% { box-shadow: 0 0 0   0px rgba(244,185,66,.0); }
    50%      { box-shadow: 0 0 60px 20px rgba(244,185,66,.18); }
}

.hero-content-left {
    animation: heroSlideLeft .9s cubic-bezier(.22,1,.36,1) both;
}

.hero-content-right {
    animation: heroSlideRight .9s .2s cubic-bezier(.22,1,.36,1) both;
}

.hero-logo-img {
    max-height: 480px;
    animation: heroFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,.4));
}

/* Stagger hero text children */
.hero-content-left .hero-title {
    animation: heroSlideLeft .8s .1s cubic-bezier(.22,1,.36,1) both;
}
.hero-content-left .hero-desc {
    animation: heroSlideLeft .8s .25s cubic-bezier(.22,1,.36,1) both;
}
.hero-content-left .d-flex {
    animation: heroSlideLeft .8s .4s cubic-bezier(.22,1,.36,1) both;
}

/* Badge / pill floating behind logo */
.hero-section .z-1 { position: relative; z-index: 1; }

/* ─── CUSTOM CLASSES MIGRATED FROM INLINE STYLES ─── */
.about-intro-text {
    color: #555;
    line-height: 1.8;
    font-size: 15.5px;
}

.about-stat-card {
    background: #f8f9fc;
    border-radius: 12px;
}

.about-stat-num {
    color: var(--primary);
    font-weight: 800;
}

.about-stat-text {
    font-size: 14px;
    color: #666;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

.contact-info-title {
    color: #fff;
}

.contact-social-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-social-label {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.social-link-ct {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.social-link-ct:hover {
    background: var(--secondary) !important;
}

.contact-form-title {
    color: var(--primary);
}

.contact-form-desc {
    color: #888;
    font-size: 14.5px;
}

.alert-success-icon {
    font-size: 18px;
}

.alert-danger-icon {
    font-size: 16px;
}

.alert-danger-title {
    font-size: 14.5px;
}

.alert-danger-list {
    font-size: 14px;
}

.captcha-img-wrap {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #f8f9fa;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.captcha-img {
    display: block;
    object-fit: cover;
}

.captcha-refresh-btn {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    border-color: var(--border-light) !important;
    color: var(--primary) !important;
    transition: all 0.2s;
}

.captcha-refresh-btn:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.captcha-input-wrap {
    min-width: 160px;
}

.captcha-input {
    height: 42px;
    text-transform: uppercase;
}

.map-section {
    padding: 0;
}

.map-iframe {
    display: block;
    border: 0;
    filter: grayscale(20%);
}

.hero-wave svg {
    display: block;
}

.portfolio-placeholder-img {
    height: 220px;
    background: linear-gradient(135deg, #032f67, #0a4a9e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

.portfolio-fallback-img {
    height: 220px;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-alpha));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.portfolio-fallback-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.portfolio-fallback-cat {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-stat-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.service-stat-num {
    color: var(--primary);
    font-weight: 800;
    font-size: 36px;
}

.service-stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.tech-placeholder-img-wrap {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-placeholder-icon {
    font-size: 36px;
    color: var(--primary);
}
