  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    /* Reset & base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body, html {
      font-family:'poppins', sans-serif;
      overflow-x: hidden;
      scroll-behavior: smooth; /* Smooth scrolling */
    }
#sticky-widget{
    display:none;
}
    /* Hero Banner */
    .hero {
       /*height: 70vh;*/
    /*background: url(img/banner.svg);*/
    /* background-attachment: fixed; */
    /*color: #fff;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    }
    .hero img{
        object-fit:cover;
    }
    nav{
      flex:3;
      text-align:center;
    }
.logo{
    flex:1;
}
.bsc-logo{
    flex:1;
    text-align:right;
}
    /* Transparent Header */
    .header {
  /*position: fixed;       */
  top: 0;
  left: 0;
  width: 100%;
  padding:0px 20px;
  display: flex;
  justify-content:center;
  align-items: center;
background: #fff;
  z-index: 999;         /* Ensure it stays on top */
  /* backdrop-filter: blur(5px); */
    }
    .header nav a {
      color:#161491;
      margin-left: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
      text-transform: uppercase;
    }
    .header nav a:hover {
      /*color:#fff;*/
    }
    .header .btn {
      background: #f0c330;
      color: #000;
      padding: 10px 20px;
      border-radius: 4px;
      text-decoration: none;
      margin-left: 30px;
    }
        .header .btn:hover{
      background:#fff;
      color: #000;
      padding: 10px 20px;
      border-radius: 4px;
      text-decoration: none;
      margin-left: 30px;
    }
    .logo{
    flex:1;
}
    .hero h1 {
      font-size: 4rem;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    }

    /* Updated About Section: Title Left, Text Right, Blue BG */
.about {
display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    /* max-width: 1200px; */
    /* margin: -80px auto 0 auto; */
    /*background: linear-gradient(135deg, #e91f5e 0%, #ffdd17 100%);*/
   background-color:#e91f5e;
    gap: 50px;
    color: #fff; /* text color white for contrast */
}

.about-title {
  flex: 1;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  font-family: 'poppins', serif; /* elegant typography, change as needed */
  color: #fff;
  /*text-align:right;*/
  margin-left:95px;
  text-transform:uppercase;
}

.about-text {
  flex: 2;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #f0f0f0;
  text-align:justify;
}

/* Responsive */
@media (max-width: 992px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding:20px 10px;
    gap:20px;
  }
  .about-title {
    margin-bottom:0px;
    font-size: 2rem;
  }
}
.hero-mob{
 display:none;
}
.hero-desk{
    display:block;
}

    @media (max-width: 768px) {
      .header {
        /* flex-direction: column; */
        align-items: center;
            padding:8px 20px;
      }
      .header nav a:eq(0), .header .btn {
        /*margin: 10px 0;*/
        flex:1;
      }
      .hero h1 {
        font-size: 2.5rem;
        text-align: center;
        padding: 0 20px;
      }
     .in_desk{
       display: flex;
        align-items: center;
        justify-content: center;
     }
     .bsc-logo{
      display: none;
     }
     .about-title{
    flex: 1;
    font-size:2rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'poppins', serif;
    color: #fff;
    margin-left:0px;
    text-transform: uppercase;
}

     .mob_menu_view{
      position: relative;
    height: auto;
    width: 100%;
    /*z-index: 1000000;*/
    background-color: #fff;
    display:block;
     }
     .in_mob > li{
      text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 15px;
     }
    .hero img{
     display:none;
    }
    .hero{
        background: url(img/Backup_of_mobile.webp) center/cover;
        display: flex;
        color: #fff;
        background-size: cover;
        height:70vh;
   
}
.divider{
    display:none;
}      

.hero-mob{
 display:block;
}
}

.heroimg{
        object-fit: cover;
    width: 100%;
    height: 100%;
}
    .img-fluid{
        max-width: 100%;
        height:auto;
    }
    .img-fluid-kaushal{
  width: 100%;
  height: auto;
  object-fit: contain;
  -webkit-object-fit: contain;
    }
/* Theme Section with Background Image + Overlay */
.theme {
  position: relative;
  /* background: url('img/backdropimg.jpeg') no-repeat center center/cover; */
  padding:50px;
  text-align: center;
  color: #fff;
}

.theme::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
 /* background: rgba(0,0,0,0.5); white overlay with opacity */
  z-index: 1;
}

.theme-overlay {
  position: relative;
  z-index: 2;
}

.theme-title {
  font-size: 3.2rem;
  margin-bottom: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1b75bb;
}

.theme-cards {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.theme-card:nth-child(1){
  background: #fff;
  border-radius: 15px;
  padding: 50px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex:1;
    height:259px;
  background: url('img/empower.jpg') no-repeat center center/cover;
  /* max-width: 300px; */
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.theme-card:nth-child(2){
  background: #fff;
  border-radius: 15px;
  padding: 50px 30px;
   display: flex;
   position: relative;
  justify-content: center;
  align-items: center;
    height:259px;
   flex:1;
     background: url('img/evolve.jpg') no-repeat center center/cover;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.theme-card:nth-child(3){
  background: #fff;
  border-radius: 15px;

  padding: 50px 30px;
   display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
   flex:1;
   height:259px;
    background: url('img/employ.webp') no-repeat center center/cover;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.theme-card:hover {
  transform: rotateY(180deg);
  transition: 0.5s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.theme-card:after{
  display: block;
}
.mob_menu_view{
  display:none;
}
.in_mob a{
  text-decoration:none;
}
.theme-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #1b75bb;
}

.theme-card h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
  z-index:1;
}

.theme-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}
.theme-card-overlay:nth-child(1){
  position: absolute;
    top: 0;
    background: #e91f5e75;
    width: 100%;
    height: 259px;
    z-index: 0;
    border-radius: 15px;
}
.theme-card-overlay2{
  position: absolute;
    top: 0;
    background: #ffdd176b;
    width: 100%;
    height: 259px;
    z-index: 0;
    border-radius: 15px;
}
.theme-card-overlay3{
  position: absolute;
    top: 0;
    z-index:0;
    background: #1b75bb66;
    width: 100%;
    height: 259px;
    z-index: 0;
    border-radius: 15px;
}
/* Responsive */
@media (max-width: 992px) {
  .theme-cards {
    flex-direction: column;
    align-items: center;
  }
  .theme-card {
    max-width: 80%;
  }
}
/* Button */
/* Flashy Register Now Button */
.btn-register {
  display: inline-flex;
  /*background: linear-gradient(135deg, #e91f5e 0%, #ffdd17 100%);*/
  background-color:#ffa707;
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(27, 117, 187, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border:none;
  text-transform:uppercase;
}

.btn-register::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.btn-register:hover::before {
  left: 125%;
}

.btn-register:hover {
  box-shadow: 0 8px 30px rgba(27, 117, 187, 0.7);
  transform: translateY(-3px) scale(1.05);
}
/*advisory board */
/* Advisory Board Section */
.advisory {
  padding: 100px 50px;
  background: #f9f9f9; /* light background for contrast */
  text-align: center;
}

.advisory-title {
  font-size:2.5rem;
  color: #1b75bb;
  /*margin-bottom: 60px;*/
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'poppins', serif; /* elegant typography */
}

.advisory-members {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.advisory-member {
  max-width: 220px;
}

.advisory-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%; /* makes it round */
  object-fit: cover;
  border: 5px solid #1b75bb;
  transition: transform 0.4s;
}

.advisory-member img:hover {
  transform: scale(1.05);
}

.advisory-member h3 {
  margin: 20px 0 10px;
  font-size: 1.4rem;
  color: #333;
}

.advisory-member p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .advisory-members {
    flex-direction: column;
    align-items: center;
  }
}
/* 2 Column Parallax Section */
.kaushal-vikas-yatra-2col {
  display: flex;
  width: 100%;
  min-height: 500px;
}

.kvy-left {
  flex: 1;
  /* background-image: url('img/prabhshreeRAM.jpg');  */
 /*background-image: url('img/vikasyatra.jpeg');*/
  /*background-attachment: fixed; */
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.kvy-right {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  padding: 30px;
}

.kvy-right h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.kvy-right h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.kvy-right p {
  font-size: 18px;
  text-align:justify;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px) {
  .kaushal-vikas-yatra-2col {
    flex-direction: column;
  }

  .kvy-left {
    flex: none;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 250px;
  }

  .kvy-right {
      flex:none;
    padding: 30px;
    order:2;
  }
    .btn-register{
      padding: 10px 10px;
      font-size: 0.6rem;
     }
     .logo{
         display:none;
     }
     .mobmenu-trigger{
         display:none;
     }
}

.mobmenu-trigger{
    display:none;
}
/* City Grid Styles */
.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
  padding: 50px;
}

.city-card {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}

/* Example: Use nth-child to set different images for each city */
.city-card:nth-child(1) { background-image: url('img/bagpat.jpg'); }
.city-card:nth-child(2) { background-image: url('img/muzaffarnagar.jpg'); }
.city-card:nth-child(3) { background-image: url('img/meerut.jpg'); }
.city-card:nth-child(4) { background-image: url('img/moradabad.jpg'); }
.city-card:nth-child(5) { background-image: url('img/bareily.jpg'); }
.city-card:nth-child(6) { background-image: url('img/shajahapur.jpg'); }
.city-card:nth-child(7) { background-image: url('img/hardoi.jpg'); }
.city-card:nth-child(8) { background-image: url('img/agra.jpg'); }
.city-card:nth-child(9) { background-image: url('img/jhasi.jpg'); }
.city-card:nth-child(10) { background-image: url('img/lucknow.jpg'); }
.city-card:nth-child(11) { background-image: url('img/sultanpur.jpg'); }
.city-card:nth-child(12) { background-image: url('img/ayodhya.jpg'); }
.city-card:nth-child(13) { background-image: url('img/prayagraj.jpg'); }
.city-card:nth-child(14) { background-image: url('img/varanasi.jpg'); }
.city-card:nth-child(15) { background-image: url('img/gorakhpur.jpg'); }

.city-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s;
}

.city-card:hover .city-overlay {
  background: rgba(0,0,0,0.7);
}

.city-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .city-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.text-center{
    text-align: center;
}
.title{
        font-size: 3rem;
    color: #1b75bb;
    font-weight: 800;
    padding-top:15px;
    font-family: 'Poppins', serif; /* elegant typography */
    text-transform:capitalize;
}
/* Footer Styles */
.site-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 40px 50px;
  flex-wrap: wrap;
}

.footer-left img {
  max-width: 150px;
}

.footer-center p {
  margin: 0 0 15px;
  line-height: 1.6;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f0c330; /* highlight on hover */
}

.register-btn {
  display: inline-block;
  background: #f0c330;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.register-btn:hover {
  background: #ffdb4d;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, .footer-center, .footer-right {
    margin-bottom: 20px;
  }
  .mobmenu-trigger{
    display:block;
    flex:1;
}
.mobmenu-trigger img{
    width:32px;
}
}
/* Copyright Footer */
.footer-copyright {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
}
/* Popup Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 1% auto;
  padding:20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content form input {
  width: 100%;
  padding:10px;
  margin:5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content form button {
  padding: 14px 30px;
  background:#ffa707;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-content form button:hover {
  background: #ffdb4d;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
/* Proposed Flagship Features Section */
.flagship-features {
  padding: 60px 20px;
  /* background: #f9f9f9; */
  text-align: center;
}

/* .flagship-features h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
} */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width: 768px) {
  .flagship-features h2 {
    font-size: 28px;
  }
}
input, select {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    margin-bottom: 6px;
    width:100%;
}
.cert_upload_field {
    display: none;
}
.iti{
    width:100%;
}
.event-section{
  display:flex;
  background-color:rgb(27, 117, 187);
  height:auto;
  color:#fff;
  padding: 50px;
  justify-content: center;
  align-items: center;
margin: 50px;
    border-radius: 50px;
}
.schedule {
      max-width: 900px;
      margin: auto;
    }

    .schedule h2 {
      font-size: 2.5rem;
      letter-spacing: 4px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .schedule h2 span {
      display: block;
    }

    .underline {
      display: block;
      width: 100px;
      height: 2px;
      background: #e91f5e;
      margin-top: 10px;
    }

    .day {
      margin-top: 20px;
      border-top: 1px solid #555;
      padding-top: 10px;
    }

    .date {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .events {
      font-size: 1rem;
      line-height: 1.8;
    }

    .events span {
      margin-right: 10px;
      color: #fff;
      font-size:14px;
    }

    .events span:not(:last-child)::after {
      content: "|";
      margin-left: 10px;
      color: #e91f5e;
    }

    @media (max-width: 600px) {
      .schedule h2 {
        font-size: 2rem;
      }
      .date {
        font-size: 1.3rem;
      }
         .event-section{
  display:flex;
  background-color:rgb(27, 117, 187);
  height:auto;
  color:#fff;
  padding: 50px;
  justify-content: center;
  align-items: center;
margin: 15px;
    border-radius: 50px;
}


    }

    .stats-section{
      padding:50px;
    }
    .stats-section-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: bold;
      color: #000;
      transition: 0.5s;
    }

    .stat-label {
    font-size: 1.1rem;
    color: #455fac;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bolder;
    }

    .divider {
      width: 1px;
      height: 50px;
      background: #e91f5e;
    }

    .register-btn {
      background: #e91f5e;
      color: #fff;
      border: none;
      padding: 15px 30px;
      font-size: 1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .register-btn:hover {
      background: #c70d4a;
    }

    @media (max-width: 768px) {
      .stats-section {
        gap: 20px;
      }
      .divider {
        height: 30px;
      }
      .stats-section-inner{
          flex-direction:column;
      }
    }
      
      .section,.details {
      max-width: 1200px;
      margin: 0 auto;
      padding:15px 20px;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
       border-bottom: 1px solid #555;
    }

    .section h1 {
      font-size: 1.5rem;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: 2px;
      flex:1.2;
    }


    .column {
      flex: 1;
      min-width: 200px;
      margin: 10px 0;
    }

    .column h3 {
      font-size: 18px;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .details .column p {
      margin: 0;
      font-size: 18px;
    }

    .contact {
      margin: 10px 0px;
    }
.contact-column{
    flex:1.2;
    display:flex;
}
    .contact h2 {
      font-size: 18px;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .contact-item {
      margin: 5px 0;
    }

    .contact-item span {
      color: #fff;
      font-weight: bold;
      text-transform: uppercase;
    }

    .contact a {
      display: block;
      margin: 20px 0;
      color: #fff;
      text-decoration: none;
    }

    .register-btn {
      background: #e91f5e;
      color: #fff;
      border: none;
      padding: 10px 30px;
      cursor: pointer;
      font-weight: bold;
    }
.social-icons{
    flex:1;
    margin-top:-35px;
    
}
  .social-icons h2{
      font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

    .social-icons i {
      font-size: 20px;
      margin-right: 15px;
      cursor: pointer;
    }

    .bottom-bar {
      background:#543093;
      text-align: center;
      padding: 10px;
      font-size: 12px;
      color:#fff;
    }
footer{
  background-color:#543093;
  color:#fff;
}
.mob-menu{
  display:none;
}
@media (max-width:786px){
.empty{
    display:none;
}
.social-icons {
    flex: 1;
    margin:0px;
}
.section, .details {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    border-bottom: 1px solid #555;
}
.in_desk{
    display:none;
}
.mob-menu{
    display:block;
    width:100%;
}
.mob-menu > img{
    float: right;
    width: 30px;
}
}
.highlighter{
    background:#eb1f5e;
    padding: 5px;;
}
.empty{
    background:#543093;
    flex:0.2;
}
/**uttarpradesh**/
.section-up {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.content-up {
  flex: 1 1 50%;
  background: #f5f5f5;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-up h1 {
  font-size: 48px;
  margin-bottom: 10px;
  letter-spacing: 4px;
}

.content-up h3 {
  margin-top: 0;
  color: #888;
}

.content-up p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-up {
  flex: 1 1 50%;
  background-image: url('img/prabhushreeRAM.webp');
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.kvy-left-background{
    flex:1;
    background:url('img/prabhushreeRAM.webp');
    background-size:cover;
}
@media (max-width: 768px) {
  .section-up {
    flex-direction: column-reverse;
  }

  .content-up, .image-up {
    flex: 1 1 100%;
  }

  .content-up {
    padding: 30px;
  }
  .kvy-left-background {
      flex:none;
    background: url(img/prabhushreeRAM.webp);
    background-size: cover;
    height: 250px;
    order: 1;

}
.mt-50{
    margin-top:50px
}
.img-responsive{
 width:100%;   
}
}
.fs-12{
    font-size:12px;
}
.fs-10{
    font-size:small;
}
/**speaksers**/
/* CSS */
.leaders-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background-color: #f9f9f9;
}

.leader-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.leader-card p {
  font-size: 0.95rem;
  color: #666;
}
.img{
    width:110px;
    margin-top:15px;
}
.img-round {
  
    margin: auto;
}
.img-round .img{
    width: 115px;
    margin-top: 15px;
    border-radius: 100%;
    border: 2px solid #eb1f5e;
}
.days-tabs{
  display:flex;
  justify-content: center;
  margin: 20px 0;
}
.day-tab {
  margin: 0 10px;
}
.btn-default{
  background-color:#fff;
  padding:15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-default:hover {
  color: #fff;
  transform: scale(1.05);
   background-color: #ffa707;
}
.active-tab {

  background-color: #ffa707;
  color:#fff;
}
.timing{
  background-color: #fff;
  color:#000 !important;
  padding:5px;
  border-radius: 5px;
  display: inline-block;
  width:150px;
}
.events div{
  margin-bottom: 5px;
  font-size: 14px;
}
.day-1,.day-2 , .day-3{
  display:none;
}
.active{
  display: block;
}
.text-white{
  color:#fff !important;
}
.section{
display:flex;
flex-wrap:wrap;
justify-content:space-around;
}
.associate_section > img{
    border-right: 2px solid;
    padding: 5px;
}
.our-partners{
    display:flex;
    justify-content:center;
}
.our-partner-2 img{
  width:500px;
}
.strategic_section img{
    border-right:2px solid #000;
}
@media only screen and (max-width:786px){
    .our-partners > img{
        width:350px;
    }
    .section{
      display: flex;
      flex-direction:column;
    }
    .our-partner-2 img{
  width:350px;
}
.strategic_section,.associate_section{
  display: flex;
  flex-direction:row;
}
.associate_section img{
border:none;
}
}
