/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: #0b0f19;
    color: #e5e7eb;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* GLOBAL SECTION */
section {
    padding: 100px 0;
}

/* HEADER */
header {
    padding: 18px 0;
    border-bottom: 1px solid #1f2937;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo-container img {
    height: 85px;
    width: auto;
}

/* BUTTON */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #4f46e5, #22d3ee);
    color: white;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.btn.secondary {
    background: transparent;
    border: 1px solid #374151;
}

/* HERO */
.hero {
    display: flex;
    justify-content: center;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;   /* 🔥 FIXED */
    gap: 60px;
    max-width: 900px;          /* 🔥 KEY FIX */
    margin: 0 auto;
}

.hero-text {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
}

.hero p {
    color: #9ca3af;
    font-size: 18px;
}

.sub-proof {
    font-size: 14px;
    color: #6b7280;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.hero-buttons a {
    white-space: nowrap;
}

/* HERO VISUAL (kept but balanced) */
.hero-visual {
    width: 280px;  /* reduced */
    height: 280px;
}

.glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #4f46e5, #22d3ee, transparent 70%);
    filter: blur(90px);
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* TRUST */
.trust {
    text-align: center;
    padding-top: 20px;
}

.trust p {
    color: #6b7280;
    margin-bottom: 15px;
}

.trust-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-tags span {
    background: #111827;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #1f2937;
}

/* SERVICES */
.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: #111827;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
}

.card:hover {
    transform: translateY(-6px);
    background: #1f2937;
    border: 1px solid #374151;
}

.card p {
    color: #9ca3af;
}

/* CONVERSION */
.conversion {
    text-align: center;
}

.conversion h2 {
    margin-bottom: 40px;
}

.conversion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.conversion-card {
    background: #111827;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.conversion-card:hover {
    transform: translateY(-6px);
    background: #1f2937;
}

/* PORTFOLIO */
.portfolio {
    text-align: center;
}

.portfolio h2 {
    margin-bottom: 50px;
    font-size: 32px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card {
    background: #111827;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    background: #1f2937;
    border: 1px solid #374151;
}

.portfolio-card p {
    color: #9ca3af;
}

.portfolio-card span {
    font-size: 13px;
    color: #6b7280;
}

/* ABOUT */
.about {
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: auto;
    color: #9ca3af;
}

/* CTA */
.cta {
    text-align: center;
}

/* CONTACT */
.contact {
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1f2937;
    background: #111827;
    color: white;
}

/* FOOTER */
footer {
    border-top: 1px solid #1f2937;
    padding: 20px;
    text-align: center;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conversion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {

    .grid,
    .conversion-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
    }

    .logo-container img {
        height: 65px;
    }
}
html {
    scroll-behavior: smooth;
}
/* THANK YOU PAGE */
.thankyou {
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thankyou h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thankyou-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.thankyou-sub {
    color: #9ca3af;
    margin-bottom: 30px;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Glow effect */
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}