body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F7FA;
    color: #1F2937;
    width: 100% !important;
}

/* Prevent horizontal overflow */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Contain decorative elements */
section {
    overflow-x: hidden;
}

/* Images & SVG safety */
img, svg {
    max-width: 100%;
    height: auto;
}

/* Mobile nav safety */
.mobile-nav {
    max-width: 100%;
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

/* NAVBAR */
.navbar {
    background: transparent;
}
.navbar-brand, .nav-link {
    color: #fff !important;
}
.navbar-brand img {
    width: 180px;
}
/* Glass navbar */
.navbar-glass {
    background: transparent;
    backdrop-filter: blur(10px);
}

.navbar-glass.scrolled {
  background: #0A2540; /* Your dark brand color */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.navbar-glass .nav-link {
    color: #E5E7EB !important;
    font-weight: 500;
    margin-left: 8px;
}

.navbar-glass .nav-link:hover {
    color: #FFFFFF !important;
}



/* Dropdown menu styling */
.dropdown-menu {
    border-radius: 14px;
    border: none;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #F3F4F6;
}

/* CTA Button */
.btn-primary {
    background: linear-gradient(135deg, #1DA1A3, #4F46E5);
    border: none;
    border-radius: 999px;
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.9;
}


/* ANIMATED GRADIENT */
.animated-gradient {
    background: linear-gradient(
        120deg,
        #0A2540,
        #1DA1A3,
        #4F46E5,
        #0A2540
    );
    background-size: 300% 300%;
    animation: gradientShift 18s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* HERO */
.hero {
    color: #fff;
    padding: 160px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -20%;
    top: 0;
    width: 60%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71");
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Enhanced service cards */
.service-card-enhanced {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 40px 28px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
}

.service-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.service-card-enhanced h5 {
    margin-top: 22px;
    margin-bottom: 12px;
}

.service-card-enhanced p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
}

/* Icon styling */
.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1DA1A3, #4F46E5);
    color: white;
}

.icon-wrapper svg {
    width: 26px;
    height: 26px;
}


/* SECTIONS */
.section-padding {
    padding: 100px 0;
}

/* CARDS */
.glass-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
}

.image-rounded {
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* CTA */
.cta {
    color: white;
    padding: 100px 0;
}

/* Audience list */
.audience-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.audience-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1DA1A3, #4F46E5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-icon svg {
    width: 22px;
    height: 22px;
}

.audience-item strong {
    display: block;
    margin-bottom: 4px;
}

.audience-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #4B5563;
}


/* MAKES USE DIFFERENT */
/* Difference cards */
.difference-card {
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 18px 36px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.difference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0,0,0,0.1);
}

.difference-card h5 {
    margin-top: 18px;
    margin-bottom: 10px;
}

.difference-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(10, 37, 64, 0.9),
            rgba(15, 23, 42, 0.9)
        ),
        url("https://images.unsplash.com/photo-1526378722430-4f3c59c9b6c3");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.philosophy-section .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(79, 70, 229, 0.15),
        transparent 60%
    );
}

.philosophy-section h2 {
    line-height: 1.2;
}

.philosophy-eyebrow {
    letter-spacing: 0.15em;
    color: #A5B4FC;
}

.philosophy-subtext {
    color: #CBD5E1;
    font-size: 1.05rem;
}


/* Icon wrapper alt */
.icon-wrapper-alt {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4F46E5, #1DA1A3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper-alt svg {
    width: 24px;
    height: 24px;
}

/* FOOTER */
.site-footer {
    background: #020617;
    color: #CBD5E1;
    padding: 90px 0 40px;
    font-size: 0.95rem;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.footer-brand img {
    width: 180px;
}

.footer-description {
    max-width: 360px;
    line-height: 1.6;
    color: #94A3B8;
}

.footer-location {
    margin-top: 14px;
    font-size: 0.85rem;
    color: #64748B;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 14px;
    color: #E5E7EB;
}

.footer-links,
.footer-socials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-socials li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-socials a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: #FFFFFF;
}

/* CTA */
.footer-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1DA1A3, #4F46E5);
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.25s ease;
}

.footer-cta:hover {
    opacity: 0.9;
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 40px 0 24px;
}

/* Bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
    color: #64748B;
}

.footer-legal a {
    margin-left: 16px;
    color: #64748B;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #E5E7EB;
}

/* =========================
   NAVBAR – MOBILE CLEANUP
========================= */

/* Make toggler icon visible on dark navbar */
.navbar-glass .navbar-toggler {
    color: #ffffff;
}

.navbar-glass .navbar-toggler-icon {
    filter: invert(1);
}

/* Mobile menu background */
@media (max-width: 991.98px) {

    .mobile-nav {
        background: #ffffff;
        border-radius: 16px;
        margin-top: 12px;
        padding: 16px 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    /* Nav links */
    .mobile-nav .nav-link {
        color: #0A2540 !important;
        padding: 12px 24px;
        font-weight: 500;
    }

    /* Dropdown menu inside mobile */
    .mobile-nav .dropdown-menu {
        position: static;
        float: none;
        border: none;
        box-shadow: none;
        padding-left: 12px;
        margin-top: 4px;
    }

    .mobile-nav .dropdown-item {
        padding: 10px 24px;
        color: #374151;
    }

    /* CTA button on mobile */
    .mobile-nav .btn {
        width: calc(100% - 48px);
        margin: 12px auto 0;
        display: block;
        text-align: center;
    }

    /* HERO */
    .hero {
        color: #fff;
        padding: 160px 0 140px;
        position: relative;
        overflow: hidden;
    }

    .hero::after {
        content: "";
        position: absolute;
        right: -20%;
        top: 0;
        width: 60%;
        height: 100%;
        background: transparent;
        background-size: cover;
        background-position: center;
        opacity: 0.12;
    }

}
