
:root {
    --bg: #F8FAFC;
    --primary: #15803D;
    --primary-glow: rgba(34, 197, 94, 0.25);
    --border: rgba(0, 0, 0, 0.08);
    --text-main: #0F172A;
    --text-dim: #475569;
    --glass: rgba(255, 255, 255, 0.8);
    --secondary: #22C55E;
     --neon: #15803D;
    --matt-black: #050505;
}


body {
    background-color: var(--bg);
    color: var(--text-main);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
   
    overflow-x: hidden;
    line-height: 1.6;
}


.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(180px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}
.blob-1 { top: 10%; left: -10%; }
.blob-2 { bottom: 10%; right: -10%; }


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.logo img {
    width: 100px;
    height: auto;
    

}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    transition: 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-portal {
    background: var(--primary);
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 5px 20px var(--primary-glow);
    transition: 0.3s;
}

.btn-portal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}


.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 .dynamic {
    background: linear-gradient(90deg, var(--text-main), var(--primary), var(--text-main));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    display: inline-block;
    height: 105px;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 850px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    position: relative;
    padding: 15px 35px;
    background: var(--neon); 
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0);
}

.btn-primary:hover {
   
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}
.btn-outline {
    position: relative;
    padding: 15px 35px;
    background: var(--primary-glow);
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.btn-outline:hover {
    border-color: var(--neon);
    color: var(--neon);
    background: rgba(34, 197, 94, 0.05);
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.btn-outline:hover::after {
    width: 80%;
}


@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.btn-primary {
    animation: buttonPulse 2s infinite;
}
.hero {
    position: relative;
    /* background:   radial-gradient(circle at 0% 50%, rgba(5, 5, 5, 1), transparent),
    radial-gradient(circle at 50% -20%, rgba(34, 197, 94, 0.15), transparent); */
 
}

.dynamic {
    display: inline-block;
    transition: all 0.5s ease;
}

.dynamic.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.dynamic.fade-in {
    opacity: 1;
    transform: translateY(0);
}



.stats {
    display: flex;
    justify-content: space-around;
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 30px;
    width: 85%;
    margin: -60px auto 100px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 20;
}

.stat-item h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}


.marquee {
    background: rgba(255,255,255,0.02);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    margin-top: 50px;
    border-radius: 12px;
}

.marquee-content {
    display: flex;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 60px;
      color: var(--secondary);
    opacity: 0.6;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


.section {
    padding: 120px 8%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.accent {
    color: var(--primary);
}

.section-header p {
    color: var(--text-dim);
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.bento-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 35px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card i {
    font-size: 3.5rem;
    color: var(--primary);
    position: absolute;
    top: 40px;
    left: 40px;
    opacity: 0.8;
}

.bento-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(34, 197, 94, 0.03);
}

.large { grid-column: span 2; grid-row: span 2; }
.wide { grid-column: span 2; }


.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(34, 197, 94, 0.1);
    margin-bottom: -40px;
}

.step-item h3 {
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-dim);
}


.footer {
    padding: 100px 8% 40px;
    background: #080d1a;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info li {
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}



.footer-bottom {
    text-align: center;
    color: var(--text-dim);
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .stats { flex-wrap: wrap; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero-btns{
        flex-direction: column;
    }
    .nav-links { display: none; }
    .bento-grid { grid-template-columns: 1fr; }
    .large, .wide { grid-column: span 1; grid-row: span 1; }
    .steps { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats{
        margin: 0 auto 50px !important;
    }
    .hero{
        padding: 10px !important;
    }
    .premium-grid{
        padding: 0 !important;
    }
    .main-circle {
    width: 250px !important;
    height: 250px !important;
    }
    .section-header h2, .split-left h2 {
        font-size: 30px !important;
    }
    .feature-content h2, .contact-info h2, .faq-intro h2 {
            font-size: 34px !important; 
    }
    .contact-hub{
        padding: 30px 4% !important;
    }
    .faq-trigger h3 {
    font-size: 20px !important;
    }
    .btn-portal{
        padding: 6px 15px !important;
    border-radius: 7px !important;
    }
    .logo img {
    height: 50px !important;
    width: auto;
}
}
.partners-section{
        padding: 10px 5%;
}


.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.matt-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    padding: 1.5px;
    transition: transform 0.4s ease;
}


.border-spinner {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(from 0deg, transparent, var(--neon), transparent 25%);
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-inner {
    position: relative;
       background: rgb(17 27 50 / 95%);
    backdrop-filter: blur(20px);
    border-radius: 19px;
    padding: 45px 35px;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.hover-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent
    );
    transform: skewX(-25deg);
    z-index: 3;
    pointer-events: none;
    opacity: 0; 
}

.matt-card:hover .hover-sweep {
    opacity: 1;
    animation: infiniteSweep 1.5s infinite ease-in-out;
}

@keyframes infiniteSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

.icon-container {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.dashed-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--secondary);
    border-radius: 50%;
    animation: rotateRing 6s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-container i {
    font-size: 1.8rem;
    color: var(--neon);
    transition: 0.4s;
}

.card-inner h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.card-inner p {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-points {
    list-style: none;
    margin: 25px 0;
}

.service-points li {
    color: var(--text-main);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-points i {
    color: var(--neon);
    font-size: 0.7rem;
}

.learn-link {
    text-decoration: none;
    color: var(--neon);
    font-weight: 700;
}


.matt-card:hover {
    transform: translateY(-10px);
}

.matt-card:hover .dashed-ring {
    border: 2px solid var(--neon);
    background: var(--neon);
    box-shadow: 0 0 20px var(--neon);
}

.matt-card:hover .icon-container i {
    color: #000;
    z-index: 4;
}

@media (max-width: 992px) {
    .premium-grid { grid-template-columns: 1fr; }
}

.services-section {
    padding: 60px 5%;
    position: relative;
  border-top: 1px solid var(--border);
    overflow: hidden;
    background: white;
}

.unique-features {
    padding: 100px 8%;
    background: var(--bg);
    overflow: hidden;
}

.features-container {
      display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;

}

.feature-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-circle {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-logo {
    width: 100px;
    height: 100px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 2.5rem;
    box-shadow: 0 0 30px var(--primary-glow);
}

.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateOrbit 15s linear infinite;
}

.node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.node:nth-child(1) { top: -25px; left: 50%; transform: translateX(-50%); }
.node:nth-child(2) { bottom: 20px; left: 0; }
.node:nth-child(3) { bottom: 20px; right: 0; }

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.feature-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: white;
    border-left: 3px solid transparent;
    border-radius: 0 20px 20px 0;
    transition: 0.4s;
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.05);
    border-left-color: var(--primary);
    transform: translateX(10px);
}

.feature-icon-box {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.feature-text h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-dim);
    font-size: 0.95rem;
}


@media (max-width: 992px) {
    .features-container { display: flex; flex-direction: column; gap: 50px; text-align: center; }
    .feature-item { text-align: left; }
    .feature-graphic { order: 2; }
}

@keyframes rotateOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.node {
    animation: nodePulse 3s ease-in-out infinite alternate;
}

.node i {
    animation: counterRotate 15s linear infinite;
}

@keyframes counterRotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes nodePulse {
    from { box-shadow: 0 0 5px var(--primary-glow); transform: scale(1); }
    to { box-shadow: 0 0 20px var(--primary); transform: scale(1.1); }
}

.cor-logo img{
    width: 200px;
    background: white;
    border-radius: 13%;
    
}

.feature-item {
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    transition: 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover .feature-icon-box {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    transform: scale(1.2);
    transition: 0.3s;
}
.unique-features {
    position: relative;
}

.unique-features::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.05;
    z-index: -1;
    animation: moveBlob 10s infinite alternate;
}

@keyframes moveBlob {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, 50px); }
}
.how-it-works {
    padding: 120px 8%;
    position: relative;
    background: white;
}

.work-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 80px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 35%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(34, 197, 94, 0.1);
    z-index: 1;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: fillLine 4s linear infinite;
}

@keyframes fillLine {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}

.work-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.work-card:hover {
    background: rgba(34, 197, 94, 0.04);
    transform: translateY(-15px);
    border-color: var(--primary);
}

.work-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 20px var(--primary-glow);
}

.work-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.work-icon i {
    font-size: 2rem;
    color: var(--primary);
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px solid var(--primary);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.work-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.work-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .work-container { flex-direction: column; gap: 60px; }
    .process-line { display: none; }
    .work-card { width: 100%; }
}


.central-core {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 50px var(--primary-glow);
    position: relative;
}

.core-img { width: 100%; height: auto; }

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: var(--primary);
    animation: corePulse 2s infinite;
    z-index: -1;
}

@keyframes corePulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}
.split-hub {
    
    padding: 100px 8%;
    position: relative;
}

.split-container {
    display: flex;
    gap: 80px;
}

.split-left {
    flex: 1;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-dot 1s infinite alternate;
}

@keyframes pulse-dot { from { opacity: 0.3; } to { opacity: 1; } }

.split-left h2 { font-size: 3.5rem; line-height: 1.1; color: var(--text-main); margin-bottom: 30px; }
.split-left p { color: #94a3b8; line-height: 1.8; margin-bottom: 40px; }

.hub-features { display: flex; flex-direction: column; gap: 20px; }
.f-item { color: var(--text-main); font-weight: 600; display: flex; align-items: center; gap: 15px; }
.f-item span { color: var(--primary); font-family: serif; font-style: italic; font-size: 1.2rem; }

.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-stack-item {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: 0.5s;
}

.service-stack-item:hover {
    background: white;
    border-color: var(--primary);
    transform: scale(1.02);
}

.stack-icon {
    min-width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stack-text h4 { font-size: 1.6rem; color: var(--text-main); margin-bottom: 10px; }
.stack-text p { color: #64748b; font-size: 1rem; line-height: 1.5; }

@media (max-width: 992px) {
    .split-container { flex-direction: column; }
    .split-left { position: relative; top: 0; text-align: center; }
    .hub-features { align-items: center; }
    .service-stack-item { padding: 30px; flex-direction: column; text-align: center; background: white;}
}

    .cta-gravity {
    padding: 120px 8%;
  background:   radial-gradient(circle at 0% 132%, var(--bg), transparent),
    radial-gradient(circle at 50% -20%, rgba(34, 197, 94, 0.15), transparent);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
    from { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    to { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.cta-container {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    color: var(--primary);
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.cta-gravity h2 {
    font-size: 4rem;
   
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
}

.accent-glow {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.cta-gravity p {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-action-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.btn-gravity-primary {
    background: var(--primary);
    color: #000;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-gravity-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.5);
}

.btn-gravity-outline {
    background: var(--border);
  
    padding: 20px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gravity-outline:hover {
    background: #fff;
    color: #000;
}


.floating-orb {
    position: absolute;
    width: 150px; height: 150px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.orb-1 { top: -20%; left: -10%; animation: floatOrb 8s infinite linear; }
.orb-2 { bottom: -20%; right: -10%; animation: floatOrb 12s infinite linear reverse; }

@keyframes floatOrb {
    from { transform: rotate(0deg) translateY(20px); }
    to { transform: rotate(360deg) translateY(-20px); }
}

@media (max-width: 768px) {
    .cta-gravity h2 { font-size: 2.5rem; }
    .cta-action-wrap { flex-direction: column; }
    .btn-gravity-primary, .btn-gravity-outline { width: 100%; justify-content: center; }
    .blob-1, .blob-2{
        display: none;
    }
    html{
        overflow-x:hidden;
    }
}
.contact-hub {
    padding: 90px 8%;

    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}


.contact-info h2 {
    font-size: 3.5rem;

    line-height: 1.1;
    margin: 20px 0;
}

.accent-glow {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: 0.3s;
}

.channel-card:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}

.c-icon {
    width: 50px; height: 50px;
    background: var(--primary);
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.c-text span { color: var(--text-main); font-size: 0.8rem; display: block; }
.c-text strong { color: #64748b; font-size: 1rem; }


.glass-form {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary-glow);
    padding: 18px 25px;
    border-radius: 12px;

    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.05);
}

.btn-submit {
    background: var(--primary);
    color: #000;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}


@media (max-width: 768px) {
    .contact-wrapper {         display: flex;
        flex-direction: column; }
    .glass-form { padding: 30px; }
}
.faq-spotlight {
    padding: 120px 8%;
    color: #fff;
    overflow: hidden;
    background: white;
}

.blob {
    background: var(--primary);
    opacity: 0.2;
}
.hero-services{
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 8% 90px;
    position: relative;
}


.hero-services .hero-content{
    max-width: 900px;
    margin: auto;
}


.hero-badge{
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--primary);
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
}


.hero-services h1{
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
  
}


.hero-services h1 .accent{
    color: var(--primary);
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.hero-services p{
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}


.hero-highlights{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-box{
    background: var(--primary-glow);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 14px;
    transition: 0.3s ease;
}

.hero-box:hover{
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.05);
}


.hero-box i{
    color: var(--primary);
    font-size: 14px;
}

@media (max-width: 768px){
    .hero-services{
        padding: 120px 5% 70px;
    }

    .hero-box{
        width: 100%;
        justify-content: center;
    }
}

.navbar {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--border);
}

.nav-links a {
    color: var(--text-dim);
}

.nav-links a:hover {
    color: var(--primary);
}


.hero p {
    color: var(--text-dim);
}


.stats {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
}

.matt-card,
.card-inner,
.work-card,
.glass-form {
    background: var(--bg);
    border-color: var(--border);
}

.card-inner p,
.feature-text p,
.work-card p {
    color: var(--text-dim);
}


.faq-spotlight {
    color: var(--text-main);
}

.faq-trigger h3 {
    color: #334155;
}

.faq-response p {
    color: var(--text-dim);
}


.marquee {
    background: rgba(255, 255, 255, 0.6);
}

.footer {
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.footer-col a {
    color: var(--text-dim);
}

.footer-col a:hover {
    color: var(--primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}


.status-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 900;
}

.faq-intro h2 {
    font-size: 4rem;
    line-height: 1;
    margin: 25px 0;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.support-link span { display: block; color: #444; margin-bottom: 10px; }
.support-link a { color: var(--primary); text-decoration: none; font-weight: 700; transition: 0.3s; }
.support-link a:hover { text-decoration: underline; letter-spacing: 1px; }

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-trigger {
    display: flex;
    align-items: center;
    gap: 30px;
}

.faq-no {
    font-family: serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
    transition: 0.3s;
}

.faq-trigger h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #999;
    transition: 0.3s;
}

.faq-response {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 60px;
}

.faq-response p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 20px;
}

.faq-item:hover .faq-trigger h3 {
    color: var(--text-main);
    transform: translateX(10px);
}

.faq-item:hover .faq-no {
    color: var(--primary);
}


.faq-item:hover .faq-response {
    max-height: 200px;
}

.faq-item:hover {
    border-bottom-color: var(--primary);
}

@media (max-width: 992px) {
    .faq-grid { grid-template-columns: 1fr; gap: 60px; }
    .faq-intro h2 { font-size: 3rem; }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%;
    background: #fff; 
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}



.hamburger {
    display: none; 
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}



@media (max-width: 768px) {
    .hamburger {
        display: block; 
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        display: none;
        height: 100vh;
        width: 70%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px); 
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0; 
        display: block !important;
    }

    .nav-links li {
        margin: 15px 0;
    }

   
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #333;
    z-index: 1002;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
}


@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
         background: linear-gradient(135deg,#f0fdf4, #ffffff);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;

        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: 0.4s;
                background: var(--primary-glow);
        padding: 5px;
        width: 90%;
        text-align: center;
        border-radius: 8px;

    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-main);
    }

    .nav-links a:hover {
        color: var(--secondary);
    }

   
      .nav-links.active ~ .hamburger {
        display: none;
    }

    .nav-links.active ~ .close-btn {
        display: block; 
    }
}
.hamburger {
    display: none;
}

.close-btn {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        font-size: 22px;
        cursor: pointer;
    }

    .close-btn {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
    }
}
@media (max-width: 768px) {

    .nav-links {
       
        border-radius: 20px 0 0 20px;  

        padding-top: 60px; 

       

        padding-left: 25px;

    }

    
}