@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500&display=swap');

:root {
    --ign-navy:   #0f1f3d;
    --ign-blue:   #1a4a8a;
    --ign-sky:    #0ea5e9;
    --ign-teal:   #06b6d4;
    --ign-glow:   rgba(14,165,233,0.18);
    --ign-border: rgba(14,165,233,0.14);
    --ff-head:    'Outfit', sans-serif;
    --ff-body:    'Inter', sans-serif;
    --nav-h:      80px;
    --transition: 0.32s cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    position: relative;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: var(--nav-h, 80px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--ign-border);
    box-shadow: 0 2px 24px rgba(10,40,90,0.06);
}


.site-header ~ * {
    overflow-x: hidden;
}


main {
    overflow-x: hidden;
    width: 100%;
}


.navbar {
    width: 100%;
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; 
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Logo ---- */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 52px;
    width: auto;
    display: block;
}

/* ---- Desktop Nav ---- */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ign-navy);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.has-mega:hover > .nav-link {
    color: var(--ign-sky);
    background: rgba(14,165,233,0.07);
}

.arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.has-mega:hover .arrow-icon {
    transform: rotate(180deg);
}

/* ---- Mega Menu ---- */
.has-mega {
    position: static;
}

.mega-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--ign-sky);
    box-shadow: 0 24px 60px -12px rgba(10,40,90,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    pointer-events: none;
    z-index: 999;
}

.has-mega:hover .mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
}
.has-mega.mega-open > .nav-link {
    color: var(--ign-sky);
    background: rgba(14,165,233,0.07);
}
.has-mega.mega-open .arrow-icon {
    transform: rotate(180deg);
}
.mega-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 2.5rem;
}

.mega-label {
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--ign-sky);
    margin-bottom: 1rem;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 2px;
}

.mega-item:hover {
    background: #f8faff;
    transform: translateX(4px);
}

.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-icon svg {
    width: 20px;
    height: 20px;
}

.mega-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-text strong {
    font-family: var(--ff-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ign-navy);
    display: block;
}

.mega-text span {
    font-size: 0.78rem;
    color: #64748b;
}

/* ---- Featured Panel ---- */
.mega-featured-inner {
    background: linear-gradient(145deg, var(--ign-navy) 0%, var(--ign-blue) 100%);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feat-badge {
    display: inline-block;
    background: rgba(14,165,233,0.2);
    color: #7dd3fc;
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}

.mega-featured-inner h3 {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.mega-featured-inner p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #cbd5e1;
    font-family: var(--ff-head);
}

.feat-list svg {
    width: 16px;
    height: 16px;
    color: var(--ign-sky);
    flex-shrink: 0;
}

.feat-cta {
    display: inline-block;
    background: var(--ign-sky);
    color: #fff;
    font-family: var(--ff-head);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.2s, transform 0.2s;
    width: fit-content;
}

.feat-cta:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

/* ---- Nav Right ---- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-quote {
    font-family: var(--ff-head);
    background: linear-gradient(135deg, var(--ign-sky) 0%, var(--ign-blue) 100%);
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: 0.25s;
    box-shadow: 0 6px 20px var(--ign-glow);
    white-space: nowrap;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--ign-glow);
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--ign-border);
    border-radius: 8px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ign-navy);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Offcanvas ---- */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.32s cubic-bezier(0.16,1,0.3,1);
    box-shadow: -10px 0 50px rgba(10,40,90,0.12);
    overflow: hidden;
    visibility: hidden;
    transform: translateX(0);
    will-change: right;
}

.offcanvas.open {
    right: 0;
    visibility: visible;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--ign-border);
    flex-shrink: 0;
    background: #fff;
}

.offcanvas-header img {
    height: 40px;
    width: auto;
}

.offcanvas-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}

.offcanvas-close:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

.offcanvas-close svg {
    width: 18px;
    height: 18px;
    color: #374151;
}

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 1.5rem 3rem;
    -webkit-overflow-scrolling: touch;
}

/* ---- Mobile Nav ---- */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.mobile-nav li {
    border-bottom: 1px solid #f1f5f9;
    list-style: none;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ign-navy);
    text-decoration: none;
    padding: 1rem 0;
    transition: color 0.2s;
}

.mobile-nav > li > a:hover {
    color: var(--ign-sky);
}

/* ---- Accordion ---- */
.accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ign-navy);
    padding: 1rem 0;
    cursor: pointer;
    text-align: left;
}

.acc-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-toggle[aria-expanded="true"] .acc-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    list-style: none;
    padding: 0 0 0.75rem 0.5rem;
    margin: 0;
    display: none;
}

.accordion-body.open {
    display: block;
}

.accordion-body li {
    border: none;
    list-style: none;
}

.accordion-body li a {
    display: block;
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
    color: #475569;
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--ff-head);
    transition: background 0.2s, color 0.2s;
}

.accordion-body li a:hover {
    background: rgba(14,165,233,0.07);
    color: var(--ign-sky);
}

.mobile-quote {
    display: block;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-top: 1rem;
}

/* ---- Overlay ---- */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,20,40,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(3px);
    height: 100vh;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .nav-menu { display: none !important; }
    .btn-quote:not(.mobile-quote) { display: none !important; }
    .hamburger { display: flex !important; }
}

@media (max-width: 768px) {
    .nav-logo img { height: 42px; }
    .nav-container { padding: 0 1rem; }
}

@media (max-width: 480px) {
    .nav-logo img { height: 36px; }
    .nav-container { padding: 0 0.75rem; }
}



 











/* Hero Css */
/* --- Hero Section Styles --- */ 
/* =============================================
   IGN Hero Section
============================================= */

.hero {
    position: relative;
    padding: 80px 0 100px;
    background: #f8faff;
    overflow: hidden;
    min-height: calc(100vh - var(--nav-h, 80px));
    display: flex;
    align-items: center;
}

/* Background effects */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-glow--1 {
    width: 600px;
    height: 600px;
    background: rgba(14,165,233,0.12);
    top: -200px;
    right: -100px;
}

.hero-bg-glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(26,74,138,0.1);
    bottom: -100px;
    left: -100px;
}

/* Layout */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.25);
    border-radius: 100px;
    padding: 8px 18px;
    font-family: var(--ff-head);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ign-blue);
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--ign-sky);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* Title */
.hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 800;
    color: var(--ign-navy);
    line-height: 1.08;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-title__block {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 4px 0;
}

.hero-title__outline {
    -webkit-text-stroke: 2px var(--ign-sky);
    color: transparent;
}

.hero-title__solid {
    color: var(--ign-sky);
}

/* Lead */
.hero-lead {
    font-family: var(--ff-body);
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s 0.2s ease both;
}

/* Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 52px;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ign-sky) 0%, var(--ign-blue) 100%);
    color: #fff;
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(14,165,233,0.3);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(14,165,233,0.4);
}

.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ign-navy);
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border: 1.5px solid rgba(15,31,61,0.15);
    border-radius: 12px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost-hero:hover {
    border-color: var(--ign-sky);
    color: var(--ign-sky);
    background: rgba(14,165,233,0.05);
}

/* Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-metric strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ign-navy);
    line-height: 1;
}

.hero-metric strong span {
    color: var(--ign-sky);
    font-size: 1.2rem;
}

.hero-metric > span {
    font-size: 0.78rem;
    color: #6b7280;
    font-family: var(--ff-body);
    margin-top: 4px;
    display: block;
}

.hero-metric-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* Trust */
.hero-trust {
    animation: fadeInUp 0.6s 0.5s ease both;
}

.trust-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-family: var(--ff-head);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-tag {
    font-family: var(--ff-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ign-blue);
    background: rgba(26,74,138,0.07);
    border: 1px solid rgba(26,74,138,0.12);
    padding: 5px 14px;
    border-radius: 100px;
}

/* ---- Visual Side ---- */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-card-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(14,165,233,0.15),
        0 40px 80px -20px rgba(15,31,61,0.25);
}

.hero-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-card-main:hover .hero-main-img {
    transform: scale(1.03);
}

.hero-card-main__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(15,31,61,0.5) 100%
    );
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(15,31,61,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: floatY 4s ease-in-out infinite;
}

.float-card--status {
    bottom: 28px;
    left: -20px;
    animation-delay: 0s;
}

.float-card--stats {
    top: 24px;
    right: -20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-width: 180px;
    animation-delay: 1s;
}

.float-card--clients {
    bottom: 110px;
    right: -24px;
    animation-delay: 2s;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-card__title {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ign-navy);
    margin: 0;
    line-height: 1.2;
}

.float-card__sub {
    font-size: 0.72rem;
    color: #6b7280;
    margin: 2px 0 0;
}

.float-card__label {
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 4px 0 0;
}

.float-card__icon--green {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(16,185,129,0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

/* Pulse dot */
.pulse-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* Mini bars */
.float-card__row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-bar__label {
    font-family: var(--ff-head);
    font-size: 0.72rem;
    color: #6b7280;
    width: 50px;
    flex-shrink: 0;
}

.mini-bar__track {
    flex: 1;
    height: 5px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.mini-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ign-sky), var(--ign-blue));
    border-radius: 10px;
    transition: width 1s ease;
}

.mini-bar__val {
    font-family: var(--ff-head);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ign-navy);
    width: 32px;
    text-align: right;
}

/* Avatar stack */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img,
.avatar-stack .avatar-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}

.avatar-stack img:first-child,
.avatar-stack .avatar-more:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--ign-sky);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--ff-head);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Entrance animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-trust {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title__block {
        justify-content: center;
    }

    .float-card--stats {
        right: 10px;
        top: 10px;
    }

    .float-card--status {
        left: 10px;
        bottom: 20px;
    }

    .float-card--clients {
        right: 10px;
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-main-img {
        height: 380px;
    }

    .float-card--stats {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-hero,
    .btn-ghost-hero {
        justify-content: center;
    }

    .hero-metrics {
        gap: 16px;
    }

    .hero-metric strong {
        font-size: 1.4rem;
    }

    .float-card--clients {
        display: none;
    }

    .hero-main-img {
        height: 300px;
    }
}












/* About us css Home Page  */
 .about-global {
    padding: 100px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ign-sky);
    margin-bottom: 48px;
}

.about-label__dot {
    width: 7px;
    height: 7px;
    background: var(--ign-sky);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left */
.about-title {
    font-family: var(--ff-head);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: var(--ign-navy);
    line-height: 1.1;
    margin-bottom: 28px;
}

.about-title__accent {
    color: var(--ign-sky);
    -webkit-text-stroke: 0px;
}

.about-desc {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-desc strong {
    color: var(--ign-navy);
    font-weight: 700;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-family: var(--ff-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ign-sky);
    text-decoration: none;
    border-bottom: 2px solid var(--ign-sky);
    padding-bottom: 2px;
    transition: gap 0.2s, color 0.2s;
}

.about-cta:hover {
    gap: 14px;
    color: var(--ign-blue);
    border-color: var(--ign-blue);
}

/* Right */
.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 30px 60px -15px rgba(15,31,61,0.18);
}

.about-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 20px;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-img-badge strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ign-navy);
}

.about-img-badge span {
    font-size: 0.75rem;
    color: #6b7280;
    font-family: var(--ff-body);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-stat {
    background: #f8faff;
    border: 1px solid rgba(14,165,233,0.12);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.about-stat:hover {
    border-color: var(--ign-sky);
    box-shadow: 0 8px 24px rgba(14,165,233,0.1);
}

.about-stat strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ign-navy);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    color: #6b7280;
    font-family: var(--ff-head);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .about-global { padding: 70px 0; }
    .about-img-wrap img { height: 280px; }
    .about-stat strong { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .about-stat { padding: 14px 8px; }
    .about-stat strong { font-size: 1.3rem; }
    .about-stat span { font-size: 0.65rem; }
}





















/* How we are  */
.services-tab-section {
    padding: 100px 0;
    background: #fff;
}

.st-title {
    font-family: var(--ff-head);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--ign-navy);
    line-height: 1.1;
    margin-bottom: 16px;
}

.st-title__accent { color: var(--ign-sky); }

.st-lead {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 52px;
}

/* Tabs */
.st-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.st-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 14px 28px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
}

.st-tab:hover { color: var(--ign-navy); }

.st-tab.active {
    color: var(--ign-sky);
    border-bottom-color: var(--ign-sky);
}

/* Panels */
.st-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 52px 0;
    border-bottom: 1px solid #e5e7eb;
}

.st-panel.active { display: grid; }

.st-panel__icon {
    width: 48px;
    height: 48px;
    background: rgba(14,165,233,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ign-sky);
    margin-bottom: 20px;
}

.st-panel__tag {
    font-family: var(--ff-head);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ign-sky);
    margin-bottom: 16px;
}

.st-panel__desc {
    font-size: 0.97rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
}

.st-panel__quote {
    border-left: 3px solid var(--ign-sky);
    padding-left: 16px;
    font-style: italic;
    font-weight: 600;
    color: var(--ign-navy);
    font-size: 0.9rem;
    margin-bottom: 28px;
    font-family: var(--ff-head);
}

.st-panel__cta {
    font-family: var(--ff-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ign-sky);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.2s, color 0.2s;
}

.st-panel__cta:hover { color: var(--ign-blue); }

.st-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid #e5e7eb;
    padding-left: 48px;
    align-self: center;
}

.st-panel__list li {
    font-family: var(--ff-head);
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--ign-navy);
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.st-panel__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--ign-sky);
    border-radius: 50%;
    flex-shrink: 0;
}

.st-panel__list li:last-child { border-bottom: none; }
.st-panel__list li:hover { color: var(--ign-sky); }

/* Responsive */
@media (max-width: 1024px) {
    .st-panel.active { grid-template-columns: 1fr; gap: 40px; }
    .st-panel__list { border-left: none; padding-left: 0; border-top: 1px solid #e5e7eb; padding-top: 32px; }
}

@media (max-width: 640px) {
    .services-tab-section { padding: 70px 0; }
    .st-tab { padding: 12px 16px; font-size: 0.82rem; }
    .st-tabs { overflow-x: auto; }
}
























/* --- Variables & Core Setup --- */
/* ── Reset & Tokens ── */
:root {
    --navy:        #0f1f3d;
    --blue:        #1a4a8a;
    --sky:         #0ea5e9;
    --sky-soft:    rgba(14,165,233,0.10);
    --white:       #ffffff;
    --gray-text:   #64748b;
    --border:      #e2e8f0;
    --bg:          #f8fafc;
}

/* ── Section ── */
.premium-services-section {
    padding: 90px 20px;
    background: var(--bg);
    font-family: 'Inter', sans-serif;
}

.services-container {
    max-width: 920px;
    margin: 0 auto;
}

/* ── Header ── */
.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.accent-badge {
    display: inline-block;
    background: var(--sky-soft);
    color: var(--sky);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
}

.highlight-text {
    background: linear-gradient(90deg, var(--sky), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-description {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ── Card Stack ── */
.column-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Card ── */
.modern-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .38s cubic-bezier(.16,1,.3,1),
                box-shadow .38s cubic-bezier(.16,1,.3,1),
                border-color .38s ease;
}

/* sliding navy fill */
.modern-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    transform: translateX(-101%);
    transition: transform .42s cubic-bezier(.16,1,.3,1);
    z-index: 0;
}

.modern-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 48px rgba(15,31,61,.14);
    border-color: transparent;
}

.modern-card:hover::after {
    transform: translateX(0);
}

/* keep children above the fill */
.modern-card > * { position: relative; z-index: 1; }

/* ── Number ── */
.card-number {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: rgba(0,0,0,.05);
    line-height: 1;
    min-width: 56px;
    text-align: center;
    transition: color .38s ease;
    flex-shrink: 0;
}

.modern-card:hover .card-number { color: rgba(255,255,255,.07); }

/* ── Icon ── */
.icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: var(--sky-soft);
    border-radius: 16px;
    transform: rotate(45deg);
    transition: background .38s ease, transform .38s ease;
}

.icon-wrapper i {
    position: relative;
    font-size: 28px;
    color: var(--sky);
    transition: color .3s ease;
}

.modern-card:hover .icon-bg {
    background: rgba(255,255,255,.12);
    transform: rotate(135deg);
}

.modern-card:hover .icon-wrapper i { color: var(--white); }

/* ── Body ── */
.card-body { flex: 1; min-width: 0; }

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    transition: color .3s ease;
}

.card-description {
    font-size: 14.5px;
    color: var(--gray-text);
    line-height: 1.65;
    margin-bottom: 16px;
    transition: color .3s ease;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .3s ease;
}

.tag i { color: var(--sky); transition: color .3s ease; }

.modern-card:hover .card-title,
.modern-card:hover .card-description,
.modern-card:hover .tag      { color: var(--white); }
.modern-card:hover .tag i    { color: rgba(255,255,255,.7); }

/* ── Responsive ── */
@media (max-width: 640px) {
    .premium-services-section { padding: 60px 16px; }

    .modern-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 20px;
    }

    .modern-card:hover { transform: translateY(-4px); }

    .card-number { display: none; }

    .tag-group { flex-direction: column; gap: 10px; }
}

@media (min-width: 641px) and (max-width: 900px) {
    .modern-card { padding: 28px 28px; gap: 24px; }
    .card-number { min-width: 42px; }
}




























/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --navy:        #080f24;
  --navy-mid:    #0d1a3a;
  --blue:        #1547b8;
  --sky:         #0ea5e9;
  --sky-light:   #38bdf8;
  --sky-soft:    rgba(14,165,233,.10);
  --sky-glow:    rgba(14,165,233,.18);
  --white:       #ffffff;
  --off-white:   #f0f6ff;
  --gray:        #64748b;
  --gray-light:  #94a3b8;
  --border:      rgba(14,165,233,.14);
  --border-soft: rgba(255,255,255,.08);
  --card-bg:     rgba(255,255,255,.03);
  --ff-head:     'Syne', sans-serif;
  --ff-body:     'DM Sans', sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--navy);color:var(--white);font-family:var(--ff-body);overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container{max-width:1180px;margin:0 auto;padding:0 24px}

.section-label {
  display:inline-flex;align-items:center;gap:8px;
  background:var(--sky-soft);border:1px solid var(--border);
  color:var(--sky-light);font-family:var(--ff-head);font-size:11px;
  font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  padding:6px 16px;border-radius:50px;margin-bottom:20px;
}
.section-label i{font-size:14px}

.sec-title {
  font-family:var(--ff-head);font-size:clamp(2rem,4.5vw,3rem);
  font-weight:800;line-height:1.15;color:var(--white);margin-bottom:16px;
}
.sec-title span{color:var(--sky)}

.sec-sub {
  font-size:16px;color:var(--gray-light);line-height:1.7;
  max-width:560px;
}

/* ═══════════════════════════════════════
   SECTION: DIGITAL EXCELLENCE
═══════════════════════════════════════ */
.excellence-section {
  padding:100px 0;
  position:relative;overflow:hidden;
}

/* subtle grid bg */
.excellence-section::before {
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(14,165,233,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(14,165,233,.04) 1px,transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}

.excellence-grid {
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:center;
}

.excellence-metrics {
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
  margin-top:44px;
}

.metric-card {
  background:var(--card-bg);border:1px solid var(--border);
  border-radius:16px;padding:24px 20px;
  position:relative;overflow:hidden;
  transition:border-color .3s,transform .3s;
}
.metric-card::before {
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--sky),transparent);
  opacity:0;transition:opacity .3s;
}
.metric-card:hover{border-color:rgba(14,165,233,.4);transform:translateY(-4px)}
.metric-card:hover::before{opacity:1}

.metric-num {
  font-family:var(--ff-head);font-size:2.4rem;font-weight:800;
  color:var(--sky);line-height:1;margin-bottom:6px;
}
.metric-label{font-size:13px;color:var(--gray-light);font-weight:500}

/* right side — skill bars */
.skills-panel {
  background:rgba(255,255,255,.02);border:1px solid var(--border-soft);
  border-radius:24px;padding:36px 32px;
}

.skills-panel-title {
  font-family:var(--ff-head);font-size:1.1rem;font-weight:700;
  margin-bottom:28px;color:var(--white);
}

.skill-row{margin-bottom:22px}
.skill-row:last-child{margin-bottom:0}

.skill-meta {
  display:flex;justify-content:space-between;
  font-size:13px;font-weight:500;margin-bottom:10px;
}
.skill-meta span:last-child{color:var(--sky)}

.skill-bar {
  height:6px;background:rgba(255,255,255,.07);
  border-radius:99px;overflow:hidden;
}
.skill-fill {
  height:100%;border-radius:99px;
  background:linear-gradient(90deg,var(--blue),var(--sky));
  transform-origin:left;animation:fillBar .9s cubic-bezier(.16,1,.3,1) both;
}
@keyframes fillBar{from{transform:scaleX(0)}to{transform:scaleX(1)}}

.trust-row {
  display:flex;gap:28px;flex-wrap:wrap;margin-top:40px;
}
.trust-item {
  display:flex;align-items:center;gap:10px;
  font-size:13px;color:var(--gray-light);
}
.trust-item i{color:var(--sky);font-size:18px}

/* ═══════════════════════════════════════
   SECTION: ADVANCED SERVICES
═══════════════════════════════════════ */
 

/* ── Services Section ── */
.services-section {
  padding: 90px 20px;
  background: #f0f6ff;
  font-family: 'Inter', sans-serif;
}

.services-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 44px;
}

.srv-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.22);
  color: #0284c7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.srv-badge i { font-size: 14px; }

.srv-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0f1f3d;
  line-height: 1.2;
  margin-bottom: 14px;
}

.srv-highlight {
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.srv-sub {
  font-size: 15.5px;
  color: #64748b;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Tabs */
.srv-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.srv-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .28s ease;
}
.srv-tab i { font-size: 16px; }
.srv-tab:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
}
.srv-tab.active {
  background: #0f1f3d;
  border-color: #0f1f3d;
  color: #ffffff;
}

/* Panes */
.srv-pane {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.srv-pane.active { display: grid; }

/* Cards */
.srv-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}

.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0f1f3d;
  transform: translateY(101%);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
  z-index: 0;
}

.srv-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15,31,61,.14);
}
.srv-card:hover::before { transform: translateY(0); }
.srv-card > * { position: relative; z-index: 1; }

/* Card Icon */
.srv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
.srv-card-icon i {
  font-size: 24px;
  color: #0ea5e9;
  transition: color .3s;
}
.srv-card:hover .srv-card-icon {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.15);
}
.srv-card:hover .srv-card-icon i { color: #ffffff; }

/* Card Number */
.srv-card-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(0,0,0,.04);
  line-height: 1;
  transition: color .3s;
}
.srv-card:hover .srv-card-num { color: rgba(255,255,255,.06); }

/* Card Text */
.srv-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f1f3d;
  transition: color .3s;
}
.srv-card:hover .srv-card-title { color: #ffffff; }

.srv-card-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
  transition: color .3s;
}
.srv-card:hover .srv-card-desc { color: rgba(255,255,255,.65); }

/* Card Link */
.srv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #0ea5e9;
  transition: gap .3s, color .3s;
  margin-top: 4px;
}
.srv-card-link i { font-size: 16px; }
.srv-card:hover .srv-card-link { color: #38bdf8; gap: 9px; }

/* Responsive */
@media (max-width: 1024px) {
  .srv-pane.active { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-section { padding: 64px 16px; }
  .srv-pane.active { grid-template-columns: 1fr; }
  .srv-tab { font-size: 13px; padding: 10px 20px; }
}



/* ═══════════════════════════════════════
   SECTION: FAQ
═══════════════════════════════════════ */
.faq-section{padding:100px 0}

.faq-inner {
  display:grid;grid-template-columns:1fr 1.6fr;
  gap:80px;align-items:start;
}

.faq-left .sec-sub{margin-top:0}

.faq-cta {
  display:inline-flex;align-items:center;gap:10px;
  margin-top:32px;background:var(--sky);color:var(--navy);
  font-family:var(--ff-head);font-size:14px;font-weight:700;
  padding:14px 28px;border-radius:50px;
  transition:transform .3s,box-shadow .3s;
}
.faq-cta:hover{transform:translateY(-2px);box-shadow:0 16px 40px rgba(14,165,233,.35)}
.faq-cta i{font-size:16px}

.faq-list{display:flex;flex-direction:column;gap:4px}

.faq-item {
  border:1px solid var(--border);border-radius:16px;
  overflow:hidden;background:var(--card-bg);
  transition:border-color .3s;
}
.faq-item.open{border-color:rgba(14,165,233,.4)}

.faq-q {
  display:flex;justify-content:space-between;align-items:center;
  padding:22px 24px;cursor:pointer;gap:16px;
  font-family:var(--ff-head);font-size:15px;font-weight:600;
  color:var(--white);
}
.faq-q i {
  font-size:20px;color:var(--sky);flex-shrink:0;
  transition:transform .35s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-q i{transform:rotate(45deg)}

.faq-a {
  max-height:0;overflow:hidden;
  transition:max-height .4s cubic-bezier(.16,1,.3,1),padding .3s;
  font-size:14px;color:var(--gray-light);line-height:1.7;
  padding:0 24px;
}
.faq-item.open .faq-a{max-height:220px;padding-bottom:22px}

/* ═══════════════════════════════════════
   SECTION: BLOGS
═══════════════════════════════════════ */
 


/* ── Shared ── */
.bl-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.bl-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(14,165,233,.10); border: 1px solid rgba(14,165,233,.22);
  color: #0284c7; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.bl-badge i { font-size: 14px; }

.bl-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  color: #0f1f3d; line-height: 1.2; margin-bottom: 12px;
}
.bl-hl {
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bl-sub { font-size: 15px; color: #64748b; line-height: 1.7; max-width: 500px; }


/* ══ BLOG SECTION ══ */
.blog-section { padding: 90px 0; background: #f8faff; font-family: 'Inter', sans-serif; }

.bl-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}

.bl-all {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid #cbd5e1; border-radius: 50px;
  padding: 11px 24px; font-size: 13px; font-weight: 700;
  color: #0f1f3d; white-space: nowrap;
  transition: all .3s; text-decoration: none;
}
.bl-all:hover { background: #0f1f3d; color: #fff; border-color: #0f1f3d; }
.bl-all i { font-size: 16px; transition: transform .3s; }
.bl-all:hover i { transform: translateX(4px); }

.bl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.bl-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 20px; overflow: hidden; display: flex;
  flex-direction: column; text-decoration: none;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.bl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15,31,61,.10);
  border-color: rgba(14,165,233,.3);
}

.bl-thumb {
  height: 190px; display: flex; align-items: center;
  justify-content: center; position: relative;
}
.bl-thumb i { font-size: 56px; color: rgba(255,255,255,.18); }
.bl-cat {
  position: absolute; top: 14px; left: 14px;
  background: #0ea5e9; color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
}

.bl-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.bl-meta {
  display: flex; gap: 16px; font-size: 12px; color: #94a3b8;
}
.bl-meta span { display: flex; align-items: center; gap: 5px; }
.bl-meta i { font-size: 13px; color: #0ea5e9; }

.bl-card-title {
  font-size: .97rem; font-weight: 800; color: #0f1f3d;
  line-height: 1.45; text-decoration: none;
  transition: color .3s; display: block;
}
.bl-card:hover .bl-card-title { color: #0ea5e9; }

.bl-excerpt { font-size: 13px; color: #64748b; line-height: 1.65; flex: 1; }

.bl-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f1f5f9; margin-top: auto;
}
.bl-author { display: flex; align-items: center; gap: 9px; }
.bl-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.bl-author span { font-size: 12px; font-weight: 600; color: #475569; }

.bl-read {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: #0ea5e9;
  text-decoration: none; transition: gap .3s;
}
.bl-read i { font-size: 14px; }
.bl-card:hover .bl-read { gap: 8px; }


/* ══ TESTIMONIALS ══ */
.tst-section { padding: 90px 0 100px; background: #fff; font-family: 'Inter', sans-serif; }

.tst-header { text-align: center; margin-bottom: 52px; }
.tst-header .bl-sub { margin: 0 auto; }

/* Stats */
.tst-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; background: #f8faff; border: 1px solid #e2e8f0;
  border-radius: 18px; padding: 28px 40px;
  margin-bottom: 52px; flex-wrap: wrap; gap: 0;
}
.tst-stat { text-align: center; padding: 0 40px; }
.tst-stat-num {
  font-size: 2rem; font-weight: 900; color: #0f1f3d;
  font-family: 'Inter', sans-serif; line-height: 1;
}
.tst-stat-num span { font-size: 1.1rem; color: #0ea5e9; }
.tst-stat-label { font-size: 12px; color: #94a3b8; font-weight: 600; margin-top: 5px; text-transform: uppercase; letter-spacing: .06em; }
.tst-stat-div { width: 1px; height: 44px; background: #e2e8f0; }

/* Grid */
.tst-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.tst-card {
  background: #f8faff; border: 1px solid #e2e8f0;
  border-radius: 20px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.tst-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(15,31,61,.09);
  border-color: rgba(14,165,233,.25);
}

/* Featured card spans 2 rows */
.tst-featured {
  grid-row: 1 / 3;
  background: #0f1f3d;
  border-color: #0f1f3d;
}
.tst-featured .tst-text { color: rgba(255,255,255,.75); }
.tst-featured .tst-name { color: #fff; }
.tst-featured .tst-role { color: rgba(255,255,255,.5); }
.tst-featured .tst-quote-icon { color: rgba(14,165,233,.4); }

.tst-quote-icon { font-size: 28px; color: rgba(14,165,233,.3); line-height: 1; }

.tst-stars { display: flex; gap: 3px; }
.tst-stars i { font-size: 14px; color: #f59e0b; }

.tst-text {
  font-size: 14px; color: #475569; line-height: 1.75; flex: 1;
  font-style: italic;
}

.tst-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
}
.tst-name { font-size: 14px; font-weight: 800; color: #0f1f3d; }
.tst-featured .tst-name { color: #fff; }
.tst-role { font-size: 12px; color: #94a3b8; margin-top: 2px; }
.tst-tag {
  margin-left: auto; flex-shrink: 0;
  background: rgba(14,165,233,.10); border: 1px solid rgba(14,165,233,.2);
  color: #0284c7; font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.tst-featured .tst-tag { background: rgba(14,165,233,.15); color: #38bdf8; border-color: rgba(14,165,233,.25); }


/* ── Responsive ── */
@media (max-width: 1024px) {
  .bl-grid { grid-template-columns: repeat(2,1fr); }
  .tst-grid { grid-template-columns: 1fr 1fr; }
  .tst-featured { grid-row: auto; }
}
@media (max-width: 640px) {
  .blog-section, .tst-section { padding: 64px 0; }
  .bl-grid, .tst-grid { grid-template-columns: 1fr; }
  .bl-header { flex-direction: column; align-items: flex-start; }
  .tst-stats { padding: 20px; gap: 16px; }
  .tst-stat { padding: 0 16px; }
  .tst-stat-div { display: none; }
}



/* ═══════════════════════════════════════
   DECORATIVE GLOW BLOB
═══════════════════════════════════════ */
.glow-blob {
  position:absolute;border-radius:50%;
  filter:blur(80px);pointer-events:none;z-index:0;
}

/* ═══════════════════════════════════════
   SECTION DIVIDER
═══════════════════════════════════════ */
.sec-divider {
  height:1px;
  background:linear-gradient(90deg,transparent,var(--border),transparent);
  margin:0 24px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1024px){
  .services-grid,.tab-pane.active{grid-template-columns:repeat(2,1fr)}
  .excellence-grid{gap:40px}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:768px){
  .excellence-section,.services-section,.faq-section,.blog-section{padding:72px 0}
  .excellence-grid,.faq-inner{grid-template-columns:1fr;gap:48px}
  .excellence-metrics{grid-template-columns:repeat(2,1fr)}
  .services-grid,.tab-pane.active{grid-template-columns:1fr 1fr}
  .blog-grid{grid-template-columns:1fr}
  .blog-header{flex-direction:column;align-items:flex-start}
  .faq-left{order:0}
}

@media(max-width:480px){
  .services-grid,.tab-pane.active{grid-template-columns:1fr}
  .excellence-metrics{grid-template-columns:1fr 1fr}
  .metric-num{font-size:1.8rem}
  .services-tabs{gap:8px}
  .tab-btn{font-size:12px;padding:8px 16px}
}
























/* footer  */

/* ══ FOOTER ══ */
.footer {
  font-family: 'Inter', sans-serif;
  background: #080f24;
  color: #fff;
}

/* ── CTA Banner ── */
.footer-cta {
  background: linear-gradient(120deg, #0f1f3d 0%, #1547b8 50%, #0284c7 100%);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.footer-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.footer-cta-left h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #fff;
}
.footer-cta-left h2 span {
  color: #38bdf8;
}
.footer-cta-left p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  max-width: 440px;
}
.footer-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.fcta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f1f3d;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.fcta-btn-primary i { font-size: 18px; transition: transform .3s; }
.fcta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.fcta-btn-primary:hover i { transform: translateX(4px); }
.fcta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.35);
  text-decoration: none;
  transition: all .3s;
}
.fcta-btn-outline i { font-size: 18px; }
.fcta-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

/* ── Main Footer ── */
.footer-main { padding: 72px 24px 0; }
.footer-container { max-width: 1180px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-logo strong { font-weight: 800; color: #38bdf8; }
.footer-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1547b8, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon i { font-size: 20px; color: #fff; }

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Contact list */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s;
}
.footer-contact-item:hover { transform: translateX(4px); }
.fci-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fci-icon i { font-size: 16px; color: #0ea5e9; }
.fci-label { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }
.fci-val { font-size: 13px; font-weight: 600; color: #fff; margin-top: 2px; }

/* Socials */
.footer-socials { display: flex; gap: 10px; }
.fsocial {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}
.fsocial:hover {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Cols */
.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .25s, gap .25s;
}
.footer-links a i { font-size: 14px; color: #0ea5e9; opacity: 0; transition: opacity .25s; }
.footer-links a:hover { color: #fff; gap: 10px; }
.footer-links a:hover i { opacity: 1; }

.footer-badge {
  background: #0ea5e9;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 4px;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-nl-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-nl-icon {
  font-size: 32px;
  color: #0ea5e9;
  flex-shrink: 0;
}
.footer-nl-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.footer-nl-sub { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-nl-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.footer-nl-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 13.5px;
  color: #fff;
  width: 240px;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,.35); }
.footer-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0ea5e9;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
}
.footer-nl-btn i { font-size: 16px; }
.footer-nl-btn:hover { background: #0284c7; }

/* Tech Stack */
.footer-tech {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0 28px;
  flex-wrap: wrap;
}
.footer-tech-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}
.footer-tech-list { display: flex; gap: 8px; flex-wrap: wrap; }
.ftech {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 50px;
  transition: all .3s;
}
.ftech:hover {
  background: rgba(14,165,233,.12);
  border-color: rgba(14,165,233,.25);
  color: #38bdf8;
}

/* ── Bottom Bar ── */
.footer-bottom {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-copy strong { color: rgba(255,255,255,.7); }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .25s;
}
.footer-bottom-links a:hover { color: #0ea5e9; }
.footer-bottom-links span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-nl-input { width: 180px; }
}
@media (max-width: 640px) {
  .footer-cta-inner { flex-direction: column; }
  .footer-cta-btns { width: 100%; }
  .fcta-btn-primary, .fcta-btn-outline { justify-content: center; flex: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: auto; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .footer-nl-form { width: 100%; }
  .footer-nl-input { flex: 1; min-width: 0; width: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-links { justify-content: center; }
}





/* About Us page css  */
/* ══ ABOUT PAGE ══ */
* { box-sizing: border-box; margin: 0; padding: 0; }
.ab-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Shared Tokens ── */
.ab-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(14,165,233,.12); border: 1px solid rgba(14,165,233,.22);
  color: #38bdf8; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 18px;
}
.ab-badge i { font-size: 14px; }

.ab-badge-light {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.18);
  color: #0284c7; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 18px;
}

.ab-sec-title {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.ab-sec-title.dark { color: #0f1f3d; }
.ab-sec-title.light { color: #fff; }
.ab-sky { color: #38bdf8; }
.ab-sky-dark {
  background: linear-gradient(90deg,#0ea5e9,#2563eb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-sec-desc { font-size: 15px; line-height: 1.75; color: #64748b; }
.ab-sec-desc.light { color: rgba(255,255,255,.6); max-width: 520px; }

.ab-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0ea5e9; color: #fff; font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.ab-btn-primary i { font-size: 18px; transition: transform .3s; }
.ab-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(14,165,233,.35); }
.ab-btn-primary:hover i { transform: translateX(4px); }

.ab-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: all .3s;
}
.ab-btn-ghost i { font-size: 18px; }
.ab-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); color: #fff; }


/* ══ HERO ══ */
.ab-hero {
  background: #080f24; padding: 100px 0 90px;
  position: relative; overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.ab-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ab-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .55;
}
.ab-glow-1 {
  width: 500px; height: 500px; top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(14,165,233,.15), transparent 70%);
}
.ab-glow-2 {
  width: 400px; height: 400px; bottom: -80px; right: 0;
  background: radial-gradient(circle, rgba(99,102,241,.12), transparent 70%);
}
.ab-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

.ab-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}

.ab-hero-left h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.ab-hero-desc {
  font-size: 15.5px; color: rgba(255,255,255,.6);
  line-height: 1.75; margin-bottom: 32px; max-width: 480px;
}
.ab-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.ab-hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.ab-hstat { padding: 0 24px; }
.ab-hstat:first-child { padding-left: 0; }
.ab-hstat-num {
  font-size: 1.9rem; font-weight: 900; color: #fff;
  display: block; line-height: 1;
}
.ab-hstat-num em { font-style: normal; color: #0ea5e9; font-size: 1.2rem; }
.ab-hstat-label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; display: block; }
.ab-hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* Hero image card */
.ab-img-card { position: relative; }
.ab-img-main {
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.ab-img-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #0d1a3a 0%, #1547b8 50%, #0ea5e9 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,.25);
}
.ab-img-placeholder i { font-size: 64px; }
.ab-img-placeholder span { font-size: 14px; font-weight: 500; letter-spacing: .05em; }

.ab-float-card {
  position: absolute; background: #fff;
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 48px rgba(0,0,0,.25);
}
.ab-fc-1 { bottom: 28px; left: -28px; }
.ab-fc-2 { top: 28px; right: -20px; }
.ab-fc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(14,165,233,.1); display: flex;
  align-items: center; justify-content: center;
}
.ab-fc-icon i { font-size: 20px; color: #0ea5e9; }
.ab-fc-num { font-size: 16px; font-weight: 900; color: #0f1f3d; }
.ab-fc-label { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.ab-fc-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2); flex-shrink: 0;
}


/* ══ STORY ══ */
.ab-story {
  padding: 90px 0; background: #f8faff;
  font-family: 'Inter', sans-serif;
}
.ab-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}

.ab-story-milestones { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.ab-milestone {
  display: grid; grid-template-columns: 52px 24px 1fr;
  align-items: center; gap: 0; padding: 14px 0;
  border-bottom: 1px solid #e8f0fe;
  position: relative;
}
.ab-milestone:last-child { border-bottom: none; }
.ab-ms-year { font-size: 13px; font-weight: 800; color: #0ea5e9; }
.ab-ms-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #0ea5e9; border: 2px solid #bfdbfe;
  justify-self: center;
}
.ab-ms-text { font-size: 13.5px; color: #475569; padding-left: 12px; line-height: 1.5; }

.ab-story-right { display: flex; flex-direction: column; gap: 16px; }

.ab-mv-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 18px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .3s, box-shadow .3s;
}
.ab-mv-card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(15,31,61,.08);
}
.ab-mv-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2);
  display: flex; align-items: center; justify-content: center;
}
.ab-mv-icon i { font-size: 22px; color: #0ea5e9; }
.ab-mv-title { font-size: 15px; font-weight: 800; color: #0f1f3d; }
.ab-mv-desc { font-size: 13.5px; color: #64748b; line-height: 1.7; }


/* ══ WHY CHOOSE US ══ */
.ab-why {
  padding: 90px 0; background: #0f1f3d;
  font-family: 'Inter', sans-serif;
  position: relative; overflow: hidden;
}
.ab-why::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.04) 1px, transparent 1px);
  background-size: 52px 52px; pointer-events: none;
}
.ab-why-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.ab-why-header .ab-sec-desc.light { margin: 0 auto; }

.ab-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.ab-why-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 30px 26px;
  transition: border-color .3s, transform .3s, background .3s;
}
.ab-why-card:hover {
  border-color: rgba(14,165,233,.3); transform: translateY(-6px);
  background: rgba(14,165,233,.04);
}
.ab-why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.ab-why-icon i { font-size: 24px; color: #0ea5e9; }
.ab-why-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.ab-why-card p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.7; }


/* ══ TEAM ══ */
.ab-team {
  padding: 90px 0; background: #fff;
  font-family: 'Inter', sans-serif;
}
.ab-team-header { text-align: center; margin-bottom: 52px; }
.ab-team-header .ab-sec-desc { margin: 0 auto; max-width: 480px; }

.ab-team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ab-team-card {
  background: #f8faff; border: 1px solid #e2e8f0;
  border-radius: 20px; padding: 28px 22px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ab-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(15,31,61,.10);
  border-color: rgba(14,165,233,.25);
}
.ab-team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.ab-team-name { font-size: 1rem; font-weight: 800; color: #0f1f3d; }
.ab-team-role {
  display: inline-block; background: rgba(14,165,233,.1);
  color: #0284c7; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.ab-team-bio { font-size: 13px; color: #64748b; line-height: 1.65; }
.ab-team-socials { display: flex; gap: 8px; }
.ab-team-socials a {
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid #e2e8f0; background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; font-size: 16px; text-decoration: none;
  transition: all .3s;
}
.ab-team-socials a:hover { background: #0ea5e9; border-color: #0ea5e9; color: #fff; }


/* ══ AWARDS ══ */
.ab-awards {
  padding: 90px 0; background: #080f24;
  font-family: 'Inter', sans-serif;
}
.ab-awards-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 72px; align-items: center;
}
.ab-awards-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.ab-award-item {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 20px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color .3s, background .3s;
}
.ab-award-item:hover {
  border-color: rgba(14,165,233,.3);
  background: rgba(14,165,233,.04);
}
.ab-award-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.18);
  display: flex; align-items: center; justify-content: center;
}
.ab-award-icon i { font-size: 20px; color: #0ea5e9; }
.ab-award-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ab-award-org { font-size: 11.5px; color: rgba(255,255,255,.4); }


/* ══ CTA ══ */
.ab-cta {
  padding: 80px 0 100px; background: #f8faff;
  font-family: 'Inter', sans-serif;
}
.ab-cta-box {
  background: linear-gradient(120deg, #0f1f3d, #1547b8 50%, #0284c7);
  border-radius: 28px; padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.ab-cta-glow {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.ab-cta-content { position: relative; z-index: 1; }
.ab-cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900; color: #fff; line-height: 1.2;
  margin-bottom: 14px;
}
.ab-cta-desc {
  font-size: 15px; color: rgba(255,255,255,.65);
  line-height: 1.7; max-width: 480px; margin: 0 auto 36px;
}
.ab-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ab-cta-btns .ab-btn-primary { background: #fff; color: #0f1f3d; }
.ab-cta-btns .ab-btn-primary:hover { box-shadow: 0 16px 40px rgba(0,0,0,.25); }


/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .ab-hero-inner, .ab-story-grid, .ab-awards-inner { grid-template-columns: 1fr; gap: 48px; }
  .ab-hero-right { display: none; }
  .ab-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-awards-right { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ab-hero { padding: 72px 0 64px; }
  .ab-story, .ab-why, .ab-team, .ab-awards, .ab-cta { padding: 64px 0; }
  .ab-why-grid { grid-template-columns: 1fr; }
  .ab-team-grid { grid-template-columns: 1fr; }
  .ab-cta-box { padding: 44px 24px; border-radius: 20px; }
  .ab-hero-stats { gap: 8px; }
  .ab-hstat { padding: 0 12px; }
  .ab-hstat-num { font-size: 1.4rem; }
  .ab-hero-btns { flex-direction: column; }
  .ab-btn-primary, .ab-btn-ghost { justify-content: center; }
}


































 

 




 






























