/* --- GLOBAL RESET & TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --feature-gap: 28px;
    --feature-padding: 34px;
    --feature-radius: 10px;
    --icon-size: 56px;
    --icon-bg-size: 72px;
    --white: #ffffff;
    --accent-orange: #ff6b35;
    --dark-bg: #1a1a1a;
    --primary-blue: #003264;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.separator-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    margin: 15px auto;
    border-radius: 2px;
}

.separator-line.left-align {
    margin: 15px 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    cursor: pointer;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
}

.navbar nav a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--accent-orange);
}

/* Scrolled State Overrides */
.navbar.scrolled nav a {
    color: #333333;
}

.navbar.scrolled nav a:hover {
    color: var(--accent-orange);
}

.navbar.scrolled .menu-toggle .bar {
    background-color: #333333;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: var(--white);
    margin: 3px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* --- HERO & CAROUSEL --- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    /* Merged from top/left: 0 width/height: 100% */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.8s ease;
    /* Merged transitions */
    transform: translateY(20px) scale(0.95);
    /* Base state from mobile app logic, overridden by hero active */
}

/* Fix for Hero Image Slides vs Background Slides */
.hero-section .slide {
    transform: none;
    /* Hero slides don't scale up like the phone slides */
}

.slide.active {
    opacity: 1;
    z-index: 5;
    transform: translateY(0) scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.85) 40%,
            rgba(0, 0, 0, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--white);
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- STATS BAR --- */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background-color: var(--white);
    width: 85%;
    margin: -50px auto 60px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 50;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 40px 10% 80px 10%;
    text-align: center;
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 36px;
}

.section-header p {
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
}

.features-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.feature-card {
    background: var(--white);
    padding: 34px 28px;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-bottom-color 0.28s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-orange);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.feature-card .icon {
    margin-bottom: 18px;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255, 152, 0, 0.10), rgba(0, 50, 100, 0.04));
}

.feature-card .icon i {
    font-size: 42px;
    color: var(--accent-orange);
    line-height: 1;
}

.feature-card .icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    background: transparent;
}

/* Accessibility for missing images */
.feature-card .icon img[alt=""] {
    outline: 2px dashed rgba(0, 0, 0, 0.03);
}

.feature-card h3 {
    color: var(--text-dark);
    margin: 8px 0 10px;
    font-size: 20px;
    line-height: 1.2;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    flex-grow: 1;
}

/* --- ABOUT US SECTION --- */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sub-heading {
    color: var(--accent-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-text h2 {
    color: var(--primary-blue);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text .description {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.quote-box {
    background: #f4f8fb;
    border-left: 5px solid var(--accent-orange);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.quote-box i {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.quote-box p {
    font-style: italic;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 16px;
}

/* Founders Styling */
.founders-wrapper {
    background-color: #f0f4f8;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.founders-title {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 24px;
}

.founders-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* --- FOUNDERS SECTION (Premium UI) --- */
.founders-section {
    padding: 40px 0;
    background: var(--white);
    text-align: center;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.founder-card {
    background: var(--white);
    width: 340px;
    padding: 35px;
    /* Unified padding */
    border-radius: 18px;
    /* Unified radius */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border-bottom: 5px solid var(--accent-orange);
    text-align: center;
}

.founder-card:hover {
    transform: translateY(-10px);
    /* Unified hover */
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.founder-img img {
    width: 160px;
    /* Unified size */
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-orange);
    margin-bottom: 20px;
}

.founder-info h3,
.founder-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.founder-info span,
.founder-role {
    display: block;
    margin-top: 6px;
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 14px;
}

.founder-bio {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
    min-height: 55px;
}

.founder-socials {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.founder-socials a {
    font-size: 20px;
    color: var(--primary-blue);
    margin: 0 5px;
    transition: 0.3s;
}

.founder-socials a:hover {
    color: var(--accent-orange);
    transform: translateY(-4px);
}

/* --- WHY CHOOSE US SECTION --- */
.why-section {
    padding: 56px 10% 80px 10%;
    background: transparent;
    color: var(--text-dark);
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-heading {
    text-align: center;
    margin-bottom: 34px;
}

.why-heading h2 {
    color: var(--primary-blue);
    font-size: 40px;
    margin: 0 0 10px;
    line-height: 1.05;
    font-weight: 800;
}

.why-heading p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0 auto;
    max-width: 820px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 496px;
    gap: 30px;
    align-items: center;
}

.why-image-card {
    background: var(--white);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 24px 60px rgba(14, 30, 37, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    overflow: hidden;
    transform-origin: center center;
}

.why-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 900ms cubic-bezier(.2, .9, .2, 1);
}

.why-image-card.animate-in img {
    transform: scale(1.02);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(15, 30, 50, 0.06);
    box-shadow: 0 8px 30px rgba(14, 30, 37, 0.04);
    transition: transform .28s ease, box-shadow .28s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(14, 30, 37, 0.08);
}

.f-icon {
    min-width: 54px;
    min-height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 152, 0, 0.08), rgba(0, 50, 100, 0.03));
    font-size: 22px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

#thumb-icon {
    object-fit: contain;
}

.f-body h3 {
    margin: 0;
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 700;
}

.f-body p {
    margin: 6px 0 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.45;
}

.why-section a {
    color: inherit;
}

/* --- CONTACT SECTION (Background Image) --- */
.contact-section {
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    height: 400px;
    position: relative;
    color: var(--white);
    text-align: center;
}

.contact-overlay {
    background: rgba(0, 50, 100, 0.85);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.c-box {
    text-align: center;
}

.c-box i {
    font-size: 30px;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* --- PRODUCT PREVIEW SLIDER --- */
.product-preview-section {
    padding: 56px 10% 80px 10%;
    background: transparent;
    color: var(--text-dark);
}

.product-preview-section .section-header {
    text-align: center;
    margin-bottom: 28px;
}

.product-preview-section .section-header h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 6px;
}

.product-preview-section .section-header p {
    color: var(--text-light);
    font-size: 15px;
}

.preview-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-main {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 480ms ease, transform 480ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    box-sizing: border-box;
}

.preview-slide.active {
    opacity: 1;
    z-index: 2;
    transform: translateZ(0);
}

.preview-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(10, 20, 30, 0.3);
    background: linear-gradient(180deg, #fff, #f6f6f6);
    display: block;
}

.preview-caption {
    position: absolute;
    left: 24px;
    bottom: 18px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform .12s ease, opacity .12s ease;
}

.preview-nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.preview-nav.prev {
    left: 18px;
}

.preview-nav.next {
    right: 18px;
}

.preview-thumbs {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
}

.thumb {
    border: 0;
    background: transparent;
    padding: 6px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 96px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.thumb img {
    width: 88px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    box-shadow: 0 8px 18px rgba(12, 18, 30, 0.08);
}

.thumb .thumb-label {
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumb.active {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(10, 20, 30, 0.08);
    background: rgba(255, 152, 0, 0.05);
}

.thumb:focus {
    outline: 2px solid rgba(0, 50, 100, 0.12);
}

/* Fallback for No JS */
.no-js .preview-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    height: auto;
    padding: 12px;
}

.no-js .preview-main .preview-slide {
    position: static;
    opacity: 1;
    transform: none;
}

/* --- INTEGRATIONS SECTION --- */
.integrations-section {
    padding: 80px 10%;
    background: #f9fafc;
    text-align: center;
}

.int-header h2 {
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: 700;
}

.int-header p {
    margin-top: 10px;
    font-size: 18px;
    color: var(--text-light);
}

.integrations-grid {
    margin-top: 50px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.int-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.int-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid var(--accent-orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.int-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.int-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.int-card h3 {
    margin-bottom: 9px;
    font-size: 20px;
    color: var(--primary-blue);
}

.int-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* --- MOBILE APP SECTION --- */
.mobile-app-section {
    padding: 80px 10%;
    background: #f7f9fc;
}

.mobile-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.iphone-frame {
    width: 300px;
    height: 620px;
    background: #000;
    border-radius: 40px;
    padding: 14px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.app-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
}

.app-caption.show {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 32px;
}

.app-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-badges .badge {
    height: 46px;
    transition: transform .2s ease;
}

.app-badges .badge:hover {
    transform: scale(1.07);
}

/* --- PORTALS SECTION --- */
.portals-section {
    padding: 80px 4%;
    background-color: var(--bg-light);
    text-align: center;
}

.portals-section .section-header h2 {
    color: var(--primary-blue);
    font-size: 36px;
}

.portals-section .section-header p {
    color: var(--text-light);
    font-size: 17px;
    margin-top: 10px;
}

.tab-controls {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    font-weight: 600;
    padding: 12px 26px;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.25);
}

.tab-content {
    position: relative;
    min-height: 280px;
}

.portal-pane {
    display: none;
    transform: translateY(20px);
    transition: 0.45s ease;
    pointer-events: none;
}

.portal-pane.active {
    display: block;
    transform: translateY(0);
    pointer-events: auto;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.portal-feature-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 4px solid transparent;
    transition: 0.3s ease;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease, border-bottom .3s ease;
}

.portal-feature-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid var(--accent-orange);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.10);
}

.portal-feature-card i {
    font-size: 36px;
    color: var(--accent-orange);
    margin-bottom: 14px;
}

.portal-feature-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.portal-feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

.portal-pane.active .portal-feature-card {
    opacity: 1;
    transform: translateY(0);
}

/* --- WHITEPAPER SECTION --- */
.whitepaper-section {
    padding: 64px 10% 72px 10%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    color: var(--text-dark);
}

.whitepaper-inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 36px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.wp-cover {
    background: linear-gradient(180deg, rgba(0, 50, 100, 0.03), rgba(255, 152, 0, 0.02));
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(14, 30, 37, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    overflow: hidden;
}

.wp-cover img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2, .9, .2, 1);
}

.wp-cover:hover img {
    transform: translateY(-6px) scale(1.02);
}

.wp-copy h2 {
    color: var(--primary-blue);
    font-size: 30px;
    margin-bottom: 10px;
}

.wp-copy .lead {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 18px;
}

.wp-highlights {
    list-style: none;
    padding: 0;
    margin: 6px 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.wp-highlights li {
    position: relative;
    padding-left: 28px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.wp-highlights li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--accent-orange), #ffb86b);
    box-shadow: 0 4px 14px rgba(255, 152, 0, 0.18);
}

.wp-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.wp-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wp-form input[type="email"] {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e6e9ee;
    width: 300px;
    font-size: 14px;
    background: #fff;
}

.wp-form .wp-btn {
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 700;
}

.wp-outline {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 50, 100, 0.08);
    color: var(--primary-blue);
    text-decoration: none;
    background: transparent;
    font-weight: 700;
}

.wp-feedback {
    margin-top: 8px;
    font-size: 14px;
    color: #2a7a2a;
    font-weight: 600;
}

.small.muted {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 10px;
}

/* --- CONTACT US FORM SECTION --- */
.contact-us-section {
    padding: 80px 10%;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-blue);
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.contact-details .detail-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-details i {
    font-size: 20px;
    color: var(--accent-orange);
}

.contact-form {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid #e1e1e1;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

.form-btn {
    width: 100%;
    margin-top: 10px;
    font-size: 18px;
}

.form-status {
    margin-top: 15px;
    font-weight: 600;
    font-size: 15px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #111;
    color: #bbb;
    padding: 60px 0 20px 0;
    text-align: center;
}

.footer-container h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-links {
    margin: 30px 0;
}

.footer-links a {
    color: #bbb;
    margin: 0 15px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-copy {
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 20px;
    width: 80%;
    margin: 0 auto;
}

/* --- ANIMATIONS --- */
.reveal,
.animate-hidden,
.animate-on-scroll,
.animate-contact,
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease;
}

.animate-hidden {
    transform: translateY(18px) scale(0.995);
    transition: opacity 560ms cubic-bezier(.2, .9, .2, 1), transform 560ms cubic-bezier(.2, .9, .2, 1);
}

.reveal.active,
.animate-in,
.animate-on-scroll.in-view,
.animate-contact.visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.fade-in {
    animation: fadeInMove .9s ease-out forwards;
}

.fade-in:nth-child(2) {
    animation-delay: .25s;
}

@keyframes fadeInMove {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   MEDIA QUERIES (Consolidated at Bottom)
   ========================================= */

/* Max-Width 1200px */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Max-Width 1100px */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: 1fr 420px;
    }

    .why-image-card {
        min-height: 360px;
    }
}

/* Max-Width 992px */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .separator-line.left-align {
        margin: 15px auto;
    }

    .founders-wrapper {
        margin-top: 40px;
    }
}

/* Max-Width 980px */
@media (max-width: 980px) {
    .preview-main {
        height: 440px;
    }

    .thumb img {
        width: 76px;
        height: 48px;
    }

    .whitepaper-inner {
        grid-template-columns: 1fr;
    }

    .wp-cover {
        order: 0;
        min-height: 260px;
    }

    .wp-copy {
        order: 1;
    }

    .wp-form input[type="email"] {
        width: 100%;
        max-width: 420px;
    }
}

/* Max-Width 900px */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card {
        min-height: 200px;
        padding: 28px 20px;
    }

    .mobile-app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-badges {
        justify-content: center;
    }

    .iphone-frame {
        width: 260px;
        height: 520px;
    }

    .contact-us-section {
        padding: 40px 10%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2,
    .contact-details {
        text-align: center;
    }

    .detail-box {
        justify-content: center;
    }

    .contact-form {
        padding: 4px;
    }
}

/* Max-Width 880px */
@media (max-width: 880px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image-card {
        order: 0;
        min-height: 300px;
    }

    .why-features {
        order: 1;
        margin-top: 18px;
    }

    .why-heading h2 {
        font-size: 32px;
    }
}

/* Max-Width 768px (Mobile Menu Trigger) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px;
        background: var(--dark-bg);
    }

    .menu-toggle {
        display: flex;
    }

    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-container.active {
        max-height: 400px;
    }

    .navbar nav {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .navbar nav a {
        margin: 15px 0;
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
        width: 90%;
    }

    /* .portals-section {
        padding: 40px 2%;
        background-color: var(--bg-light);
        text-align: center;
        min-height: 120vh;
        max-height: auto;
    } */


    .features-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        height: 480px;
    }
}

/* Max-Width 640px */
@media (max-width: 640px) {
    .preview-main {
        height: 320px;
        border-radius: 12px;
    }

    .preview-nav {
        width: 38px;
        height: 38px;
    }

    .thumb img {
        width: 68px;
        height: 44px;
    }

    .preview-thumbs {
        gap: 8px;
    }
}

/* Max-Width 480px */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 22px 18px;
        min-height: auto;
    }

    .feature-card .icon {
        width: 56px;
        height: 56px;
    }

    .feature-card .icon img {
        width: 36px;
        height: 36px;
    }

    .feature-card .icon i {
        font-size: 36px;
    }
}