﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #060f2b;
    color: #ffffff;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    padding: 8rem 1rem 5rem;
    overflow: hidden;
}

/* Background blur blobs */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.blob-cyan {
    background: #06b6d4;
    top: 25%;
    left: 25%;
    transform: rotate(63deg) scale(1.14);
}

.blob-blue {
    background: #3b82f6;
    bottom: 25%;
    right: 25%;
    transform: rotate(27deg) scale(1.06);
}

/* Layout container */
.container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #67e8f9;
    font-size: 14px;
}

.badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Title */
h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #cffafe, #bfdbfe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

h1 span {
    background: linear-gradient(to right, #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Description */
.description {
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #d1d5db;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

a {
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(to right, #0891b2, #2563eb);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    .buttons {
        flex-direction: column;
        justify-content:center;
        align-items:center
    }

    .btn-primary{
        width:80%!important;
    }

    .btn-secondary{
        width:80%!important;
    }
}


.solutions {
    padding: 5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 720px;
    margin: auto;
    line-height: 1.6;
}

.subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
}

.description {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* ================= GRID ================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ================= CARD ================= */
.card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-6px);
}

/* Card color variants */
.cyan {
    background: linear-gradient(135deg, rgba(6,182,212,0.3), rgba(15,23,42,0.6));
    border-color: rgba(6,182,212,0.3);
    text-align: start;
}

.orange {
    background: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(15,23,42,0.6));
    border-color: rgba(249,115,22,0.3);
    text-align: start;
}

.teal {
    background: linear-gradient(135deg, rgba(20,184,166,0.3), rgba(15,23,42,0.6));
    border-color: rgba(20,184,166,0.3);
    text-align: start;
}

/* ================= ICON BOX ================= */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-cyan {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.icon-orange {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.icon-teal {
    background: linear-gradient(135deg, #14b8a6, #10b981);
}

.icon-box svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

/* ================= CARD CONTENT ================= */
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ================= LIST ================= */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}

.feature-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    color: #d1d5db;
}

.emoji {
    font-size: 1.2rem;
    line-height: 1;
}

.spark {
    color: #22d3ee;
}

.zap {
    color: #fb923c;
}

/* Feature CSS */
.why-section {
    padding: 5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #9ca3af;
    font-size: 1rem;
}

/* COLOR VARIANTS */
.emerald {
    background: linear-gradient(135deg, rgba(6,95,70,0.35), rgba(15,23,42,0.6));
    border-color: rgba(16,185,129,0.35);
    text-align: start;
}

.emerald .icon-box {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.amber {
    background: linear-gradient(135deg, rgba(120,53,15,0.35), rgba(15,23,42,0.6));
    border-color: rgba(245,158,11,0.35);
    text-align: start;
}

.amber .icon-box {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.violet {
    background: linear-gradient(135deg, rgba(76,29,149,0.35), rgba(15,23,42,0.6));
    border-color: rgba(139,92,246,0.35);
    text-align: start;
}

.violet .icon-box {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.sky {
    background: linear-gradient(135deg, rgba(12,74,110,0.35), rgba(15,23,42,0.6));
    border-color: rgba(56,189,248,0.35);
    text-align: start;
}

.sky .icon-box {
    background: linear-gradient(135deg, #38bdf8, #3b82f6);
}
/* End Feature CSS */

/* Contact Us CSS */

.cta-section {
    padding: 5rem 1rem;
    display: flex;
    justify-content: center;
}

.cta-container {
    max-width: 80%;
    width: 100%;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    text-align: center;
}

/* Gradient Background */
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #14b8a6);
    z-index: 1;
    opacity: 0.1
}

/* Optional overlay pattern */
.cta-pattern {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjEiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+') no-repeat center;
    opacity: 0.3;
    z-index: 2;
}

.cta-content {
    position: relative;
    padding: 3rem;
    z-index: 3;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media(min-width: 600px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary1 {
    background-color: #fff;
    color: #06b6d4;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary1:hover {
    background-color: #f0f0f0;
}

.btn-secondary1 {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary1:hover {
    background-color: rgba(255,255,255,0.2);
}

.btn1 svg {
    width: 20px;
    height: 20px;
}
/* End Contact Us CSS */
