/* ================================================================
   COMPUTING ADVISORY LIMITED — Master Stylesheet
   Theme: Clean White / Navy / Teal
   Fonts: Syne (headings) + DM Sans (body)
   Sharwar Simon
   ================================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --navy:        #204868;
    --navy-mid:    #0E1E3A;
    --teal:        #0099CC;
    --teal-light:  #00BFE6;
    --teal-glow:   rgba(0,153,204,0.10);
    --teal-border: rgba(0,153,204,0.25);
    --white:       #FFFFFF;
    --off-white:   #F5F8FC;
    --light-gray:  #EEF2F8;
    --text-dark:   #0A1628;
    --text-body:   #4A5568;
    --text-light:  #718096;
    --border:      #E2E8F0;
    --card-shadow: 0 4px 24px rgba(10,22,40,0.08);
    --card-hover:  0 12px 40px rgba(10,22,40,0.14);
    --font-display:'Syne', sans-serif;
    --font-body:   'DM Sans', sans-serif;
    --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
    --radius:      10px;
    --radius-lg:   16px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.75;
    font-size: 17px;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}
p { margin: 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* ===== UTILITIES ===== */
.section-padding { padding: 90px 0; }
.section-sm      { padding: 60px 0; }
.bg-light-gray   { background: var(--off-white); }
.text-teal       { color: var(--teal); }

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 12px;
}
.section-label::before {
    content: ''; display: block;
    width: 28px; height: 2px; background: var(--teal);
    flex-shrink: 0;
}
.section-label-center { justify-content: center; }
.section-label-center::before { display: none; }
.section-label-center::after {
    content: ''; display: block;
    width: 28px; height: 2px; background: var(--teal);
}
.section-title h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800; line-height: 1.15;
    color: var(--text-dark);
}
.section-title .sub-text {
    font-size: 16px; color: var(--text-body);
    max-width: 560px; margin-top: 14px; line-height: 1.8;
}
.section-title.text-center .sub-text { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn-cal {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 6px; border: 2px solid var(--teal);
    cursor: pointer; transition: var(--transition);
}
.btn-cal:hover {
    background: var(--navy); border-color: var(--navy);
    color: var(--white); transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,153,204,0.3);
}
.btn-cal-outline {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px;
    background: transparent;
    color: var(--teal);
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    border-radius: 6px; border: 2px solid var(--teal);
    cursor: pointer; transition: var(--transition);
}
.btn-cal-outline:hover {
    background: var(--teal); color: var(--white); transform: translateY(-2px);
}
.btn-cal-white {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px;
    background: var(--white); color: var(--navy);
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    border-radius: 6px; border: 2px solid var(--white);
    cursor: pointer; transition: var(--transition);
}
.btn-cal-white:hover {
    background: transparent; color: var(--white);
    transform: translateY(-2px);
}

/* ===== PRELOADER ===== */
#cal-preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--white);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
    /* Never block pointer events on body content once fading */
    pointer-events: none;
}
/* While preloader is present, allow body to be visible but preloader sits on top */
body {
    /* Ensure body is always visible — do NOT hide it */
    visibility: visible !important;
    overflow-x: hidden;
}
.preloader-logo-text {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 800; color: var(--navy);
    pointer-events: none;
}
.preloader-logo-text span { color: var(--teal); }
.preloader-bar {
    width: 200px; height: 3px; background: var(--border);
    border-radius: 2px; overflow: hidden;
    pointer-events: none;
}
.preloader-fill {
    height: 100%; background: var(--teal); border-radius: 2px;
    animation: preloader-run 0.9s ease-out forwards;
    width: 0;
}
@keyframes preloader-run { to { width: 100%; } }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: var(--transition);
    padding: 0;
}
.site-header.transparent { background: transparent; }
.site-header.scrolled, .site-header.solid {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 24px rgba(10,22,40,0.08);
}
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.site-logo-text {
    font-family: var(--font-display);
    font-size: 21px; font-weight: 800;
    color: var(--navy); line-height: 1;
    letter-spacing: -0.5px;
    display: flex; flex-direction: column;
}
.site-logo-text .logo-accent { color: var(--teal); }
.site-logo-text .logo-sub {
    font-size: 9px; font-weight: 600;
    letter-spacing: 2.5px; color: var(--text-light);
    text-transform: uppercase; margin-top: 3px;
}
.site-header.transparent .site-logo-text { color: var(--white); }
.site-header.transparent .site-logo-text .logo-sub { color: rgba(255,255,255,0.6); }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li a {
    font-family: var(--font-display); font-size: 16px; font-weight: 600;
    color: var(--text-body); padding: 8px 14px;
    border-radius: 6px; letter-spacing: 0.2px;
    transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--teal); }
.site-header.transparent .main-nav ul li a { color: rgba(255,255,255,0.85); }
.site-header.transparent .main-nav ul li a:hover { color: var(--white); }
.header-cta {
    padding: 10px 22px;
    background: var(--teal); color: var(--white);
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    border-radius: 6px; transition: var(--transition);
}
.header-cta:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.site-header.transparent .header-cta { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); }
.site-header.transparent .header-cta:hover { background: var(--teal); border-color: var(--teal); }

/* Hamburger */
.hamburger-btn {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; cursor: pointer; padding: 6px;
    background: none; border: none;
    width: 38px; height: 38px;
    position: relative; z-index: 999;
}
.hamburger-btn span {
    display: block; width: 24px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}
.site-header.transparent .hamburger-btn span { background: var(--white); }

/* Hamburger → X animation when drawer is open */
.hamburger-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* Keep X visible on transparent header when open */
.site-header.transparent .hamburger-btn.is-open span { background: var(--navy); }

/* Mobile nav drawer */
.mobile-drawer {
    position: fixed; inset: 0; z-index: 997;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    padding: 120px 32px 40px;
    overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

/* Overlay behind drawer */
.mobile-drawer-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 996;
    background: rgba(10,22,40,0.5);
    backdrop-filter: blur(2px);
}
.mobile-drawer-overlay.open { display: block; }

/* Hide close button — hamburger itself is the toggle now */
.mobile-drawer-close { display: none; }

.mobile-drawer ul li { border-bottom: 1px solid var(--border); }
.mobile-drawer ul li a {
    display: block; padding: 15px 0;
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    color: var(--text-dark); transition: var(--transition);
}
.mobile-drawer ul li a:hover,
.mobile-drawer ul li a.active { color: var(--teal); padding-left: 6px; }
.mobile-drawer-contact {
    margin-top: 32px; display: flex; flex-direction: column; gap: 14px;
    padding-top: 24px; border-top: 1px solid var(--border);
}
.mobile-drawer-contact a {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; color: var(--text-body); transition: var(--transition);
}
.mobile-drawer-contact a:hover { color: var(--teal); }
.mobile-drawer-contact a i { color: var(--teal); width: 16px; }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: var(--navy);
    padding: 130px 0 70px;
    position: relative; overflow: hidden;
}
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy) 60%, var(--navy-mid) 100%);
    opacity: 0.95;
}
.page-banner-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}
.page-banner-glow {
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,153,204,0.15) 0%, transparent 70%);
}
.page-banner-inner { position: relative; z-index: 2; }
.page-banner h1 {
    font-size: clamp(32px, 4vw, 52px); font-weight: 800;
    color: var(--white); margin-bottom: 14px;
}
.page-banner .breadcrumb {
    background: none; padding: 0; margin: 0;
    display: flex; align-items: center; gap: 8px;
}
.page-banner .breadcrumb-item {
    font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.6);
}
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.page-banner .breadcrumb-item a:hover { color: var(--teal); }
.page-banner .breadcrumb-item.active { color: var(--teal); }
.page-banner .breadcrumb-item + .breadcrumb-item::before {
    content: '/'; color: rgba(255,255,255,0.3); padding: 0 4px;
}

/* ===== HERO (HOME) ===== */
.hero-section {
    background: var(--navy);
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 80px;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-glow-1 {
    position: absolute; top: -150px; right: -100px;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(0,153,204,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute; bottom: -100px; left: -50px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(0,100,200,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,153,204,0.12); border: 1px solid var(--teal-border);
    border-radius: 50px; padding: 7px 16px;
    font-family: var(--font-display); font-size: 11px;
    font-weight: 700; letter-spacing: 2px; color: var(--teal);
    text-transform: uppercase; margin-bottom: 26px;
}
.hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.hero-headline {
    font-size: clamp(40px, 5.5vw, 74px);
    font-weight: 800; 
	/* line-height: 1.06; */
    letter-spacing: -2px; color: var(--white);
    margin-bottom: 22px;
	overflow: hidden;
}
.hero-headline .hl-accent { color: var(--teal);display:block; }
.hero-headline .hl-outline {
    -webkit-text-stroke: 2px rgba(255,255,255,0.5);
    color: transparent;
}
.hero-desc {
    font-size: 16px; color: rgba(255,255,255,0.7);
    max-width: 500px; line-height: 1.85; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 36px; margin-top: 56px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: var(--font-display); font-size: 34px;
    font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-num em { color: var(--teal); font-style: normal; }
.hero-stat-lbl {
    font-size: 11px; color: rgba(255,255,255,0.5);
    letter-spacing: 1px; margin-top: 4px; text-transform: uppercase;
}

/* Hero card (right side) */
.hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 28px;
    backdrop-filter: blur(20px); position: relative; z-index: 2;
}
.hero-card-bar {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hc-dots { display: flex; gap: 6px; }
.hc-dots span { width: 9px; height: 9px; border-radius: 50%; }
.hc-dots span:nth-child(1) { background: #ff5f57; }
.hc-dots span:nth-child(2) { background: #febc2e; }
.hc-dots span:nth-child(3) { background: #28c840; }
.hc-label {
    font-family: var(--font-display); font-size: 11px;
    letter-spacing: 2px; color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
.hero-service-row {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; padding: 11px 14px; margin-bottom: 10px;
    transition: var(--transition);
}
.hero-service-row:last-child { margin-bottom: 0; }
.hero-service-row:hover {
    background: rgba(0,153,204,0.12); border-color: var(--teal-border);
}
.hsr-icon {
    width: 34px; height: 34px; border-radius: 7px;
    background: var(--teal-glow); border: 1px solid var(--teal-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 16px; flex-shrink: 0;
}
.hsr-name {
    font-family: var(--font-display); font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.9);
}
.hsr-tag {
    margin-left: auto; font-size: 10px; white-space: nowrap;
    background: rgba(0,153,204,0.12); color: var(--teal);
    padding: 3px 9px; border-radius: 20px;
    border: 1px solid var(--teal-border);
}

/* ===== ABOUT SECTION ===== */
.about-image-wrap { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}
.about-img-main img { width: 100%; height: 460px; object-fit: cover; }
.about-accent-card {
    position: absolute; bottom: -24px; right: -16px;
    background: var(--teal); color: var(--white);
    padding: 24px 28px; border-radius: var(--radius);
    text-align: center; box-shadow: 0 8px 30px rgba(0,153,204,0.4);
}
.about-accent-card .num {
    font-family: var(--font-display); font-size: 40px; font-weight: 800; line-height: 1;
}
.about-accent-card .lbl {
    font-size: 10px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; opacity: 0.85; margin-top: 4px;
}
.about-reg-tag {
    position: absolute; top: 20px; left: -12px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 16px;
    box-shadow: 0 4px 20px rgba(10,22,40,0.1);
}
.about-reg-tag .rn { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 1px; }
.about-reg-tag .rl { font-size: 10px; color: var(--text-light); margin-top: 2px; }
.about-feature-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 16px;
    background: var(--white); transition: var(--transition);
}
.about-feature-card:last-child { margin-bottom: 0; }
.about-feature-card:hover {
    border-color: var(--teal-border); background: var(--teal-glow);
    transform: translateX(4px);
    box-shadow: var(--card-shadow);
}
.afc-icon {
    width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
    background: var(--teal-glow); border: 1px solid var(--teal-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 18px;
}
.afc-icon i { font-size: 20px; }
.afc-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.afc-content p { font-size: 16px; color: var(--text-body); line-height: 1.7; }

/* About check list */
.cal-check-list { display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 20px; }
.cal-check-list li {
    font-size: 16px; color: var(--text-dark); font-weight: 500;
    display: flex; align-items: center; gap: 8px;
}
.cal-check-list li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--teal); font-size: 11px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px; margin-top: 50px;
}
.service-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: var(--transition);
}
.service-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    opacity: 0; transition: var(--transition);
}
.service-card:hover {
    border-color: var(--teal-border);
    box-shadow: var(--card-hover);
    transform: translateY(-5px);
}
.service-card:hover::after { opacity: 1; }
.sc-num {
    position: absolute; top: 16px; right: 20px;
    font-family: var(--font-display); font-size: 44px; font-weight: 800;
    color: rgba(10,22,40,0.04); line-height: 1; user-select: none;
}
.sc-icon {
    width: 54px; height: 54px; border-radius: 12px;
    background: var(--teal-glow); border: 1px solid var(--teal-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 22px; margin-bottom: 20px;
}
.service-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 16px; line-height: 1.8; color: var(--text-body); margin-bottom: 20px; }
.sc-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--font-display); font-size: 12px;
    font-weight: 700; color: var(--teal); letter-spacing: 0.3px;
    transition: var(--transition);
}
.sc-link:hover { gap: 11px; }

/* Services page box style */
.service-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; margin-top: 40px;
}
.service-box {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition);
}
.service-box:hover {
    border-color: var(--teal-border);
    box-shadow: var(--card-hover);
    transform: translateY(-4px);
}
.service-box-icon {
    height: 160px; background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 56px; color: var(--teal);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.service-box:hover .service-box-icon { background: var(--teal-glow); }
.service-box-body { padding: 24px; }
.service-box-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.service-box-body h4 a { color: var(--text-dark); }
.service-box-body h4 a:hover { color: var(--teal); }
.service-box-body p { font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.service-box-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--font-display); font-size: 12px; font-weight: 700;
    color: var(--teal);
}
.service-box-link:hover { gap: 11px; }

/* ===== FUNFACTS ===== */
.funfacts-bar {
    background: var(--navy); padding: 70px 0;
}
.funfacts-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.ff-item {
    text-align: center; padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.ff-item:last-child { border-right: none; }
.ff-icon-wrap { font-size: 28px; color: var(--teal); margin-bottom: 14px; }
.ff-num {
    font-family: var(--font-display); font-size: 48px;
    font-weight: 800; color: var(--white); line-height: 1;
}
.ff-lbl {
    font-size: 11px; color: rgba(255,255,255,0.45);
    letter-spacing: 2px; text-transform: uppercase; margin-top: 6px;
}

/* ===== WHY CHOOSE US ===== */
.why-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 30px;
}
.why-feat {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px;
    transition: var(--transition);
}
.why-feat:hover {
    border-color: var(--teal-border); background: var(--teal-glow);
}
.why-feat-icon { font-size: 26px; color: var(--teal); margin-bottom: 12px; }
.why-feat h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-feat p { font-size: 12px; color: var(--text-body); line-height: 1.7; }

/* Skill bars */
.skill-bars { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.skill-row-top { display: flex; justify-content: space-between; margin-bottom: 7px; }
.skill-row-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-dark); }
.skill-row-pct { font-size: 16px; font-weight: 700; color: var(--teal); }
.skill-track { height: 5px; background: var(--light-gray); border-radius: 4px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-light)); border-radius: 4px; }

/* Why image */
.why-img-wrap { position: relative; }
.why-img-wrap img {
    width: 100%; height: 480px; object-fit: cover;
    border-radius: var(--radius-lg); box-shadow: var(--card-shadow);
}
.why-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}
.play-circle {
    width: 66px; height: 66px; border-radius: 50%;
    background: var(--teal); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; cursor: pointer;
    box-shadow: 0 0 0 14px rgba(0,153,204,0.15);
    transition: var(--transition);
}
.play-circle:hover { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(0,153,204,0.1); }

/* ===== TECHNOLOGIES SECTION ===== */
.tech-section {
    background: var(--off-white);
    padding: 80px 0; overflow: hidden;
}
.tech-section-head { text-align: center; margin-bottom: 50px; }
.tech-track { overflow: hidden; position: relative; }
.tech-track::before,
.tech-track::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 100px;
    z-index: 2; pointer-events: none;
}
.tech-track::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.tech-track::after  { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }
.tech-track + .tech-track { margin-top: 16px; }
.tech-scroll-fwd {
    display: flex; gap: 16px; width: max-content;
    animation: scroll-fwd 35s linear infinite;
}
.tech-scroll-rev {
    display: flex; gap: 16px; width: max-content;
    animation: scroll-rev 40s linear infinite;
}
.tech-track:hover .tech-scroll-fwd,
.tech-track:hover .tech-scroll-rev { animation-play-state: paused; }
@keyframes scroll-fwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-rev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.tech-chip {
    display: flex; align-items: center; gap: 10px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 12px 20px;
    white-space: nowrap; flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(10,22,40,0.05);
}
.tech-chip:hover { border-color: var(--teal-border); box-shadow: 0 4px 16px rgba(0,153,204,0.12); }
.tech-chip img { width: 28px; height: 28px; object-fit: contain; }
.tech-chip-icon { font-size: 24px; width: 28px; text-align: center; }
.tech-chip-name {
    font-family: var(--font-display); font-size: 16px; font-weight: 600;
    color: var(--text-dark);
}

/* ===== PROJECTS ===== */
.projects-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 24px; margin-top: 50px;
}
.project-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition);
}
.project-card:hover {
    border-color: var(--teal-border); box-shadow: var(--card-hover);
    transform: translateY(-4px);
}
.project-thumb {
    height: 210px; overflow: hidden; position: relative;
    background: var(--light-gray);
}
.project-thumb .bg-cover { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.project-card:hover .project-thumb .bg-cover { transform: scale(1.05); }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-body { padding: 24px; }
.project-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.project-body p { font-size: 16px; color: var(--text-body); margin-bottom: 16px; line-height: 1.75; }
.project-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--font-display); font-size: 12px;
    font-weight: 700; color: var(--teal); letter-spacing: 0.5px;
    text-transform: uppercase;
}
.project-link:hover { gap: 11px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testi-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 24px; margin-top: 50px;
}
.testi-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 30px;
    transition: var(--transition);
}
.testi-card:hover {
    border-color: var(--teal-border);
    box-shadow: var(--card-hover); transform: translateY(-4px);
}
.testi-quote { font-size: 48px; color: var(--teal); opacity: 0.2; line-height: 1; margin-bottom: 14px; font-family: Georgia, serif; }
.testi-stars { display: flex; gap: 3px; color: var(--teal); font-size: 12px; margin-bottom: 14px; }
.testi-text { font-size: 16px; line-height: 1.9; color: var(--text-body); font-style: italic; margin-bottom: 22px; }
.testi-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px; border-top: 1px solid var(--border);
}
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: var(--teal-glow); border: 2px solid var(--teal-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    color: var(--teal);
}
.testi-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--navy); padding: 90px 0;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
}
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,153,204,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 {
    font-size: clamp(28px, 3.5vw, 52px); font-weight: 800;
    color: var(--white); margin-bottom: 16px;
}
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-contacts {
    display: flex; gap: 20px; justify-content: center;
    margin-top: 44px; flex-wrap: wrap;
}
.cta-contact-chip {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 13px 20px;
}
.cta-contact-chip i { color: var(--teal); font-size: 16px; }
.cta-contact-chip a { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--white); }
.cta-contact-chip a:hover { color: var(--teal); }

/* ===== FOOTER ===== */
.site-footer { background: #06101F; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { padding: 70px 0 50px; }
.footer-brand-name {
    font-family: var(--font-display); font-size: 20px; font-weight: 800;
    color: var(--white); margin-bottom: 14px;
}
.footer-brand-name span { color: var(--teal); }
.footer-brand p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 20px; }
.footer-reg-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(0,153,204,0.08); border: 1px solid rgba(0,153,204,0.2);
    border-radius: 6px; padding: 7px 13px;
    font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 1px;
}
.footer-col-title {
    font-family: var(--font-display); font-size: 12px; font-weight: 700;
    color: var(--white); letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 22px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.footer-col-title::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 26px; height: 2px; background: var(--teal);
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    font-size: 16px; color: rgba(255,255,255,0.45);
    display: inline-flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-row { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 7px; background: rgba(0,153,204,0.08);
    border: 1px solid rgba(0,153,204,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 16px;
}
.footer-contact-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.footer-contact-text a { color: rgba(255,255,255,0.45); }
.footer-contact-text a:hover { color: var(--teal); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-copy a { color: var(--teal); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--teal); }

/* ===== SCROLL TO TOP ===== */
#cal-scroll-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 44px; height: 44px; border-radius: 8px;
    background: var(--teal); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer; border: none;
    opacity: 0; pointer-events: none; transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,153,204,0.4);
}
#cal-scroll-top.visible { opacity: 1; pointer-events: all; }
#cal-scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ===== ABOUT US PAGE — extra sections ===== */
.core-values-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 24px; margin-top: 40px;
}
.core-value-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 30px 24px;
    text-align: center; transition: var(--transition);
}
.core-value-card:hover {
    border-color: var(--teal-border); box-shadow: var(--card-hover);
    transform: translateY(-4px);
}
.cvc-icon { font-size: 40px; color: var(--teal); margin-bottom: 16px; }
.core-value-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.core-value-card p { font-size: 16px; color: var(--text-body); line-height: 1.75; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.vm-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px;
    transition: var(--transition);
}
.vm-card:hover { border-color: var(--teal-border); box-shadow: var(--card-shadow); }
.vm-icon-wrap {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--teal-glow); border: 1px solid var(--teal-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 22px; margin-bottom: 18px;
}
.vm-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.vm-card p { font-size: 16px; color: var(--text-body); line-height: 1.8; }

/* About two-image layout */
.about-two-imgs { position: relative; }
.about-img-top { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--card-shadow); margin-bottom: 20px; }
.about-img-top img { width: 100%; height: 220px; object-fit: cover; }
.about-img-bot { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--card-shadow); }
.about-img-bot img { width: 100%; height: 200px; object-fit: cover; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 24px; margin-bottom: 50px;
}
.contact-info-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.contact-info-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.contact-info-card:hover { box-shadow: var(--card-hover); transform: translateY(-3px); }
.cic-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--teal-glow); border: 1px solid var(--teal-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 20px; margin-bottom: 16px;
}
.cic-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; margin-bottom: 4px; }
.cic-value { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-dark); }
.cic-value a { color: var(--text-dark); }
.cic-value a:hover { color: var(--teal); }

.contact-form-wrap {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 44px;
    box-shadow: var(--card-shadow);
}
.contact-form-wrap h2 {
    font-size: 26px; font-weight: 800; margin-bottom: 8px;
}
.contact-form-wrap .sub { font-size: 16px; color: var(--text-body); margin-bottom: 30px; }
.cal-input {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--border); border-radius: 7px;
    font-family: var(--font-body); font-size: 16px; color: var(--text-dark);
    background: var(--white); transition: var(--transition);
    outline: none;
}
.cal-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,153,204,0.1); }
.cal-input::placeholder { color: var(--text-light); }
.cal-label {
    display: block; font-size: 12px; font-weight: 600;
    color: var(--text-dark); margin-bottom: 6px;
    font-family: var(--font-display); letter-spacing: 0.3px;
}
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; }

/* ===== BLOG/PROJECT DETAILS PAGE ===== */
.blog-detail-wrap {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px;
}
.blog-detail-wrap img { border-radius: var(--radius); margin-bottom: 30px; }
.blog-detail-wrap h2 { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.blog-detail-wrap h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--text-dark); }
.blog-detail-wrap h4 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.blog-detail-wrap p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 14px; }
.blog-detail-wrap ul { margin: 0 0 14px 0; padding-left: 0; }
.blog-detail-wrap ul li {
    font-size: 16px; color: var(--text-body); line-height: 1.8;
    padding: 4px 0 4px 22px; position: relative;
}
.blog-detail-wrap ul li::before {
    content: '›'; position: absolute; left: 6px;
    color: var(--teal); font-size: 16px; font-weight: 700;
}

/* Sidebar */
.cal-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px;
}
.sidebar-widget-title {
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    color: var(--text-dark); margin-bottom: 18px;
    padding-bottom: 12px; border-bottom: 2px solid var(--teal);
}
.sidebar-post { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post-thumb {
    width: 60px; height: 54px; border-radius: 6px; flex-shrink: 0;
    background-size: cover; background-position: center;
    border: 1px solid var(--border);
}
.sidebar-post-title { font-size: 16px; font-weight: 600; }
.sidebar-post-title a { color: var(--text-dark); }
.sidebar-post-title a:hover { color: var(--teal); }
.sidebar-cta {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 28px 24px; text-align: center;
}
.sidebar-cta i { font-size: 32px; color: var(--teal); margin-bottom: 14px; }
.sidebar-cta h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.sidebar-cta p { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }

/* ===== SERVICE DETAILS PAGE ===== */
.service-sidebar { display: flex; flex-direction: column; gap: 20px;position: sticky;top: 121px;}
.service-nav-widget {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
}
.service-nav-title {
    background: var(--navy); padding: 16px 20px;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    color: var(--white); text-align: center;
}
.service-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; font-size: 16px; font-weight: 500;
    color: var(--text-body); border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.service-nav-link:hover, .service-nav-link.active {
    color: var(--teal); background: var(--teal-glow); padding-left: 24px;
}
.service-nav-link::before {
    content: '›'; color: var(--teal); font-size: 16px; font-weight: 700;
}
.service-nav-link:last-child { border-bottom: none; }
.service-sidebar-cta {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 28px; text-align: center;
}
.service-sidebar-cta i { font-size: 36px; color: var(--teal); margin-bottom: 14px; }
.service-sidebar-cta h4 { color: var(--white); font-size: 16px; margin-bottom: 10px; }
.service-sidebar-cta p { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }

.service-detail-section { margin-bottom: 60px; }
.service-detail-section:last-child { margin-bottom: 0; }
.service-detail-section h1 {
    font-size: 28px; font-weight: 800;
    border-left: 4px solid var(--teal); padding-left: 14px;
    margin-bottom: 18px;
}
.service-detail-section > p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 12px; }
.service-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; border: 1px solid var(--border); }
.service-cover img { width: 100%; height: auto; object-fit: cover; display: block; }
.service-sub-head {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--font-display); font-size: 17px; font-weight: 700;
    color: var(--teal); margin: 28px 0 8px;
}
.service-sub-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--teal-glow); border: 1px solid var(--teal-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 16px; flex-shrink: 0;
}
.service-sub-body { font-size: 16px; color: var(--text-body); line-height: 1.85; padding-left: 46px; margin-bottom: 6px; }
.service-benefits-box {
    background: var(--off-white); border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 22px 24px; margin: 24px 0;
}
.service-benefits-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.service-benefits-box ul {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
}
.service-benefits-box ul li {
    font-size: 16px; color: var(--text-body);
    display: flex; align-items: flex-start; gap: 8px;
}
.service-benefits-box ul li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--teal); font-size: 11px; margin-top: 3px; flex-shrink: 0;
}
.tech-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tech-tag {
    background: var(--teal-glow); color: var(--teal);
    font-size: 12px; font-weight: 600; padding: 5px 12px;
    border-radius: 20px; border: 1px solid var(--teal-border);
}

/* ===== TERMS / CONTENT PAGES ===== */
.content-prose { max-width: 860px; }
.content-prose h2 { font-size: 26px; font-weight: 800; margin-bottom: 20px; }
.content-prose h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; color: var(--text-dark); }
.content-prose p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 14px; }
.content-prose ul { margin: 0 0 14px; }
.content-prose ul li {
    font-size: 16px; color: var(--text-body); line-height: 1.8;
    padding: 4px 0 4px 22px; position: relative;
}
.content-prose ul li::before {
    content: '›'; position: absolute; left: 6px;
    color: var(--teal); font-size: 18px; font-weight: 700;
}
.content-prose a { color: var(--teal); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero-card { display: none; }
    .funfacts-inner { grid-template-columns: repeat(2,1fr); }
    .core-values-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 991px) {
    .main-nav, .header-cta { display: none !important; }
    .hamburger-btn { display: flex; }
    .projects-grid { grid-template-columns: repeat(2,1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .why-features { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .section-padding { padding: 65px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .funfacts-inner { grid-template-columns: repeat(2,1fr); }
    .core-values-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 20px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .service-benefits-box ul { grid-template-columns: 1fr; }
    .blog-detail-wrap { padding: 24px; }
    .contact-form-wrap { padding: 28px; }
}
@media (max-width: 575px) {
    .core-values-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ================================================================
   INDEX PAGE ANIMATIONS
   ================================================================ */

/* ---- Hero Canvas (particles) ---- */
#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}
.hero-section { position: relative; }
.hero-content, .hero-card { position: relative; z-index: 2; }

/* ---- Hero Rotating Headline ---- */
.hl-static {
    color: rgba(255,255,255,0.6);
    font-size: 0.62em; font-weight: 500; letter-spacing: 1px;
    display: block; margin-bottom: -6px;
}
.hl-rotate-wrap {
    display: inline-block;
    overflow: hidden;
    /* height: 1.2em; */
    vertical-align: middle;
}
.hl-rotate-track { display: block; }
.hl-rotate-item {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34,1.3,0.64,1);
    white-space: nowrap;
    position: absolute;
}
.hl-rotate-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.hl-rotate-item.exit {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
}

/* ---- Hero Card (static service list) ---- */
.hero-card {
    background: rgb(32 72 104);
        border: 1px solid rgb(0 153 204);
    border-radius: 14px;
    backdrop-filter: blur(24px);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 153, 204, 0.08);	
}
.hero-card-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    /* background: rgba(0,0,0,0.28); */
    border-bottom: 1px solid rgba(255,255,255,0.07);
	
	
	
}
.hc-dots { display: flex; gap: 6px; }
.hc-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hc-dots span:nth-child(1) { background: #ff5f57; }
.hc-dots span:nth-child(2) { background: #febc2e; }
.hc-dots span:nth-child(3) { background: #28c840; }
.hc-label {
    font-family: var(--font-display); font-size: 11px;
    color: rgba(255,255,255,0.45); letter-spacing: 2px;
    text-transform: uppercase;
}

/* Service rows inside hero card */
.hero-service-list { padding: 10px 14px 14px; }
.hero-service-row {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 11px 13px;
    margin-bottom: 8px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-service-row:last-child { margin-bottom: 0; }
.hero-service-row:hover {
    background: rgba(0,153,204,0.1);
    border-color: rgba(0,153,204,0.28);
    transform: translateX(3px);
}
.hsr-icon {
    width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
    background: rgba(0,153,204,0.12);
    border: 1px solid rgba(0,153,204,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 16px;
}
.hsr-name {
    font-family: var(--font-display); font-size: 16px; font-weight: 600;
    color: rgba(255,255,255,0.9); flex: 1;
}
.hsr-tag {
    font-size: 10px;
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45);
    padding: 3px 9px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

/* ---- About Float Animations ---- */
@keyframes float-bob {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes float-bob-slow {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50%       { transform: translateY(-7px) rotate(0deg); }
}
.float-bob {
    animation: float-bob 3.5s ease-in-out infinite;
}
.float-bob-slow {
    animation: float-bob-slow 4.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* ---- Funfact Icon Pop ---- */
@keyframes ff-pop-anim {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.35) rotate(-8deg); }
    70%  { transform: scale(0.9) rotate(4deg); }
    100% { transform: scale(1) rotate(0deg); }
}
.ff-icon-wrap.ff-pop {
    animation: ff-pop-anim 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards !important;
}

/* ---- Skill bar percentage number counter ---- */
.skill-row-pct {
    transition: color 0.3s ease;
    font-weight: 700;
}
