/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: #FF1616 ;
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}
.navlogo img{
    width:120px;
    border-radius:10px;
}
.navlogo1 img{
    width:80px;
    border-radius:10px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FF1616 ;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }
    .navbar{
        padding: 10px 10px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.services img{
    width:100%;
    height:19vw;
    object-fit:cover;
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .services img {
  width: 100%;
  height: 25vh;
  object-fit: cover;
}
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #FF1616 ;
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: #FF1616 ;
    border-color: #FF1616 ;
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: #FF1616 ;
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: #FF1616 ;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #FF1616 ;
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: #FF1616  !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: #FF1616 ;
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FF1616 ;
}

.organize-section h2{
    text-align:center;
}
.organize-content{
    display:flex;
    justify-content:space-between;
    padding:30px 0;
}
.org .organize:nth-child(1) h3{
   color:#5B7182;
}
.org .organize:nth-child(2) h3{
   color:#1DAE27;
}
.org .organize:nth-child(3) h3{
   color:#CE4343;
}
.org2 .organize:nth-child(1) h3{
   color:#E19656;
}
.org2 .organize:nth-child(2) h3{
   color:#C692DA;
}
.org2 .organize:nth-child(3) h3{
   color:#6BC9A9;
}
.organize img{
    width:100px;
}
.organize{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}
.points p{
  margin-bottom:0;
}
.points h3{
  font-weight:600;
}
@media(max-width:768px){
  .organize-content {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  flex-direction: column;
}
}
.don{
  text-align: end;
}
.don img{
  width: 300px;
}

.breadcrumb-section{
          padding:9% 2%;
        }
        .breadcrumb-section h1{
            font-size:2.3rem;
            color:white;
        }

        .breadcrumb-item a{
            font-size:16px;
        }
  @media(max-width:768px){
     .breadcrumb-section {
     padding: 20% 10%;
}
  }


  /*Contact section*/
  .contact-section {
  padding: 80px 0;

    background: linear-gradient(
        135deg,
        #eef4ff,
        #fff8cc
    );
}

.contact-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #005594;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info p {
  color: #444;
  line-height: 1.6;
   margin-bottom: 15px;
}

.contact-details p {
  margin: 8px 0;
}

.contact-details a {
  color: #005594;
  text-decoration: none;
}

.social a {
  color:#005594;
   border: 2px solid #005594 ;
}

.social a:hover {
  background:#005594;
  color:white;
 
}

.social-links a:hover {
  color: #111;
}

.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
   box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h3 {
  color: #005594;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  margin-bottom: 15px;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form button {
  background: #005594;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #b8323a;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  margin-top: 50px;
} 
@media(max-width:768px){
  .contact-section {
  padding: 80px 5%;
}
   .contact-container{
    flex-direction: column;
    align-items: center;  
  }
   .contact-form {
  flex: 1;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
}
 .show-grid{
     height:auto !important;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:15px;
    grid-auto-rows:200px;
}
   .show-item img{
         width:100%;
         height:100%;
         transition:all 0.8s ease;
         border-radius:5px;
         display: block;
         object-fit:cover;
     }
     .show-sec{
         height:auto !important;
         overflow:visible !important;
         text-align:center;
         margin-bottom:30px;
     }
      .show-sec p{
         margin-bottom:60px;
     }
      .show-sec h2{
         margin-top:60px;
     }
      /* Lightbox Background */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

/* Big Image */
.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80vh;
    object-fit:contain;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

/* Close Button */
.close-butn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Zoom Animation */
@keyframes zoomIn {
    from {transform: scale(0.7);}
    to {transform: scale(1);}
}

/* Optional Hover Effect */
.show-item img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.show-item img:hover {
    transform: scale(1.05);
}
      @media(max-width:768px){
          .show-sec .container-fluid {
             width: 100%;
             margin-right: auto;
             margin-left: auto;
             padding-right: 20px;
             padding-left: 20px;
             width: 100%;
}
 .show-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  grid-auto-rows: 13vh;
}

  }

/* NAVBAR MOBILE ICON FIX */

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
}

@media (max-width: 991px) {

    .diet-navbar {
        background: #0d6efd !important;
    }

}
/* MOBILE NAVBAR FIX */

@media (max-width: 991px) {

.navbar-collapse {

    background: rgb(99,131,179);
    padding: 15px;

}
.navbar-nav .nav-link {

    padding: 10px 0;

}
.navbar {
    min-height: 90px;
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

@media (max-width: 576px) {

    .navbar-brand img {
        height: 60px;
    }

}
}
.navbar-brand img {
    height: 80px;
    width: auto;
    max-height: 80px;
    background: transparent;
}

@media (max-width: 576px) {

    .navbar-brand img {
        height: 60px;
    }

}
/* TOP BAR */

.diet-topbar {

background:#081260;
color:white;
font-size:14px;

}

/* ENROLL BUTTON */

.diet-enroll-btn {

background:#ffc107;
color:#000;
font-weight:600;
border-radius:4px;

}

.diet-enroll-btn:hover {

background:#e0a800;
color:#000;

}
.top-bar small {
    font-size: 13px;
}

.top-bar a {
    font-size: 14px;
}

@media (max-width: 576px) {

    .top-bar small {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .top-bar {
        text-align: center;
    }
@media (max-width: 576px) {

    .navbar {
        padding-top: 6px;
        padding-bottom: 6px;
    }

}

}.top-bar {
    font-size: 13px;
}

@media (max-width: 576px) {

    .top-bar {
        
        padding-bottom: 5px;
    }

    .top-bar small {
        font-size: 12px;
        line-height: 1.4;
    }

}


/* HERO SLIDER  */

.owl-carousel-item {
  position: relative;
  min-height: 500px;
}
.owl-carousel-item img {
   height: 500px;
   object-fit: cover;
}
.owl-carousel-item::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(11, 28, 57, 0.7);
   z-index: 1;

}
.owl-carousel-text {

   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
   width: 80%;
   z-index: 2;
   color: white;
}
.btn-warning {
   background: #ffc107;
   border: none;
   font-weight: 600;
}
/* GAP BELOW STICKY HEADER */
  .main-content {
   margin-top: 120px;
}
@media (max-width: 991px) {

.main-content {

    margin-top: 100px;
}

}
.breadcrumb-section {
    position: relative;
    background: linear-gradient( 135deg, #2c4a7a 0%, #4f79b5 45%, #f0d36b 100% );
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

/* Remove default breadcrumb background */
.breadcrumb {
    background: transparent;
}

/* Heading Styling */
.midtext {
    font-size: 42px;
    font-weight: 700;
}

/* ABOUT DIET SECTION */

.section-subtitle {
   color:#ae1d1d;
   font-weight: 600;
   letter-spacing: 1px;
  text-transform: uppercase;
}
.section-title {
  font-weight: 700;
  font-size: 36px;
  color: #0b1c39;
}
.about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
.about-feature {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;

}
.about-btn {
  background: #ffc107;
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 5px;
  transition: 0.3s;
}
.about-btn:hover {
  background: #e0a800;
  color: #000;

}
.about-img-wrapper {
    width: 100%;
    height: 100%;
   position: relative;

}
.about-img-wrapper img {
      width: 100%;
      height: 420px;
     object-fit: cover;
     border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.4s;

}
.about-img-wrapper img:hover {
    transform: scale(1.03);

}

@media (max-width: 768px) {
.about-img-wrapper img {
   height: 300px;

}

}
/* MISSION SECTION */

.mission-section {

padding: 60px 0;

background:#a0b4a6;

}

.mission-card {

background: white;

padding: 30px;

border-radius: 10px;

box-shadow: 0 8px 20px rgba(0,0,0,0.08);

border-left: 4px solid #0d6efd;

}


/* TRAINING APPROACH */

.training-approach {
padding: 80px 0;

background: linear-gradient(
    135deg,
    #2c4a7a 0%,   
    #4f79b5 45%,  
    #f0d36b 100%  
);

color:#fff;
margin-top: 50px;
}
 .training-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* CONNECTING LINE */
.training-steps::before {
    content: "";
    position: absolute;

    top: 35px;
    left: 0;
    right: 0;

    height: 3px;
    background: #c7d2fe;

    z-index: 0;
}

/* STEP ITEM */
.step-item {
    width: 23%;

    text-align: center;

    position: relative;
    z-index: 1;
}
/* MOBILE TIMELINE PERFECT FIX */
@media (max-width:768px) {

.training-steps {

    display: flex;
    flex-direction: column;

    position: relative;

    padding-left: 70px; /* space for line */

}

/* Vertical Line */
.training-steps::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 35px; /* center of icons */

    width: 3px;

    background: #ffc107; /* yellow line (visible on blue) */

    z-index: 0;

}

/* Step Items */
.step-item {

    position: relative;

    width: 100%;

    margin-bottom: 45px;

    text-align: left;

    padding-left: 10px; /* space from icon */

}

/* Icon Position Fix */
.step-icon {

    position: absolute;

    left: -70px; /* move icon left */

    top: 0;

    z-index: 2;

}

/* Text spacing fix */
.step-item h5 {

    margin-bottom: 8px;
}

.step-item p {

    margin-bottom: 0;
}

}

/* ICON CIRCLE */
.step-icon {
    width: 70px;
    height: 70px;

    background: linear-gradient(
        135deg,
        #6366f1,
        #3b82f6
    );

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
    margin-bottom: 15px;

    color: white;
    font-size: 28px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* TEXT */
.step-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.step-item p {
    font-size: 14px;
    color: #d6dfeb;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .training-steps {
        flex-direction: column;
        gap: 40px;
    }

    .training-steps::before {
        display: none;
    }

    .step-item {
        width: 100%;
    }

}


/* CTA SECTION */

.cta-section {
  background: linear-gradient(
        135deg,
        rgba(32, 58, 110, 0.95),   /* deep premium blue */
        rgba(52, 89, 151, 0.95),   /* medium blue */
        rgba(255, 193, 7, 0.85)    /* golden yellow */
    );

    color: #ffffff;
  padding: 70px 0;

}

.cta-section h2 {
  font-weight: 700;
  margin-bottom: 15px;

}

/* TRAINING PROGRAMS */
.programs-section {
    position: relative;
    padding: 80px 0;
    background: url('../img/c2.jpg') center center no-repeat;
    /*background-image: url('../img/c2.jpg') ;*/
    background-size: cover;
    background-attachment: fixed;
}
.programs-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.65); 
    z-index: 1;
}

.programs-section .container {
    position: relative;
    z-index: 2;
}
.program-subtext {
   max-width: 700px;
   margin: auto;
  color: #666;
  font-size: 16px;
}
.program-card {
   background: rgba(240, 244, 250, 0.95); 
   backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: 0.3s;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.programs-section .row {
    display: flex;
    flex-wrap: wrap;
}
.programs-section .col-lg-4,
.programs-section .col-md-6 {
    display: flex;
}
.program-card {
    width: 100%;
    min-height: 300px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
      145deg,
      rgba(235,240,248,0.95),
      rgba(215,225,240,0.95)
  );
}
.program-card:hover {
   transform: translateY(-8px);
   background: rgba(225, 232, 242, 0.98);
   box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}



.program-icon {

width: 70px;
height: 70px;

margin: auto;

background-color:#3661a1;

color: white;

font-size: 28px;

display: flex;
align-items: center;
justify-content: center;

border-radius: 50%;

margin-bottom: 20px;

transition: 0.3s;

}
.program-card:hover .program-icon {
background: #ffc107;
color: black;
}

.program-card h4 {
  font-weight: 700;
  min-height: 52px;
  margin-bottom: 15px;
 color: #0b1c39;
}


.program-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  min-height: 60px;
}



.program-btn {

color: #0d6efd;

font-weight: 600;

text-decoration: none;

transition: 0.3s;

}

.program-btn:hover {

color: #ffc107;

}



@media (max-width:768px) {

.program-card {

padding: 25px;

}

}


/* WHAT YOU'LL LEARN SECTION */


.learn-section {

padding: 80px 0;

background: #f8f9fa;

}

.learn-subtext {

max-width: 700px;

margin: auto;

color: #666;

font-size: 16px;

}

/* CARD */

.learn-card {

background: white;

padding: 30px;

border-radius: 12px;

text-align: center;

transition: 0.4s;

box-shadow: 0 8px 25px rgba(0,0,0,0.08);

height: 100%;

}

/* ICON */

.learn-card i {

font-size: 35px;

color: #0d6efd;

margin-bottom: 15px;

}

/* TITLE */

.learn-card h5 {

font-weight: 700;

margin-bottom: 10px;

color: #0b1c39;

}

/* TEXT */

.learn-card p {

font-size: 14px;

color: #666;

}

/* HOVER */

.learn-card:hover {

transform: translateY(-8px);

box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.learn-card:hover i {

color: #ffc107;

}

/* RESPONSIVE */

@media (max-width:768px) {

.learn-card {

padding: 25px;

}

}

.edu-slider-section {
    padding: 80px 0;
    margin-top:40px;
    background: linear-gradient(
        135deg,
        #dbe8ff 0%,   /* darker light blue */
        #eaf2ff 40%,  /* balanced blue */
        #fff1a8 100%  /* stronger yellow */
    );
}
.edu-card {
    background: #fff;
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.edu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
.edu-card-carousel .edu-card {
    display: block;
    width: 100%;
}
/* Make Owl items stretch equal height */
.edu-card-carousel .owl-stage {
    display: flex;
}

.edu-card-carousel .owl-item {
    display: flex;
}

/* Equal height cards */
.edu-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image fixed height */
.edu-img img {
    width: 100%;
    height: 220px;   /* same height for all images */
    object-fit: cover;
}

/* Content flexible */
.edu-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Image */
.edu-img {
    overflow: hidden;
}

.edu-img img {
    width: 100%;
    height: 220px;

    object-fit: cover;

    transition: 0.4s;
}

.edu-card:hover img {
    transform: scale(1.08);
}

/* Content */
.edu-content {
    padding: 20px;
    text-align: center;
}

.edu-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b1c39;
}

.edu-content p {
    font-size: 14px;
    color: #666;
}


/* ENTREPRENEURSHIP SECTION */


.entrepreneur-img img {

width: 100%;

height: 420px;

object-fit: cover;

border-radius: 12px;

box-shadow: 0 10px 30px rgba(0,0,0,0.15);

transition: 0.4s;

}

.entrepreneur-img img:hover {

transform: scale(1.03);

}

/* BENEFITS */

.entrepreneur-benefits {

padding: 80px 0;

background: #cdd2d6;

}

.benefit-card {

background: white;

padding: 30px;

border-radius: 12px;

box-shadow: 0 8px 25px rgba(0,0,0,0.08);

transition: 0.3s;

height: 100%;

}

.benefit-card i {

font-size: 40px;

color: #0d6efd;

margin-bottom: 15px;

}

.benefit-card h5 {

font-weight: 700;

margin-bottom: 10px;

}

.benefit-card:hover {

transform: translateY(-8px);

box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.benefit-card:hover i {

color: #ffc107;

}

/* RESPONSIVE */

@media (max-width:768px) {

.entrepreneur-img img {

height: 300px;

}

}


/* SKILL DEVELOPMENT */

.skill-img img {

width: 100%;

height: 420px;

object-fit: cover;

border-radius: 12px;

box-shadow: 0 10px 30px rgba(0,0,0,0.15);

transition: 0.4s;

}

.skill-img img:hover {

transform: scale(1.03);

}


/* SKILL GRID */

.skills-grid-section {

padding: 80px 0;

background: #dbe1b5;

}

.skill-box {

background: white;

padding: 30px;

border-radius: 12px;

box-shadow: 0 8px 25px rgba(0,0,0,0.08);

transition: 0.3s;

}

.skill-box i {

font-size: 35px;

color: #0d6efd;

margin-bottom: 10px;

}

.skill-box:hover {

transform: translateY(-8px);

box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.skill-box:hover i {

color: #ffc107;

}


/* TRAINING PROCESS */

.training-process {

padding: 80px 0;

}

.process-card {

background: white;

padding: 30px;

border-radius: 12px;

box-shadow: 0 8px 25px rgba(0,0,0,0.08);

position: relative;

}

.step-number {

display: inline-block;

width: 50px;
height: 50px;

background: #0d6efd;

color: white;

font-weight: bold;

line-height: 50px;

border-radius: 50%;

margin-bottom: 15px;

}

.process-card:hover .step-number {

background: #ffc107;
color: black;

}

/* RESPONSIVE */

@media (max-width:768px) {

.skill-img img {

height: 300px;

}

}

/* WOMEN TRAINING */


.women-img-wrapper img {

width: 100%;

height: 420px;

object-fit: cover;

border-radius: 12px;

box-shadow: 0 10px 30px rgba(0,0,0,0.15);

transition: 0.4s;

}

.women-img-wrapper img:hover {

transform: scale(1.03);

}


/* FOCUS SECTION */

.women-focus-section {

padding: 80px 0;

background: #f8f9fa;

}

.focus-card {

background: white;

padding: 30px;

border-radius: 12px;

box-shadow: 0 8px 25px rgba(0,0,0,0.08);

transition: 0.3s;

}

.focus-card i {

font-size: 35px;

color: #0d6efd;

margin-bottom: 10px;

}

.focus-card:hover {

transform: translateY(-8px);

box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.focus-card:hover i {

color: #ffc107;

}


/* BENEFITS */

.women-benefits {

padding: 80px 0;

}

.benefit-box {

background: white;

padding: 30px;

border-radius: 12px;

box-shadow: 0 8px 25px rgba(0,0,0,0.08);

transition: 0.3s;

height: 100%;

}

.benefit-box i {

font-size: 35px;

color: #0d6efd;

margin-bottom: 10px;

}

.benefit-box:hover {

transform: translateY(-8px);

box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.benefit-box:hover i {

color: #ffc107;

}


/* CTA */

.women-cta {

background: linear-gradient(
rgba(11,28,57,0.9),
rgba(11,28,57,0.9)
);

color: white;

padding: 70px 0;

}

.women-cta h2 {

font-weight: 700;

margin-bottom: 15px;

}


/* RESPONSIVE */

@media (max-width:768px) {

.women-img-wrapper img {

height: 300px;

}

}


/* YOUTH TRAINING */


.youth-img-wrapper img {

width: 100%;
height: 420px;

object-fit: cover;

border-radius: 12px;

box-shadow: 0 10px 30px rgba(0,0,0,0.15);

transition: 0.4s;

}

.youth-img-wrapper img:hover {

transform: scale(1.03);

}


/* AREAS */

.youth-areas-section {

padding: 80px 0;

background: #f8f9fa;

}

.youth-card {

background: white;

padding: 30px;

border-radius: 12px;

box-shadow: 0 8px 25px rgba(0,0,0,0.08);

transition: 0.3s;

}

.youth-card i {

font-size: 35px;

color: #0d6efd;

margin-bottom: 10px;

}

.youth-card:hover {

transform: translateY(-8px);

box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.youth-card:hover i {

color: #ffc107;

}


/* STEPS */

.youth-steps {

padding: 80px 0;

}

.step-card {

background: white;

padding: 30px;

border-radius: 12px;

box-shadow: 0 8px 25px rgba(0,0,0,0.08);

}

.step-card span {

display: inline-block;

width: 50px;
height: 50px;

background: #0d6efd;

color: white;

line-height: 50px;

border-radius: 50%;

margin-bottom: 15px;

font-weight: bold;

}

.step-card:hover span {

background: #ffc107;
color: black;

}


/* CTA */

.youth-cta {

background: linear-gradient(
rgba(11,28,57,0.9),
rgba(11,28,57,0.9)
);

color: white;

padding: 70px 0;

}

/* TESTIMONIAL SECTION */

.edu-testimonial-section {
    padding: 80px 0;
   /*background: linear-gradient(135deg,#eef4ff,#fff8cc);*/
   background: linear-gradient(
        120deg,
        #e6f0ff,
        #f0f6ff,
        #fff8cc
    );
  margin-top:40px;
  margin-bottom:30px;
}
.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.testimonial-row {

    display: flex;
    align-items: center;
    gap: 30px;

    background: #ffffff;

    padding: 30px;

    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: 0.3s;
}
.testimonial-row:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}
.testimonial-row.reverse {
    flex-direction: row-reverse;
}
.testimonial-photo img {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #ffc107;
}

/* Content */
.testimonial-content {

    position: relative;
}

.quote-symbol {

    font-size: 40px;

    color: #ffc107;

    font-weight: bold;

    position: absolute;

    left: -15px;
    top: -10px;
}

/* Text */
.testimonial-content p {

    font-size: 15px;

    color: #555;

    margin-bottom: 10px;
}

.testimonial-content h5 {

    margin: 0;

    font-weight: 700;

    color: #2f5597;
}

.testimonial-content small {

    color: #888;
}

/* Mobile Responsive */
@media (max-width:768px) {

.testimonial-row {
    flex-direction: column;
    text-align: center;
}

.testimonial-row.reverse {
    flex-direction: column;
}

.quote-symbol {
    position: static;
    display: block;
}

}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #6a7b9e;
    margin-bottom: 15px;
}

.section-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* Quote */

.quote-icon {
    font-size: 45px;
    color: #16a34a;
    margin-bottom: 15px;
}

/* Text */

.testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* User */

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    font-size: 16px;
    margin: 0;
    color: #0f172a;
}

.testimonial-user span {
    font-size: 13px;
    color: #64748b;
}

/* Responsive */

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        
    font-size: 34px;
  font-weight: 700;
  color:#aab6c9;
  margin-bottom: 15px;

}

/* FOOTER LINKS */

.footer-link {
    display: block;
    color: #cfd8dc;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.footer-link:hover {
    color: #ffc107;
    padding-left: 6px;
}
.btn-sm-square {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-title {
    color: #ffc107;
    font-weight: 600;
}
.footer-heading-links a {
   display: block;
   font-size: 17px;
font-weight: 500;
color: #cfd8dc;
margin-bottom: 12px;
text-decoration: none;
transition: 0.3s;

}
.footer-heading-links a:hover {
color: #ffc107;
padding-left: 8px;

}