html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0B1120;
    color: #CBD5E1;
    /* padding-top: 80px; */
}

section {
    padding: 80px 0;
}


/* NAVBAR */
.custom-navbar {
    background: rgba(11,17,32,0.85);
    backdrop-filter: blur(12px);
}

.navbar-brand{
    color: #ffffff !important;
    font-size: 26px;
}

.navbar-brand:hover{
    color: #ffffff !important;
}

.gradient-text {
    background: linear-gradient(135deg,#2563EB,#7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.navbar-toggler{
    border: none;
}

.navbar-toggler-icon{
    filter: brightness(0) invert(1);
}

/* HERO */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.1rem;
    color: #94A3B8;
}

.hero-glow {
    width: 350px;
    height: 350px;
    margin: auto;
    background: radial-gradient(circle, #7C3AED, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

/* BUTTON */
.btn-gradient {
    background: linear-gradient(135deg,#2563EB,#7C3AED);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.5);
}

/* SERVICES */
.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    transition: 0.4s ease;
    height: 100%;
}

.service-card i {
    font-size: 40px;
    color: #7C3AED;
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(124,58,237,0.3);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg,#1E293B,#0F172A);
    border-radius: 30px;
    margin: 0 40px 100px 40px;
    padding: 80px 20px;
}

/* FOOTER */
.footer {
    background: #0F172A;
    padding: 40px 0;
}

.industries-section {
    padding-top: 60px;
    padding-bottom: 60px;
}


.industry-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.industry-box i {
    font-size: 40px;
    color: #7C3AED;
    margin-bottom: 15px;
}

.industry-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.3);
}

.approach-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
}

.client-logo {
    max-width: 120px;
    opacity: 0.6;
    transition: 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

.case-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #2563EB, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    margin: auto;
}

.testimonial-box {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    margin: auto;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.grid-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(124,58,237,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 50px 50px;
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.client-marquee-section {
    padding: 60px 0;
    background: #0F172A;
    overflow: hidden;
}

.small-text {
    color: #94A3B8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: calc(250px * 10);
    animation: scrollMarquee 25s linear infinite;
}

.marquee-track img {
    width: 180px;
    margin: 0 35px;
    opacity: 0.5;
    transition: 0.3s;
}

.marquee-track img:hover {
    opacity: 1;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 1;
    animation: floatBlob 12s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #7C3AED;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #2563EB;
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

@keyframes floatBlob {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(40px);
    }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.analytics-section {
    padding: 120px 0;
    background: linear-gradient(135deg,#0F172A,#111827);
}

.analytics-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.analytics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(124,58,237,0.3);
}

.analytics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.analytics-header i {
    font-size: 22px;
    color: #7C3AED;
    margin-right: 10px;
}

.analytics-header h6 {
    flex: 1;
    margin: 0;
    font-weight: 600;
}

.percentage {
    font-weight: 700;
    color: #fff;
}

.bar {
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient(90deg,#2563EB,#7C3AED);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.industry-box,
.service-card,
.analytics-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.row {
    perspective: 1000px;
}

.industry-box:hover,
.service-card:hover,
.analytics-card:hover {
    box-shadow: 0 20px 60px rgba(124,58,237,0.35);
}

/* ================= FOOTER ================= */

.premium-footer {
    background: #0A0F1C;
    padding: 80px 0 30px 0;
    position: relative;
}

.footer-logo {
    font-weight: 700;
}

.footer-heading {
    color: #7C3AED;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    color: #94A3B8;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #7C3AED;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 50px 0 20px 0;
}

.footer-bottom {
    font-size: 14px;
    color: #94A3B8;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.7;
}

.crafted-by {
    margin-top: 8px;
    font-size: 14px;
    color: #94A3B8;
}

.crafted-by a {
    color: #7C3AED;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.crafted-by a:hover {
    color: #ffffff;
}

.hero-visual {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#network-sphere {
    width: 420px;
    height: 420px;
    position: relative;
    transform: translate(-60px, -40px);
    max-width: 100%;

}

#network-sphere canvas {
    display: block;
    max-width: 100%;
}

@media(max-width: 992px){
    .hero-visual {
        height: 350px;
        margin-top: 40px;
    }
}

.approach-section {
    padding: 120px 0;
    position: relative;
}

.process-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, #7C3AED, #2563EB);
    opacity: 0.3;
    z-index: 1;
}

.process-step {
    position: relative;
    width: 22%;
    text-align: center;
    z-index: 2;
}

.step-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #7C3AED;
    transition: 0.3s ease;
}

.process-step:hover .step-circle {
    background: #7C3AED;
    color: #fff;
    box-shadow: 0 0 30px rgba(124,58,237,0.5);
}

.process-step h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    font-size: 14px;
    color: #94A3B8;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    color: #7C3AED;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.learn-more:hover {
    color: #ffffff;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card i {
    font-size: 28px;
    color: #7C3AED;
    margin-bottom: 15px;
}

.industry-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
    color: #94A3B8;
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(37,99,235,0.1));
    opacity: 0;
    transition: 0.4s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

@media(max-width: 992px){
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

.case-study-section {
    padding: 140px 0;
    position: relative;
}

.case-wrapper {
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.case-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7C3AED;
}

.case-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 15px;
}

.case-metrics {
    display: flex;
    gap: 40px;
}

.metric h3 {
    font-size: 28px;
    color: #7C3AED;
    margin-bottom: 5px;
}

.metric span {
    font-size: 13px;
    color: #94A3B8;
}

/* Right Visual Panel */

.case-visual {
    position: relative;
    padding: 40px;
}

.visual-card {
    background: rgba(255,255,255,0.04);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(124,58,237,0.15);
}

.visual-card.highlight {
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(37,99,235,0.1));
    border: 1px solid rgba(124,58,237,0.3);
}

.visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124,58,237,0.3), transparent);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: -1;
}

.cta-section {
    padding: 140px 0;
    position: relative;
}

.cta-wrapper {
    position: relative;
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
    padding: 70px;
    overflow: hidden;
}

.cta-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7C3AED;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 15px;
}

.cta-points div {
    margin-bottom: 8px;
    font-size: 14px;
    color: #CBD5E1;
}

.cta-panel {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(124,58,237,0.2);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}

.cta-panel h4 {
    font-weight: 600;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.35), transparent);
    right: -100px;
    bottom: -100px;
    filter: blur(120px);
    z-index: -1;
}

.custom-navbar {
    background: rgba(10, 15, 35, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124,58,237,0.15);
    padding: 18px 0;
    transition: 0.3s ease;
}

.nav-link {
    color: #CBD5E1 !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
}

.nav-animate::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #7C3AED, #2563EB);
    transition: 0.3s ease;
}

.nav-animate:hover::after {
    width: 100%;
}

/* ===== MEGA DROPDOWN FIX ===== */

.dropdown-menu.mega-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 0;
    border-radius: 0;
    border: none;
    padding: 40px 0;
    background: rgba(15, 20, 40, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(124,58,237,0.2);
    display: none;
}

.nav-item.dropdown:hover .mega-dropdown {
    display: block;
}

/* Heading */
.dropdown-heading {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7C3AED;
    margin-bottom: 15px;
}

/* Items */
.dropdown-item {
    padding: 6px 0;
    font-size: 14px;
    color: #CBD5E1;
    background: transparent;
}

.dropdown-item:hover {
    color: #7C3AED;
    background: transparent;
}

/* ===== ICON DROPDOWN STYLE ===== */

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #CBD5E1;
    transition: all 0.3s ease;
}

.dropdown-item i {
    font-size: 16px;
    color: #7C3AED;
    transition: 0.3s ease;
}

.dropdown-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.dropdown-item:hover i {
    color: #ffffff;
}

/* ======About====== */
.about-hero {
    padding: 160px 0 120px;
}


.about-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7C3AED;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    max-width: 900px;
    margin: auto;
}

.about-sub {
    max-width: 750px;
    margin: auto;
    color: #94A3B8;
}

.about-section {
    padding: 120px 0;
}

.about-highlight-box {
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.2);
}

.about-approach {
    padding: 120px 0;
}

.approach-card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(124,58,237,0.15);
}

.why-section {
    padding: 120px 0;
}

.why-card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(124,58,237,0.15);
}

.about-cta {
    padding: 120px 0;
}

.stats-section {
    padding: 120px 0;
    background: rgba(255,255,255,0.02);
}

.stat-box {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(124,58,237,0.15);
}

.stat-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #7C3AED;
}

.stat-box p {
    margin-top: 10px;
    color: #94A3B8;
}

.about-hero {
    padding: 180px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.25), transparent);
    top: -150px;
    right: -150px;
    filter: blur(120px);
    z-index: 0;
}

.about-label {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7C3AED;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

.about-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #7C3AED, #2563EB);
    transform: translateY(-50%);
}


.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.about-sub {
    color: #94A3B8;
    max-width: 600px;
}

.about-tags span {
    display: inline-block;
    background: rgba(124,58,237,0.15);
    padding: 8px 14px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 13px;
    color: #7C3AED;
}

/* RIGHT PANEL */
.about-visual-panel {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.2);
}

.visual-box {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.1);
}

.visual-box.highlight {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.1));
    border: 1px solid rgba(124,58,237,0.3);
}

.about-identity-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.identity-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.25), transparent);
    bottom: -200px;
    left: -150px;
    filter: blur(120px);
    z-index: 0;
}

.section-tag {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7C3AED;
}

.identity-title {
    font-size: 38px;
    font-weight: 700;
}

.identity-text {
    color: #94A3B8;
    line-height: 1.7;
}

.identity-points div {
    margin-bottom: 10px;
    color: #CBD5E1;
    font-size: 15px;
}

.identity-points i {
    color: #7C3AED;
    margin-right: 8px;
}

/* RIGHT CARD */
.identity-card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.2);
    backdrop-filter: blur(10px);
}

.identity-card-block h4 {
    font-weight: 600;
}

.identity-card-block p {
    color: #94A3B8;
}

.why-innovies-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.why-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.2), transparent);
    top: -200px;
    right: -200px;
    filter: blur(120px);
    z-index: 0;
}

.why-title {
    font-size: 38px;
    font-weight: 700;
}

.why-sub {
    color: #94A3B8;
    line-height: 1.7;
}

/* Cards */
.why-modern-card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(124,58,237,0.15);
    transition: 0.4s ease;
    height: 100%;
}

.why-modern-card i {
    font-size: 26px;
    color: #7C3AED;
    margin-bottom: 15px;
    display: inline-block;
}

.why-modern-card h5 {
    font-weight: 600;
}

.why-modern-card p {
    color: #94A3B8;
    font-size: 14px;
}

/* Hover Effect */
.why-modern-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124,58,237,0.4);
    box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

/* === Contact Section === */
.contact-hero {
    padding: 160px 0 120px;
    text-align: center;
}

.contact-title {
    font-size: 44px;
    font-weight: 700;
}

.contact-sub {
    max-width: 650px;
    margin: auto;
    color: #94A3B8;
}
.contact-main-section {
    padding: 100px 0 140px;
}

/* FORM CARD */
.contact-form-card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.2);
    backdrop-filter: blur(10px);
}

/* INPUT STYLE */
.custom-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(124,58,237,0.2);
    color: #fff;
    padding: 12px 15px;
}

.custom-input:focus {
    border-color: #7C3AED;
    box-shadow: none;
    background: rgba(255,255,255,0.06);
}

/* INFO CARD */
.contact-info-card {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.15);
}

.contact-info-block {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #CBD5E1;
}

.contact-info-block i {
    color: #7C3AED;
    font-size: 18px;
}

.contact-main-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.25), transparent);
    top: 50px;
    left: -200px;
    filter: blur(120px);
}

/* FORM */
.contact-form-modern {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.25);
    backdrop-filter: blur(12px);
}

/* Floating Input */
.floating-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-group input,
.floating-group textarea {
    width: 100%;
    padding: 14px 12px;
    background: transparent;
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.floating-group label {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s ease;
    pointer-events: none;
}

/* Animation */
.floating-group input:focus + label,
.floating-group input:valid + label,
.floating-group textarea:focus + label,
.floating-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #0f172a;
    padding: 0 6px;
    color: #7C3AED;
}

/* WHITE PLACEHOLDER FIX */
::placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}

/* INFO SIDE */
.contact-info-modern {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.2);
}

.info-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-card i {
    font-size: 20px;
    color: #7C3AED;
}

.info-card p {
    margin: 5px 0 0;
    color: #94A3B8;
}

/* ==== service process section */
.service-hero {
    padding: 160px 0 140px;
    position: relative;
    overflow: hidden;
}

.service-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.25), transparent);
    right: -200px;
    top: -150px;
    filter: blur(120px);
}

.service-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    color: #7C3AED;
}

.service-title {
    font-size: 44px;
    font-weight: 700;
}

.service-sub {
    color: #94A3B8;
    max-width: 600px;
}

.service-highlights span {
    display: inline-block;
    background: rgba(124,58,237,0.15);
    padding: 8px 14px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 13px;
    color: #7C3AED;
}

.service-visual-card {
    background: rgba(255,255,255,0.03);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(124,58,237,0.2);
}

.service-section {
    padding: 120px 0;
}

.service-card-modern {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(124,58,237,0.15);
    transition: 0.4s ease;
    height: 100%;
}

.service-card-modern i {
    font-size: 26px;
    color: #7C3AED;
    margin-bottom: 15px;
}

.service-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(124,58,237,0.4);
}

.service-process-section {
    padding: 120px 0;
}

.process-box {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(124,58,237,0.2);
}

.service-cta {
    padding: 120px 0;
}

.service-process-section {
    padding: 140px 0;
    position: relative;
}

.process-sub {
    max-width: 650px;
    margin: auto;
    color: #94A3B8;
}

.process-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    flex-wrap: wrap;
}

.process-line {
    position: absolute;
    top: 45px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, #7C3AED, #2563EB);
    opacity: 0.3;
    z-index: 1;
}

.process-step {
    position: relative;
    width: 23%;
    text-align: center;
    z-index: 2;
}

.step-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #7C3AED;
    transition: 0.4s ease;
}

.process-step h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #94A3B8;
}

/* Hover Effect */
.process-step:hover .step-circle {
    background: #7C3AED;
    color: #fff;
    box-shadow: 0 0 40px rgba(124,58,237,0.5);
}
@media(max-width: 992px){
    .process-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .process-line {
        display: none;
    }

    .process-step {
        width: 100%;
        margin-bottom: 40px;
    }
}

.service-hero {
    padding: 160px 0 150px;
    position: relative;
    overflow: hidden;
}

/* Subtle Grid Background */
.service-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.service-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.25), transparent);
    right: -200px;
    top: -150px;
    filter: blur(120px);
    z-index: 0;
}

.service-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    color: #7C3AED;
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.service-sub {
    color: #94A3B8;
    max-width: 600px;
}

.service-highlights span {
    display: inline-block;
    background: rgba(124,58,237,0.15);
    padding: 8px 14px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 13px;
    color: #7C3AED;
}

/* RIGHT CARD */
.service-visual-card-modern {
    background: rgba(255,255,255,0.03);
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.25);
    backdrop-filter: blur(12px);
}

.visual-header {
    margin-bottom: 20px;
}

.visual-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #7C3AED, #2563EB);
    margin-top: 8px;
}

.visual-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #CBD5E1;
}

.visual-point i {
    font-size: 18px;
    color: #7C3AED;
}

.impact-box {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(124,58,237,0.2);
}

.impact-box h3 {
    font-size: 32px;
    color: #7C3AED;
}

.legal-hero {
    padding: 160px 0 80px;
}

.legal-title {
    font-size: 42px;
    font-weight: 700;
}

.legal-sub {
    color: #94A3B8;
}

.legal-section {
    padding: 60px 0 140px;
}

.legal-card {
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(124,58,237,0.2);
    line-height: 1.8;
}

.legal-card h4 {
    margin-top: 30px;
    font-weight: 600;
    color: #fff;
}

.legal-card p {
    color: #CBD5E1;
    font-size: 15px;
}
