:root {
    --primary: #0d6efd;
    --dark: #0b0f19;
    --secondary: #1e2a47;
    --light: #f8f9fa;
    --text: #212529;
    --muted: #6c757d;
}

/* Global */
body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.4px;
}

section {
    padding: 80px 0;
}

/* Navbar */
.navbar-brand {
    font-weight: 800;
    letter-spacing: 0.3px;
}

.nav-link {
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--dark), var(--secondary));
    color: #fff;
    padding: 120px 0;
}

.hero h1 {
    font-size: 3rem;
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero p {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: 1.05rem;
}

/* Buttons */
.btn-primary {
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-outline-light {
    padding: 12px 26px;
    border-radius: 6px;
}

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title p {
    color: var(--muted);
    max-width: 700px;
    margin: 12px auto 0;
}

/* Cards */
.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    margin-bottom: 12px;
}

/* Why section */
.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.why-item span {
    color: var(--primary);
    font-size: 1.2rem;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    color: #fff;
    text-align: center;
}

/* Footer */
footer {
    background: #f1f3f5;
    padding: 35px 0;
    font-size: 0.9rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}


/* ===== HOME PAGE ENHANCEMENTS ===== */

/* Floating background shapes */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero::before {
    width: 220px;
    height: 220px;
    background: #0d6efd;
    top: 40px;
    left: 40px;
}

.hero::after {
    width: 300px;
    height: 300px;
    background: #6610f2;
    bottom: 40px;
    right: 40px;
}

/* How it works steps */
.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Counter section */
.counter {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, #0d6efd, #1e2a47);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.hero {
    min-height: 520px;
    background: linear-gradient(135deg, #0b0f19, #1e2a47);
    color: #fff;
    display: flex;
    align-items: center;
}

.hero svg {
    z-index: 0;
}

.hero .container {
    z-index: 1;
}

.counter {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d6efd;
}

.team-card:hover .team-img {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.team-img {
    width: 180px;
    height: 240px;
    /* 3:4 ratio */
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.team-socials {
    margin-top: 22px;
}

.team-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f3f6;
    color: #333;
    margin: 0 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.team-socials a:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

.team-socials .website-link {
    background: #e9eefc;
}

.team-socials .website-link:hover {
    background: #1e2a47;
}


.team-card {
    cursor: pointer;
}

.team-card::after {
    content: "View Profile";
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #0d6efd;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::after {
    opacity: 1;
}

.navbar-brand img {
  max-height: 40px;
}

@media (max-width: 576px) {
  .navbar-brand img {
    max-height: 32px;
  }
}
