/* ===== GLOBAL ===== */

body {
    font-family: 'Segoe UI', sans-serif;
    color: #2d3436;
    background: #f9f9fb;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

//* ===== NAVBAR ===== */

.navbar {
    background: linear-gradient(135deg, #6C5CE7, #00B4DB) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
}

/* brand text */
.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff !important;
}

/* nav links */
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-1px);
}

/* active link (optional future use) */
.nav-link.active {
    color: #fff !important;
    border-bottom: 2px solid rgba(255,255,255,0.7);
}

/* ===== HERO ===== */

h1 {
    background: linear-gradient(135deg, #6C5CE7, #00B4DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== BUTTONS ===== */

.btn-dark {
    background: linear-gradient(135deg, #6C5CE7, #00B4DB);
    border: none;
    box-shadow: 0 4px 15px rgba(108,92,231,0.4);
}

.btn-dark:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid #6C5CE7;
    color: #6C5CE7;
}

.btn-outline-dark:hover {
    background: #6C5CE7;
    color: #fff;
}

/* ===== CARDS / BOXES ===== */

.card-style,
.col-md-3 > div,
.col-md-4 > div {
    border-radius: 14px !important;
    transition: 0.3s;
}

.col-md-3 > div:hover,
.col-md-4 > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== SECTION HEADINGS ===== */

h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

h4 {
    font-weight: 600;
}

/* ===== IMAGES ===== */

img {
    border-radius: 10px;
}

/* ===== CONTACT SECTION ===== */

#contact {
    padding-top: 20px;
}

#contact h2 {
    color: #6C5CE7;
}

/* ===== LINKS ===== */

a {
    color: #6C5CE7;
}

a:hover {
    color: #00B4DB;
}

/* ===== SUBTLE GLOW EFFECT ===== */

.glow {
    box-shadow: 0 0 20px rgba(108,92,231,0.3);
}

/* ===== RESPONSIVE CLEANUP ===== */

@media (max-width: 768px) {
    h1 {
        font-size: 28px !important;
    }
}
/* ===== SERVICE CARD HOVER ===== */

.service-card {
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(31,38,135,0.18) !important;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #6C5CE7, #00B4DB);
    opacity: 0;
    z-index: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 0.08;
}

.service-card > * {
    position: relative;
    z-index: 1;
}
/* subtle gradient glow */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #6C5CE7, #00B4DB);
    opacity: 0;
    z-index: 0;
    transition: 0.3s;
}

.service-card:hover::after {
    opacity: 0.08;
}

/* keep content above glow */
.service-card > * {
    position: relative;
    z-index: 1;
}