:root {
    --dark: #0f172a;
    --light: #f8fafc;
    --muted: #64748b;
    --accent: #ef4444;
    --glass: rgba(255, 255, 255, 0.12);
    /* --shadow-soft: 0 12px 28px rgba(0, 0, 0, .1); */
}

.hero {
    min-height: 55vh;
    background:
    
        url("../img/Web\ Baner-0007\ \(1\).png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: #fff;
    max-width: 700px;
}

.hero p {
    margin-top: 18px;
    max-width: 600px;
    color: #e5e7eb !important;
    font-size: 1.1rem !important;
}

.hero .line {
    width: 90px;
    height: 4px;
    background: var(--accent);
    margin: 30px 0;
}

/* Container */
.container {
    max-width: 70%;
    /* margin:auto; */
    padding: 30px 20px;
}



/* Sections */
.section {
    /* background:var(--bg-soft); */
    /* padding:50px; */
    /* border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,0.05); */
    margin-bottom: 40px;
}

.section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #e7445d;
}

.section p {
     color:var(--muted);
    max-width:900px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: #f9fafb;
    border: 1px solid var(--border-soft);
    padding: 28px;
    border-radius: 16px;
    transition: all .3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.card strong {}

.card p {

    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
}

/* Footer note */
.footer-note {
    text-align: center;
    margin-top: 60px;
    color: var(--text-muted);
    font-size: .95rem;
}

/* Responsive */
@media(max-width:768px) {
    .section {
        padding: 35px 25px;
    }
}





/* ===== HERO BANNER ===== */
.hero {
    /* min-height:100vh; */
    display: flex;
    align-items: center;
    padding: 80px 6%;
}

.hero-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    margin: 20px 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
}

.hero-img {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-img::before {
    content: "";
    position: absolute;
    inset: -25px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .35), transparent);
    filter: blur(30px);
    border-radius: 30px;
    z-index: -1;
}

.hero-img img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}

/* ===== CONTENT SECTIONS ===== */
.section {
    padding: 90px 6%;
}

.block {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
    opacity: 0;
    transform: translateY(40px);
    animation: reveal 1s ease forwards;
}

.block:nth-child(2) {
    animation-delay: .2s
}

.block:nth-child(3) {
    animation-delay: .4s
}

.text h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
}

.text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* ===== IMAGE ===== */
.visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.visual img {
    height: 550px;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}

/* ===== ANIMATIONS ===== */
@keyframes reveal {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {

    .hero-wrap,
    .block {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}