body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: linear-gradient(orange, white);
  }
  
  .custom-btn2 {
    background-color: orange;
    color: black;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .custom-btn2:hover {
    background-color:black;
    color: white;
  }
  

  .box {
    position: relative;
    background-color: #FFD580;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 90%;
    transition: transform 0.3s ease-in-out;
  }
  .box:hover {
    transform: scale(1.05);
  }
  
  .box:hover::after {
    content: "\2192"; 
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 20px;
  }
  
  .box-heading {
    font-weight: bold;
  }
  
  .youtube-videos {
    display: flex;
    overflow-x: auto; 
    padding: 10px 0; 
    margin: 0 -10px; 
  }
  
  .youtube-video {
    flex: 0 0 calc(33.33% - 20px); 
    margin: 0 10px; 
  }
  
  .youtube-video iframe {
    width: 100%;
    height: 200px;
  }
  
  @media (max-width: 768px) {
    .youtube-video {
      flex: 0 0 calc(50% - 20px); 
    }
  }
  
  @media (max-width: 576px) {
    .youtube-video {
      flex: 0 0 calc(100% - 20px); 
    }
  }
  
  .container2 {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
  }
  
  .section-1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    width: 100%;
    text-align: left;
    margin-right: 10px;
  }
  
  .section-2 {
    flex: 1;
    display: flex;
    margin-top: 20px;
    background-color: orange;
    padding:0px;
    border-radius: 50%;
    width: 100%;
  }
  
  .section-2-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 10px;
  }
  
  .section-2-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
  }
  
  .box2 {
    background-color: #FFFFF7;
    padding: 20px;
    margin-bottom: 10px;
    width: 100%; 
    height: 140px;
  }
  .box2 h3 {
    font-size: 22px;
    margin-bottom: 50px; 
  }
  
  
  .box2 i {
    font-size: 24px;
    margin-bottom: 20px;
  }
  @media (max-width: 768px) {
    .container2 {
      flex-direction: column; 
    }
  
    .section-1 {
      margin-right: 0;
      margin-bottom: 20px; 
    }
    .section-2-left {
      margin-bottom: 0; 
    }
    .section-2-right{
      width:50%;
      text-wrap: wrap;
    }
  }
  


  .content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
  }
  
  .content-container p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 2vw;
    color: black;
    padding: 5px;
  }
  @media screen and (max-width: 768px) {
    .content-container h2 {
      font-size: 10px;
  }
  }
  
  .buttons {
    display: flex;
    justify-content:center;
  }
  
  @media screen and (max-width: 768px) {
    
  }
  
  
  
  .btn3 {
    background-color: #f9f9f9;
    color: #333;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 15px;
    transition: background-color 0.3s;
    border: none;
  }
  
  .btn3:hover {
    background-color: orange;
    color: #fff;
    border: none;
  }
  .events-container {
    margin: 20px;
  }
  
  .search-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .outer-box {
    background-color: #FFD580; 
    padding: 10px;
    width: 65%;
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
  }
  @media screen and (max-width: 768px) {
    .outer-box {
      width: 90%;
  
    }
  }
  
  .search-bar {
    width: calc(70% - 0px); 
    padding: 8px;
    margin-right: 10px;
  }
  @media screen and (max-width: 768px) {
    .search-bar{
      margin: 5px;
    }
  
  }
  
  .find-events-btn:hover {
    background-color: orange;
    color: black;
  }
  .event-box {
    position: relative;
    border: 1px solid #ccc;
    padding: 0px;
    width: 250px; 
    height: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center; 
    background-color: white;
    border: 3px solid orange;
  }
  
  
  .event-box img {
    width: 100%; 
    height: auto; 
    margin-bottom: 10px; 
  }
  
  .event-box h3 {
    margin-top: 0;
    font-size: 14px;
    font-weight: bold;
  }
  
  .event-box p {
    font-size: 13px;
  }
  
  .event-box .view-details-btn {
    width: 80%; 
    font-size: 17px; 
    background-color: black;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    margin-bottom: 15px;
    text-transform: capitalize !important;
    
  }
  
  .event-box .view-details-btn:hover {
    color: white;
    background-color: orange;
  }
  
  .like-btn {
    bottom: 5px;
    right: 5px;
    font-size: 20px;
    color: red;
    cursor: pointer;
  }
  
  .address-info-l {
    display: flex;
    justify-content: space-around;
  }
  
  .info-box-l {
    text-align: center;
    margin: 20px;
  }
  
  .info-box-l h3 {
    font-size: 30px;
  }
  
  .info-box-l i {
    margin-right: 5px;
  }
  .rounded-20 {
    border-radius: 70px;
  }
  
  .scrolling-images {
    overflow: hidden;
  }
  
  .scrolling-container {
    white-space: nowrap;
    animation: scroll 20s linear infinite; 
  }
  
  .scrolling-container img {
    width: 100px; 
    height: auto; 
    margin-right: 20px; 
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .col-md-6:first-child {
    text-align: left;
  }
  section#third-section {
    margin-top: 50px; 
  }
  
  
  .join-button,
  .watch-video-link {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    background-color: black;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .join-button:hover,
  .watch-video-link:hover {
    cursor: pointer;
    background-color: orange;
    border: none;
  
  }
  
  .join-button i,
  .watch-video-link i {
    margin-right: 5px;
  }
   
  
  .container-section {
    overflow-x: hidden;
    margin: 20px;
  }
  
  .container3 {
    display: flex;
    justify-content:space-between;
  
  }
  
  .tab-container {
    margin: 20px;
    width: 65%; 
  }
  
  .tab {
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    padding: 20px;
    margin: 10px 10px;
    font-size: 20px;
    background-color: #353935;
    color: #f9f9f9;
    opacity: 0.7;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 15px;
  }
  
  .tab-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    text-align: left;
    margin: 0 auto; 
  }
  .box-container{
    display: flex;
  }
  .head-para{
    font-size: 35px;
    font-weight:900px;
    color:#002bff;
  }
  .head-para2{
    font-size: 25px;
    font-weight:600px;
    color: black;
  }
  
  @media screen and (max-width: 768px) {
    .tab-container {
      width: 90%; 
    }
    
    .tab {
      width: 100%;
      margin: 0;
      font-size: 15px;
    }
    .box-container{
      display: flex;
      flex-direction: column;
    }
  
    .head-para{
      font-size: 27px;
      font-weight:700px;
      color:#002bff;
    }
    .head-para2{
      font-size: 20px;
    
    }
  }
  
  #header-sec-1{
    font-size: 40px;
    margin-bottom: 15px;
  }
  #header-para-1{
    font-size: 20px;
    margin-bottom: 2rem;
  }
  #register-header{
  padding: 15px;
  font-weight: bolder;
  }
  #vis-header{
    font-weight: bolder;
    font-size: 30px;
  }
  #vis-para{
    font-size: 25px;
    text-align: center;
  }
  #container2-header{
    color: blue;
    margin-bottom: 20px;
  }
  #container2-header2{
    font-weight: bold;
    margin-bottom: 20px;
    padding-top: 20px;
  }
  #container2-para{
    font-size: 20px;
  }
  #three-img-header{
    font-size: 35px;
    font-weight: 600;
  }
  .three-img-bullet{
    color:black;
    font-weight:bolder;
  }
  .scroll-sec{
    margin-top:100px;
    margin-bottom: 50px;
  }
  #register-sec{
    padding: 20px;
  }
  #two-img-sec{
    margin-top: 100px;
     width: 100%; 
     overflow-x:hidden;
  }
  @media screen and (max-width: 768px) {
    #header-sec-1{
      font-size: 25px;
      text-align: center;
    }
    #header-para-1{
      font-size: 17px;
      text-align: center;
    }
    #register-header{
      font-size:25px;
      font-weight: bold;
    }
    #vis-header{
      font-weight: bold;
      font-size: 25px;
    }
    #vis-para{
      font-size: 17px;
      text-align: center;
    }
    #container2-header{
      font-size: 25px;
      color: blue;
      margin-bottom: 20px;
    }
    #container2-header2{
      font-weight: bold;
      font-size: 22px;
      margin-bottom: 20px;
      padding-top: 20px;
    }
    #container2-para{
      font-size: 18px;
    }
    #three-img-header{
      font-size: 25px;
      font-weight: 600;
    }
    #three-img-para{
      font-size: 18px;
    }
    .three-img-bullet{
      color:black;
      font-weight:bold;
    }
    .scroll-sec{
      margin-top:100px;
      margin-bottom:0px;
    }
    #register-sec{
      padding:10px 20px;
    }
    #two-img-sec{
      margin-top: 50px;
       width: 100%; 
       overflow-x:hidden;
    }
  }
  
  
  #find-event-button{
    background-color: black;
    color: white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    text-transform:capitalize !important;
    font-size:16px;
    padding-left:12px;
    padding-right: 12px;
  }
  #find-event-button:hover{
    background-color: orange;
    transition: 0.4s;
  }
  .ques-botton{
    background-color:white;
    color: white;
    padding: 7px 14px;
    border: none;
    color: black;
    border-radius: 15px;
  }
  .ques-botton:hover{
    background-color: orange;
    color:white;
    transition: 0.4s;
  }
      #details-sec{
      display: flex;
      justify-content: space-around;
    }
    @media (max-width: 650px) {
      #details-sec{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
    }
    
      .img-responsive-sm {
      max-width: 90%;
      height: auto;
      border-radius: 30%; 
    }
  
    @media (max-width: 768px) {
      .img-responsive-sm {
        width: 90%;
      }
    }
  
  .img-responsive-sm 
  {
    border-radius: 30%;
  }
      .custom-btn:hover {
        background-color: black;
        color: orange;
        border: none;
      }
      .btn-1,.btn-2{
        background-color: antiquewhite;
        color: black;
        border: none;
        border-radius: 20px;
        padding: 10px 12px;
        border: 1px solid black;
      }
      .btn-1:hover{
        background-color: orange;
        color: white;
        transition: 0.4s;
      }
      .btn-2:hover{
        background-color: orange;
        color: white;
        transition: 0.4s;
        cursor: pointer;
      }
      .img-responsive-sm {
      max-width: 100%;
      height: auto;
    }
.new-pad{
  position: relative;
  width: 100%;
   padding-right: 0px !important; 
  padding-left: 0px !important; 

}

header {
  background-color: orange;
  color: white;
  padding: 30px 20px;
  text-align: center !important;
}

h1 {
  margin: 0;
}
.orange-background {
  background-color: orange !important;
}

.navbar {
      transition: background-color 0.7s ease; 
  }

  /* .social-ip{
    margin-top: 0px !important;
  } */
  #social-section{
    margin-bottom: 50px;
  }
  @media (max-width: 769px) {
    #social-section{
      margin-bottom: 20px;
    }
  }