
/* ===== GLOBAL ===== */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f9f9f9;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgb(255 255 255);
    backdrop-filter: blur(8px);
}

.nav-link {
          color: #000000 !important;
    font-size: 20px;
    margin-left: 15px;
    font-family: math;
    text-transform: capitalize !important;
}

.navbar-brand {
    color: #191818 !important;
    font-weight: bold;
}

/* ===== HERO VIDEO ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    font-family: math;
}
.hero-content p {
    margin: 0;
    font-size: 18px;
    text-align: justify;
    font-family: math;
}

.btn-main {
    background: #00a86b;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section h2 {
    font-weight: 600;
}

/* ===== PARALLAX ===== */
.parallax {
    background: url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528') center/cover fixed;
    height: 300px;
}

/* ===== CARDS ===== */
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

/* ===== CONTACT ===== */
.contact {
    background: #111;
    color: #fff;
}

/* ===== FOOTER ===== */
footer {
    background: #000;
    color: #aaa;
    padding: 20px;
    text-align: center;
}
/* SERVICE CARD */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h5 {
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 32px;
}

.section img {
    max-height: 350px;
    object-fit: cover;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.team-card:hover {
    transform: translateY(-10px);
}
.contact-section {
    background: #f9f9f9;
}

.contact-info {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-control {
    border-radius: 8px;
    padding: 10px;
}

.btn-success {
    border-radius: 25px;
    --bs-btn-color: #fff;
    --bs-btn-bg: #87c65a;
    --bs-btn-border-color: #87c65a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #87c65a;
}

.footer {
    background: #0b1f2a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-title {
    color: #87c65a;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-text {
    font-size: 13px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00a86b;
    padding-left: 5px;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ccc;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00a86b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 27px;
        font-weight: 700;
    }
    .hero-content p {
        margin: 0;
        font-size: 17px;
        text-align: justify;
    }
    .section h2 {
    font-size: 22px;
}
p.text-muted {
    font-size: 16px;
}
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a2e3a;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 16px;
}

.social-icons a:hover {
    background: #00a86b;
    transform: translateY(-5px);
}
.invest-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.invest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card-img-wrapper {
    overflow: hidden;
    height: 200px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.5s ease;
    padding: 15px;
}

.invest-card:hover img {
    transform: scale(1.1);
}
.incubator-img img {
    transition: transform 0.5s ease;
}

.incubator-img:hover img {
    transform: scale(1.05);
}

.incubator-content h2 {
    letter-spacing: 1px;
}

.incubator-content ul li {
    font-weight: 500;
    color: #333;
}
.text-primary {
    color: #8bc34a !important;
}
.btn-primary{
    background: #8bc34a !important;
    border: #8bc34a !important;
}
a.nav-link:hover {
    border-bottom: 1px solid #8bc34a;
}
.footer-section {
    background: #f4f4f4;
    padding: 60px 0 0;
    position: relative;
}

.footer-logo {
    /* width: 120px; */
    max-width: 100%;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.footer-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 20px;
    background: #8bc34a;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
}

.footer-text {
    color: #555;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ddd;
    color: #333;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #8bc34a;
    color: #fff;
}

.footer-bottom {
    background: #0b2c48;
    color: #fff;
    padding: 15px 0;
    margin-top: 40px;
}

/* Scroll button */
.scroll-top {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.contact-section {
    background: #f8f9fa;
}

/* Left box */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Contact item */
.contact-item .icon {
    width: 45px;
    height: 45px;
    background: #8bc34a;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    font-size: 18px;
}

/* Form box */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Inputs */
.custom-input {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #8bc34a;
    box-shadow: none;
}

/* Button */
.btn-success {
    background: #8bc34a;
    border: none;
}

.btn-success:hover {
    background: #8bc34a;
}
.activeMenu{
    border-bottom: 1px solid #8bc34a;
}