/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    cursor: none;
}

/* ================= CURSOR EFFECT ================= */
.cursor-dot, .cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    transition: width 0.2s, height 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease-out;
}

body:hover .cursor-dot {
    width: 12px;
    height: 12px;
}

/* ================= NAVIGATION ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(8, 7, 7, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 5%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: #462b3b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 6rem 2rem;
    flex-direction: column;
    gap: 2rem;
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.3s;
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

/* ================= HERO SECTION ================= */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 8rem 5% 4rem;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(10, 8, 14, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(19, 2, 10, 0.1) 0%, transparent 50%);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    filter: blur(40px);
    opacity: 0.3;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.4s; }
.hero-title .line:nth-child(3) { animation-delay: 0.6s; }

.hero-title .accent {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a1a1aa;
    font-size: 0.875rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, #8b5cf6, #ec4899);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(30px);
        opacity: 0.5;
    }
}

/* ================= SERVICES ================= */
.services {
    padding: 8rem 5%;
   /* background: #0f0f0f;*/
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-hover {
    opacity: 1;
}

/* ================= PROCESS ================= */
.process {
    padding: 8rem 5%;
   /* background: #0a0a0a;
    position: relative;
*/
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #8b5cf6, transparent);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.8s forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 1rem 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #a1a1aa;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
}

.step-features li {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    padding: 8rem 5%;
   /* background: #0f0f0f;*/
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.quote-icon {
    font-size: 4rem;
    color: #8b5cf6;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e5e5e5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b5cf6;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #a1a1aa;
    font-size: 0.875rem;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #8b5cf6;
}

/* ================= CTA ================= */
.cta-section {
    padding: 8rem 5%;
   /* background: linear-gradient(135deg, rgba(3, 0, 10, 0.1), rgba(8, 0, 4, 0.1));*/
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #6b7280;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.cta-note {
    margin-top: 1.5rem;
    color: #a1a1aa;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ================= FOOTER ================= */
.footer {
    background: #050505;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-link {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a1a1aa;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 5% 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
}

/*new*/
* { box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
  margin: 0;
  background: #0b0f19;
  color: #fff;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #6f4d36, transparent 70%);
  top: -200px;
  left: -200px;
  filter: blur(80px);
  z-index: -1;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

.hero {
  padding: 140px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.1;
  color:  #8b5cf6;
}

.hero h1 span {
  background: linear-gradient(135deg, #ff4d6d, #ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.glass-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 40px;
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.glass-card:hover {
  transform: translateY(-8px);
}

.glass-card.small {
  text-align: center;
  font-weight: 700;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 26px;
  padding: 30px;
}

.btn {
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #ff4d6d, #ff9f1c);
  border: none;
  font-weight: 700;
}

.btn.full {
  width: 100%;
  margin-top: 10px;
}

.form-card {
  max-width: 600px;
  margin: auto;
  background: rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

input, textarea, select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  margin-bottom: 15px;
}

.footer {
  text-align: center;
  padding: 40px;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }
}
/* ================= BUSINESS MODES FIX ================= */

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    align-items: stretch;
  }
  
  .modes-grid .glass-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Stop form CSS from breaking these cards */
  .modes-grid input,
  .modes-grid textarea,
  .modes-grid select {
    all: unset;
  }
  
  /* Mobile layout */
  @media (max-width: 900px) {
    .modes-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* ================= MODE SHOWCASE (PREMIUM) ================= */
.mode-showcase {
  margin-bottom: 120px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

  
  .mode-showcase.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
  
  .mode-showcase.reverse .mode-visual {
    order: 2;
  }
  
  .mode-visual {
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    border-radius: 24px;
    padding: 10px;
    height: 380px;
    overflow: hidden;
    
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  }
  
  
  .mode-ui-scroll {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 6px;
  }
  
  .mode-ui-scroll::-webkit-scrollbar {
    width: 6px;
  }
  .mode-ui-scroll::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 10px;
  }
  
  .fake-ui-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 18px;
    border-radius: 14px;
    font-weight: 600;
  }
  
  
.mode-showcase {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 120px auto;   /* 👈 center + spacing */
  }
  .mode-content h3 {
    font-size: 34px;
    margin: 14px 0;
    
  }
  
  .mode-content p {
    color: #a1a1aa;
    line-height: 1.7;
    
   
  }
  
  .mode-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(139,92,246,0.15);
    color: #8b5cf6;
    font-weight: 700;
    
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .mode-chips {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    
    flex-wrap: wrap;
  }
  
  .mode-chips span {
    background: rgba(255,255,255,0.08);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
  }
  
  /* Mobile */
  @media (max-width: 900px) {
    .mode-showcase,
    .mode-showcase.reverse {
      grid-template-columns: 1fr;
    }
  
    .mode-visual {
      height: 280px;
    }
  }
  
  /* ================= SOCIAL CONNECT ================= */
.social-connect {
    padding: 80px 20px;
   /* background: linear-gradient(135deg, rgba(4, 0, 12, 0.1), rgba(10, 0, 5, 0.1));*/
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: None;
  
  }
  
  .social-connect::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
  }
  
  .social-connect .container {
    position: relative;
    z-index: 1;
  }
  
  .social-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color:  #8b5cf6;
  }
  
  .social-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    
    max-width: 600px;
    margin: 0 auto 40px;
  }
  
  .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 14px 22px;
    border-radius: 999px;
   
    color:  #8b5cf6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-links a i {
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  
  .social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
  }
  
  .social-links a:hover i {
    transform: scale(1.3);
  }
  
  /* ================= SUGGESTIONS FORM ================= */
  .suggestions {
    padding: 80px 20px;
   /* background: linear-gradient(135deg, rgba(4, 0, 12, 0.1), rgba(10, 0, 5, 0.1));*/
    border-radius: 2px;
  }
  
  .suggestions-header h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
  }
  
  .suggestions-header p {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
  }
  
  .suggestions-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .suggestions-form textarea {
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid #d1d5db;
    resize: vertical;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    font-size: 16px;
    min-height: 140px;
    transition: all 0.3s ease;
  }
  
  .suggestions-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    color: #6b7280 ;
    box-shadow: 0 0 20px rgba(139,92,246,0.2);
  }
  
  .suggestions-button {
    background: linear-gradient(135deg,#8b5cf6,#ec4899);
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .suggestions-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(139,92,246,0.3);
  }
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 768px) {
    .social-links a {
      width: 45%;
      justify-content: center;
    }
    
    .suggestions-form textarea {
      min-height: 120px;
    }
  }
  
 /*logo hover */
  .logo-mark:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
    

  /*canvas*/
  #vein-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  }
  
  body {
    background: transparent;
  }
       /*hero-veins*/

.hero-vein {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
  }
  
  .hero-vein h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.05em;
  }
  
  .hero-vein p {
    opacity: 0.7;
    margin-top: 20px;
    font-size: 1.2rem;
  }

  /*body new addition*/
  body {
    min-height: 600vh; /* Temporary for testing */
  }
  
  /*auth wrapper*/
  .reg-layout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* keeps form centered */
    gap: 40px;
    width: 100%;
  }
  
  /* Mascot */
  .reg-mascot {
    position: absolute;
    left: calc(50% - 650px); /* pulls mascot left of centered form */
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
  }
  
  .reg-mascot img {
    width: 220px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: floatMascot 4s ease-in-out infinite;
  }
  
  .mascot-bubble {
    margin-top: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    color: #fff;
  }
  
  /* Float animation */
  @keyframes floatMascot {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }
  
  /* Mobile */
  @media (max-width: 900px) {
    .reg-mascot {
      position: static;
      margin-bottom: 20px;
    }
  }

  /*blogs*/

  .blog-section {
    padding: 100px 0;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  .blog-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139,92,246,0.5);
  }
  
  .blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 22px;
  }
  
  .blog-tag {
    font-size: 12px;
    color: #a78bfa;
    font-weight: 600;
  }
  
  .blog-content h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #a78bfa;
  }
  
  .blog-content p {
    color: #bdbdbd;
    font-size: 14px;
  }

  @media (max-width: 900px) {
    .blog-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .glow-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.3s ease;
  }
  
  /* Glow layer */
  .glow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      400px circle at var(--mouse-x) var(--mouse-y),
      rgba(139,92,246,0.18),
      transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  
  /* Border shine */
  .glow-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(
      300px circle at var(--mouse-x) var(--mouse-y),
      rgba(236,72,153,0.35),
      transparent 40%
    );
    opacity: 0;
    pointer-events: none;
  }
  
  /* Hover activate */
  .glow-card:hover::before,
  .glow-card:hover::after {
    opacity: 1;
  }
  
  .glow-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139,92,246,0.5);
    box-shadow: 0 20px 60px rgba(139,92,246,0.15);
  }
  
  /*faqs*/
  .faq {
    padding: 120px 0;
  }
  
  .faq-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .faq-item {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
  }
  
  /* Question row */
  .faq-question {
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
  }
  
  /* Icon */
  .faq-icon {
    transition: 0.4s ease;
  }
  
  /* Answer */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s cubic-bezier(.4,0,.2,1);
  }
  
  .faq-answer p {
    padding: 0 24px 22px;
    color: #bdbdbd;
    line-height: 1.7;
  }
  
  /* Active state */
  .faq-item.active .faq-answer {
    max-height: 300px;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  
/*whatsapp*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .whatsapp-float {
      width: 48px;
      height: 48px;
      font-size: 22px;
      bottom: 15px;
      right: 15px;
  }
}

/*go to top*/
.go-top {
  position: fixed;
  bottom: 90px; /* above WhatsApp button */
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.go-top.show {
  opacity: 1;
  pointer-events: auto;
}

.go-top:hover {
  transform: translateY(-4px);
}

@media (max-width: 600px) {
  .go-top {
      width: 45px;
      height: 45px;
      font-size: 18px;
      right: 15px;
      bottom: 80px;
  }
}




/*responsive fixes*/
/* ===== MOBILE-FRIENDLY RESPONSIVE ===== */

/* Tablets & small laptops */
@media (max-width: 1024px) {
  /* Hero Section */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Services & Modes Grids */
  .services-grid,
  .hero-stats,
  .grid-2, .grid-3, .grid-4,
  .modes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Mode Showcase */
  .mode-showcase,
  .mode-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mode-visual {
    height: auto;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Small tablets & large phones */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reg-layout {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .reg-mascot {
    position: static;
    left: auto;
    transform: none;
    margin-bottom: 20px;
  }
}

/* Phones */
@media (max-width: 768px) {
  .services-grid,
  .hero-stats,
  .grid-2, .grid-3, .grid-4,
  .modes-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .mode-content h3,
  .mode-content p {
    font-size: 16px;
  }

  .footer-container {
    text-align: center;
  }
}

/* Extra small phones */
@media (max-width: 600px) {
  .hero {
    padding: 80px 20px 60px;
  }
  .section,
  .cta-section {
    padding: 60px 20px;
  }

  .blog-content h3,
  .mode-content h3 {
    font-size: 20px;
  }

  .blog-card img,
  .mode-visual img {
    width: 100%;
    height: auto;
  }
}


/*video*/
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cover the entire hero */
  transform: translate(-50%, -50%);
  z-index: -3; /* behind everything */
  pointer-events: none;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* optional for text readability */
  z-index: -1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1; /* in front of everything */
  max-width: 1200px;
  padding: 0 2rem;
  text-align: center;
  color: #fff;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero {
    background: url('fallback.jpg') center/cover no-repeat;
  }
}


.hero {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Keep content above video */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Optional dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}


/*service hover*/
.service-card {
  position: relative;
}

.service-hover {
  pointer-events: none;   /* 👈 THIS is the magic line */
}

.service-card a {
  position: relative;
  z-index: 5;
}
@media (hover: none) {
  .service-card:hover .service-hover {
      opacity: 1;
  }
}
