body{
    background: #2cd486;
}



nav ul li{

    padding : 0 10px 0 10px;
    
    }
    
    .card-container {
        display: flex;
        gap: 20px;
    }
    .card {
        width: 300px;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    }
    .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: filter 0.5s ease;
        border-radius: 15px;
    }
    .card-info {
        position: absolute;
        bottom: -40%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        transition: bottom 0.5s ease;
        padding: 20px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        opacity: 0;
    }
    .card:hover .card-info {
        bottom: 0;
        opacity: 1;
    }
    .card-title {
        margin: 0 0 10px;
        color: #333;
        font-weight: bold;
    }
    .card-description {
        margin: 0;
        color: #666;
    }

    input, textarea, select {
    border-radius: 8px !important;
}

input[type="file"] {
    padding: 6px !important;
}

.card {
    border-radius: 1rem !important;
}

.btn-primary {
    border-radius: 10px;
}


.alert-slide {
    animation: slideIn 0.6s ease-out forwards,
                slideOut 0.6s ease-in 3s forwards;
}

/* Slide in from right */
@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide out to left */
@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.step-card {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.45s ease;
    position: absolute;
    width: 100%;
}

.step-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* When step goes backwards */
.step-card.slide-back {
    transform: translateX(-40px);
    opacity: 0;
}

/* Container must allow cards to overlap slightly */
#steps-container {
    position: relative;
    min-height: 450px;
}

/* Executive Spotlight */
.leadership-spotlight {
    max-width: 550px;
    animation: fadeIn 1.2s ease-in-out;
}

.spotlight-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 3px solid gold;
    position: relative;
}

.spotlight-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid gold;
    padding: 3px;
}

/* Ribbon */
.ribbon {
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: absolute;
}
.ribbon-top-left {
  top: -5px;
  left: -5px;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 200px;
  padding: 10px 0;
  background: gold;
  color: #000;
  font-weight: bold;
  transform: rotate(-45deg);
  top: 30px;
  left: -55px;
}

/* Senior Cards */
.senior-card {
    border: 2px solid #c9d1ff;
    border-radius: 15px;
    transition: 0.3s;
}
.senior-card:hover {
    transform: translateY(-6px);
}
.senior-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}

/* Team Grid */
.team-card {
    background: white;
    border-radius: 10px;
    transition: 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FULL HEIGHT SLIDER */
/*.carousel,*/
/*.carousel-item {*/
/*    height: 85vh !important;*/
/*    min-height: 500px;*/
/*}*/

/*.hero-slide {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    background-size: cover !important;*/
/*    background-position: center center !important;*/
/*    background-repeat: no-repeat !important;*/

/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    padding: 0 20px;*/
/*}*/


.section-divider,
.section-divider-top {
    height: 60px;
    background: url('../img/wave.svg') center/cover no-repeat;
}

.section-divider-top {
    background: url('../img/wave2.svg') center/cover no-repeat;
}

/* Project Cards */
.project-card {
    transition: 0.3s ease;
    background: #fff;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Impact section */
.impact-section {
    background: linear-gradient(135deg, #0a7f42, #064f29);
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a7f42, #064f29);
}


.program-card {
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.program-card .icon-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Dropdown on hover (desktop only) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block !important;
        margin-top: 0;
    }

    .navbar .dropdown-toggle::after {
        transition: transform 0.2s;
    }

    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}



