*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}



 .navbar {
      position: sticky;
      top: 0;
      z-index: 1030;
    }

    /* Brand styling */
    .navbar-brand {
      font-weight: 700;
      font-size: 18px;
      background: linear-gradient(45deg, #008FE2, #35a1e0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 1px;
    }

    .nav-item{
        font-size: 14px;
        font-weight: 600;
    }

    /* Nav links */
    .navbar-nav .nav-link {
      color: #2d529f !important;
      font-weight: 600;
      padding: 8px 15px;
      transition: 0.3s;
    }

    /* Hover + active link */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      background-color: #2d529f;
      color: #fff !important;
    }

    /* Dropdown styling */
    .dropdown-menu {
      background-color: #2d529f;
    }
    .dropdown-menu .dropdown-item {
      color: #fff;
    }
    .dropdown-menu .dropdown-item:hover {
      background-color: #35a1e0;
      color: #fff;
    }

        /* IMAGE */
    .carousel-item img {
    height: 100vh;
    object-fit: cover;
}

.leader-card {
    background: white;
    border-radius: 15px;
    padding: 20px 20px 20px;
    position: relative;
    /* overflow: hidden; */
}
.leader-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: #008fe2;
}
.leader-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: #2d529f;
}
.inner-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 30px 15px;
    position: relative;
    z-index: 2;
}
.profile-img {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.profile-img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid #fff;
    object-fit: cover;
}
.inner-card h2 {
    font-weight: 700;
    margin-top: 20px;
}
.inner-card h5 {
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}
.inner-card p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}
.social-icons i:hover {
    color: #2d529f;
}
.social-icons i{
    color: #2d529f;
    font-size: 22px;
}
#leader-hero{
    /* padding: 40px 220px 140px 220px; */
    background-color: #2d529f;

}

/* #leader{
    position: absolute;
    top: -1px;
    z-index: 1;

} */
 #footerp{
    font-size: 13px;
 }
.footer .social-icons i{
    color: white;
    /* background-color: white; */
}
.footer{
    margin-top: 120px;
}



/* MOBILE HEIGHT */
@media (max-width: 768px) {
    .carousel-item img {
        height: 60vh;
    }
}

/* OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.7)
    );
    z-index: 1;
}

/* CAPTION */
.custom-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

/* TEXT */
.heading {
    font-size: 54px;
    font-weight: 700;
    color: white;
}

.para-bold {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.para-normal {
    font-size: 20px;
    color: white;
}

.para-semi {
    font-size: 22px;
    font-weight: 600;
    color: white;
}

/* ACTIVE SLIDE ANIMATION */
.carousel-item.active .custom-caption {
    opacity: 1;
    transform: translateY(-50%);
}

.carousel-item.active .heading {
    animation: fadeUp 1s ease forwards;
}
.carousel-item.active .para-bold {
    animation: fadeUp 1s ease 0.3s forwards;
}
.carousel-item.active .para-normal,
.carousel-item.active .para-semi {
    animation: fadeUp 1s ease 0.6s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE TEXT */
@media (max-width: 768px) {
    .custom-caption {
        left: 5%;
        right: 5%;
        padding: 15px;
        text-align: center;
    }
    .heading { font-size: 26px; }
    .para-bold { font-size: 16px; }
    .para-normal,
    .para-semi { font-size: 14px; }
}