@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Popup */

/* Popup Modal styles */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
  }
  
  .popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    animation: slideIn 0.7s ease;
    position: relative;
  }
  
  .popup-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .popup-content h2 {
    font-size: 24px;
    margin: 20px 0;
  }
  
  .popup-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .popup-btn {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .popup-btn:hover {
    background-color: #e64a19;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    transition: color 0.3s ease;
  }
  
  .close-btn:hover {
    color: #000;
  }
  
  /* Keyframe animation for popup sliding in */
  @keyframes slideIn {
    0% {
      transform: translateY(-100px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Modal visibility control */
  .show {
    opacity: 1;
    visibility: visible;
    z-index: 100;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    .popup-content {
      width: 95%;
    }
  
    .popup-content h2 {
      font-size: 20px;
    }
  
    .popup-content p {
      font-size: 14px;
    }
  
    .popup-btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  }

/* Preloader */
.preloader{
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 100;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}


.preloader .fade-out{
    opacity: 0;
    transition: opacity 4s ease;
}

/* Marquee Section */

.mar{
    font-size: 1.2rem;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: sans-serif;
    color: red;
    font-weight: 700;
    overflow: hidden;
}




/* Navbar Section */

.navbar{
	padding: 20px 20px;
}

.bar img{
    width: 70px;
}

.bar{
	background-color: rgb(1, 93, 1);
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	padding: 20px 20px;
	align-items: center;
}

.bar ul{
	display: flex;
	justify-content: flex-end;
	gap: 30px;
}


.bar ul a{
	text-decoration: none;
	position: relative;
}

.bar ul a li{
	list-style: none;
	font-size: 1.1rem;
	color: white;
	font-family: sans-serif;
}

.bar ul a::before{
   content: "";
   position: absolute;
   bottom: -4px;
   background-color: white;
   height: 4px;
   width: 100%;
   border-radius: 50px;
   transform: scale(0);
   transition: transform 0.2s linear;
}

.bar ul a:hover::before{
	transform: scale(1);
}

.bar button{
	border: none;
	outline: none;
	font-size: 1.2rem;
	font-family: sans-serif;
	padding: 5px 10px;
	border-radius: 5px;
	color: green;
	transition: 0.4s ease-in-out;
}

.bar button:hover{
	background-color: black;
	color: white;
}

.side{
    margin-top: 50px;
}

.side{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.sidebar{
	position: fixed;
	top: 0;
	height: 100vh;
	width: 250px;
	z-index: 999;
	right: 0;
	background-position: center;
    background-image: url(back.jpg);
	display: none;
	flex-direction: column;
    top: 0;
}

.sidebar i{
	font-size: 3rem;
	color: white;
	cursor: pointer;
}

.sidebar ul{
	display: flex;
	flex-direction: column;
    align-items: flex-start;
	justify-content: flex-start;
}

.menu-btn{
	display: none;
}

.sidebar li{
	width: 100%;
}

@media (max-width: 990px) {
	.hideonMobile{
		display: none;
	}

	.menu-btn{
		display: block;
	}

	.sidebar{
		width: 100%;
	}
}

@media (max-width: 375px) {
	.menu-btn{
	  font-size: 1.7rem;
	}

	
}

/* -------------------------------------- */



/* Hero Section */

.hero{
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    padding: 40px 30px;
    background-color: rgb(127, 225, 225);
}

.hero-right img{
    width: 500px;
}

.hero-left{
    padding-top: 50px;
}

.hero-left .hero-text h3{
    font-family: sans-serif;
    font-size: 2rem;
    line-height: 50px;
    padding-right: 300px;
    padding-bottom: 10px;
}

.hero-text h2{
    font-family: sans-serif;
    font-size: 2.3rem;
    color: red;
}

.hero-text button{
    margin-top: 40px;
    font-family: sans-serif;
    font-size: 1.5rem;
    padding: 5px 10px;
    background-color: green;
    color: white;
    border: none;
    outline: none;
    border-radius: 4px;
    transition: 0.4s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.hero-text button:hover{
    transform: scale(1.1);
    background-color: black;
}

@media (max-width: 1100px) {
    .hero{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .hero-left .hero-text h3{
        padding-right: 10px;
        padding-left: 10px;
    }

    .hero-text h2{
       text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
}

@media (max-width: 599px) {

    .hero-left .hero-text h3{
        font-size: 1.6rem;
    }

    .hero-text h2{
       font-size: 1.8rem;
    }

    .hero-text button{
        font-size: 1rem;
    }

    .hero-right img{
        width: 300px;
    }
}

@media (max-width: 426px) {

    .hero-left .hero-text h3{
        font-size: 1.3rem;
        padding-right: 5px;
        padding-left: 5px;
    }

    .hero-text h2{
       font-size: 1.5rem;
    }

    .hero-text button{
        font-size: 1rem;
    }

    .hero-right img{
        width: 250px;
    }
}

/* Cards */

.cards{
  display: flex;
  padding: 20px 50px;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  overflow: hidden;
}

/* Services Section */



.services-head h2{
    padding-top: 30px;
    text-align: center;
    font-family: sans-serif;
    font-size: 2rem;
    padding-bottom: 20px;
}


/* Marquee */

.marquee h2{
    text-align: center;
    font-size: 2rem;
    padding: 20px;
    font-family: sans-serif;
}

.marquee img{
    width: 300px;
    align-items: center;
    margin-right: 100px;
    padding: 30px;
}

/* About Section */

.about-text h2{
    padding-top: 30px;
    text-align: center;
    font-family: sans-serif;
    font-size: 2rem;
    padding-bottom: 20px;
}

.about-text p{
    font-family: sans-serif;
    line-height: 35px;
    padding-right: 100px;
}

.about{
    display: flex;
    justify-content: space-evenly;
    padding: 40px 20px 30px 20px;
    background-color: rgb(127, 225, 225);
    overflow: hidden;
    margin-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 944px) {
    .about{
        flex-direction: column-reverse;
        align-items: center;
    }

    .about-text p{
        padding-right: 10px;
        padding-left: 10px;
        text-align: center;
    }

}

@media (max-width: 425px) {
   
    .about-right img{
        width: 250px;
    }

    .about-text h2{
        font-size: 1.6rem;
    }
    
    .about-text p{
        font-size: 0.7rem;
        line-height: 25px;
    }
    
}

/* Coach Section */

.coaches{
    flex-direction: row;
}

.coach{
    display: flex;
    justify-content: space-evenly;
    padding: 40px 20px;
    background-color: antiquewhite;
    overflow-x: auto;
}

.coach-left img{
    width: 300px;
}

.coach-right{
    padding-left: 30px;
    font-family: sans-serif;
}

.coach-right h2{
    font-size: 2rem;
    padding-bottom: 10px;
}

.coach-right h4{
    font-size: 1.4rem;
    padding-bottom: 20px;
}

.coach-right p{
    padding-right: 180px;
    line-height: 40px;
}

.coach-right button{
    margin-top: 40px;
    font-size: 1.4rem;
    padding: 8px 15px;
    border: none;
    outline: none;
    background-color: green;
    color: white;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.coach-right button:hover{
    background-color: black;
}

@media (max-width: 948px) {
    .coach{
        flex-direction: column;
        text-align: center;
    }

    .coach-right p{
        padding-right: 30px;
    }

    .coach-right h2{
        padding-top: 30px;
    }
}

@media (max-width: 507px) {
    
    .coach-left img{
        width: 200px;
    }
    
    .coach-right{
        padding-left: 10px;
    }
    
    .coach-right h2{
        font-size: 1.6rem;
    }
    
    .coach-right h4{
        font-size: 1rem;
        padding-bottom: 20px;
    }
    
    .coach-right p{
        padding-right: 10px;
    }
}

/* FAQs Section */

.faqs{
    font-family: sans-serif;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.container h1{
    color: #fff;
    text-align: center;
  }
  
  details{
    background-color: #303030;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  summary {
    padding: .5em 1.3rem;
    list-style: none;
    display: flex;
    justify-content: space-between;  
    transition: height 1s ease;
  }
  
  summary::-webkit-details-marker {
    display: none;
  }
  
  summary:after{
    content: "\002B";
  }
  
  details[open] summary {
      border-bottom: 1px solid #aaa;
      margin-bottom: .5em;
  }
  
  details[open] summary:after{
    content: "\00D7";
  }
  
  details[open] div{
    padding: .5em 1em;
  }

  

/* Contact Section */


.contact{
    background-color: rgb(127, 225, 225);
    padding-bottom: 20px;
    padding-bottom: 30px;
}
.contact-head h2{
    padding-top: 20px;
    text-align: center;
    font-family: sans-serif;
    font-size: 2rem;
    padding-bottom: 20px;
}

.contact-left{
    text-align: center;
    overflow: hidden;
}

.contact-right{
    text-align: center;
    margin-top: 30px;
}

.contact-right i{
    color: green;
    font-size: 4rem;
}

.contact-right h4{
    font-family: sans-serif;
    margin-top: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-right p{
    font-family: sans-serif;
    margin-bottom: 30px;
}

@media (max-width: 624px) {
    .contact-left .map{
        width: 280px;
        height: 280px;
    }
}

/* Footer Section */

.footer{
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    gap: 20px;
    background-color: black;
    overflow: hidden;
    flex-wrap: wrap;
}

.foot{
    width: 300px;
}

.foot-box1 img{
    width: 200px;
}

.foot-box1{
    text-align: center;
    padding: 10px;
}

.foot-box2{
    text-align: center;
    padding: 10px;
}

.foot-box2 h3{
    font-family: sans-serif;
    font-size: 1.4rem;
    padding-bottom: 30px;
    color: white;
}

.foot-box2 li{
    list-style: none;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: sans-serif;
    transition: 0.4s ease-in-out;
}

.foot-box2 a{
    text-decoration: none;
    color: rgb(179, 175, 175);
}

.foot-box2 li:hover{
    transform: scale(1.2);
}


/* Sub Footer Section */


.sub-footer{
    background-color: rgb(63, 58, 58);
}
.copy{
    font-family: sans-serif;
    text-align: center;
    padding-top: 30px;
    color: white;
}

.made{
    font-family: sans-serif;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 30px;
    color: white;
}

/* Achievements */


.caa{
    display: flex;
    overflow-x: auto;
}
  
.ca{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
  .car{
    width: 400px;
    margin: 20px;
    padding: 30px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 560px;
  }
  
  .car:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .congrats-banner {
    background-color: #ff0000;
    color: white;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 15px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 1s ease forwards;
  }
  
  @keyframes slideDown {
    0% {
      top: -60px;
    }
    100% {
      top: 0;
    }
  }
  
  .car-content {
    margin-top: 70px;
    text-align: center;
  }
  
  .image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .person-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    animation: popUp 0.8s ease;
    transition: transform 0.3s ease;
    margin-top: 40px;
  }
  
  .car:hover .person-img {
    transform: scale(1.1) rotate(5deg);
  }
  
  @keyframes popUp {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .text-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .text-content p {
    font-size: 18px;
    color: #ffffff;
    padding: 0 10px;
    line-height: 1.5;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
  }

  @media screen and (max-width: 481px) {
    .car{
        width: 250px;
        margin: 10px;
        padding: 30px 20px;
        border-radius: 20px;
        background: linear-gradient(135deg, #ffcc00, #ff9900);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        flex-direction: column;
    align-items: center;
    justify-content: center;
      }
      
  }

  /* New Coach section */

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 50px;
        }

        .coaches {
            display: flex;
            overflow-x: auto;
            justify-content: space-around;
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .coach-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 300px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .coach-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .coach-card h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .coach-card p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 15px;
        }

        .coach-card button {
            background-color: #3498db;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .coach-card button:hover {
            background-color: #2980b9;
        }

        .coach-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .coaches {
                flex-direction: column;
                align-items: center;
            }

            .coach-card {
                max-width: 90%;
            }
        }


        /* Update Section */

      
/* General container styling */
.updates {
  background-color: #f9f9f9; /* Light gray background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
}

.news-box {
  overflow: hidden;
}

/* Styling for the news container */
.news-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Styling for individual news items */
.news-item {
  display: block;
  text-decoration: none;
  padding: 15px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #0073e6;
}

.news-item:active {
  transform: translateY(1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .updates {
    padding: 15px;
  }

  .news-item {
    padding: 10px;
    font-size: 0.9rem;
  }
}
  /* Congratulations of India */


  
  .slider {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .slide img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
  }

  .slide h2 {
    margin: 15px 0 10px;
    color: #007acc;
    font-size: 1.8rem;
  }

  .slide p {
    color: #555;
    font-size: 1rem;
    margin: 0 10px;
  }

  .buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
  }

  .buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    pointer-events: all;
    transition: background-color 0.3s;
  }

  .buttons button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  @media (max-width: 768px) {
    .slide h2 {
      font-size: 1.5rem;
    }

    .slide p {
      font-size: 0.9rem;
    }

    .buttons button {
      font-size: 1.2rem;
    }
  }



  /* Popup for Registration */

  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 300px;
}
.popup h2 {
    font-size: 18px;
    margin-bottom: 15px;
}
.popup button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
.beginner { background: #4CAF50; color: white; }
.professional { background: #2196F3; color: white; }
.close { background: red; color: white; }
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


  
  
