/* --------------------------------------------------
   SwiftBeam - Modern Corporate Stylesheet
   Design System: Logo-Inspired Amber & Bronze Corporate Palette
   Official Brand Colors: #F7941D (Warm Gold Amber) & #754C29 (Bronze)
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* SwiftBeam Logo-Inspired Color Palette */
    --color-brand-orange: #f7941d;
    /* Primary Brand Gold/Orange from Logo */
    --color-brand-hover: #e07e0c;
    --color-brand-bronze: #754c29;
    /* Secondary Corporate Bronze from Logo */
    --color-brand-light: #fff7ed;
    /* Soft Amber Glow Fill */

    --color-bg-main: #fafaf9;
    --color-bg-card: #ffffff;
    --color-bg-dark: #0f141c;
    /* Deep Midnight Navy/Charcoal */
    --color-bg-dark-surface: #19202c;
    --color-bg-alt: #f5f5f4;

    --color-text-main: #1c1917;
    --color-text-body: #44403c;
    --color-text-muted: #78716c;
    --color-text-light: #fafaf9;

    --color-border: #e7e5e4;
    --color-border-light: #f5f5f4;

    --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.05);
    --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.06);
    --shadow-lg: 0 12px 32px rgba(28, 25, 23, 0.08);
    --shadow-hover: 0 20px 40px rgba(247, 148, 29, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none !important;
    transition: var(--transition);
}

/* Standard Section Spacing */
section {
    padding: 100px 0;
    position: relative;
}

/* Section Headings */
.heading {
    margin-bottom: 50px;
}

.heading .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(247, 148, 29, 0.12);
    color: #d97706;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    border: 1px solid rgba(247, 148, 29, 0.25);
}

.heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.25;
}

.heading p.sub-heading {
    font-size: 18.5px;
    color: var(--color-text-muted);
    max-width: 820px;
    margin-top: 12px;
    font-weight: 400;
    line-height: 1.7;
}

/*--------------------------------------------------
  1. Header & Navigation (Logo-Inspired Sleek)
--------------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.3s ease;
}

.navbar {
    background: rgba(15, 20, 28, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0 !important;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 20, 28, 0.98) !important;
    padding: 10px 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(247, 148, 29, 0.25);
}

.navbar-brand img {
    height: 52px;
    width: auto;
    filter: none !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.03);
    opacity: 0.95;
    filter: none !important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-nav .nav-item {
    margin-left: 10px;
    white-space: nowrap !important;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #d6d3d1 !important;
    padding: 7px 14px !important;
    border-radius: var(--radius-sm);
    white-space: nowrap !important;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
    display: inline-block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .dropdown-menu {
    border: 1px solid rgba(247, 148, 29, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
    padding: 10px;
    margin-top: 14px;
    background: rgba(25, 32, 44, 0.96);
    backdrop-filter: blur(16px);
}

.navbar-nav .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    color: #d6d3d1;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    white-space: nowrap !important;
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(247, 148, 29, 0.15);
    color: var(--color-brand-orange);
}

/* Logo-Inspired Modern Sleek Contact Us Button */
.nav-cta-btn {
    background: rgba(247, 148, 29, 0.15) !important;
    border: 1px solid rgba(247, 148, 29, 0.5) !important;
    color: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 12px rgba(247, 148, 29, 0.15);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-cta-btn:hover {
    background: var(--color-brand-orange) !important;
    border-color: var(--color-brand-orange) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(247, 148, 29, 0.45) !important;
    transform: translateY(-1px);
}

.nav-cta-btn i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.nav-cta-btn:hover i {
    transform: translateX(3px);
}

/*--------------------------------------------------
  2. Hero / Slider Section (Logo Palette)
--------------------------------------------------*/
.slider {
    min-height: 100vh;
    background: #070a10;
    background-image:
        radial-gradient(circle at 50% 30%, rgba(247, 148, 29, 0.08) 0%, transparent 60%),
        linear-gradient(rgba(7, 10, 16, 0.65), rgba(7, 10, 16, 0.85));
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 160px 0 140px;
    overflow: hidden;
}

/* Hero Fullscreen Video Background */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
}


/* Subtle tech grid overlay effect - disabled for clean minimal aesthetic */
.slider::before {
    display: none;
}

/* Multi-stop clean dark gradient mask at bottom of hero */
.slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom,
            rgba(15, 20, 28, 0) 0%,
            rgba(15, 20, 28, 0.7) 60%,
            #0f141c 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-bottom-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 75px;
}

.hero-content {
    color: #ffffff;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(247, 148, 29, 0.3);
    border-radius: var(--radius-full);
    color: #f5d0a9;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-badge-pill .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-brand-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-brand-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(247, 148, 29, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
    }
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title .highlight-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f7941d 60%, #e07e0c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: #a8a29e;
    max-width: 720px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.hero-card {
    background: linear-gradient(145deg, rgba(22, 28, 38, 0.75) 0%, rgba(12, 16, 24, 0.85) 100%);
    border: 1px solid rgba(247, 148, 29, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand-orange) 0%, rgba(247, 148, 29, 0.2) 100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.hero-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.18) 0%, rgba(247, 148, 29, 0) 70%);
    pointer-events: none;
    transition: all 0.5s ease;
    border-radius: 50%;
}

.hero-card:hover {
    background: linear-gradient(145deg, rgba(28, 36, 50, 0.85) 0%, rgba(15, 20, 30, 0.92) 100%);
    border-color: rgba(247, 148, 29, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(247, 148, 29, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-card:hover .hero-card-glow {
    transform: scale(1.4);
    opacity: 1;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.28) 0%, rgba(247, 148, 29, 0) 70%);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(247, 148, 29, 0.22) 0%, rgba(247, 148, 29, 0.05) 100%);
    border: 1px solid rgba(247, 148, 29, 0.35);
    border-radius: 12px;
    color: var(--color-brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(247, 148, 29, 0.12);
    transition: all 0.3s ease;
}

.hero-card:hover .card-icon {
    background: var(--color-brand-orange);
    color: #ffffff;
    border-color: var(--color-brand-orange);
    box-shadow: 0 8px 20px rgba(247, 148, 29, 0.4);
    transform: scale(1.06) rotate(3deg);
}

.card-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(247, 148, 29, 0.1);
    border: 1px solid rgba(247, 148, 29, 0.25);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-orange);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-brand-orange);
    box-shadow: 0 0 6px var(--color-brand-orange);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
        box-shadow: 0 0 10px var(--color-brand-orange);
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.hero-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.text-gradient-amber {
    background: linear-gradient(135deg, #f7941d 0%, #ffb75e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.card-tag {
    font-size: 12px;
    font-weight: 500;
    color: #a8a29e;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-tag i {
    color: var(--color-brand-orange);
    font-size: 11px;
}

.hero-actions {
    margin-top: 44px;
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f7941d 0%, #e07e0c 100%);
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(247, 148, 29, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #ff9f2a 0%, #f7941d 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(247, 148, 29, 0.55);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Executive Stats Bar overlapping Hero & About */
.hero-stats-bar {
    margin-top: 50px;
    margin-bottom: -55px;
    position: relative;
    z-index: 10;
    background: rgba(19, 25, 35, 0.95);
    border: 1px solid rgba(247, 148, 29, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 22px 36px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 30px rgba(247, 148, 29, 0.12);
    transition: var(--transition);
}

.hero-stats-bar:hover {
    border-color: rgba(247, 148, 29, 0.6);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(247, 148, 29, 0.2);
    transform: translateY(-2px);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.hero-stat-item i {
    color: var(--color-brand-orange);
    font-size: 18px;
}

/*--------------------------------------------------
  3. About Us Section
--------------------------------------------------*/
.about-us {
    background: #ffffff;
    padding-top: 110px;
    padding-bottom: 100px;
    position: relative;
    z-index: 4;
}

.about-card-wrapper {
    background: var(--color-bg-main);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    padding: 44px 38px;
    box-shadow: 0 10px 30px rgba(28, 25, 23, 0.04);
}

.about-intro-text {
    font-size: 17.5px;
    line-height: 1.75;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.why-swiftbeam-section {
    border-top: 1px dashed var(--color-border);
    padding-top: 24px;
}

.why-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-item:hover {
    border-color: rgba(247, 148, 29, 0.4);
    box-shadow: 0 4px 14px rgba(247, 148, 29, 0.12);
    transform: translateY(-2px);
}

.why-item .check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.15);
    color: var(--color-brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.about-img-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(28, 25, 23, 0.10);
    width: 100%;
    background: #ffffff;
}

.about-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-container:hover img {
    transform: scale(1.02);
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 20, 28, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(247, 148, 29, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 0 20px rgba(247, 148, 29, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    transition: var(--transition);
}

.about-img-container:hover .about-experience-badge {
    transform: translateY(-4px);
    border-color: rgba(247, 148, 29, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(247, 148, 29, 0.25);
}

.about-experience-badge .badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(247, 148, 29, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-orange);
    font-size: 20px;
    flex-shrink: 0;
}

.about-experience-badge h4 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.about-experience-badge p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #d6d3d1;
    font-weight: 500;
}

/*--------------------------------------------------
  4. Telecom Services Section
--------------------------------------------------*/
.our-services {
    background: var(--color-bg-main);
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(247, 148, 29, 0.4);
}

.service-icon-wrapper {
    width: 84px;
    height: 84px;
    background: rgba(247, 148, 29, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-brand-orange);
}

.service-icon-wrapper img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.service-card h2,
.service-card h3 {
    font-size: 23px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 14px;
    line-height: 1.35;
}

.service-card p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--color-text-body);
    margin: 0;
}

/*--------------------------------------------------
  5. Digital & Analytics & Products Section
--------------------------------------------------*/
.product-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(247, 148, 29, 0.4);
}

.product-logo-box {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 28px;
    border: 1px solid var(--color-border-light);
}

.product-logo-box img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

.product-card p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--color-text-body);
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d97706;
    font-weight: 700;
    font-size: 16px;
}

.product-link-btn:hover {
    color: var(--color-brand-orange);
    gap: 12px;
}

/*--------------------------------------------------
  6. Achievements / Counter Section
--------------------------------------------------*/
.some-facts {
    background: var(--color-bg-dark);
    color: #ffffff;
    position: relative;
    padding: 110px 0;
}

.section-top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.section-top-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
}

.section-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.section-bottom-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
}

.fact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.fact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(247, 148, 29, 0.35);
    transform: translateY(-4px);
}

.fact-item span.fact-icon {
    font-size: 34px;
    color: var(--color-brand-orange);
    margin-bottom: 16px;
    display: inline-block;
}

.fact-item h3,
.fact-item .iso-number {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.fact-item .line {
    width: 32px;
    height: 3px;
    background: var(--color-brand-orange);
    margin: 12px auto;
    border-radius: var(--radius-full);
}

.fact-item h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: #d6d3d1;
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (min-width: 992px) {
    .some-facts .row>[class*="col-"] {
        flex: 1 0 20%;
        max-width: 20%;
    }
}

/*--------------------------------------------------
  7. Leadership Team / Stakeholders Section
--------------------------------------------------*/
.testimonials {
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .testimonials .container {
        max-width: 1240px;
    }
}

.team-member-card {
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(247, 148, 29, 0.4);
    background: #ffffff;
}

.team-avatar-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.team-avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: block;
}

.team-member-card:hover .team-avatar-wrapper img {
    transform: scale(1.05);
    border-color: rgba(247, 148, 29, 0.4);
}

.team-member-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 6px;
}

.team-member-card .role-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(247, 148, 29, 0.12);
    color: #d97706;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(247, 148, 29, 0.2);
}

.team-member-card p.quote {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 0;
    position: relative;
}

/*--------------------------------------------------
  8. Our Client & Our Partner Sections
--------------------------------------------------*/
.our-blog,
.our-Partner {
    background: var(--color-bg-main);
}

.partner-logo-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-brand-orange);
}

.partner-logo-card img {
    max-height: 70px;
    max-width: 85%;
    object-fit: contain;
    transition: var(--transition);
}

.partner-cta-card {
    background: linear-gradient(135deg, rgba(247, 148, 29, 0.08) 0%, #ffffff 100%);
    border: 2px dashed rgba(247, 148, 29, 0.4);
    border-radius: var(--radius-md);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition);
}

.partner-cta-card:hover {
    border-color: var(--color-brand-orange);
    background: rgba(247, 148, 29, 0.12);
    transform: translateY(-4px);
}

.partner-cta-card p {
    font-size: 17.5px;
    font-weight: 700;
    color: #d97706;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/*--------------------------------------------------
  9. Contact Us Section
--------------------------------------------------*/
.contact-us {
    background: #ffffff;
}

.contact-card {
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-brand-orange);
}

.contact-card .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-card .icon-box {
    width: 48px;
    height: 48px;
    background: rgba(247, 148, 29, 0.12);
    color: #d97706;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card .info-content h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-card .info-content p,
.contact-card .info-content a {
    font-size: 16.5px;
    color: var(--color-text-main);
    font-weight: 500;
    margin: 0;
    line-height: 1.65;
}

.contact-card .info-content a:hover {
    color: var(--color-brand-orange);
}

/*--------------------------------------------------
  10. Footer Section
--------------------------------------------------*/
footer.footer {
    background: var(--color-bg-dark);
    color: #ffffff;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social .icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.footer .social .icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer .social .icons a svg {
    transition: var(--transition);
    fill: #ffffff;
}

.footer .social .icons a:hover {
    background: var(--color-brand-orange);
    border-color: var(--color-brand-orange);
    transform: translateY(-3px);
}

.footer-copy {
    font-size: 15px;
    color: #a8a29e;
    margin: 0;
    text-align: center;
}

/*--------------------------------------------------
  11. Mobile & Comprehensive Responsive Optimization
--------------------------------------------------*/

/* Prevent horizontal overflow across all devices */
html,
body {
    overflow-x: hidden !important;
    max-width: 100%;
}

/* Large Devices & Laptops (max-width: 1199.98px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-cards-grid {
        max-width: 100%;
    }
}

/* Medium Devices & Tablets (max-width: 991.98px) */
@media (max-width: 991.98px) {
    header {
        padding: 0;
    }

    .navbar {
        padding: 10px 0 !important;
    }

    .navbar-brand img {
        height: 38px;
    }

    .navbar-collapse {
        background: rgba(15, 20, 28, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 24px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        margin-top: 10px;
        border: 1px solid rgba(247, 148, 29, 0.2);
    }

    .navbar-nav .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .navbar-nav .nav-link {
        padding: 8px 12px !important;
        font-size: 15px;
    }

    .nav-cta-btn {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .slider {
        padding: 125px 0 90px;
        min-height: auto;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.18;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .hero-stats-bar {
        margin-bottom: -35px;
        padding: 16px 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .about-us {
        padding-top: 80px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-bottom-divider svg {
        height: 45px;
    }
}

/* Small Tablets & Mobile Devices (max-width: 767.98px) */
@media (max-width: 767.98px) {
    section {
        padding: 70px 0;
    }

    .slider {
        padding: 110px 0 80px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15.5px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-stats-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-bottom: -30px;
        padding: 14px 18px;
        border-radius: 14px;
    }

    .hero-stat-item {
        font-size: 13.5px;
    }

    .heading h2 {
        font-size: 30px;
    }

    .heading p.sub-heading {
        font-size: 16px;
    }

    .about-card-wrapper {
        padding: 30px 24px;
    }

    .about-img-container {
        min-height: 280px;
        margin-top: 10px;
    }

    .about-experience-badge {
        bottom: 14px;
        left: 14px;
        right: 14px;
        padding: 12px 16px;
        gap: 12px;
    }

    .about-experience-badge h4 {
        font-size: 18px;
    }

    .about-experience-badge p {
        font-size: 12px;
    }

    .partner-logo-card {
        height: 120px;
        padding: 18px;
    }

    .partner-logo-card img {
        max-height: 55px;
    }

    .partner-cta-card {
        height: 120px;
    }

    .partner-cta-card p {
        font-size: 15px;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .contact-map-wrapper iframe {
        height: 250px;
    }
}

/* Extra Small Phones (max-width: 575.98px) */
@media (max-width: 575.98px) {

    .container,
    .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    section {
        padding: 55px 0;
    }

    .slider {
        padding: 100px 0 75px;
    }

    .hero-title {
        font-size: 27px;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 14.5px;
        padding: 0 4px;
    }

    .hero-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .hero-card .card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .hero-card-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .card-badge-pill {
        font-size: 10px;
        padding: 4px 10px;
    }

    .card-tag {
        font-size: 11px;
    }

    .heading h2 {
        font-size: 25px;
    }

    .heading p.sub-heading {
        font-size: 14.5px;
    }

    .about-us {
        padding-top: 60px;
    }

    .about-card-wrapper {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .about-intro-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .why-title {
        font-size: 17px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-item {
        padding: 10px 14px;
        font-size: 13.5px;
    }

    .service-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .service-card h2 {
        font-size: 18.5px;
    }

    .service-card p {
        font-size: 14px;
    }

    .product-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .product-logo-box {
        height: 80px;
        padding: 14px;
    }

    .product-link-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .fact-item {
        padding: 18px 10px;
    }

    .fact-item .fact-icon {
        font-size: 28px;
    }

    .fact-item h3 {
        font-size: 24px;
    }

    .fact-item h4 {
        font-size: 12px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-member-card {
        padding: 28px 20px;
        border-radius: 20px;
        text-align: center;
    }

    .team-avatar-wrapper {
        width: 110px;
        height: 110px;
        margin: 0 auto 16px;
    }

    .team-member-card h3 {
        font-size: 19.5px;
        margin-bottom: 6px;
    }

    .team-member-card .role-badge {
        font-size: 12.5px;
        padding: 5px 14px;
        margin-bottom: 14px;
        white-space: normal;
    }

    .team-member-card .quote {
        font-size: 14px;
        line-height: 1.65;
    }

    .partner-logo-card {
        height: 100px;
        padding: 12px;
        border-radius: 12px;
    }

    .partner-logo-card img {
        max-height: 44px;
        max-width: 92%;
    }

    .partner-cta-card {
        height: 100px;
        border-radius: 12px;
    }

    .partner-cta-card p {
        font-size: 13.5px;
        gap: 6px;
    }

    .contact-card {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .contact-card .info-item {
        gap: 14px;
        margin-bottom: 22px;
    }

    .contact-card .icon-box {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .contact-card .info-content h4 {
        font-size: 13px;
    }

    .contact-card .info-content p,
    .contact-card .info-content a {
        font-size: 14px;
    }

    .contact-map-wrapper iframe {
        height: 220px;
    }

    footer.footer {
        padding: 40px 0 30px;
    }

    .footer-copy {
        font-size: 13.5px;
    }

    .fab-whatsapp {
        bottom: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .fab-back-top {
        bottom: 74px;
        right: 18px;
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .hero-bottom-divider svg {
        height: 30px;
    }
}

/* Ultra Small Phones (max-width: 375.98px) */
@media (max-width: 375.98px) {
    .hero-title {
        font-size: 24px;
    }

    .heading h2 {
        font-size: 22px;
    }

    .fact-item h3 {
        font-size: 20px;
    }
}

/*--------------------------------------------------
  Scroll Fade-In Animations
--------------------------------------------------*/
.fade-in-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay helpers */
.fade-delay-1 {
    transition-delay: 0.1s;
}

.fade-delay-2 {
    transition-delay: 0.2s;
}

.fade-delay-3 {
    transition-delay: 0.3s;
}

.fade-delay-4 {
    transition-delay: 0.4s;
}

.fade-delay-5 {
    transition-delay: 0.5s;
}

.fade-delay-6 {
    transition-delay: 0.6s;
}

/*--------------------------------------------------
  Active Nav Highlight
--------------------------------------------------*/
.navbar-nav .nav-link.active-section {
    color: var(--color-brand-orange) !important;
}

/*--------------------------------------------------
  Contact Map Wrapper
--------------------------------------------------*/
.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(28, 25, 23, 0.08);
    border: 1px solid var(--color-border);
}

/*--------------------------------------------------
  Floating Action Buttons (WhatsApp + Back-to-Top)
--------------------------------------------------*/
.fab-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.fab-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.fab-back-top {
    position: fixed;
    bottom: 94px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: rgba(15, 20, 28, 0.88);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.fab-back-top:hover {
    background: var(--color-brand-orange);
    border-color: var(--color-brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(247, 148, 29, 0.4);
}