/* =========================
   NEXTTECH LABS
   PREMIUM DARK THEME
========================= */

/* =========================
   CSS VARIABLES
========================= */

:root {
    --bg: #0b1120;
    --bg-secondary: #111827;
    --bg-footer: #070d1f;
    --bg-form: #151c2c;
    --bg-select: #1f2937;
    --bg-nav: rgba(15, 23, 42, .75);
    --bg-mobile-nav: #0b1120;

    --card: rgba(255, 255, 255, 0.08);
    --card-light: rgba(255, 255, 255, .05);

    --blue: #2563eb;
    --cyan: #06b6d4;
    --cyan-bright: #20c5ff;
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;

    --white: #ffffff;
    --text: #cbd5e1;
    --text-muted: #94a3b8;
    --nav-text: #dbe4ff;

    --border: rgba(255, 255, 255, 0.10);
    --border-subtle: rgba(255, 255, 255, .08);
    --border-cyan: rgba(32, 197, 255, .25);

    --gradient-primary: linear-gradient(135deg, var(--blue), var(--cyan));
    --gradient-nav-btn: linear-gradient(135deg, var(--cyan-bright), var(--purple-dark));
    --gradient-accent: linear-gradient(90deg, var(--cyan-bright), var(--purple));
    --gradient-text: linear-gradient(90deg, var(--cyan), var(--purple));
    --gradient-cta: linear-gradient(135deg, rgba(37, 99, 235, .25), rgba(139, 92, 246, .20));
    --gradient-chart: linear-gradient(135deg, var(--blue), var(--purple));
    --gradient-project-btn: linear-gradient(135deg, var(--cyan-bright), var(--purple));
    --gradient-card-top: linear-gradient(90deg, var(--cyan-bright), var(--purple));

    --shadow: 0 15px 40px rgba(0, 0, 0, .35);
    --shadow-nav: 0 10px 30px rgba(0, 0, 0, .25);
    --shadow-cyan: 0 10px 25px rgba(32, 197, 255, .25);
    --shadow-cyan-lg: 0 20px 40px rgba(32, 197, 255, .15);
    --shadow-cyan-hover: 0 15px 35px rgba(32, 197, 255, .25);
    --shadow-whatsapp: 0 10px 25px rgba(37, 211, 102, .45);
    --shadow-whatsapp-hover: 0 15px 35px rgba(37, 211, 102, .6);

    --transition: .3s ease;
    --transition-smooth: .35s ease;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --radius-pill: 999px;

    --whatsapp: #25D366;
}

/* =========================
   RESET & BASE
========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    padding-top: 120px;
    
}
img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

select {
    background: var(--bg-select) !important;
    color: var(--white) !important;
}

select option {
    background: var(--bg-select) !important;
    color: var(--white) !important;
}

/* =========================
   LAYOUT
========================= */

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.section {
    padding: 40px 0 !important;
}

.services,
.why,
.portfolio,
.build,
.portfolio-preview,
.process,
.tech-stack-section,
.cta {
    margin-top: 40px;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.section-title {
    text-align: center;
    margin-bottom: 30px !important;
    padding-top: 0 !important;
}

.section-title h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--white);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
}

.page-header {
    padding-top: 180px;
    text-align: center;
    margin-bottom: 50px;
}
/* ===========================
   Legal Pages
=========================== */

.page-header {
    min-height: 100vh;
    padding: 140px 20px 80px;
    background: var(--bg);
    color: var(--white);
}

.page-header .container {
    max-width: 900px;
    margin: auto;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
}

.page-header h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--cyan);
    font-size: 28px;
}

.page-header p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
}

.page-header ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.page-header li {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 10px;
}

.page-header a {
    color: var(--cyan);
    text-decoration: none;
}

.page-header a:hover {
    text-decoration: underline;
}

/* =========================
   BLUR BACKGROUND
========================= */

.blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

.blur-1 {
    width: 350px;
    height: 350px;
    background: var(--blue);
    top: -100px;
    left: -100px;
    opacity: .20;
}

.blur-2 {
    width: 350px;
    height: 350px;
    background: var(--purple);
    right: -120px;
    bottom: 100px;
    opacity: .20;
}

/* =========================
   NAVBAR
========================= */

.header {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border: none;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    min-height: auto !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px !important;
    background: var(--bg-nav);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-nav);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.logo img {
    height: 70px !important;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.5);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--nav-text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--cyan);
}

.nav-menu a.active {
    color: var(--cyan-bright);
    font-weight: 600;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--card);
}

.nav-btn {
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    background: var(--gradient-nav-btn);
    box-shadow: var(--shadow-cyan);
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: var(--radius-xl);
    background: var(--card);
    border: 1px solid var(--border);
    margin-bottom: 25px;
    color: var(--cyan);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-line {
    margin-top: 25px;
    color: var(--text-muted);
    font-size: .95rem;
}

/* =========================
   GLASS CARDS & DASHBOARD
========================= */

.glass-card {
    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.dashboard-card {
    padding: 30px;
    width: 100%;
}

.chart {
    margin-top: 20px;
    height: 180px;
    border-radius: var(--radius-sm);
    background: var(--gradient-chart);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.stat-box h4 {
    font-size: 28px;
    color: var(--cyan-bright);
    margin-bottom: 8px;
}

.stat-box p {
    color: var(--text);
    font-size: 14px;
}

.ai-card,
.analytics-card {
    position: absolute;
    width: 180px;
    padding: 25px;
    text-align: center;
}

.ai-card {
    left: -20px;
    bottom: 50px;
}

.analytics-card {
    right: -20px;
    bottom: -20px;
}

.ai-card i,
.analytics-card i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--cyan);
}

/* =========================
   STATS SECTION
========================= */

.stats-section {
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 10px;
}

.stat p {
    color: var(--text);
}

/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--card-light);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-card-top);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cyan-lg);
}

.service-card i {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    margin: 10px 0;
    color: var(--text);
}

.service-card li::before {
    content: "✓ ";
    color: var(--cyan-bright);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* =========================
   SERVICES PAGE
========================= */

.services-hero {
    text-align: center;
    padding: 140px 0 80px;
}

.services-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(32, 197, 255, .08);
    border: 1px solid rgba(32, 197, 255, .2);
    color: var(--cyan-bright);
}

.services-hero h1 {
    font-size: 4rem;
    margin: 25px 0;
}

.services-hero p {
    max-width: 700px;
    margin: auto;
    color: var(--text-muted);
}

.services-grid-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* =========================
   WHY US
========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background: var(--card);
    border: 1px solid var(--border);
}

.why-card h3 {
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text);
    line-height: 1.7;
}

/* =========================
   BUILD & PROCESS
========================= */

.build-grid,
.process-grid,
.footer-grid {
    display: grid;
    gap: 25px;
}

.build-grid,
.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.build-card,
.process-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.build-card:hover,
.process-card:hover {
    transform: translateY(-8px);
}

.process-card span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
    display: block;
    margin-bottom: 15px;
}

/* =========================
   ABOUT
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(32, 197, 255, .08);
    border: 1px solid rgba(32, 197, 255, .2);
    color: var(--cyan-bright);
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlight {
    margin-top: 25px;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    background: rgba(32, 197, 255, .08);
    border: 1px solid rgba(32, 197, 255, .15);
    color: var(--cyan-bright);
    font-weight: 600;
}

.about-card,
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stat {
    background: var(--card-light);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
}

.about-stat h3 {
    font-size: 2rem;
    color: var(--cyan-bright);
    margin-bottom: 10px;
}

.about-stat p {
    color: var(--text);
}

/* =========================
   PORTFOLIO
========================= */

.portfolio-title {
    padding-top: 140px;
}

.portfolio-heading {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.portfolio-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--card-light);
    border: 1px solid var(--border-subtle);
    color: var(--cyan-bright);
    margin-bottom: 20px;
    font-size: .95rem;
}

.portfolio-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(32, 197, 255, .08);
    border: 1px solid var(--border-cyan);
    color: var(--cyan-bright);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-heading h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.portfolio-heading h2 span {
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-heading p {
    max-width: 750px;
    margin: auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    padding: 40px;
    border-radius: var(--radius-md);
    background: var(--card);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cyan-lg);
}

.project-card p {
    color: var(--text);
    margin-top: 10px;
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: .4s;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 600;
    background: var(--gradient-project-btn);
    transition: var(--transition-smooth);
}

.project-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-cyan-hover);
}

/* =========================
   TECH STACK
========================= */

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    color: var(--cyan-bright);
    font-size: 14px;
    font-weight: 600;
}

.tech-stack span {
    padding: 14px 24px;
    border-radius: var(--radius-xl);
    background: var(--card);
    border: 1px solid var(--border);
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--card-light);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--cyan-bright);
}

/* =========================
   CTA
========================= */

.cta-box {
    text-align: center;
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    background: var(--gradient-cta);
    border: 1px solid var(--border);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text);
    margin-bottom: 30px;
}

/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 45px;
    align-items: start;
    margin-top: 50px;
}

.map-section {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.map-section iframe {
    width: 100%;
    height: 650px;
    border: 0;
    border-radius: var(--radius-lg);
}

.contact-form {
    background: var(--bg-form);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .03);
    color: var(--white);
}

.contact-form textarea {
    resize: none;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: var(--bg-footer);
    padding: 80px 0 30px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.footer p {
    color: var(--text);
    margin-top: 10px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin: 10px 0;
    color: var(--text);
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col h2,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: var(--text);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--cyan-bright);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: .9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    color: var(--white);
    font-size: 20px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-subtle);
}

.social-links a:hover {
    background: var(--cyan-bright);
    transform: translateY(-5px);
    color: var(--white);
}

/* =========================
   WHATSAPP BUTTONS
========================= */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 62px;
    height: 62px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-whatsapp);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: var(--shadow-whatsapp-hover);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-section iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        width: 92%;
    }

    /* Navbar */
    .nav-menu,
    .nav-btn {
        display: none;
    }

    .navbar {
        height: 70px;
        padding: 0 15px !important;
    }

    .logo img {
        height: 55px !important;
    }

    .menu-btn {
        display: block;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 75px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 75px);
        background: var(--bg-mobile-nav);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        transition: right var(--transition-smooth);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        color: var(--white);
        padding: 12px 0;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
        max-width: 280px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .ai-card,
    .analytics-card {
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    /* Grids */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid,
    .why-grid,
    .portfolio-grid,
    .testimonial-grid,
    .about-grid,
    .build-grid,
    .process-grid,
    .footer-grid,
    .contact-grid,
    .services-grid-section .container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-stat {
        padding: 20px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    /* Hide floating elements */
    .floating-card,
    .service-tag {
        display: none;
    }

    img {
        height: auto;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
    }
}
.about-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.about-list li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:var(--text);
    font-size:16px;
}

.about-list li:last-child{
    border:none;
}
/* ==========================================
   ABOUT PAGE - PREMIUM DESIGN
========================================== */

.about-hero{
    padding:170px 0 100px;
}

.about-hero-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(0,255,255,.08);
    border:1px solid rgba(0,255,255,.2);
    color:var(--cyan);
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:25px;
}

.about-left h1{
    font-size:58px;
    line-height:1.15;
    margin-bottom:25px;
}

.about-left h1 span{
    color:var(--cyan);
}

.about-left p{
    color:var(--text);
    font-size:18px;
    line-height:1.9;
    margin-bottom:25px;
}

.company-info{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.info-box{
    flex:1;
    padding:25px;
    border-radius:18px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}

.info-box h3{
    margin-bottom:12px;
    color:var(--white);
}

.info-box p{
    margin:0;
    font-size:15px;
}

.company-card{
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
}

.company-card h2{
    text-align:center;
    margin-bottom:30px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-box{
    text-align:center;
    padding:30px 20px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h3{
    font-size:36px;
    color:var(--cyan);
}

.stat-box p{
    margin-top:10px;
}
/*==========================================
 COMPANY SECTION
==========================================*/

.company-section{
    padding:100px 0;
}

.company-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.company-card{
    padding:40px;
    border-radius:24px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.company-card:hover{
    transform:translateY(-8px);
    border-color:var(--cyan);
}

.company-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    background:rgba(0,255,255,.08);
    margin-bottom:25px;
}

.company-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.company-card p{
    color:var(--text);
    line-height:1.9;
}

/*==========================================
 MISSION
==========================================*/

.mission-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:50px;

}

.mission-card{

padding:45px;

border-radius:24px;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.mission-card:hover{

transform:translateY(-8px);

}

.mission-icon{

font-size:42px;

margin-bottom:25px;

}

.mission-card h3{

margin-bottom:18px;

font-size:28px;

}

.mission-card p{

color:var(--text);

line-height:1.9;

}

/*==========================================
WHY SECTION
==========================================*/

.why-section .service-card{

padding:35px;

min-height:260px;

display:flex;

flex-direction:column;

justify-content:flex-start;

}

.why-section .service-card h3{

margin:18px 0;

}

.why-section .service-card p{

line-height:1.8;

}

/*==========================================
VALUES
==========================================*/

.values-section .glass-card{

padding:35px;

min-height:220px;

}

.values-section .glass-card h3{

margin-bottom:18px;

}
/*==========================================
PROCESS SECTION
==========================================*/

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.process-item{
    position:relative;
    padding:35px 25px;
    border-radius:24px;
    text-align:center;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.process-item:hover{
    transform:translateY(-10px);
    border-color:var(--cyan);
}

.process-number{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#00E5FF,#00B8D4);
    color:#000;
    font-size:24px;
    font-weight:700;
}

.process-item h3{
    margin-bottom:15px;
    font-size:24px;
}

.process-item p{
    color:var(--text);
    line-height:1.8;
}

/*==========================================
FAQ
==========================================*/

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

.faq-grid .glass-card{
    padding:30px;
    border-radius:22px;
    transition:.35s;
}

.faq-grid .glass-card:hover{
    transform:translateY(-8px);
}

.faq-grid h3{
    margin-bottom:15px;
    font-size:22px;
}

.faq-grid p{
    color:var(--text);
    line-height:1.8;
}

/*==========================================
CTA
==========================================*/

.cta-box{
    max-width:900px;
    margin:auto;
    padding:70px 50px;
    text-align:center;
    border-radius:30px;
    background:linear-gradient(135deg,
    rgba(0,229,255,.12),
    rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.08);
}

.cta-box h2{
    font-size:46px;
    margin:20px 0;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 35px;
    color:var(--text);
    line-height:1.9;
}

/*==========================================
SECTION TITLE
==========================================*/

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:40px;
    border:1px solid rgba(0,229,255,.25);
    background:rgba(0,229,255,.08);
    color:var(--cyan);
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
    font-weight:600;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:20px;
}

.section-title p{
    color:var(--text);
    line-height:1.9;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.about-hero-grid,
.company-grid,
.mission-grid,
.process-grid,
.faq-grid{

grid-template-columns:1fr;

}

.company-info{

flex-direction:column;

}

.about-left h1{

font-size:42px;

}

.section-title h2{

font-size:36px;

}

.cta-box{

padding:50px 30px;

}

.cta-box h2{

font-size:34px;

}

}
/* =====================================================
   ABOUT PAGE HERO
===================================================== */

.about-hero{
    padding:170px 0 110px;
    position:relative;
    overflow:hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#00d9ff22;
    filter:blur(120px);
    top:-120px;
    right:-120px;
    border-radius:50%;
    z-index:-1;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.about-left{
    display:flex;
    flex-direction:column;
}

.about-badge{

    display:inline-flex;
    align-items:center;
    width:max-content;

    padding:10px 22px;

    border-radius:50px;

    border:1px solid rgba(0,212,255,.25);

    background:rgba(0,212,255,.08);

    color:#00d4ff;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

    margin-bottom:28px;

}

.about-left h1{

    font-size:62px;

    line-height:1.15;

    font-weight:700;

    margin-bottom:25px;

}

.about-left h1 span{

    color:#00d4ff;

}

.about-left p{

    font-size:18px;

    line-height:1.9;

    color:#b8c2d6;

    max-width:650px;

    margin-bottom:35px;

}

.hero-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:10px;

}

.hero-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

    color:#ffffff;

    font-weight:500;

}

.hero-list i{

    color:#00d4ff;

    font-size:18px;

}

/* =========================
RIGHT CARD
========================= */

.about-right{

    display:flex;

    justify-content:center;

}

.company-card{

    width:100%;

    max-width:470px;

    padding:45px;

    border-radius:30px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    text-align:center;

    transition:.35s;

}

.company-card:hover{

    transform:translateY(-8px);

    border-color:#00d4ff;

}

.about-logo{

    width:95px;

    margin-bottom:20px;

}

.company-card h2{

    font-size:34px;

    margin-bottom:10px;

}

.company-card>p{

    color:#9aa8bd;

    margin-bottom:35px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.stats-grid div{

    padding:25px;

    border-radius:20px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.06);

    transition:.3s;

}

.stats-grid div:hover{

    background:rgba(0,212,255,.08);

}

.stats-grid h3{

    font-size:34px;

    color:#00d4ff;

    margin-bottom:8px;

}

.stats-grid span{

    color:#d7dde8;

    font-size:15px;

}/* =====================================================
   WHO WE ARE
===================================================== */

.about-two-column{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

margin-top:60px;

}

.about-two-column .glass-card{

padding:45px;

border-radius:28px;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.about-two-column .glass-card:hover{

transform:translateY(-10px);

border-color:#00d4ff;

}

.card-icon{

font-size:42px;

color:#00d4ff;

margin-bottom:25px;

}

.about-two-column h3{

font-size:30px;

margin-bottom:20px;

}

.about-two-column p{

color:#b8c2d6;

line-height:1.9;

font-size:17px;

}

/* =====================================================
MISSION
===================================================== */

.mission-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

margin-top:60px;

}

.mission-card{

padding:45px;

border-radius:28px;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.mission-card:hover{

transform:translateY(-10px);

border-color:#00d4ff;

}

.mission-card h3{

margin:20px 0;

font-size:28px;

}

.mission-card p{

line-height:1.9;

color:#b8c2d6;

}

/* =====================================================
WHY US
===================================================== */

.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:60px;

}

.why-card{

padding:35px;

border-radius:24px;

text-align:center;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.why-card:hover{

transform:translateY(-8px);

border-color:#00d4ff;

}

.why-card i{

font-size:42px;

color:#00d4ff;

margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

}

.why-card p{

line-height:1.8;

color:#b8c2d6;

}

/* =====================================================
VALUES
===================================================== */

.values-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:60px;

}

.values-grid .glass-card{

padding:40px;

border-radius:24px;

transition:.35s;

}

.values-grid .glass-card:hover{

transform:translateY(-8px);

border-color:#00d4ff;

}

.values-grid h3{

font-size:26px;

margin-bottom:18px;

}

.values-grid p{

line-height:1.9;

color:#b8c2d6;

}
/* =====================================================
PROCESS
===================================================== */

.process-wrapper{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.process-card{

position:relative;

padding:40px 30px;

text-align:center;

border-radius:24px;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.process-card:hover{

transform:translateY(-10px);

border-color:#00d4ff;

}

.process-number{

width:70px;

height:70px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:28px;

font-weight:700;

background:linear-gradient(135deg,#00d4ff,#0066ff);

color:#fff;

}

.process-card h3{

margin-bottom:18px;

font-size:24px;

}

.process-card p{

line-height:1.8;

color:#b8c2d6;

}

/* =====================================================
TECH STACK
===================================================== */

.tech-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:20px;

margin-top:60px;

}

.tech-card{

padding:22px;

text-align:center;

border-radius:16px;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

font-weight:600;

transition:.3s;

}

.tech-card:hover{

background:#00d4ff;

color:#000;

transform:translateY(-6px);

}

/* =====================================================
FAQ
===================================================== */

.faq-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:60px;

}

.faq-grid .glass-card{

padding:35px;

border-radius:22px;

transition:.35s;

}

.faq-grid .glass-card:hover{

transform:translateY(-8px);

border-color:#00d4ff;

}

.faq-grid h3{

margin-bottom:18px;

font-size:23px;

}

.faq-grid p{

line-height:1.8;

color:#b8c2d6;

}

/* =====================================================
CTA
===================================================== */

.cta-box{

padding:70px;

text-align:center;

border-radius:30px;

background:linear-gradient(135deg,
rgba(0,212,255,.12),
rgba(255,255,255,.03));

border:1px solid rgba(255,255,255,.08);

}

.cta-box span{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:rgba(0,212,255,.12);

color:#00d4ff;

margin-bottom:25px;

font-size:13px;

letter-spacing:2px;

}

.cta-box h2{

font-size:46px;

margin-bottom:20px;

}

.cta-box p{

max-width:760px;

margin:0 auto 35px;

line-height:1.9;

color:#b8c2d6;

}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:992px){

.about-wrapper,

.about-two-column,

.mission-grid,

.why-grid,

.values-grid,

.process-wrapper,

.tech-grid,

.faq-grid{

grid-template-columns:1fr;

}

.hero-list{

grid-template-columns:1fr;

}

.about-left h1{

font-size:42px;

}

.section-title h2{

font-size:36px;

}

.cta-box{

padding:45px 25px;

}

.cta-box h2{

font-size:32px;

}

}
.hero-visual{

position:relative;

display:flex;

justify-content:center;

align-items:center;

height:500px;

}

.hero-logo{

width:230px;

animation:rotateLogo 12s linear infinite;

filter:drop-shadow(0 0 35px #00d4ff55);

}

@keyframes rotateLogo{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

.floating-card{

position:absolute;

padding:18px 28px;

background:#1b2032;

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

font-weight:600;

box-shadow:0 20px 50px rgba(0,0,0,.35);

animation:float 4s ease-in-out infinite;

}

.ai-card{

top:30px;

left:-10px;

}

.web-card{

top:20px;

right:-20px;

animation-delay:1s;

}

.analytics-card{

bottom:20px;

left:20px;

animation-delay:2s;

}

.automation-card{

bottom:10px;

right:-20px;

animation-delay:3s;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0px);

}

}
.dashboard-card{

width:320px;
height:320px;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

backdrop-filter:blur(20px);

box-shadow:0 25px 70px rgba(0,0,0,.35);

}

.dashboard-card h3{

margin-top:20px;
font-size:30px;

}

.dashboard-card p{

margin-top:10px;

color:#aeb8c9;

text-align:center;

}
.dashboard-card{

width:360px;

padding:22px;

border-radius:26px;

background:#111827;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 25px 80px rgba(0,0,0,.35);

backdrop-filter:blur(20px);

}

.dashboard-top{

display:flex;

gap:8px;

margin-bottom:25px;

}

.dot{

width:12px;

height:12px;

border-radius:50%;

}

.red{

background:#ff5f57;

}

.yellow{

background:#ffbd2e;

}

.green{

background:#28c840;

}

.dashboard-content{

display:flex;

flex-direction:column;

gap:18px;

}

.dashboard-box{

padding:18px;

border-radius:16px;

background:#1b2435;

text-align:center;

font-weight:600;

color:#fff;

transition:.3s;

}

.dashboard-box:hover{

background:#00d4ff;

color:#000;

transform:translateY(-4px);

}

.large{

padding:35px;

font-size:22px;

}
.dashboard-title{

font-size:34px;

margin-bottom:30px;

text-align:center;

}

.dashboard-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.dashboard-item{

background:#1b2032;

padding:25px;

border-radius:18px;

text-align:center;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.dashboard-item:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(0,212,255,.15);

}

.dashboard-item h2{

font-size:40px;

color:#00d4ff;

margin-bottom:8px;

}

.dashboard-item p{

color:#bfc7d6;

font-size:15px;

}
