

/* Apply form design css start  */

.inquery-form-design {
    background: transparent;
    position: relative;
    z-index: 9;
    margin-top: -60px;
}
.apply-form-container form.cta {
    display: flex;
    gap: 10px;
    margin: 0;
}
.apply-form-container {
    position: absolute;
    background: #fff;
    padding: 35px 35px 10px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}
.apply-form-container form.cta .input-single {
    margin: 0 0 0;
}
.apply-form-container form.cta .form-cta {
    margin: 0;
}
.inquery-form-design h2 {
    text-align: center;
    margin: 0;
    position: absolute;
    left: 50%;
    top: -44px;
    transform: translate(-50%, -1px);
    background: #ffc107;
    color: #000000;
    padding: 12px 30px;
    border-radius: 12px 12px 0px 0px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 800;
    line-height: normal;
}

.inquery-form-design .ls-contact a {
    margin-top: 12px;
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #122f2a;
    line-height: normal !important;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
  50% { transform: scale(1.1); }
}



/* LAYOUT */

.reels-section {
    background-image: url(https://kaleshfoundationug.myshopify.com/cdn/shop/files/website-bg15.png?v=1772433960);
    background-size: cover;
    background-position: center;
    padding: 60px 0px;
}
.reels-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT VIDEO */
.main-video {
  /*width: 35%;*/
  flex: 1;
}

.main-video video {
  width: 100%;
  border-radius: 15px;
}

.video-title {
  text-align: center;
  margin-top: 10px;
}

/* RIGHT THUMBS */
.reels-wrapper .thumbs {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding-right: 15px;
  height: 650px;
  overflow-y: scroll;
}

/* THUMB */
.reels-wrapper .thumbs .thumb {
  cursor: pointer;
  border-radius: 12px;
  background: #fff;
  padding: 5px;
  border: 3px solid #fff;
}
.reels-wrapper .thumbs .thumb:hover {
  border: 3px solid #0b6b5c;
}

.reels-wrapper .thumbs .thumb video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.reels-wrapper .thumbs .thumb p {
  text-align: center;
  padding-top: 8px;
  font-size: 14px;
}

/* ACTIVE */
.reels-wrapper .thumbs .thumb.active {
  border: 3px solid #0b6b5c;
}

/* MOBILE */
.mobile-thumbs {
  display: none;
}

@media(max-width: 768px) {
  .reels-wrapper {
    flex-direction: column;
  }

  .main-video {
    width: 100%;
  }

  .desktop-thumbs {
    display: none;
  }

  .mobile-thumbs {
    display: block;
    margin-top: 15px;
  }

  .swiper-slide video {
    width: 100%;
    border-radius: 10px;
  }
}


/* Events & Seminars Video section */

.youtube-video-section {
    padding: 80px 0px 0;
}
.yv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.yv-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.yv-card:hover {
  transform: translateY(-5px);
}

.yv-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.yv-image-wrapper img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

.yv-card:hover img {
  transform: scale(1.05);
}

.yv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.yv-card:hover .yv-overlay {
  opacity: 1;
}

.yv-play-btn {
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.yv-heading {
  margin-top: 0px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .yv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .yv-grid {
    grid-template-columns: 1fr;
  }
}



.seminars-events .se-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
}

.seminars-events .se-card{
  border-radius:8px;
  overflow:hidden;
}

/* IMAGE CARD */
.se-card.image-card .se-image{
  height:320px;
  background-size:cover;
  background-position:center;
  position:relative;
  border-radius:12px;
  overflow:hidden;
}

.se-card.image-card .se-overlay {
    position: absolute;
    top: 200px;
    height: 100%;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgb(255 255 255), #ffffff9e);
    color: #fff;
    transition: all .3s linear;
    border-radius: 12px;
}
.se-card:hover .se-overlay {
    top: 0;
    background: #ffffffc4;
}

.se-card.image-card h3{
  font-size:20px;
  margin-top:5px;
  font-weight: 800;
  color: #000;
}

/* META */
.se-card.image-card .se-meta{
  display:flex;
  align-items:center;
  gap:15px;
}

.se-card.image-card .se-badge {
    background: #122f2a;
    color: #fff;
    padding: 5px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.se-card.image-card .se-date{
  font-size:13px;
  color:#000;
}
.image-card p {
    color: #000;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .seminars-events .se-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:768px){
  .seminars-events .se-grid{
    grid-template-columns:1fr;
  }
}



/* Footer Whatsaap design css start */

.whatsapp-float-wrapper {
  position: fixed;
  left: 20px;
  bottom: 15px;
  z-index: 9;
}

.whatsapp-float {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #095e54;
  padding: 16px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

.whatsapp-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

@media(max-width: 767px){
  .whatsapp-text {
    display: none;
  }
}

.youtube-bottom-right {
    position: fixed;
    z-index: 9999;
    bottom: 100px;
    left: 20px;
}
.youtube-float-wrapper img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform .3s ease;
}

.webiste-navigate-button {
    background: #ffc107;
    border-radius: 20px 20px 0px 0px;
    color: #232323;
    font-weight: 600;
    line-height: 50px;
    position: fixed;
    top: 120px;
    right: 0;
    z-index: 9;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    /*width: 250px;*/
    padding: 0px 40px;
    color: white;
    animation: blink 2s linear infinite;
}
@keyframes blink {
  0%, 100% {background-color:#ffc107;}
  50% {background-color: #122f2a;}
}



/* Werbsite Popup Design Css start */

/* ===============================
       POPUP OVERLAY
    ================================ */

    .overlay{
      font-family:'Outfit',sans-serif;
      position:fixed;
      inset:0;
      background:rgba(0,0,0,0.7);
      backdrop-filter:blur(10px);
      display:none;
      justify-content:center;
      align-items:center;
      padding:20px;
      z-index:999;
      animation:fadeIn 0.4s ease;
    }

    @keyframes fadeIn{
      from{
        opacity:0;
      }
      to{
        opacity:1;
      }
    }

.form-block-none select {
  display: none!important;
}
.form-block-none .nice-select {
  display: block!important;
}

    /* ===============================
       POPUP BOX
    ================================ */

    .popup{
      position:relative;
      width:100%;
      max-width:650px;
      max-height: 650px;
      height: 90vh;
      /* min-height:650px; */
      border-radius:35px;
      overflow:auto;
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.12);
      backdrop-filter:blur(18px);
      display:grid;
      grid-template-columns:1fr 0fr;
      box-shadow:
      0 30px 80px rgba(0,0,0,0.55),
      inset 0 1px 1px rgba(255,255,255,0.1);
      animation:popupShow 0.5s ease;
    }

    @keyframes popupShow{
      from{
        transform:scale(0.8) translateY(60px);
        opacity:0;
      }
      to{
        transform:scale(1) translateY(0);
        opacity:1;
      }
    }

    /* ===============================
       RIGHT SIDE FORM
    ================================ */

    .right-side{
      padding:40px 55px 30px;
      position:relative;
    }

    .close-btn{
      position:absolute;
      top:25px;
      right:25px;
      width:45px;
      height:45px;
      border-radius:50%;
      background:rgba(255,255,255,0.08);
      color:#fff;
      display:flex;
      justify-content:center;
      align-items:center;
      cursor:pointer;
      transition:0.4s;
      border:1px solid rgba(255,255,255,0.08);
    }

    .close-btn:hover{
      background:#ffc107;
      transform:rotate(180deg);
    }

    .form-title{
      color:#fff;
      font-size:40px;
      margin-bottom:10px;
      font-weight:700;
    }

    .form-subtitle{
      color:#94a3b8;
      margin-bottom:35px;
      font-size:15px;
      line-height:1.7;
    }

    .input-box{
      margin-bottom:18px;
      position:relative;
    }

    .input-box i{
      position:absolute;
      top:50%;
      left:18px;
      transform:translateY(-50%);
      color:#94a3b8;
      font-size:15px;
    }

    .input-box input,
    .input-box select{
      width:100%;
      height:60px;
      border:none;
      outline:none;
      border-radius:18px;
      padding:0 20px 0 52px;
      font-size:15px;
      color:#fff;
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.08);
      transition:0.4s;
      display: block !important;
    }

    .input-box input::placeholder{
      color:#94a3b8;
    }

    .input-box select option{
      color:#000;
    }

    .input-box input:focus,
    .input-box select:focus{
      border-color:#06b6d4;
      box-shadow:0 0 20px rgba(6,182,212,0.25);
      transform:translateY(-2px);
    }

    /* Submit Button */

    .submit-btn{
      display: inline-grid;
      width:100%;
      height:62px;
      border:none;
      border-radius:18px;
      cursor:pointer;
      color:#000!important;
      font-size:17px;
      font-weight:700;
      margin-top:10px;
      background:linear-gradient(135deg, #ffc107, #ffc107, #ffc107);
      background-size:300% 300%;
      animation:gradient 5s ease infinite;

      transition:0.4s;
      position:relative;
      overflow:hidden;
    }

    .submit-btn::before{
      content:'';
      position:absolute;
      top:0;
      left:-100%;
      width:100%;
      height:100%;
      background:rgba(255,255,255,0.15);
      transform:skewX(-30deg);
      transition:0.7s;
    }

    .submit-btn:hover::before{
      left:120%;
    }

    .submit-btn:hover{
      transform:translateY(-5px);
      /* box-shadow:0 20px 40px rgba(37,99,235,0.35); */
    }

    /* Bottom Text */

    .bottom-text{
      margin-top:20px;
      text-align:center;
      color:#64748b;
      font-size:13px;
      line-height:1.7;
    }

    @keyframes gradient{
      0%{
        background-position:0% 50%;
      }
      50%{
        background-position:100% 50%;
      }
      100%{
        background-position:0% 50%;
      }
    }

  .photogallery-design-view {
    display: flex;
    flex-wrap: wrap;
    margin: 0.2em;
    padding: 0;
    list-style-type: none;
}
.photogallery-design-view li {
    flex-grow: 1;
    height: 40vh;
    margin: 0.5em;
}
.photogallery-design-view li img {
    min-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.policy-content-design ul, .policy-content-design ul {
    list-style: lower-alpha;
    padding-left: 2rem;
}

    /* ===============================
       MOBILE RESPONSIVE
    ================================ */

    @media(max-width:900px){

      .popup{
        grid-template-columns:1fr;
        max-height:95vh;
        overflow-y:auto;
      }

      .right-side{
        padding:40px 30px;
      }

      .form-title{
        font-size:32px;
      }
    }