@import url(header.css);
@import url(home.css);
@import url(about.css);
@import url(raisecapital.css);
@import url(branding.css);
@import url(crowdfunding.css);
@import url(digitalmarketing.css);
@import url(modeldevelopment.css);
@import url(service.css);
@import url(investor.css);
@import url(websitesolutions.css);
/* ==========================================================================
   LIFT & LAUNCH SEED VENTURES - APPDEV & CONTACT STYLES (appdev.css)
   ========================================================================== */

/* --- RESET & CORE TOKENS --- */
:root {
    --primary: #FF6A00;
    --primary-hover: #e05c00;
    --primary-glow: rgba(255, 106, 0, 0.35);
    --secondary: #3ab68d;
    --secondary-hover: #2e9673;
    --accent-blue: #1E88E5;
    --accent-purple: #8B5CF6;
    --accent-gold: #F59E0B;
    --dark: #0f172a;
    --dark-surface: #1e293b;
    --dark-card: rgba(30, 41, 59, 0.7);
    --text-main: #1f2937;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --bg-header: #F8EBD6;
    --border-color: #e2e8f0;
    --border-subtle: #f1f5f9;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 35px rgba(255, 106, 0, 0.25);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
}

p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

/* --- BACKGROUND ANIMATION (App & Tech Themed) --- */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
    animation: floatFullPage linear infinite;
    color: #673AB7;
    font-size: 30px;
}

.bg-shape:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-duration: 25s;
    font-size: 24px;
    color: #FF6A00;
}

.bg-shape:nth-child(2) {
    top: 25%;
    right: 12%;
    font-size: 60px;
    animation-duration: 35s;
    animation-delay: -5s;
    color: #111827;
    opacity: 0.03;
}

.bg-shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: -10s;
    color: #00BCD4;
}

.bg-shape:nth-child(4) {
    bottom: 35%;
    right: 8%;
    animation-duration: 32s;
    color: #FF6A00;
    opacity: 0.04;
}

@keyframes floatFullPage {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 40px) rotate(-10deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* --- HEADER & NAVIGATION STYLES --- */
.header {
    background: #F8EBD6;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 72px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo img:hover {
    transform: scale(1.03);
}

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

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
}

.nav a i {
    font-size: 14px;
    opacity: 0.75;
    transition: 0.3s;
}

.nav a:hover i,
.nav a.active i {
    transform: translateY(-2px) scale(1.1);
    color: #FF6A00;
    opacity: 1;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 0;
    background-color: #FF6A00;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a.active {
    color: #FF6A00;
    font-weight: 600;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav .nav-dropdown-content a {
    margin: 0;
    padding: 10px 20px;
    display: block;
    width: 100%;
    font-size: 14px;
    color: #4b5563;
}

.nav .nav-dropdown-content a::after {
    display: none;
}

.nav .nav-dropdown-content a:hover {
    background-color: #fff7f2;
    color: #FF6A00;
    padding-left: 24px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons .btn-login {
    padding: 8px 22px;
    border: 1.5px solid #d1d5db;
    background: transparent;
    border-radius: 30px;
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.auth-buttons .btn-login:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #111827;
    transform: translateY(-1px);
}

.auth-buttons .btn-signup {
    background: #FF6A00;
    color: white !important;
    padding: 9px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.25);
    transition: 0.3s;
}

.auth-buttons .btn-signup:hover {
    background: #e05c00;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 106, 0, 0.35);
}

.nav .auth-buttons {
    display: none;
}

.hamburger-menu {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.hamburger-menu:hover,
.hamburger-menu:focus-visible {
    background: #FFF7ED;
    border-color: #FDBA74;
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.18);
}

.hamburger-menu i {
    font-size: 26px;
    color: #1e293b;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, color 0.2s ease;
}

.hamburger-menu:hover i,
.hamburger-menu:focus-visible i {
    color: #FF6A00;
}

.hamburger-menu .bi-x-lg {
    display: none;
    font-size: 20px;
}

.hamburger-menu.active {
    background: #FFF7ED;
    border-color: #FDBA74;
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.18);
}

.hamburger-menu.active .bi-list {
    display: none;
}

.hamburger-menu.active .bi-x-lg {
    display: flex;
    color: #FF6A00;
    animation: iconPop 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes iconPop {
    from {
        opacity: 0;
        transform: rotate(-90deg) scale(0.7);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* --- MOBILE BACKDROP OVERLAY --- */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* --- FLOATING SATELLITE BADGES (HOME BANNER) --- */
.floating-sat-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    z-index: 4;
    max-width: calc(100% - 20px);
    white-space: nowrap;
    animation: floatSlow 4s ease-in-out infinite;
    pointer-events: none;
    box-sizing: border-box;
}

.floating-sat-top {
    top: 10px;
    right: 8px;
}

.floating-sat-bottom {
    bottom: 10px;
    left: 8px;
    animation-delay: -2s;
    display: none;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* --- COMMON BUTTONS & PILLS --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FF6A00;
    color: #ffffff !important;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 106, 0, 0.25);
    transition: 0.3s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #e05c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 106, 0, 0.38);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #111827 !important;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #FF6A00 !important;
    transform: translateY(-2px);
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 106, 0, 0.12);
    color: #FF6A00;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* --- CONTACT HERO SECTION --- */
.contact-hero {
    position: relative;
    padding: 90px 0 100px;
    background: radial-gradient(circle at 85% 20%, rgba(255, 106, 0, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 15% 75%, rgba(0, 188, 212, 0.15) 0%, transparent 45%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-hero h1 .highlight-text {
    background: linear-gradient(135deg, #FF6A00 0%, #FF9E53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-hero p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.65;
}

.hero-response-time {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #e2e8f0;
}

.hero-response-time i {
    color: #3ab68d;
    font-size: 16px;
}

/* --- CONTACT CHANNELS / CARDS SECTION --- */
.contact-channels-section {
    padding: 80px 0 60px;
    background: #ffffff;
    position: relative;
    z-index: 3;
    margin-top: -40px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.channel-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border-color: #ffd8c2;
}

.channel-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.channel-card:nth-child(1) .channel-icon {
    background: #fff0e6;
    color: #FF6A00;
}

.channel-card:nth-child(2) .channel-icon {
    background: #e6f7f1;
    color: #3ab68d;
}

.channel-card:nth-child(3) .channel-icon {
    background: #e9f2fb;
    color: #1E88E5;
}

.channel-card:nth-child(4) .channel-icon {
    background: #f3ebf9;
    color: #673AB7;
}

.channel-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.channel-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.channel-link {
    font-size: 14px;
    font-weight: 600;
    color: #FF6A00;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.channel-link:hover {
    color: #e05c00;
    transform: translateX(4px);
}

/* --- MAIN CONTACT & INQUIRY FORM SECTION --- */
.contact-main-section {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: flex-start;
}

.contact-form-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-box > p {
    margin-bottom: 30px;
    color: #64748b;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: #fdfdfd;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #111827;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #FF6A00;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Contact Details Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h3 i {
    color: #FF6A00;
}

.office-item {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.office-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.office-item h4 {
    font-size: 16px;
    color: #111827;
    margin-bottom: 4px;
}

.office-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.trust-badge-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.trust-badge-card h3 {
    color: #ffffff;
}

.trust-badge-card p {
    color: #cbd5e1;
    font-size: 14px;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin-top: 18px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 12px;
}

.trust-list li i {
    color: #3ab68d;
    font-size: 16px;
}

/* --- QUICK FAQ ACCORDION --- */
.contact-faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 12px;
}

.faq-accordion-wrap {
    max-width: 800px;
    margin: 0 auto;
}

/* .accordion-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: 0.2s;
}

.accordion-item:hover {
    border-color: #cbd5e1;
}

.accordion-header {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.accordion-header:hover {
    color: #FF6A00;
}

.accordion-header .plus-icon {
    font-size: 18px;
    color: #FF6A00;
    transition: transform 0.2s;
}

.accordion-item.active .accordion-header .plus-icon {
    transform: rotate(45deg);
}

.accordion-body {
    display: none;
    padding: 0 22px 18px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
}

.accordion-item.active .accordion-body {
    display: block;
} */

/* --- FOOTER STYLES --- */
.footer {
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 42px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: #64748b;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 16px;
    color: #111827;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #64748b;
}

.footer-col ul li a:hover {
    color: #FF6A00;
    padding-left: 4px;
}

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 24px;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #94a3b8;
}

/* --- ANIMATIONS --- */
.animate-hidden {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.animate-hidden {
    transform: translateY(30px);
}

.fade-right.animate-hidden {
    transform: translateX(-30px);
}

.fade-left.animate-hidden {
    transform: translateX(30px);
}

.animate-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.stagger-children.animate-active>*,
.animate-active .stagger-children>* {
    opacity: 1;
    transform: translateY(0);
}


/* Appdevelopment css start */
/* --- RESET & CORE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* --- BACKGROUND ANIMATION (App Themed) --- */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
    animation: floatFullPage linear infinite;
    color: #673AB7;
    font-size: 30px;
}

.bg-shape:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-duration: 25s;
    content: 'ðŸ“±';
    font-size: 20px;
}

.bg-shape:nth-child(2) {
    top: 25%;
    right: 12%;
    font-size: 60px;
    animation-duration: 35s;
    animation-delay: -5s;
    color: #333;
    opacity: 0.03;
}

.bg-shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: -10s;
    color: #00BCD4;
}

.bg-shape:nth-child(4) {
    bottom: 35%;
    right: 8%;
    animation-duration: 32s;
    color: #FF6A00;
    opacity: 0.04;
}

@keyframes floatFullPage {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 40px) rotate(-10deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* --- APP HERO SECTION --- */
.app-hero {
    position: relative;
    padding: 120px 0;
    background-color: #1A237E;
    /* Indigo */
    color: white;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.app-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A237E 0%, #311B92 100%);
    z-index: 0;
}

/* Hexagon Pattern Overlay */
.app-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 16%), radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.1;
}

.app-hero-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.app-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #fff;
}

.app-hero h1 span {
    background: linear-gradient(90deg, #00BCD4, #B2EBF2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-hero p {
    font-size: 18px;
    color: #C5CAE9;
    max-width: 550px;
    margin-bottom: 35px;
}

.btn-app {
    background: #00BCD4;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.btn-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.6);
    background: #00ACC1;
}

/* Phone Visual Animation */
.phone-mockup {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 600px;
    border: 12px solid #111;
    border-radius: 40px;
    background: #000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 5;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    height: 60px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch {
    width: 100px;
    height: 20px;
    background: #111;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.app-ui-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ui-block {
    width: 100%;
    height: 100px;
    background: #e0f7fa;
    border-radius: 12px;
    animation: slideUpUI 3s infinite ease-in-out;
}

.ui-block:nth-child(2) {
    height: 60px;
    background: #fff9c4;
    animation-delay: 0.5s;
}

.ui-block:nth-child(3) {
    height: 120px;
    background: #fce4ec;
    animation-delay: 1s;
}

@keyframes slideUpUI {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- TECH STACK GRID --- */
.tech-grid-section {
    padding: 80px 0;
    background: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
    opacity: 0.7;
}

.tech-item {
    font-size: 40px;
    color: #555;
    transition: 0.3s;
}

.tech-item:hover {
    color: #673AB7;
    transform: scale(1.1);
    opacity: 1;
}

.tech-item p {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 600;
}

/* --- SERVICES SECTION --- */
.app-services {
    padding: 100px 0;
    background: #f5f5f5;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1A237E;
}

.as-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.as-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
}

.as-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top-color: #673AB7;
}

.as-icon {
    font-size: 40px;
    color: #673AB7;
    margin-bottom: 20px;
}

.as-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.as-card ul {
    list-style: none;
    margin-top: 15px;
}

.as-card li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.as-card li i {
    color: #00BCD4;
    font-size: 12px;
}

/* --- LIFECYCLE PROCESS --- */
.lifecycle {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #f0f0f0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.tl-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.tl-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid #673AB7;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.tl-left {
    left: 0;
}

.tl-right {
    left: 50%;
}

.tl-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f9f9f9;
}

.tl-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f9f9f9 transparent transparent;
}

.tl-right::after {
    left: -10px;
}

.tl-content {
    padding: 20px 30px;
    background: #f9f9f9;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tl-content h3 {
    font-size: 20px;
    color: #1A237E;
    margin-bottom: 10px;
}

/* --- CTA SECTION --- */
.app-cta {
    padding: 85px 0;
    background: linear-gradient(135deg, #311B92 0%, #673AB7 100%);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.app-cta h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #ffffff !important;
    font-weight: 700;
}

.app-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #E0E7FF !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-white-outline {
    border: 2px solid #ffffff;
    color: #ffffff !important;
    padding: 13px 36px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    background: transparent;
    text-decoration: none;
}

.btn-white-outline:hover {
    background: #ffffff;
    color: #311B92 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- FOOTER STYLES (Identical) --- */
.footer {
    background: #f9f9f9;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.footer-logo h3 span {
    display: block;
    font-size: 14px;
    color: #FF6A00;
    font-weight: 500;
}

.footer-logo p {
    color: #777;
    margin: 10px 0;
}

.tagline {
    font-weight: 600;
    color: #FF6A00 !important;
    font-size: 18px;
    margin: 15px 0 30px;
}

.footer-links a {
    margin: 0 15px;
    color: #666;
    font-size: 14px;
}

.footer-links a:hover {
    color: #FF6A00;
}

.footer-copyright {
    margin-top: 30px;
    color: #999;
    font-size: 13px;
}

/* --- ANIMATIONS --- */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-hidden {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.animate-hidden {
    transform: translateY(40px);
}

.fade-right.animate-hidden {
    transform: translateX(-40px);
}

.fade-left.animate-hidden {
    transform: translateX(40px);
}

.animate-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.stagger-children.animate-active>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.animate-active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.animate-active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.animate-active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.animate-active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children.animate-active>*:nth-child(5) {
    transition-delay: 0.5s;
}



/* Appdevelopment css End */
#menu-main-menu{
    display: flex;
    list-style: none;
}
#menu-main-menu li{
    position: relative;
}
#menu-main-menu li:hover .sub-menu{
    opacity: 1;
    visibility: visible;
}
.submenu-expand{
    position: absolute;
    right: 0;
    top: 0;
}
.sub-menu{
    position: absolute;
    left: 0;
    top: 100%;
    width: 300px;
    background: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
}
.sub-menu li{
    list-style: none;
}
.main-menu-more{
    display: none;
}



.faq-section{
    padding: 70px 0;
}
.faq-tabs{
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.faq-tab{
    background-color: #fff;
    color: var(--dark);
    padding: 9px 50px;
    border-radius: 30px;
    outline: none;
    border: 1px solid var(--primary);
    font-size: 18px;
    min-width: 200px;
}
.faq-tab.active{
    background-color: var(--primary);
    color: #fff;
}

/* =========================================
   Contact Form 7
   ========================================= */

.wpcf7 {
    width: 100%;
}

.wpcf7 form {
    width: 100%;
}

/* Form rows */
.wpcf7 .form-group {
    margin-bottom: 10px;
}

/* Labels */
.wpcf7 label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #263238;
}

/* Inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e1e5e8;
    border-radius: 8px;
    background: #fff;
    color: #263238;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Placeholder */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #9aa3aa;
    opacity: 1;
}

/* Focus */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #ff6842;
    box-shadow: 0 0 0 3px rgba(255, 104, 66, 0.12);
}

/* Textarea */
.wpcf7 textarea {
    height: 100px;
    resize: none;
}

/* Select */
.wpcf7 select {
    cursor: pointer;
    appearance: auto;
}

/* Submit button */
.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 0;
    border-radius: 30px;
    background: #ff6842;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Submit hover */
.wpcf7 input[type="submit"]:hover {
    background: #e95732;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 104, 66, 0.25);
}

/* Submit active */
.wpcf7 input[type="submit"]:active {
    transform: translateY(0);
}

/* Required star */
.wpcf7 .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
    color: #dc3545;
}

/* Invalid fields */
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid {
    border-color: #dc3545;
}

/* Success message */
.wpcf7 form.sent .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 15px;
    border: 1px solid #3ab68d;
    border-radius: 8px;
    background: #edf9f5;
    color: #24795f;
    font-size: 14px;
}

/* Error message */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 15px;
    border: 1px solid #dc3545;
    border-radius: 8px;
    background: #fff3f3;
    color: #b02a37;
    font-size: 14px;
}

/* Loading spinner */
.wpcf7 .wpcf7-spinner {
    margin: 0 0 0 10px;
}

/* =========================================
   Two-column fields
   ========================================= */

.wpcf7 .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
  

.inner-banner-description{
    margin-bottom: 30px;
        font-size: 18px;
    color: #B2DFDB !important;
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.accordion-button{
        border-radius: 6px;
    outline: none;
    justify-content: space-between;
    box-shadow: none !important;
    min-height: 65px;
    padding: 10px 13px;
}
.accordion-button::after{margin-left: 10px;}
.accordion-button:not(.collapsed){
    border-radius: 6px;
    background-color: var(--bg-header);
    outline: none;
    box-shadow: none;
}
.home-faq-sec .accordion-header{
    padding: 10px;
    overflow: hidden;
    border-radius: 10px;
}
.home-faq-sec .accordion-item{
    border-radius: 10px; overflow: hidden;
}

.sidebar-card iframe{
    width: 100%;
    height: 370px;
}
.brand-hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.brand-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #ffffff !important;
}

.brand-hero h1 span {
    color: #FF6A00;
    display: inline-block;
    position: relative;
}

.brand-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: skewX(-20deg);
}

.brand-hero p {
    font-size: 18px;
    color: #E2E8F0 !important;
    max-width: 600px;
    margin-bottom: 35px;
}

/* Notice Section */
.cmn-gap{
    padding: 100px 0;
}

/* About Page */   
.investment-offerings-section .section-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.investment-offerings-section .section-header h2 {
    margin-bottom: 20px;
}

.investment-offerings-section .section-header p {
    line-height: 1.7;
    margin-bottom: 0;
}

.investment-offerings-list {
    display: flex;
    flex-wrap: wrap;
}

.investment-offerings-list > div {
    display: flex;
}

.investment-offer-card {
    width: 100%;
    height: 100%;
    padding: 35px;
    background: #f8f8f6;
    border: 1px solid #e5e5df;
    border-radius: 16px;
}

.investment-offer-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.investment-offer-card p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.investment-offer-card ul {
    margin: 15px 0;
    padding-left: 22px;
}

.investment-offer-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}
/* 
.video-box{
    position: relative;
    display: block;
    padding-top: 72%;
    overflow: hidden;
}
.play-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}
.video-poster{
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    object-fit: cover;
} */

/* ==========================================================================
   START: INVESTOR EDUCATION - VIDEO TABS SECTION (INVEST & FUNDRAISE)
   Pure CSS Bootstrap Tab Integration (No JS Required)
   ========================================================================== */

.edu-video-section {
    padding: 70px 0 80px;
    background: #f8fafc;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

/* Radio Button Controls (Pure CSS Tab Switching, No JS Required) */
.edu-tab-radio {
    display: none !important;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
}

/* Nav Tabs Wrapper & Navigation */
.edu-tabs-wrapper {
    position: relative;
}

.edu-video-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
    margin-bottom: 40px;
    list-style: none;
    padding-left: 0;
}

.edu-video-tabs .nav-item {
    margin-bottom: -2px;
}

.edu-video-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.edu-video-tabs .nav-link.active{
    color: #FF6A00;
    background: #ffffff;
    border-color: #FF6A00 #FF6A00 #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: 0 -4px 18px rgba(255, 106, 0, 0.12);
}
.edu-video-tabs .nav-link.active .tab-icon-wrap {
    background: linear-gradient(135deg, #FF6A00 0%, #FF8C00 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.35);
}

.edu-video-tabs li:nth-child(2) .nav-link.active{
    color: #3ab68d;
    background: #ffffff;
    border-color: #3ab68d #3ab68d #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: 0 -4px 18px rgba(58, 182, 141, 0.12);
}
.edu-video-tabs li:nth-child(2) .nav-link.active .tab-icon-wrap {
    background: linear-gradient(135deg, #3ab68d 0%, #2e9673 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(58, 182, 141, 0.35);
}

.edu-video-tabs .nav-link:hover {
    color: #0f172a;
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.edu-video-tabs .tab-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    color: inherit;
    font-size: 15px;
    transition: all 0.25s ease;
}

.edu-video-tabs .tab-title-text {
    font-size: 16px;
    font-weight: 700;
}

/* Pure CSS Tab State Activation (Invest vs Fundraise) */
/* Invest Active State */
#tab-invest:checked ~ .edu-video-tabs .tab-nav-invest {
    color: #FF6A00;
    background: #ffffff;
    border-color: #FF6A00 #FF6A00 #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: 0 -4px 18px rgba(255, 106, 0, 0.12);
}

#tab-invest:checked ~ .edu-video-tabs .tab-nav-invest .tab-icon-wrap {
    background: linear-gradient(135deg, #FF6A00 0%, #FF8C00 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.35);
}

/* Fundraise Active State */
#tab-fundraise:checked ~ .edu-video-tabs .tab-nav-fundraise {
    color: #3ab68d;
    background: #ffffff;
    border-color: #3ab68d #3ab68d #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: 0 -4px 18px rgba(58, 182, 141, 0.12);
}

#tab-fundraise:checked ~ .edu-video-tabs .tab-nav-fundraise .tab-icon-wrap {
    background: linear-gradient(135deg, #3ab68d 0%, #2e9673 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(58, 182, 141, 0.35);
}

/* Tab Panes Display Logic */
.edu-tabs-wrapper .tab-pane {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

#tab-invest:checked ~ .edu-tab-content .edu-pane-invest,
#tab-fundraise:checked ~ .edu-tab-content .edu-pane-fundraise {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: eduTabFadeIn 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes eduTabFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Box Component */
.video-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f8ebd6;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 10px;
} 
.video-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    border-color: #FF6A00;
}
.video-title {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    background: #f8ebd6;
    border-radius: 16px;
    margin: 10px 0 0;
}
.video-box.fundraise-video:hover {
    border-color: #3ab68d;
}

.video-poster {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0.9;
    display: block;
    position: absolute;
    left: 0; top: 0;
}
.video-box .videoimgwrap{
    position: relative;
    width: 100%;
    padding-top: 72%;
    overflow: hidden;
    border-radius: 11px;
}
.video-box:hover .video-poster {
    transform: scale(1.06);
    opacity: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #FF6A00;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.play-btn i {
    margin-left: 3px;
    line-height: 1;
}

.video-box.fundraise-video .play-btn {
    background: #3ab68d;
    box-shadow: 0 6px 20px rgba(58, 182, 141, 0.35);
}
.video-box.fundraise-video .video-title{
    background: #ccffee;
}
.video-box:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.14);
    background: #e05c00;
    box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.22), 0 12px 28px rgba(255, 106, 0, 0.4);
}

.video-box.fundraise-video:hover .play-btn {
    background: #2e9673;
    box-shadow: 0 0 0 8px rgba(58, 182, 141, 0.22), 0 12px 28px rgba(58, 182, 141, 0.4);
}

/* END: INVESTOR EDUCATION - VIDEO TABS SECTION */

/* Blog */
.single-blog-page{ 
    background: #f8ebd6; 
}
.single-blog-title {
    max-width: 900px;
    margin: 20px auto;
}

.single-blog-hero-content {
    text-align: center;
}

.single-blog-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.single-blog-featured-image {
    margin: 50px 0;
}

.single-blog-image-wrap {
    overflow: hidden;
    border-radius: 20px;
}

.single-blog-image {
    width: 100%;
    height: auto;
    display: block;
}

.single-blog-content {
    font-size: 18px;
    line-height: 1.8;
}

.single-blog-content img {
    max-width: 100%;
    height: auto;
}

.single-blog-sidebar {
    position: sticky;
    top: 60px;
}

.sidebar-widget {
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 16px;
    background: #f7f7f7;
}

.recent-blog-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-blog-image {
    width: 80px;
    min-width: 80px;
}

.recent-blog-image img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-blog-content h4 {
    font-size: 15px;
    margin: 0 0 5px;
}

.blog-category-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-category-menu li {
    margin-bottom: 10px;
}

.blog-category-menu a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}


/* ==========================================================================
   START: INVESTOR EDUCATION - BLOG TABS SECTION (INVEST & FUNDRAISE)
   Pure CSS Bootstrap Tab Integration (No JS Required)
   ========================================================================== */

.edu-blog-section {
    padding: 85px 0 95px;
    background: #ffffff;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.edu-blog-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
    margin-bottom: 45px;
    list-style: none;
    padding-left: 0;
}

.edu-blog-tabs .nav-item {
    margin-bottom: -2px;
}

.edu-blog-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.edu-blog-tabs .nav-link:hover {
    color: #0f172a;
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.edu-blog-tabs .tab-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    color: inherit;
    font-size: 15px;
    transition: all 0.25s ease;
}

.edu-blog-tabs .tab-title-text {
    font-size: 16px;
    font-weight: 700;
}

/* Pure CSS Tab State Activation for Blog (Invest vs Fundraise) */
#blog-tab-invest:checked ~ .edu-blog-tabs .tab-nav-invest {
    color: #FF6A00;
    background: #ffffff;
    border-color: #FF6A00 #FF6A00 #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: 0 -4px 18px rgba(255, 106, 0, 0.12);
}

#blog-tab-invest:checked ~ .edu-blog-tabs .tab-nav-invest .tab-icon-wrap {
    background: linear-gradient(135deg, #FF6A00 0%, #FF8C00 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.35);
}

#blog-tab-fundraise:checked ~ .edu-blog-tabs .tab-nav-fundraise {
    color: #3ab68d;
    background: #ffffff;
    border-color: #3ab68d #3ab68d #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: 0 -4px 18px rgba(58, 182, 141, 0.12);
}

#blog-tab-fundraise:checked ~ .edu-blog-tabs .tab-nav-fundraise .tab-icon-wrap {
    background: linear-gradient(135deg, #3ab68d 0%, #2e9673 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(58, 182, 141, 0.35);
}

/* Blog Tab Panes Display Logic */
.edu-blog-tab-content .tab-pane {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

#blog-tab-invest:checked ~ .edu-blog-tab-content .edu-pane-invest,
#blog-tab-fundraise:checked ~ .edu-blog-tab-content .edu-pane-fundraise {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: eduTabFadeIn 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Blog Card Component */
.edu-blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.edu-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    border-color: #ffd8c2;
}

.edu-blog-card.fundraise-card:hover {
    border-color: #bbf7d0;
}

.edu-blog-thumb {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #0f172a;
}

.edu-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.edu-blog-card:hover .edu-blog-img {
    transform: scale(1.08);
}

.edu-blog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    color: #FF6A00;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 106, 0, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.edu-blog-card.fundraise-card .edu-blog-badge {
    color: #3ab68d;
    border-color: rgba(58, 182, 141, 0.35);
}

.edu-blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.edu-blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12.5px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.edu-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.edu-blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.edu-blog-title a {
    color: #0f172a;
    transition: color 0.2s ease;
    text-decoration: none;
}

.edu-blog-card:hover .edu-blog-title a {
    color: #FF6A00;
}

.edu-blog-card.fundraise-card:hover .edu-blog-title a {
    color: #3ab68d;
}

.edu-blog-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.edu-blog-footer {
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.edu-blog-link {
    font-size: 14px;
    font-weight: 700;
    color: #FF6A00;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.edu-blog-link i {
    transition: transform 0.25s ease;
}

.edu-blog-card:hover .edu-blog-link {
    color: #e05c00;
}

.edu-blog-card:hover .edu-blog-link i {
    transform: translateX(4px);
}

.edu-blog-card.fundraise-card .edu-blog-link {
    color: #3ab68d;
}

.edu-blog-card.fundraise-card:hover .edu-blog-link {
    color: #2e9673;
}

/* END: INVESTOR EDUCATION - BLOG TABS SECTION */
/* ==========================================================================
   GLOBAL RESPONSIVE DESIGN - ALL BREAKPOINTS & ALL PAGES
   Breakpoints: 1399px | 1199px | 991px | 767px | 575px | 479px
   ========================================================================== */

/* ##########################################################################
   MEDIA QUERY: max-width: 1399px (Extra Large Desktop & Laptops)
   ########################################################################## */
@media (max-width: 1399px) {

    /* START: GLOBAL & HEADER (1399px) */
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }

    .nav a {
        margin: 0 10px;
        font-size: 14px;
    }

    /* END: GLOBAL & HEADER (1399px) */

    /* START: HOME PAGE (1399px) */
    .home-hero-grid {
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .live-deal-showcase {
        max-width: 480px;
    }

    /* END: HOME PAGE (1399px) */

    /* START: ABOUT PAGE (1399px) */
    .story-grid {
        gap: 40px;
    }

    .about-hero h1 {
        font-size: 48px;
    }

    /* END: ABOUT PAGE (1399px) */

    /* START: CONTACT PAGE (1399px) */
    .contact-layout-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 35px;
    }

    /* END: CONTACT PAGE (1399px) */

    /* START: SERVICES DIRECTORY (1399px) */
    .ms-grid-container {
        gap: 25px;
    }

    /* END: SERVICES DIRECTORY (1399px) */

    /* START: RAISE CAPITAL PAGE (1399px) */
    .rc-split-grid {
        gap: 40px;
    }

    /* END: RAISE CAPITAL PAGE (1399px) */

    /* START: INVESTOR EDUCATION (1399px) */
    .faq-grid {
        gap: 30px;
    }

    /* END: INVESTOR EDUCATION (1399px) */

    /* START: SERVICE DETAIL PAGES (1399px) */
    .sr-image img {
        max-height: 340px;
        object-fit: cover;
    }

    .phil-grid {
        gap: 40px;
    }

    /* END: SERVICE DETAIL PAGES (1399px) */
}


/* ##########################################################################
   MEDIA QUERY: max-width: 1199px (Desktops, Small Laptops & Landscape Tablets)
   ########################################################################## */
@media (max-width: 1199px) {

    /* START: GLOBAL & HEADER (1199px) */
    .container {
        max-width: 960px;
        padding: 0 20px;
    }

    .nav a {
        margin: 0 7px;
        font-size: 13.5px;
    }

    .auth-buttons .btn-login,
    .auth-buttons .btn-signup {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* END: GLOBAL & HEADER (1199px) */

    /* START: HOME PAGE (1199px) */
    .home-hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .tracks-grid {
        gap: 25px;
    }

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

    .traction-item h3 {
        font-size: 32px;
    }

    /* END: HOME PAGE (1199px) */

    /* START: ABOUT PAGE (1199px) */
    .about-hero h1 {
        font-size: 42px;
    }

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

    .stat-box h3 {
        font-size: 38px;
    }

    /* END: ABOUT PAGE (1199px) */

    /* START: CONTACT PAGE (1199px) */
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-layout-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }

    /* END: CONTACT PAGE (1199px) */

    /* START: SERVICES DIRECTORY (1199px) */
    .ms-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .skills-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    /* END: SERVICES DIRECTORY (1199px) */

    /* START: RAISE CAPITAL PAGE (1199px) */
    .rc-simple-hero h1 {
        font-size: 38px;
    }

    .rc-steps-grid {
        gap: 20px;
    }

    .rc-sstat h3 {
        font-size: 30px;
    }

    /* END: RAISE CAPITAL PAGE (1199px) */

    /* START: INVESTOR EDUCATION (1199px) */
    .edu-hero h1 {
        font-size: 42px;
    }

    /* END: INVESTOR EDUCATION (1199px) */

    /* START: SERVICE DETAIL PAGES (1199px) */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

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

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

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .ai-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* END: SERVICE DETAIL PAGES (1199px) */
}


/* ##########################################################################
   MEDIA QUERY: max-width: 991px (Tablets Landscape & Portrait)
   ########################################################################## */
@media (max-width: 991px) {

    /* START: GLOBAL & HEADER (991px) */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }

    .header-container {
        position: relative;
        padding: 0 16px;
    }

    .desktop-auth {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
    }

    .nav {
        display: flex !important;
        position: fixed;
        top: 76px;
        left: 14px;
        right: 14px;
        width: auto;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(226, 232, 240, 0.9);
        border-radius: 20px;
        box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.03);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 transparent;
    }

    .nav::-webkit-scrollbar {
        width: 5px;
    }

    .nav::-webkit-scrollbar-thumb {
        background-color: #cbd5e1;
        border-radius: 10px;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 3px 0;
        padding: 11px 14px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
        color: #1e293b;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
    }

    .nav a::after {
        display: none !important;
    }

    .nav a i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: #f1f5f9;
        color: #475569;
        font-size: 16px;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .nav a:hover,
    .nav a:focus-visible {
        background: #f8fafc;
        color: #0f172a;
        transform: translateX(3px);
    }

    .nav a:hover i,
    .nav a:focus-visible i {
        background: #FF6A00;
        color: #ffffff;
        transform: scale(1.05);
    }

    .nav a.active {
        background: linear-gradient(135deg, rgba(255, 106, 0, 0.08) 0%, rgba(255, 140, 0, 0.04) 100%);
        color: #FF6A00;
        font-weight: 600;
        border: 1px solid rgba(255, 106, 0, 0.15);
    }

    .nav a.active i {
        background: #FF6A00;
        color: #ffffff;
    }

    /* DROPDOWN ACCORDION */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 2px 0;
    }

    .nav-dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }

    .nav-dropdown>a .bi-chevron-down {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: #f1f5f9;
        font-size: 13px;
        color: #64748b;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
        margin-left: auto;
    }

    .nav-dropdown.active>a .bi-chevron-down {
        transform: rotate(180deg);
        background: rgba(255, 106, 0, 0.12);
        color: #FF6A00;
    }

    .nav-dropdown-content {
        display: none !important;
        position: static;
        box-shadow: none;
        border: 1px solid #e2e8f0;
        padding: 6px;
        background: #f8fafc;
        border-radius: 14px;
        margin: 4px 0 8px 0;
        width: 100%;
        flex-direction: column;
        gap: 3px;
    }

    .nav-dropdown.active .nav-dropdown-content {
        display: flex !important;
        animation: navSubmenuFade 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes navSubmenuFade {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav .nav-dropdown-content a {
        font-size: 14px;
        padding: 9px 12px;
        margin: 0;
        border-radius: 10px;
        color: #334155;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        border: none;
    }

    .nav .nav-dropdown-content a i {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
        font-size: 14px;
        opacity: 1;
    }

    .nav .nav-dropdown-content a:hover,
    .nav .nav-dropdown-content a:focus-visible {
        background: #ffffff;
        color: #0f172a;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        transform: translateX(3px);
    }

    .nav .nav-dropdown-content a.active {
        background: #ffffff;
        color: #FF6A00;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(255, 106, 0, 0.12);
        border: 1px solid rgba(255, 106, 0, 0.2);
    }

    /* AUTH & CTA BUTTONS */
    .nav .auth-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 12px;
        padding-top: 14px;
        border-top: 1px solid #e2e8f0;
    }

    .nav .auth-buttons a {
        margin: 0;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 12px;
        transform: none !important;
    }

    .nav .auth-buttons .btn-login {
        background: #f1f5f9;
        color: #0f172a !important;
        border: 1px solid #e2e8f0;
    }

    .nav .auth-buttons .btn-login:hover {
        background: #e2e8f0;
        color: #000000 !important;
    }

    .nav .auth-buttons .btn-signup {
        background: linear-gradient(135deg, #FF6A00 0%, #FF8C00 100%);
        color: #ffffff !important;
        border: none;
        box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
        font-weight: 700;
    }

    .nav .auth-buttons .btn-signup:hover {
        box-shadow: 0 6px 20px rgba(255, 106, 0, 0.45);
    }

    .floating-sat-badge {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 8px auto;
        width: fit-content;
        max-width: 92%;
        justify-content: center;
        animation: none;
        white-space: normal;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* END: GLOBAL & HEADER (991px) */

    /* START: HOME PAGE (991px) */
    .home-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
        max-width: 650px;
    }

    .hero-actions,
    .hero-trust-bar,
    .backer-proof {
        justify-content: center;
    }

    .live-deal-showcase {
        margin: 40px auto 0;
        max-width: 520px;
    }

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

    .tracks-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roadmap-steps-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* END: HOME PAGE (991px) */

    /* START: ABOUT PAGE (991px) */
    .about-hero {
        padding: 90px 0 60px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-image img {
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-flex {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 30px auto 0;
    }

    /* END: ABOUT PAGE (991px) */

    /* START: CONTACT PAGE (991px) */
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }

    .contact-channels {
        margin-top: -30px;
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* END: CONTACT PAGE (991px) */

    /* START: SERVICES DIRECTORY (991px) */
    .ms-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .skills-visual {
        max-width: 550px;
        margin: 30px auto 0;
    }

    /* END: SERVICES DIRECTORY (991px) */

    /* START: RAISE CAPITAL PAGE (991px) */
    .rc-simple-hero {
        padding: 75px 0 55px;
    }

    .rc-simple-hero h1 {
        font-size: 34px;
    }

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

    .rc-steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .rc-split-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .rc-form-card {
        padding: 35px 25px;
    }

    /* END: RAISE CAPITAL PAGE (991px) */

    /* START: INVESTOR EDUCATION (991px) */
    .edu-hero {
        padding: 120px 0 80px;
    }

    .edu-hero h1 {
        font-size: 38px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* END: INVESTOR EDUCATION (991px) */

    /* START: SERVICE DETAIL PAGES (991px) */
    .brand-hero h1,
    .web-hero h1,
    .market-hero h1,
    .cf-hero h1,
    .ai-hero h1 {
        font-size: 38px;
    }

    .phil-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phil-visual {
        margin: 0 auto;
        max-width: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-line {
        display: none;
    }

    .web-hero .container,
    .cf-hero .container,
    .ai-hero .container {
        flex-direction: column !important;
        text-align: center;
        justify-content: center;
    }

    .web-hero-content,
    .cf-hero-content,
    .ai-hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .code-window {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 40px auto 0;
        width: 100%;
        max-width: 480px;
    }

    .wf-grid {
        grid-template-columns: 1fr;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .sr-image img {
        max-width: 500px;
        margin: 0 auto 25px;
    }

    .check-list li {
        justify-content: center;
    }

    .dp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dp-grid::before {
        display: none;
    }

    .market-hero .container {
        flex-direction: column !important;
        text-align: center;
        justify-content: center;
    }

    .market-hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .funnel-container {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 40px auto 0;
    }

    .ms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .camp-row,
    .camp-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .camp-visual {
        margin: 0 auto 25px;
    }

    .camp-content ul li {
        justify-content: center;
    }

    .app-hero {
        flex-direction: column;
        text-align: center;
    }

    .phone-mockup {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 40px auto 0;
    }

    .as-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .timeline::after {
        left: 31px;
    }

    .tl-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .tl-container::after {
        left: 21px;
    }

    .tl-right {
        left: 0;
    }

    .tl-left::before,
    .tl-right::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent #f9f9f9 transparent transparent;
    }

    .funding-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 40px auto 0;
        width: 100%;
    }

    .reg-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cfs-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .roadmap-steps {
        flex-direction: column;
        gap: 25px;
    }

    .roadmap-line {
        display: none;
    }

    .brain-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 40px auto 0;
    }

    .pipe-container {
        flex-direction: column;
        gap: 25px;
    }

    .pipe-line-bg {
        display: none;
    }

    /* END: SERVICE DETAIL PAGES (991px) */

    /* Notice Section */
    .cmn-gap{
        padding: 60px 0;
    }
}


/* ##########################################################################
   MEDIA QUERY: max-width: 767px (Large Handsets & Small Tablets)
   ########################################################################## */
@media (max-width: 767px) {

    /* START: GLOBAL & HEADER (767px) */
    .header {
        min-height: 64px;
    }

    .logo img {
        height: 45px;
    }

    .footer {
        padding: 45px 0 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* END: GLOBAL & HEADER (767px) */

    /* START: HOME PAGE (767px) */
    .hero-title {
        font-size: 34px;
    }

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

    .traction-item h3 {
        font-size: 28px;
    }

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

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-home {
        grid-template-columns: 1fr;
    }

    .roadmap-steps-home {
        grid-template-columns: 1fr;
    }

    .faq-tabs-nav {
        flex-direction: column;
    }

    /* END: HOME PAGE (767px) */

    /* START: ABOUT PAGE (767px) */
    .about-hero h1 {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .team-img {
        height: 320px;
    }

    .stats-flex {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* END: ABOUT PAGE (767px) */

    /* START: CONTACT PAGE (767px) */
    .channels-grid {
        grid-template-columns: 1fr;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-box {
        padding: 25px 18px;
    }

    /* END: CONTACT PAGE (767px) */

    /* START: SERVICES DIRECTORY (767px) */
    .ms-grid-container {
        grid-template-columns: 1fr;
    }

    /* END: SERVICES DIRECTORY (767px) */

    /* START: RAISE CAPITAL PAGE (767px) */
    .rc-simple-hero h1 {
        font-size: 30px;
    }

    .rc-stats-flex {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rc-form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rc-form-card {
        padding: 30px 18px;
    }

    .rc-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    /* END: RAISE CAPITAL PAGE (767px) */

    /* START: INVESTOR EDUCATION (767px) */
    .edu-hero {
        padding: 100px 0 60px;
    }

    .edu-hero h1 {
        font-size: 32px;
    }

    /* END: INVESTOR EDUCATION (767px) */

    /* START: SERVICE DETAIL PAGES (767px) */
    .growth-stats .stats-flex {
        grid-template-columns: 1fr;
    }

    .ms-grid {
        grid-template-columns: 1fr;
    }

    .dp-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .code-wrapper {
        padding: 20px;
        font-size: 12px;
        overflow-x: auto;
    }

    /* END: SERVICE DETAIL PAGES (767px) */
    .wpcf7 .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 input[type="url"],
    .wpcf7 input[type="number"],
    .wpcf7 input[type="date"],
    .wpcf7 select,
    .wpcf7 textarea {
        padding: 13px 14px;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
    }
}


/* ##########################################################################
   MEDIA QUERY: max-width: 575px (Mobile Phones Landscape & Large Portrait)
   ########################################################################## */
@media (max-width: 575px) {

    /* START: GLOBAL & HEADER (575px) */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-app,
    .btn-glow,
    .btn-gold,
    .btn-rc-orange,
    .btn-rc-primary,
    .btn-white,
    .btn-white-outline,
    .btn-gradient {
        /* width: 100%;  */
        justify-content: center;
        text-align: center;
    }

    /* END: GLOBAL & HEADER (575px) */

    /* START: HOME PAGE (575px) */
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .traction-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .deal-metrics-grid {
        grid-template-columns: 1fr;
    }

    .deal-image-wrap {
        height: 200px;
    }

    /* END: HOME PAGE (575px) */

    /* START: ABOUT PAGE (575px) */
    .about-hero {
        padding: 70px 0 45px;
    }

    .about-hero h1 {
        font-size: 26px;
    }

    .story-section,
    .values-section,
    .team-section,
    .about-cta {
        padding: 50px 0;
    }

    /* END: ABOUT PAGE (575px) */

    /* START: CONTACT PAGE (575px) */
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .channel-card {
        padding: 20px 15px;
    }

    .hubs-sidebar {
        padding: 20px 15px;
    }

    /* END: CONTACT PAGE (575px) */

    /* START: SERVICES DIRECTORY (575px) */
    .services-hero h1 {
        font-size: 28px;
    }

    /* END: SERVICES DIRECTORY (575px) */

    /* START: RAISE CAPITAL PAGE (575px) */
    .rc-simple-hero h1 {
        font-size: 26px !important;
    }

    .rc-simple-hero p {
        font-size: 15px !important;
    }

    .rc-form-card-header h2 {
        font-size: 24px;
    }

    /* END: RAISE CAPITAL PAGE (575px) */

    /* START: INVESTOR EDUCATION (575px) */
    .edu-hero {
        padding: 80px 0 50px;
    }

    .edu-hero h1 {
        font-size: 28px;
    }

    .faq-block h3 {
        font-size: 22px;
    }
    .faq-grid {
        gap: 10px;
    }

    /* END: INVESTOR EDUCATION (575px) */

    /* START: SERVICE DETAIL PAGES (575px) */
    .phil-visual {
        height: 320px;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .phil-card {
        width: 85%;
        padding: 20px;
    }

    .phone-mockup {
        width: 240px;
        height: 440px;
    }

    .gauge-bg,
    .gauge-fill {
        width: 240px;
        height: 240px;
    }

    .brain-visual {
        width: 240px;
        height: 240px;
    }

    .funnel-container {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
    }

    .fl-1 {
        width: 280px !important;
    }

    .fl-2 {
        width: 220px !important;
    }

    .fl-3 {
        width: 170px !important;
    }

    .fl-4 {
        width: 120px !important;
    }

    /* END: SERVICE DETAIL PAGES (575px) */
}


/* ##########################################################################
   MEDIA QUERY: max-width: 479px (Compact Mobile Screens & Handsets)
   ########################################################################## */
@media (max-width: 479px) {

    /* START: GLOBAL & HEADER (479px) */
    .header-container {
        padding: 0 12px;
    }

    .logo img {
        height: 38px;
    }

    .nav {
        top: 68px;
        left: 10px;
        right: 10px;
        padding: 14px 12px;
        border-radius: 16px;
        max-height: calc(100vh - 80px);
    }

    .nav a {
        font-size: 14px;
        padding: 9px 12px;
    }

    .nav .auth-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    h1 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    h2 {
        font-size: 21px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    /* END: GLOBAL & HEADER (479px) */

    /* START: HOME PAGE (479px) */
    .hero-title {
        font-size: 24px;
    }

    .hero-badge,
    .deal-status-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .deal-card,
    .service-item-card,
    .track-card {
        padding: 20px 15px;
    }

    /* END: HOME PAGE (479px) */

    /* START: ABOUT PAGE (479px) */
    .value-card {
        padding: 24px 16px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

    /* END: ABOUT PAGE (479px) */

    /* START: CONTACT PAGE (479px) */
    .contact-form-box {
        padding: 20px 14px;
    }

    .hub-card {
        padding: 14px;
    }

    /* END: CONTACT PAGE (479px) */

    /* START: SERVICES DIRECTORY (479px) */
    .service-box {
        padding: 24px 16px;
    }

    /* END: SERVICES DIRECTORY (479px) */

    /* START: RAISE CAPITAL PAGE (479px) */
    .rc-form-card {
        padding: 20px 14px;
    }

    .rc-step-card {
        padding: 22px 14px;
    }

    .rc-faq-head {
        font-size: 14.5px;
        padding: 14px 12px;
    }

    .rc-faq-body {
        font-size: 13px;
        padding: 0 12px 14px;
    }

    /* END: RAISE CAPITAL PAGE (479px) */

    /* START: INVESTOR EDUCATION (479px) */
    .accordion-header {
        font-size: 14.5px;
        padding: 14px 12px;
    }

    .accordion-content-inner {
        font-size: 13px;
        padding: 0 12px 14px;
    }

    /* END: INVESTOR EDUCATION (479px) */

    /* START: SERVICE DETAIL PAGES (479px) */
    .phil-visual {
        height: 270px;
        max-width: 320px;
    }

    .phil-card {
        width: 90%;
        padding: 16px;
    }

    .pc-1 h3 {
        font-size: 17px;
    }

    .pc-2 h4 {
        font-size: 16px;
    }

    .funnel-container {
        max-width: 280px !important;
        height: auto !important;
    }

    .fl-1 {
        width: 240px !important;
        font-size: 11px !important;
        height: 46px !important;
        line-height: 46px !important;
    }

    .fl-2 {
        width: 190px !important;
        font-size: 11px !important;
        height: 46px !important;
        line-height: 46px !important;
    }

    .fl-3 {
        width: 145px !important;
        font-size: 11px !important;
        height: 46px !important;
        line-height: 46px !important;
    }

    .fl-4 {
        width: 100px !important;
        font-size: 11px !important;
        height: 55px !important;
    }

    .as-card,
    .service-card,
    .ms-card,
    .cfs-card,
    .ai-card {
        padding: 20px 14px;
    }

    .tech-item p {
        font-size: 11px;
    }

    /* END: SERVICE DETAIL PAGES (479px) */
    .venture-card-actions {  
        flex-direction: column;
    }
    .edu-video-tabs .nav-link, .edu-blog-tabs .nav-link{ 
        gap: 7px;
        padding: 8px 15px; 
    }
    .edu-blog-section{overflow: hidden;}
}