/* ============================================
   CSS CUSTOM PROPERTIES — DESIGN SYSTEM
   ============================================ */
:root {
    --navy: #0B1F33;
    --navy-light: #123B5D;
    --navy-dark: #071522;
    --orange: #305e99;
    --orange-light: #FFB15C;
    --orange-glow: rgba(249, 115, 22, 0.25);
    --white: #FFFFFF;
    --light-bg: #F5F7FA;
    --text-main: #17202A;
    --text-secondary: #64748B;
    --border: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(11, 31, 51, 0.08);
    --shadow-md: 0 8px 32px rgba(11, 31, 51, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 31, 51, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --font-heading: 'Manrope', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1240px;
    --header-height: 76px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.heading-xl {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.heading-lg {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 28px);
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 15px;
}
.heading-md {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.heading-sm {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(18px, 1.4vw, 22px);
    line-height: 1.3;
}
.body-lg {
    font-size: clamp(17px, 1.1vw, 20px);
    line-height: 1.7;
}
.body-md {
    font-size: clamp(15px, 0.95vw, 17px);
    line-height: 1.7;
    text-align: justify;
}
.body-sm {
    font-size: 14px;
    line-height: 1.6;
}
.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(249, 115, 22, 0.10);
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid rgba(249, 115, 22, 0.15);
}
.eyebrow-white {
    color: var(--orange-light);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}
.text-secondary {
    color: var(--text-secondary);
}
.text-white {
    color: var(--white);
}
.text-navy {
    color: var(--navy);
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
    line-height: 1.2;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 10px rgb(88 86 86 / 35%);
}
.btn-primary:hover {
    background: #fdfbfa;
    transform: translateY(-2px);
    color: #000;
    box-shadow: 0 8px 12px rgba(65, 65, 65, 0.45);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--navy);
    background: rgba(11, 31, 51, 0.04);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}
.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all var(--transition);
    background: #fff;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 30px rgba(11, 31, 51, 0.08);
    height: 68px;
}
.header.scrolled .logo-text {
    color: var(--navy);
}
.header.scrolled .nav-link {
    color: var(--text-main);
}
.header.scrolled .nav-link:hover {
    color: var(--orange);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    transition: color var(--transition);
    flex-shrink: 0;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 900;
}
.header.scrolled .logo {
    color: var(--navy);
}
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: #17202a;
    padding: 8px 16px;
    border-radius: 60px;
    transition: all var(--transition);
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: #6db0ff;
}
.header.scrolled .nav-link {
    color: var(--text-secondary);
}
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--navy);
    background: rgba(11, 31, 51, 0.05);
}
.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}
.nav-cta-group .btn {
    padding: 10px 22px;
    font-size: 13px;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #000;
    border-radius: 4px;
    transition: all var(--transition);
}
.header.scrolled .hamburger span {
    background: var(--navy);
}
.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);
}
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    z-index: 999;
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}
.nav-mobile.open {
    transform: translateX(0);
}
.nav-mobile .nav-link {
    font-size: 18px;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
    color: var(--white);
    background: transparent;
}
.nav-mobile .nav-cta-group {
    flex-direction: column;
    margin: 20px 0 0;
    gap: 12px;
}
.nav-mobile .nav-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(18, 59, 93, 0.3) 0%, transparent 50%);
    z-index: 1;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0 60px;
    width: 100%;
}
.hero-content {
    max-width: 640px;
}
.hero-content .heading-xl {
    color: var(--white);
    margin-bottom: 20px;
}
.hero-content .heading-xl .highlight {
    color: #6db0ff;
}
.hero-content .body-lg {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}
.hero-trust-item i {
    color: var(--orange);
    font-size: 16px;
}
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-product-image {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    position: relative;
}
.hero-product-image img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 1 / 0.9;
    background: rgba(255, 255, 255, 0.03);
    object-position: right;
}
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: var(--white);
    min-width: 140px;
    animation: float 6s ease-in-out infinite;
}
.hero-floating-card .number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: #6db0ff;
}
.hero-floating-card .label {
    font-size: 12px;
    color: #fff;
    margin-top: 2px;
}
.hero-floating-card.f1 {
    top: 10%;
    right: -8%;
    animation-delay: 0s;
}
.hero-floating-card.f2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 2s;
}
.hero-floating-card.f3 {
    bottom: 5%;
    right: 5%;
    animation-delay: 4s;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}
.heat-wave {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
}
.heat-wave-1 {
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 40px,
            rgba(249, 115, 22, 0.3) 40px,
            rgba(249, 115, 22, 0.3) 42px);
    mask-image: radial-gradient(ellipse at 50% 100%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 100%, black 30%, transparent 70%);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.trust-strip-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-main);
}
.trust-item i {
    color: var(--orange);
    font-size: 20px;
    width: 24px;
    text-align: center;
}
.trust-item span {
    color: var(--text-secondary);
    font-weight: 400;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: 80px 0;
}
.section-dark {
    background: var(--navy-dark);
    color: var(--white);
}
.section-light {
    background: var(--light-bg);
}
.section-white {
    background: var(--white);
}
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-header .heading-lg {
    margin-bottom: 16px;
}
.section-header .body-lg {
    color: var(--text-secondary);
}
.section-dark .section-header .body-lg {
    color: rgba(255, 255, 255, 0.65);
}
.section-header-left {
    text-align: left;
    max-width: 600px;
    margin: 0 0 48px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-bg);
    aspect-ratio: 1 / 0.85;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image .badge-float {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--orange);
}
.about-image .badge-float small {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.about-stat .number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--navy);
}
.about-stat .label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   PRODUCT CATEGORIES
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px 32px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
}
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.2);
}
.category-card:hover::after {
    transform: scaleX(1);
}
.category-card .icon {
    width: 52px;
    height: 52px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 16px;
}
.category-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}
.category-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.category-card .arrow {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.category-card:hover .arrow {
    gap: 12px;
}

/* ============================================
   FEATURED PRODUCTS / PRODUCT GRID
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.15);
}
.product-card .image {
    aspect-ratio: 1 / 0.85;
    background: var(--light-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.product-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease;
}
.product-card:hover .image img {
    transform: scale(1.04);
}
.product-card .body {
    padding: 18px 20px 22px;
}
.product-card .body h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}
.product-card .body p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    display: -webkit-box;
    
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card .body .actions {
    display: flex;
    gap: 10px;
}
.product-card .body .actions .btn {
    padding: 8px 18px;
    font-size: 12px;
    flex: 1;
}

/* ============================================
   CUSTOM SOLUTIONS (DARK)
   ============================================ */
.custom-solutions {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.custom-solutions::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
}
.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.custom-grid .heading-lg {
    color: var(--white);
}
.custom-grid .body-lg {
    color: rgba(255, 255, 255, 0.7);
    margin: 16px 0 24px;
}
.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
}
.tech-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.custom-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.custom-visual .product-display {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.custom-visual .product-display img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.8;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.15);
}
.why-card .icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange);
    margin-bottom: 16px;
}
.why-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   QUALITY
   ============================================ */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.quality-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.quality-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
}
.quality-list li i {
    color: var(--orange);
    font-size: 18px;
}
.quality-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 0.75;
    background: var(--light-bg);
}
.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   INFRASTRUCTURE
   ============================================ */
.infra-section {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.infra-section .section-header .body-lg {
    color: rgba(255, 255, 255, 0.65);
}
.infra-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.infra-main {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 1 / 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.infra-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.infra-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.infra-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.infra-stat-card .number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    color: #fff;
}
.infra-stat-card .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.infra-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}
.infra-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.infra-tag i {
    display: block;
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.industry-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px 28px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
    display: block;
    color: inherit;
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.15);
}
.industry-card .icon {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 12px;
}
.industry-card h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

/* ============================================
   PROCESS
   ============================================ */
.process-section {
    background: var(--light-bg);
    padding: 80px 0;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    margin-top: 40px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: var(--border);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-step .circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 auto 12px;
    transition: all var(--transition);
}
.process-step.active .circle {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.15);
}
.process-step h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}
.process-step p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   CLIENT TRUST
   ============================================ */
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.client-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.client-item:hover {
    border-color: var(--orange);
    color: var(--navy);
}

/* ============================================
   RESOURCES
   ============================================ */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.resource-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
    display: block;
    color: inherit;
}
.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.15);
}
.resource-card .icon {
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 12px;
}
.resource-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
}
.resource-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.resource-card .btn {
    font-size: 13px;
    padding: 8px 20px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    cursor: pointer;
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    padding: 4px 0;
    user-select: none;
}
.faq-question i {
    color: var(--orange);
    transition: transform var(--transition);
    font-size: 18px;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 15px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 12px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(45deg, #000000d1, #000000a6), url(../img/fcta.avif);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
}
.final-cta .container {
    position: relative;
    z-index: 2;
}
.final-cta .heading-lg {
    max-width: 740px;
    margin: 0 auto 16px;
}
.final-cta .body-lg {
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 32px;
}
.final-cta .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    font-size: 15px;
}
.contact-info .contact-detail i {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.contact-form .form-group {
    margin-bottom: 18px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border var(--transition);
    background: var(--white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}
.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 14px;
    max-width: 320px;
    line-height: 1.7;
}
.footer-brand h5 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}
.footer-col h5 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}
.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 14px;
}
.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 14px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: rgba(255, 255, 255, 0.5);
}
.footer-social a:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(249, 115, 22, 0.08);
}

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-actions a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    text-decoration: none;
}
.floating-actions a:hover {
    transform: scale(1.06);
}
.floating-actions .wa {
    background: #25D366;
}
.floating-actions .call {
    background: var(--navy-light);
}
.floating-actions .quote {
    background: var(--orange);
    font-size: 18px;
    font-weight: 700;
}

/* ============================================
   UTILITY
   ============================================ */
.gap-8 {
    gap: 8px;
}
.gap-12 {
    gap: 12px;
}
.gap-16 {
    gap: 16px;
}
.mt-8 {
    margin-top: 8px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mt-40 {
    margin-top: 40px;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .process-timeline::before {
        display: none;
    }
    .infra-grid {
        grid-template-columns: 1fr;
    }
    .infra-main {
        aspect-ratio: 1 / 0.5;
    }
    .infra-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 20px 0 40px;
    }
    .hero-content .body-lg {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .hero-floating-card {
        display: none;
    }
    .hero-product-image {
        max-width: 380px;
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .tech-chips {
        justify-content: center;
    }
    .nav-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .header .nav-cta-group {
        display: none;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .img-logo{
        height: 35px !important;
    }
    :root {
        --header-height: 64px;
    }
    .section {
        padding: 56px 0;
    }
    .section-header {
        margin-bottom: 36px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .product-card .body {
        padding: 14px 16px 18px;
    }
    .product-card .body .actions {
        flex-direction: column;
    }
    .why-grid {
        grid-template-columns: 1fr !important;
    }
    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .resources-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .about-stats {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .about-stat .number {
        font-size: 22px;
    }
    .quality-list {
        grid-template-columns: 1fr;
    }
    .infra-stats {
        grid-template-columns: 1fr;
    }
    .infra-tags {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form {
        padding: 24px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .hero-trust {
        gap: 12px 20px;
    }
    .hero-trust-item {
        font-size: 13px;
    }
    .trust-strip-inner {
        justify-content: flex-start;
        gap: 12px 20px;
    }
    .trust-item {
        font-size: 13px;
    }
    .floating-actions a {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    .floating-actions .quote {
        font-size: 15px;
    }
    .client-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .client-item {
        padding: 16px;
        font-size: 13px;
    }
    .final-cta .buttons {
        flex-direction: column;
        align-items: center;
    }
    .final-cta .buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 420px) {
    .img-logo{
        height: 30px !important;
    }
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .product-card .body h4 {
        font-size: 14px;
    }
    .product-card .body p {
        font-size: 12px;
    }
    .product-card .body .actions .btn {
        font-size: 11px;
        padding: 6px 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .industry-card {
        padding: 16px 12px;
    }
    .industry-card .icon {
        font-size: 24px;
    }
    .industry-card h4 {
        font-size: 14px;
    }
}


/* ============================================
   MARQUEE TRUST STRIP
   ============================================ */
.marquee-trust {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-trust::before,
.marquee-trust::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-trust::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.marquee-trust::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
    white-space: nowrap;
}

.trust-item i {
    color: var(--orange);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.trust-item span {
    color: var(--text-secondary);
    font-weight: 400;
}

/* Keyframes for smooth scrolling */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .marquee-trust {
        padding: 12px 0;
    }

    .certificate-preview{
        height: 240px !important;
    }

    .marquee-track {
        gap: 32px;
        animation-duration: 20s;
    }

    .trust-item {
        font-size: 13px;
        gap: 8px;
    }

    .trust-item i {
        font-size: 16px;
        width: 20px;
    }

    .marquee-trust::before,
    .marquee-trust::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .marquee-track {
        gap: 24px;
        animation-duration: 16s;
    }

    .trust-item {
        font-size: 12px;
        gap: 6px;
    }

    .trust-item i {
        font-size: 14px;
        width: 18px;
    }

    .marquee-trust::before,
    .marquee-trust::after {
        width: 24px;
    }
}

/* ============================================
   REDUCED MOTION PREFERENCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 32px;
        width: 100%;
    }

    .marquee-trust::before,
    .marquee-trust::after {
        display: none;
    }
}

.img-logo{
    height: 50px;
}

.flogo{
    height: 50px;
    /* filter: brightness(8); */
}

.mx-2{
    margin-right: 5px;
}

.bread{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bread>li{
    color: #fff;
    font-size: 15px;
}
.bread>li>a{
    color: #fff;
    font-size: 15px;
}






    /* ==========================================
   CERTIFICATES SECTION
========================================== */

.certificates-section {
    padding: 90px 0;
    overflow: hidden;
}

.certificates-section .section-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.certificates-section .section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
}

.certificates-section .section-header h2 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #0b192c;
}

.certificates-section .section-header p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #667085;
}

/* Grid */

.certificates-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */

.certificate-card {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(11, 25, 44, 0.07);
    transition: all 0.35s ease;
}

.certificate-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(11, 25, 44, 0.12);
}

/* PDF Preview */

.certificate-preview {
    position: relative;
    height: 358px;
    background: #eef1f5;
    overflow: hidden;
}

.certificate-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #ffffff;
}

/* Overlay */

.certificate-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 25, 44, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
    visibility: visible;
}

/* View Button */

.certificate-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 8px;
    background: var(--orange);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.certificate-view:hover {
    background: #008f85;
    color: #ffffff;
    transform: translateY(-2px);
}

.certificate-view span {
    font-size: 18px;
}

/* Content */

.certificate-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
}

.certificate-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 169, 157, 0.1);
    color: var(--orange);
    font-size: 20px;
}

.certificate-content h3 {
    margin: 0 0 7px;
    font-size: 19px;
    font-weight: 700;
    color: #0b192c;
}

.certificate-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #667085;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 767px) {

    

    .certificates-section {
        padding: 65px 0;
    }

    .certificates-section .section-header {
        margin-bottom: 35px;
    }

    .certificates-section .section-header h2 {
        font-size: 30px;
    }

    .certificates-section .section-header p {
        font-size: 15px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .certificate-preview {
        height: 350px;
    }

    .certificate-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    .certificate-preview {
        height: 300px;
    }

    .certificate-content {
        gap: 12px;
    }

    .certificate-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .certificate-content h3 {
        font-size: 17px;
    }

    .certificate-content p {
        font-size: 13px;
    }
}
