:root {
    --primary-blue: #0bbfdf;
    --dark-blue: #0bbfdf;
    --light-blue: #e7f1ff;
    --accent-green: #20c997;
    --text-dark: #1e1e1e;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #191d26;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-light);
    padding-top: 76px; /* Height of sticky navbar */
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    font-family: "Manrope", sans-serif;
}

    .navbar.scrolled {
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #1e1e1e !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background-color: #1e1e1e;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 80%;
    }
.nav-item.nav-link, .navbar-nav .nav-link {
    color: #0bbfdf;
}
.navbar-nav .nav-link {
    margin: 0 25px;
}
.navbar-nav .nav-link.active {
    color: #1e1e1e;
}
.hero-section {
    
    padding-top: 80px;
}
.display-5 {
    font-size: 2.5rem;
}
.card-body img {
    max-width: 200px;
}
.threebox-section {
    background-color: #ebf2fa;
}
.threebox-section .display-5 {
    font-size: 2.5rem;
   
    color: var(--dark-blue);
}
    .threebox-section h3 {
        color: var(--dark-blue);
    }
.threebox-section .lead {
    color: var(--text-dark);
   
    line-height: 30px;
}
.card.team-card {
    background: var(--primary-blue);
}
    .card.team-card:hover {
        background: var(--bg-dark);
        border-color: var(--bg-dark);
    }
section .lead img, .mapbox-section img {
    max-width: 100%;
    height: auto;
}
.hero-section h1 {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

    .hero-section .lead {
        color: var(--text-dark);
        font-size: 24px;
        line-height: 26px;
    }

.feature-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
    }

    .feature-card .card-body {
        padding: 30px;
    }

    .feature-card .card-title {
        color: var(--primary-blue);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .feature-card .icon-wrapper {
        width: 60px;
        height: 60px;
        background: var(--light-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

        .feature-card .icon-wrapper i {
            font-size: 1.8rem;
            color: var(--primary-blue);
        }

.what-we-do {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

    .what-we-do h2 {
        font-weight: 700;
        margin-bottom: 20px;
    }

.about-section {
    background-color: var(--bg-dark);
}
.team-section {
    background-color: var(--primary-blue);
}
.about-section h2 {
    margin-bottom: 40px;
}

    .about-section p {
        color: var(--text-light);
        font-size: 1.1rem;
    }
.h4, h4 {
    font-size: 1.05rem;
}

.h3, h3 {
    font-size: 1.55rem;
}
.team-section h2 {
    color: var(--bg-light);
  
    margin-bottom: 50px;
}

.team-card {
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
}

    .team-card:hover {
        border-color: var(--primary-blue);
        box-shadow: 0 5px 20px rgba(13, 110, 253, 0.1);
    }

    .team-card .card-body {
        padding: 25px 15px;
    }

    .team-card h6 {
        color: var(--dark-blue);
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .team-card .text-muted {
        font-size: 0.85rem;
    }

footer {
    color: var(--text-dark);
    background: #ffffff;
}
    footer p {
        color: var(--text-dark);
    }

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}
    .btn-primary:hover {
        background-color: var(--text-dark);
        border-color: var(--text-dark);
        color: var(--primary-blue);
    }
.section-padding {
    padding: 40px 0;
}


.threebox-section {
    padding: 40px 0;
}
/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

.features{
    background-color: var(--primary-blue);
}

.linkedinicon {
    background: #0077B5;
    display: inline-flex;
    padding: 6px;
    border-radius: 50%;
    line-height: 0;
}
    .linkedinicon svg {
        width: 14px;
        height: 14px;
    }


.mapbox-section {
}

    .mapbox-section .display-5 {
        font-size: 2.5rem;
        color: var(--dark-blue);
    }

    .mapbox-section h3 {
        color: var(--dark-blue);
    }

    .mapbox-section .lead {
        color: var(--text-dark);
        line-height: 30px;
    }

label.form-label {
    color: var(--text-dark);
    font-weight: 500;
}
.container img {
    max-width: 100%;
}
.hero-section {
    height: 100vh;
}