:root {
    --bg-color: #000000; /* Pure Black */
    --bg-darker: #0a0a0a; /* Very Dark Gray */
    --primary: #FBBF24; /* Amber/Gold */
    --primary-dark: #D97706;
    --secondary: #1a1a1a;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --font-heading: 'Poppins', sans-serif;
    --font-text: 'Poppins', sans-serif;
    --glass-bg: rgba(26, 26, 26, 0.4);
    --glass-border: rgba(248, 250, 252, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

.text-muted {
    color: var(--text-muted) !important;
}

/* Vertical Grid Lines */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: calc(100vw / 6) 100%;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

section {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-light { color: var(--text-main); }
.mb-3 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-5 { padding: 3rem; }
.rounded { border-radius: 12px; }
.section-padding {
    padding: 60px 0 80px;
}
.bg-darker { background-color: var(--bg-darker); }
.bg-dark { background-color: var(--secondary) !important; }

/* Buttons with Hover Effect matching original */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--bg-color);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--text-main);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 193, 7, 0.3);
    border-color: var(--primary);
    outline: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--glass-bg);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Top Bar Marquee */
.top-bar {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #000;
    color: var(--text-main);
    display: flex;
    align-items: center;
    z-index: 1001;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .carousel {
    width: 100%;
}



/* Header */
.header {
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(15px);
    position: sticky;
    width: 100%;
    top: 20px;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo-img {
    max-height: 62px;
    width: auto;
}

.footer-logo {
    max-height: 200px;
    width: auto;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-main);
}

.highlight-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hand-drawn-line {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 18px;
    z-index: -1;
    overflow: visible;
}

.hand-drawn-line path {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
}
/* CTA Decorative Elements */
.cta-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}
.cta-circle.top-left { top: -60px; left: -60px; }

.cta-dot-solid {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.cta-dot-solid.top-left-inner { top: 20px; left: -20px; }

.cta-lines {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 0;
    pointer-events: none;
}
.cta-lines img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: drawLines 2s infinite alternate ease-in-out;
}
.cta-lines.top-right { top: -60px; right: -40px; }
.cta-lines.bottom-left { bottom: -60px; left: -40px; transform: scale(-1); }

@keyframes drawLines {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 13px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    padding-top: 40px;
}

.hero-rocket {
    position: absolute;
    top: -60px;
    right: -220px;
    width: 350px;
    max-width: 350px;
    height: auto;
    z-index: -1;
    pointer-events: none;
    animation: floatRocket 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.4));
}

@keyframes floatRocket {
    0% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(5deg); }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.animated-text {
    color: var(--text-main);
    display: inline-block;
    position: relative;
}

.animated-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 5px;
    left: 0;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0.4;
    transition: all 0.3s;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Stats (Glassmorphism) */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.hero-stats-wrapper {
    margin-top: 60px;
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

.about-grid-1col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.why-us {
    position: relative;
    overflow: hidden;
}

.why-us::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/Asset_1_8.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(255,193,7,0.05);
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255,193,7,0.1);
    border-color: rgba(255, 193, 7, 0.5);
}

.stat-card h3 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    font-size: 15px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Service Grid */
.section-heading {
    margin-bottom: 60px;
    text-align: center;
}

.section-heading h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-heading h2::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    background-image: url('../images/heading.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: relative;
    top: -4px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    animation: slideLineCenter 3s infinite alternate ease-in-out;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

@keyframes slideLineCenter {
    0% { width: 40px; }
    100% { width: 100%; }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.glass-hover {
    background: radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.08) 0%, transparent 60%), var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-hover:hover {
    transform: translateY(-10px);
    background: radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.15) 0%, transparent 70%), rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
}

.service-icon {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-icon i {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-hover:hover .service-icon i {
    transform: scale(1.15) translateY(-5px);
}

.glass-hover h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

#about {
    padding-top: 60px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    padding: 20px;
    border-left: 3px solid var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Content Flex */
.content-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.flex-half {
    flex: 1;
}

.flex-half h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.flex-half p {
    font-size: 18px;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: var(--text-main);
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Founder Section */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: top;
    border: 1px solid var(--primary);
    border-radius: 16px;
}

.founder-content h3 {
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-glow-center {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.footer-glow-bottom {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.footer-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.footer-card {
    padding: 10px 15px;
    position: relative;
    z-index: 1;
}

.footer-bottom-card {
    text-align: center;
    padding: 10px 0;
}

.brand-desc {
    margin: 20px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    background: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 6px 0 0 6px;
    color: #000;
    width: 100%;
}

.newsletter-form .btn-icon {
    padding: 12px 20px;
    border-radius: 0 6px 6px 0;
    background-color: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.footer-card h4 {
    color: var(--text-main);
    font-size: 18px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url('../images/heading.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: #ffc107;
    transform: translateX(5px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 25px 0;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-main);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--bg-color);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.achievement-title {
    margin-top: 20px;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 240px;
    margin-bottom: 15px;
}

.badges-flex {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    transition: all 0.3s ease;
}

.badge-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-3px);
}

.badge-card img {
    height: 40px;
    object-fit: contain;
}

.badge-text {
    text-align: center;
    line-height: 1.2;
}

.badge-name {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
}

.badge-sub {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
}
/* --- Premium Hero Design Updates --- */
.hero-content.text-center {
    max-width: 1000px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-outline-light {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.glass-showcase {
    margin-bottom: 60px; /* Space for absolute stats */
}

.hero-stats.glass-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* --- New Layout Components --- */
.feature-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(251, 191, 36, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.feature-card:hover .icon-circle {
    background: var(--primary);
    color: #020617;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 48px; }
    .hero-stats { flex-wrap: wrap; }
    .content-flex { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-actions { flex-direction: column; }
}

/* Custom Cursor */
.cursor-dot,
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-circle {
    opacity: 1;
}

/* Hover effects for cursor */
a:hover ~ .cursor-circle,
.btn:hover ~ .cursor-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1);
}

/* Logos */
.header-logo {
    max-height: 50px;
    width: auto;
}

.footer-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.twitter-btn {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 30px;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
    font-size: 14px;
}

.twitter-btn:hover {
    background-color: var(--primary);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

/* --- Extracted Inline Styles --- */
.about-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid-2col {
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
}

@media (max-width: 768px) {
    .about-grid-2col {
        grid-template-columns: 1fr;
    }
}

.glass-hover h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.social-link {
    color: var(--text-main);
    text-decoration: none;
}
.social-link:hover {
    color: var(--primary);
}

.section-subheading {
    color: var(--primary);
    font-size: 24px;
}

.who-we-serve .service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-orbs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, rgba(0,0,0,0) 60%);
    z-index: 0;
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
}

.cta-card {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255,193,7,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 10px rgba(255,193,7,0.05);
    backdrop-filter: blur(20px);
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.cta-card > p {
    font-size: 16px;
    color: var(--text-main);
    max-width: 500px;
    margin: 0 auto;
}

.calendar-placeholder {
    background: rgba(0,0,0,0.5);
    border: 1px dashed rgba(255,193,7,0.3);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.calendar-placeholder i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255,193,7,0.5));
}

.calendar-placeholder h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.calendar-placeholder p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

.btn-cta-email {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255,193,7,0.4);
}

.brand-desc-email a {
    text-decoration: none;
}

/* --- Agencies Section --- */
.agencies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .agencies-grid {
        grid-template-columns: 1fr;
    }
}

.agencies-benefits h3 {
    color: var(--primary);
}

.benefits-list li {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 20px;
}

/* --- Clean CTA Design --- */
.cta-banner {
    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(17, 17, 17, 0.8)), url('../images/3D%20mock%20up%201.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    padding: 40px 30px !important;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-pill .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.cta-banner h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-action {
    position: relative;
    z-index: 2;
}

.btn-glow {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
    transform: translateY(-2px);
    color: #000;
}

/* Decorative elements */
.cta-sparkle {
    position: absolute;
    pointer-events: none;
    width: 40px; 
    height: 40px;
    background: radial-gradient(circle, var(--primary) 2px, transparent 3px);
    opacity: 0.5;
}
.cta-sparkle.top-left {
    top: 20px; left: 20px;
}
.cta-sparkle.bottom-right {
    bottom: 20px; right: 20px;
}

/* --- Footer Credits and Color Fixes --- */
.text-primary {
    color: var(--primary) !important;
}

.footer-bottom-card {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.credits {
    font-size: 14px;
    color: var(--text-muted);
}

.credits-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.credits-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-rocket {
        width: 250px;
        max-width: 100%;
        top: -100px;
        right: -50px;
        opacity: 0.5;
    }
    .footer-glow-center, .footer-glow-bottom {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
    }
    .top-bar {
        font-size: 12px;
    }
    .section-padding {
        padding: 40px 0 40px !important;
    }
    #about {
        padding-top: 0 !important;
    }
    .stat-card h3 {
        font-size: 32px !important;
    }
    .founder-content h3 {
        font-size: 24px !important;
    }
    h1, h2 {
        line-height: 1.2;
    }
    .section-heading h2, .cta-banner h2 {
        font-size: 26px !important;
        margin-bottom: 10px;
    }
    .section-heading {
        margin-bottom: 30px !important;
    }
    .hero-badge {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
    .hero-title {
        font-size: 28px !important;
    }
    .hero {
        padding: 30px 0 60px !important;
    }
    .header {
        top: 0;
    }
    .nav-container {
        height: 60px;
    }
    .nav-container .btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    .logo-img {
        max-height: 40px !important;
    }
    .cursor-dot, .cursor-circle {
        display: none !important;
    }
    .hero-rocket {
        width: 250px;
        top: 20px !important;
        right: -80px !important;
        opacity: 0.3 !important;
    }
    .cta-lines.top-right {
        right: 0 !important;
    }
    .cta-lines.bottom-left {
        left: 0 !important;
    }
    .cta-circle.top-left {
        left: 0 !important;
    }
}
html, body {
    max-width: 100vw;
    overflow-x: clip;
}
@media (max-width: 768px) {
    .glass-showcase {
        margin-bottom: 110px !important;
    }
}

@keyframes floatRocket {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Fix for Owl Carousel equal heights */
.owl-carousel .owl-stage {
    display: flex;
}
.owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}
.owl-carousel .item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* --- Universal Typography Overrides --- */
h1, h2, h3, h4, h5, h6, 
.hero-title, .section-heading h2, .glass-hover h3, .glass-hover h4, .stat-card h3,
.logo-text, .founder-content h3, .cta-card h2, .cta-banner h2 {
    font-size: 32px !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
}

body, p, span, a, li, 
.text-muted, .fs-6, .fs-5, .small, small, 
.btn, .nav-links a, .badge-name, .badge-sub,
.hero-subtitle, .about-intro-text, .benefits-list li {
    font-size: 15px !important;
    font-family: var(--font-text) !important;
    font-weight: 400 !important;
}

/* Footer Heading Specific Override */
.footer h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* Navbar Specific Override */
.nav-links a, .nav-links-mobile a {
    font-size: 14px !important;
}

/* Slider Heading Override */
.hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem) !important;
    line-height: 1.1 !important;
}

/* Button Font Size Override */
.btn {
    font-size: 14px !important;
}

/* Fix for spans inside headings */
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .hero-title span, .section-heading h2 span {
    font-size: inherit !important;
    font-weight: inherit !important;
    font-family: inherit !important;
}

/* Top Bar Carousel Font Size Override */
.top-bar span {
    font-size: 14.5px !important;
}

/* About Card & Who We Serve Heading Override */
.about h4, .who-we-serve h4 {
    font-size: 22px !important;
}

/* Founder Quote Override */
.founder-content h3 {
    font-size: 20px !important;
}

/* Footer Text Override */
.footer p, .footer a, .footer li, .footer span {
    font-size: 14px !important;
}

/* Mobile Responsiveness Overrides for Headings */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6, 
    .section-heading h2, .glass-hover h3, .glass-hover h4, .stat-card h3,
    .logo-text, .cta-card h2, .cta-banner h2 {
        font-size: 22px !important;
    }
    .hero-title {
        font-size: 24px !important;
    }
    .about h4, .who-we-serve h4 {
        font-size: 20px !important;
    }
    .founder-content h3 {
        font-size: 18px !important;
    }
    
    /* Fix Slider Overlap on Mobile */
    .hero {
        height: auto !important;
        min-height: auto !important;
        align-items: flex-start !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    #heroDashboardSlider .carousel-inner,
    #heroDashboardSlider .carousel-item,
    #heroDashboardSlider .container {
        height: auto !important;
    }
    .col-lg-6.text-start {
        margin-top: 0 !important;
    }
}

