* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f7fb;
    color: #0f172a;
    overflow-x: hidden;
}

/* =========================================
           GLOBAL
========================================= */

section {
    position: relative;
    z-index: 2;
}

.gradient-text {
    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* =========================================
           BACKGROUND GLOW
========================================= */
.bg-glow-1 {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background:
        rgba(37, 99, 235, .10);
    filter: blur(140px);
    top: -220px;
    right: -220px;
    z-index: 0;
}

.bg-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        rgba(124, 58, 237, .08);
    filter: blur(130px);
    bottom: -180px;
    left: -180px;
    z-index: 0;
}

/* =========================================
           NAVBAR
========================================= */
.navbar {
    padding: 22px 0;
    background:
        rgba(255, 255, 255, .85);
    backdrop-filter: blur(16px);
    border-bottom:
        1px solid #e2e8f0;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, .05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 30px;
    font-weight: 800;
    color: #0f172a !important;
}

.navbar-nav {
    gap: 14px;
}

.nav-link {
    color: #334155 !important;
    font-weight: 600;
    transition: .3s;
}

.nav-link:hover {
    color: #2563eb !important;
}

/* =========================================
           LOGO
========================================= */

.logo {
    position: relative;
    width: 48px;
    height: 48px;
}

.logo span {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.logo-1 {
    background: #38bdf8;
    top: 0;
    left: 10px;
}

.logo-2 {
    background: #7c3aed;
    bottom: 0;
    left: 0;
}

.logo-3 {
    background: #2563eb;
    bottom: 0;
    right: 0;
}

/* =========================================
           HERO
========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border:
        1px solid #e2e8f0;
    padding: 12px 18px;
    border-radius: 50px;
    color: #475569;
    margin-bottom: 32px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, .04);
}

.hero-title {
    font-size: 82px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 28px;
}

.hero-subtitle {
    color: #64748b;
    font-size: 18px;
    line-height: 1.9;
    max-width: 650px;
    margin-bottom: 42px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    border: none;
    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);
    color: white;
    padding: 18px 34px;
    border-radius: 18px;
    font-weight: 600;
    transition: .35s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 35px rgba(37, 99, 235, .25);
}

.btn-secondary-custom {
    border:
        1px solid #dbe4f0;
    background: #ffffff;
    color: #0f172a;
    padding: 18px 34px;
    border-radius: 18px;
    font-weight: 600;
    transition: .3s;
}

.btn-secondary-custom:hover {
    background: #f8fafc;
}

/* =========================================
           SECTIONS
========================================= */

.services,
.testimonials {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    max-width: 760px;
    margin:
        0 auto 80px;
    color: #64748b;
    line-height: 1.9;
}

/* =========================================
           ABOUT US
========================================= */

.about-container{
    display: flex;
    justify-content: center;
}

/* =========================================
           SERVICES
========================================= */

.service-card {
    background: #ffffff;
    border:
        1px solid #e2e8f0;
    border-radius: 30px;
    padding: 36px;
    height: 100%;
    transition: .35s;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, .04);
}

.service-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 20px 40px rgba(37, 99, 235, .12);
}

.service-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 28px;
}

.service-card h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-card p {
    color: #64748b;
    line-height: 1.9;
}

/* =========================================
           FOOTER
========================================= */

.footer {
    border-top:
        1px solid #e2e8f0;
    background: #ffffff;
    padding:
        80px 0 30px;
}

.footer-logo {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-text {
    color: #64748b;
    line-height: 1.9;
}

.footer-bottom {
    border-top:
        1px solid #e2e8f0;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
}

/* =========================================
           RESPONSIVE
========================================= */

@media(max-width:768px) {
    .hero-title {
        font-size: 52px;
    }
    .section-title {
        font-size: 40px;
    }
    .hero-actions {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }
    .analytics-panel {
        margin-top: 40px;
    }
}

/* Hide scrollbar but keep scroll functionality */
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;       /* still scrollable */
  scrollbar-width: none;  /* Firefox */
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  display: none;          /* Chrome, Safari */
}
