/*  www.YogendraSigh.info   */

    @import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body, html {
      font-family: 'Ubuntu', sans-serif;
    }

    p, ul li{
      font-size: 16px;
      line-height: 26px;
      color: #666;
    }
    .main-heading{
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }
    ul{
      list-style: none;
    }
    ul li{
      margin-bottom: 10px;
    }
    a{
      color: #000;
    }

/*NAVIGATIONBAR*/

    .navbar {
      margin-bottom: 0;
      border-radius: 0;
    }
    .navbar-custom {
      background-color: #ffbe0b;
      border: none;
    }
    .navbar-custom .navbar-brand,
    .navbar-custom .navbar-nav > li > a {
      color: #111;
      padding-top: 20px;
      padding-bottom: 20px;
      transition: all 0.5s;
      font-weight: 500;
    }
    .navbar-custom .navbar-nav > li > a{
      padding-top: 25px;
    }
    .navbar-custom .navbar-brand:hover ,
    .navbar-custom .navbar-nav > li > a:hover {
      color: #aaa;
    }

  .navbar-nav > li.active > a {
    color: #17B8A6 !important; /* your preferred highlight color */
    background-color: transparent !important;
  }

.navbar-custom .navbar-brand img{

}


/*HERO SECTION*/

    .hero-section {
      height: 100vh;
      background-image: url('img/hero-img1.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      color: white;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-overlay {
      position: absolute;
      top: 0; 
      left: 0;
      width: 100%; 
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1;
    }

    .hero-text {
      z-index: 2;
      opacity: 1;
      transition: opacity 0.8s ease-in-out;
    }

    .hero-text h1 {
      font-size: 4rem;
      margin-bottom: 10px;
      font-weight: bold;
      animation: fadeInUp 1s forwards;
      text-shadow: 0 0 3px #000;
      color: #fff;
    }
    .hero-text h2.venue{
      padding-top: 10px;
      letter-spacing: 2px;
      color: #ddd;
      color: #ffbe0b;
    }
    .hero-text h2.date{
      color: #ddd;
      margin-top: 20px;
    }

    @keyframes fadeInUp {
      0% { transform: translateY(40px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

.hero-text .know-more-btn{
  display: inline-block;
  background-color: #17B8A6;
  color: #fff;
  padding: 15px 30px;
  border-radius: 3px;
  margin-top: 50px;
  transition: all 0.5s;
  font-size: 16px;
}
.hero-text .know-more-btn:hover{
  color: #000;
  text-decoration: none;
}


/* COORDINATOR */
    .coordinator-section {
      background-color: #f0f0f0;
      padding: 60px 20px;
    }
    .coordinator-card {
      display: flex;
      flex-direction: row;
      align-items: center;
      background: white;
      padding: 50px 30px 50px 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      max-width: 800px;
      margin: auto;
      flex-wrap: wrap;
      transition: transform 0.3s ease;
      margin-bottom: 50px;
      margin-top: 50px;
    }
    .coordinator-card:hover {
      transform: translateY(-5px);
    }
    .coordinator-card img {
      width: 140px;
      height: 140px;
      object-fit: cover;
      border-radius: 0%;
      margin-right: 30px;
    }
    .coordinator-details h3 {
      margin-top: 0;
    }

    .content-section {
      padding: 20px 20px;
    }
    .content-img {
      max-width: 100%;
      border-radius: 8px;
      transform: scale(1);
      transition: transform 0.4s ease;
    }
    .content-img:hover {
      transform: scale(1.05);
    }
    .content-text {
      padding: 20px;
      animation: fadeIn 1s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .content-section .row {
      display: flex;
      flex-wrap: wrap;
    }
    .content-section .col-sm-6 {
      display: flex;
      flex-direction: column;
      /*justify-content: center;*/
    }

    @media (max-width: 767px) {
      .content-section .row {
        flex-direction: column !important;
      }
    }

    .footer {
      background: #222;
      color: #aaa;
      text-align: center;
      padding: 50px 0;
      margin-top: 100px;
    }

    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: none;
      background: #000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 18px;
      cursor: pointer;
      z-index: 999;
      transition: background 0.3s ease;
    }
    #backToTop:hover {
      background: #ffbe0b;
    }
