* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, #071426, #020617);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.5;
}

/* RESPONSIVE IMAGES */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* NAVBAR */
/* .navbar {
    padding: 20px 0;
    background: transparent;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: #1e3a8a;
    padding: 10px;
    border-radius: 50%;
    font-weight: bold;
}

.logo h3 {
    font-size: 14px;
}

.logo p {
    font-size: 12px;
    color: #4da6ff;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #4da6ff;
} */

/* BUTTONS */
/* .btn-primary {
    background: #2563eb;
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
} */

/* .btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    border: 1px solid #4da6ff;
    padding: 10px 18px;
    border-radius: 6px;
    color: #4da6ff;
    text-decoration: none;
} */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
.hero {
    padding: 40px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    color: #60a5fa;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 48px);
    line-height: 1.2;
}

.hero-content h1 span {
    color: #3b82f6;
}

.hero-content p {
    margin: 20px 0;
    padding-bottom: 20px;
    color: #9ca3af;
    max-width: 500px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    padding: 12px 22px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: clamp(0.85rem, 2vw, 1rem);
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 22px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

/* RIGHT VISUAL */
.hero-visual {
    position: relative;
    flex: 1;
    width: 100%;
}

/* IMAGE FRAME */
.image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding: 8px;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

/* CURVED BLUE SHAPE */
.hero-visual::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #2563eb, transparent);
    border-radius: 50%;
    filter: blur(40px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content p {
        margin: auto;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

.stats {
    margin-top: 40px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    flex-wrap: wrap;
}

/* INDIVIDUAL BOX */
.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    position: relative;
    min-width: 220px;
}

/* DIVIDER LINE */
.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ICON STYLE */
.stat-box .icon {
    width: 50px;
    height: 50px;
    background: #172935;
    border: 1px solid #3b82f6;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

/* TEXT */
.stat-box h3 {
    font-size: clamp(1rem, 3vw, 20px);
    margin: 0;
}

.stat-box p {
    font-size: clamp(0.75rem, 2vw, 13px);
    color: #9ca3af;
    margin: 0;
}

.icon i {
    color: #3b82f6;
    font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-box::after {
        display: none;
    }
}

.services {
    padding: 50px 0;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: #3b82f6;
    font-size: 12px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 32px);
    margin-top: 10px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
    position: relative;
    height: 100%;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
}

/* ICON */
.service-card .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #172935;
    border: 1px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card .icon i {
    color: #3b82f6;
    font-size: 22px;
}

/* TEXT */
.service-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.service-card p {
    color: #9ca3af;
    font-size: clamp(0.82rem, 2vw, 14px);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* LINK */
.service-card a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* WHY */
.why {
    padding: 20px 0;
}

/* OUTER CARD */
.why-card {
    display: flex;
    align-items: center;
    gap: 40px;

    padding: 40px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    flex-wrap: wrap;
}

/* LEFT */
.why-left {
    flex: 1;
    min-width: 280px;
}

.tag {
    font-size: 12px;
    color: #3b82f6;
    letter-spacing: 1px;
}

.why-left h2 {
    font-size: clamp(1.8rem, 5vw, 34px);
    margin: 10px 0;
}

.why-left p {
    color: #9ca3af;
    max-width: 320px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* DIVIDER */
.divider {
    width: 1px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
}

/* RIGHT GRID */
.why-right {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 40px;
    min-width: 280px;
}

/* FEATURE */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* ICON */
.icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: #172935;
    border: 1px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon i {
    color: #3b82f6;
    font-size: 18px;
}

/* TEXT */
.feature h4 {
    margin-bottom: 5px;
    font-size: clamp(0.95rem, 2vw, 15px);
}

.feature p {
    font-size: clamp(0.8rem, 2vw, 13px);
    color: #9ca3af;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .divider {
        display: none;
    }

    .why-right {
        grid-template-columns: 1fr;
    }
}

/* TABLET */
@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        margin-bottom: 12px;
    }

    .service-card {
        padding: 22px;
    }

    .stats-container {
        padding: 20px;
    }

    .why-card {
        padding: 25px;
    }

    .feature {
        justify-content: center;
        text-align: left;
    }
}

/* MOBILE */
@media (max-width: 480px) {

    html {
        font-size: 15px;
    }

    .container {
        width: 94%;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
    }

    .service-card {
        padding: 20px;
    }

    .why-card {
        padding: 20px;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon {
        margin-bottom: 10px;
    }
}

/* VERY SMALL MOBILE */
@media (max-width: 360px) {

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p,
    .feature p,
    .service-card p,
    .stat-box p {
        font-size: 0.82rem;
    }

    .btn-primary,
    .btn-outline {
        font-size: 0.82rem;
        padding: 10px 15px;
    }

    .section-header h2,
    .why-left h2 {
        font-size: 1.5rem;
    }
}