:root {
    --primary-color: #1b4dff;
    --dark-color: #061123;
    --light-bg: #f5f7fb;
    --accent-color: #00c6a7;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #222;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand span {
    color: var(--primary-color);
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
}

.gradient-navbar-4 {
    background: linear-gradient(135deg, #fda4af, #c084fc);

    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

/* Brand text */
.gradient-navbar-4 .navbar-brand {
    color: #130303 !important;
}

.gradient-navbar-4 .navbar-brand span {
    color: #facc15 !important;
    /* golden accent for "Edge" */
}

/* Links */
.gradient-navbar-4 .nav-link {
    color: #e5e7ff !important;
    font-weight: 500;
}

.gradient-navbar-4 .nav-link:hover,
.gradient-navbar-4 .nav-link:focus {
    color: #ffffff !important;
}

/* Button */
.gradient-navbar-4 .btn-light {
    border-radius: 999px;
    border: none;
}

.gradient-navbar-4 .btn-light:hover {
    background-color: #fdf2ff;
}

/* ===== HERO SECTION ===== */

.hero-gradient {
   background: linear-gradient(135deg, #ffe4e9, #f0abfc, #c084fc);
    color: #ffffff;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

/* soft glow shapes in background */
.hero-gradient::before,
.hero-gradient::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.6;
}

.hero-gradient::before {
    width: 260px;
    height: 260px;
    background: rgba(250, 204, 21, 0.6);
    top: -40px;
    right: -40px;
}

.hero-gradient::after {
    width: 220px;
    height: 220px;
    background: rgba(96, 165, 250, 0.6);
    bottom: -40px;
    left: -40px;
}

.hero-gradient .container {
    position: relative;
    z-index: 1;
}

/* badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.45);
    color: #e5e7ff;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-badge i {
    font-size: 1rem;
}

/* title + subtitle */
.hero-title {
    font-size: clamp(2.4rem, 3.4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-highlight {
    color: #facc15;
    /* gold */
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 480px;
    color: #09090a;
}

/* stats row */
.hero-gradient .fw-bold {
    font-size: 1.05rem;
    color: #080808;
}

.hero-gradient small.text-muted {
    color: #4a4a4b !important;
}

/* hero card (right side) */
.hero-card {
    background: rgba(15, 23, 42, 0.92);
    border-radius: 1.5rem;
    padding: 1.8rem;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
}

.hero-card h5 {
    color: #e5e7ff;
}

.hero-card .text-muted {
    color: #cbd5f5 !important;
}

/* stats inside card */
.hero-stat h4 {
    font-weight: 700;
    color: #facc15;
    font-size: 1.1rem;
}

.hero-stat p {
    font-size: 0.85rem;
    color: #e5e7ff;
}

/* form inside card */
.hero-card .form-label {
    color: #e5e7ff;
}

.hero-card .form-control,
.hero-card .form-select {
    background-color: #020617;
    border-color: #4b5563;
    color: #e5e7eb;
    font-size: 0.85rem;
}

.hero-card .form-control::placeholder {
    color: #9ca3af;
}

.hero-card .form-control:focus,
.hero-card .form-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 0.15rem rgba(249, 115, 22, 0.35);
}

/* buttons */
.hero-gradient .btn-primary {
    background: #f97316;
    border-color: #f97316;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
}

.hero-gradient .btn-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
}

.hero-gradient .btn-outline-primary {
    border-radius: 999px;
    border-color: #e5e7ff;
    color: #e5e7ff;
    font-weight: 600;
}

.hero-gradient .btn-outline-primary:hover {
    background-color: #e5e7ff;
    color: #1f2933;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
    .hero-gradient {
        padding: 4rem 0 3.5rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-gradient .d-flex.flex-wrap.gap-4 {
        justify-content: center;
    }

    .hero-card {
        margin-top: 1rem;
    }
}


/* Section headings */
.section-title {
    font-weight: 700;
    font-size: 2rem;
}

.section-subtitle {
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

.section-padding {
    padding: 4rem 0;
}

/* About */
#about .about-card {
    border-radius: 1.2rem;
    border: 1px solid #e3e7f0;
    padding: 1.5rem;
    background: #ffffff;
    height: 100%;
}

#about .icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 77, 255, 0.08);
    color: var(--primary-color);
}

/* Service card base style */
.service-card {
    position: relative;
    cursor: pointer;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: 200% 200%;
    text-decoration: none;
    /* Remove underline from link */
    display: block;
}

/* Card hover lift & shadow */
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Icon circle */
.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

/* Icon size */
.icon-circle i {
    font-size: 2rem;
    display: inline-block;
    transition: transform 0.6s ease;
}

/* Rotate icon on hover */
.service-card:hover .icon-circle i {
    animation: rotate360 1s linear;
}

/* Keyframes for 360 rotation */
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Blog */
.blog-card {
    border-radius: 1.2rem;
    border: 1px solid #e3e7f0;
    padding: 1.5rem;
    background: #ffffff;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.blog-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(27, 77, 255, 0.06);
    color: var(--primary-color);
    font-weight: 500;
}

.blog-card h5 {
    font-weight: 600;
    margin-top: 0.7rem;
}

/* Reviews */
#reviews {
    background: var(--light-bg);
}

.review-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid #e3e7f0;
    height: 100%;
}

.review-name {
    font-weight: 600;
}

.review-role {
    font-size: 0.85rem;
    color: #777;
}

.stars {
    color: #f4b000;
    font-size: 0.9rem;
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background-color: rgba(27, 77, 255, 0.06);
    color: var(--dark-color);
    font-weight: 600;
}

/* Footer */
footer {
    background: #050a16;
    color: #d4d9e5;
}

footer a {
    color: #d4d9e5;
    text-decoration: none;
    font-size: 0.95rem;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    font-size: 0.85rem;
    color: #9ca3b6;
}