
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  margin: 0;
  padding: 0;
  gap: 0;
}

html,
body {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('./../Images/preloader.svg');
  background-size: 100px;
}

#myBtn {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 10px;
  animation: image-animation 1s linear infinite;

}

#myBtn:hover {
  background-color: rgba(255, 0, 0, 0.5)
}

#myBtn i {
  color: white;
}


.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease-in-out;
}
.slide1 {
  background-image: url("../Images/image-1.jpg");
  transform: translateY(0);
}
.slide2 {
  background-image: url("../Images/image-2.jpg");
  transform: translateY(100%);
}

.slider-info {
  position: absolute;
  color: white;
  top: 40%;
  margin-left: 650px;
  padding: 20px;
  border: none;
  line-height: 65px;
  border-left: 8px solid rgba(196, 194, 194, 0.651);
  transition: right 1s ease-in-out;
}

.slide.active .slider-info {
  animation: textSlide 1s forwards;
}
@keyframes textSlide {
  from {
    right: -100%;
  }
  to {
    right: 10%;
  }
}

.slider-info h3 {
  font-size: 20px;
  letter-spacing: 1.5px;
}

.slider-info h1 {
  font-size: 70px;
  font-weight: 1200;
}

.btn-box {
  position: relative;
  float: left;
  margin-left: 30px;
}
.btn-one-outer {
  position: relative;
  padding-left: 7px;
  padding-bottom: 3px;
  padding-right: 7px;
  padding-top: 10px;
  z-index: 1;
  display: inline-block;
  transition: all 600ms ease;
}
.btn-one-outer:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  z-index: -1;
  border-left: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
  transition: all 600ms ease;
}
.btn-one-outer:after {
  position: absolute;
  content: "";
  right: 3px;
  top: 9px;
  width: 44px;
  height: 44px;
  opacity: 0;
  z-index: -1;
  border-right: 2px solid #ff0000;
  border-top: 2px solid #ff0000;
  transition: all 600ms ease;
}
.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  padding: 12px 40px;
  font-weight: 600;
  overflow: hidden;
  background: none;
  border-radius: 0px;
  text-transform: capitalize;
  border: 1px solid #ffffff;
  font-family: "Montserrat", sans-serif;
  transition: all 600ms ease;
}
.btn-style-one .txt {
  position: relative;
  z-index: 1;
}
.btn-style-one:before {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: -50px;
  border-bottom: 55px solid #ffffff;
  border-right: 30px solid transparent;
  transition: all 600ms ease;
  transform: translateX(-100%);
}
.btn-style-one:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: -50px;
  border-left: 30px solid transparent;
  border-bottom: 55px solid #ffffff;
  transition: all 600ms ease;
  transform: translateX(100%);
}
.btn-style-one:hover::before {
  transform: translateX(-40%);
}
.btn-style-one:hover::after {
  transform: translateX(40%);
}
.btn-one-outer:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.btn-one-outer:hover::before {
  opacity: 0;
}
.btn-one-outer:hover .btn-style-one {
  color: #000000;
  transform: translate(-7px, 10px);
}

.social-container {
  position: absolute;
  display: flex;
  align-items: center;
  height: 50px;
}

.start {
  color: white;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.8px;
  padding: 30px;
  margin-top: 10px;
}

.social-info {
  position: absolute;
  left: 580px;
  top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-info i {
  color: rgb(255, 0, 0);
  font-size: 16px;
  padding: 10px 10px 10px 10px;
}

.social-info {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.social-info .a2 {
  color: white;
  font-size: 16px;
  text-align: left;
  width: 180px;
}

.social-info .a3 {
  color: white;
  font-size: 16px;
  text-align: center;
  width: 300px;
}

.social-info .a1 {
  color: white;
  font-size: 16px;
  width: 250px;
}

.social-info a:hover {
  color: red;
}
.v1 {
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 5px;
}

.logo-img {
  background-color: rgba(0, 0, 0, 0.8);
}

.logo-img img {
  padding: 0px 40px;
  height: 120px;
}
.logo-container {
  position: absolute;
  top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar {
  position: absolute;
  top: 20px;
  left: 550px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  background-color: rgba(0, 0, 0, 0.6);
}

.nav-bar li {
  list-style: none;
  width: 150px;
  text-align: center;
}
.nav-bar li a i {
  padding-right: 10px;
  color: white;
  display: none;
}

.nav-bar li a:hover i {
  display: inline-block;
}

.nav-bar a {
  font-weight: 450;
  color: white;
}

.nav-bar a:hover {
  color: red;
}

.nav-bar a.active i {
  display: inline-block;
}
.nav-bar a.active {
  color: #ff0000;
}

.menu-toggle {
  display: none;
  background: rgba(0, 0, 0, 0.397);
  border-radius: 50%;
  padding: 12px;
  font-size: 30px;
  cursor: pointer;
  color: white;
  position: absolute;
}

/* Responsive CSS for Mobile and Tablet */
@media screen and (max-width: 1024px) {
  .nav-bar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.5s ease-in-out;
  }

  .nav-bar.active {
    left: 0;
  }

  .nav-bar li {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .nav-bar a {
    font-size: 24px;
    display: block;
    padding: 10px;
  }

  .menu-toggle {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .logo-container {
    top: 20px;
    flex-direction: column;
    align-items: center;
  }

  .nav-bar {
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .nav-bar.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    left: 320px;
    top: 30px;
    z-index: 100;
  }
}
/* Mobile and Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .slider-info {
    margin-left: 50px;
    top: 40%;
    text-align: center;
    border-left: none;
  }
  .social-info {
    left: 50px;
  }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  
  .slider-info {
    margin-left: 20px;
    top: 25%;
  }
  .slider-info h1 {
    font-size: 40px;
  }
  .slider-info h3 {
    font-size: 18px;
  }
  .btn-style-one {
    font-size: 14px;
    padding: 10px 30px;
  }
  
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .social-container{
    display: none;
  }
  .slider-info {
    top: 40%;
    margin-left: 10px;
  }
  .slider-info h1 {
    font-size: 30px;
  }
  .slider-info h3 {
    font-size: 16px;
  }
  .btn-style-one {
    font-size: 12px;
    padding: 8px 20px;
 
}

}













/*=----------------service sction ------------------*/

.services-section {
  position: relative;
  background-color: #222222;
}
.services-section .side-text {
  position: absolute;
  left:0%;
  bottom: -140px;
  opacity: 0.2;
  font-size: 170px;
  color: transparent;
  font-weight: 700;
  transform: rotate(-90deg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  text-transform: uppercase;
  transform-origin: 7% 20%;
}
/* .services-section:before {
  position: absolute;
  content: "";
  left: 0%;
  top: 0px;
  width: 35%;
  height: 100%;
  background-color: #222222
} */

.service-card{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.card{
  width:500px;
  height: 400px;
}

.card1{
  margin-left: 160px;
  background-color: #222222;
}

.card2{
  background-color: white;
}

.card3{
  background-color: #ff0000;
  margin: 0;
}
.card1 .icon,
.card2 .icon,
.card3 .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: all 600ms ease;
  padding: 40px 40px 20px 40px;
}


.card1 .icon:hover,
.card2 .icon:hover,
.card3 .icon:hover{
  transform:scale(1) rotate(180deg);
}
.card .icon-info h2{
  color: white;
  font-weight: 600;
  font-size: 25px;
  text-align: center;
}
.card2 .icon-info h2{
  color: black;
}

.card2 .icon-info p{
  color: black;
  font-size: 16px;
  text-align: center;
  padding: 20px 50px;
  line-height: 1.5;
}
.card1 .icon-info p,
.card3 .icon-info p{
  color: white;
  font-size: 16px;
  text-align: center;
  padding: 20px 50px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-section .side-text {
    font-size: 120px;
    bottom: -100px;
  }
  .card {
    width: 400px;
    height: 350px;
  }
}

@media (max-width: 992px) {
  .services-section .side-text {
    font-size: 100px;
    bottom: -80px;
  }
  .service-card {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    width: 80%;
    height: auto;
    padding: 20px;
  }
  .card1 {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .services-section .side-text {
    font-size: 80px;
    bottom: -60px;
  }
  .service-card {
    align-items: center;
  }
  .card {
    width: 90%;
  }
  .card .icon-info h2 {
    font-size: 22px;
  }
  .card .icon-info p {
    font-size: 14px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .services-section .side-text {
    font-size: 60px;
    bottom: -40px;
  }
  .card {
    width: 90%;
    height: 300px;
    border: 1px solid gary;
  }
  .card .icon-info h2 {
    font-size: 20px;
  }
  .card .icon-info p {
    font-size: 12px;
    padding: 10px;
  }
}



.about-info{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 40px;
}

.about-img {
  position: relative;
  display: inline-block;
}

.about-img .girl {
  height: 600px;
  display: block;
}

.about-img .award {
  position: absolute;
  bottom: 10px; 
  right:450px;  
  width: 150px;
  animation: image-animation 4s linear infinite;
}

@keyframes image-animation {
  0% {
    visibility: translateY(30%);
  }

  50% {
    transform: translateY(20%);
  }

  100% {
    visibility: visible;
  }
}
.about-all{
  width:800px;
  padding: 40px 40px 40px 60px;
}

.about-all h2{
  letter-spacing: 1px;
  padding: 20px 0px;
  color: rgb(101,104,101);
}

.about-all h1{
  font-size: 30px;
  padding-bottom: 20px;
  font-weight: 900;
}

.about-all .p1{
  color: red;
  font-weight: 700;
  width:550px;
  line-height: 1.5;
  font-size: 18px;
  padding-bottom: 20px;
}

.about-all .p2{
  color: rgb(90,85,85);
  line-height: 1.5;
  width: 600px;
  text-align: justify;
  font-size: 16px;
  padding-bottom: 20px;
}

.free-training{
  display: flex;
  align-items: center;
}

.free-training img{
  height: 90px;
  width: 90px;
}

.free-training .free-info{
  padding-left: 10px;
}

.free-training .free-info h3{
  padding-bottom: 5px;
}

/* For tablets */
@media screen and (max-width: 1024px) {
  .about-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-all {
    width: 90%;
    padding: 20px;
  }

  .about-all .p1, 
  .about-all .p2 {
    width: 100%;
  }

  .about-img .girl {
    height: 500px;
  }

  .about-img .award {
    right: 60px;
    width: 120px;
  }
}

/* For mobile devices */
@media screen and (max-width: 768px) {
  .about-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-img .girl {
    height: 400px;
  }

  .about-img .award {
    right: 10px;
    width: 100px;
  }

  .about-all {
    width: 100%;
    padding: 20px;
  }

  .about-all h1 {
    font-size: 24px;
  }

  .about-all .p1, 
  .about-all .p2 {
    width: 100%;
    font-size: 14px;
  }

  .free-training {
    flex-direction: column;
    text-align: center;
  }

  .free-training img {
    height: 70px;
    width: 70px;
  }

  .free-training .free-info {
    padding-left: 0;
    margin-top: 10px;
  }
}











.trainer-section{
  position: relative;
  background:#000000;
  height: 120vh;
}

.trainer-section .trainer-header{
  padding-top: 30px;
  text-align: center;
  color: white;
}
.trainer-header p
{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 20px 50px;

}
.trainer-header h1{
  margin: auto;
  padding: 20px 0px;
  font-size: 50px;
  font-weight: 800;
  width: 500px;
  letter-spacing: 2px;
}
.trainer-section .side-text{
  position: absolute;
  left:85%;
  bottom: -140px;
  opacity: 0.2;
  font-size: 170px;
  color: transparent;
  font-weight: 700;
  transform: rotate(-90deg);
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #ffffff;
  text-transform: uppercase;
  transform-origin: 7% 20%;
}

.trainer-container{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 50px;
}

.trainer-card1{
  height: 400px;
  position: relative;
  width: 350px;
  background-image: url('../Images/team-1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.trainer-card2{
  height: 400px;
  position: relative;
  width: 350px;
  background-image: url('../Images/team-2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.trainer-card3{
  height: 400px;
  position: relative;
  width: 350px;
  background-image: url('../Images/team-3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.trainer-info{
  position: absolute;
  border: none;
  border-left: 3px solid red;
  bottom: 15px;
  left: -40px;
  width: 200px;
  background: #fff;
  padding: 10px;
}
/* Responsive Design */

/* For tablets */
@media screen and (max-width: 1024px) {
  .trainer-section {
    height: auto;
    padding-bottom: 50px;
  }

  .trainer-header h1 {
    font-size: 40px;
    width: 90%;
  }

  .trainer-container {
    flex-wrap: wrap; 
    gap: 30px;
  }

  .trainer-card1, .trainer-card2, .trainer-card3 {
    width: 90%;
    height: 400px;
  }

  .trainer-info {
    left: 10px;
    width: 250px;
  }

  .trainer-section .side-text {
    font-size: 100px;
    left: 75%;
    bottom: -100px;
  }
}

/* For mobile devices */
@media screen and (max-width: 768px) {
  .trainer-section {
    height: auto;
    padding-bottom: 50px;
  }

  .trainer-header p {
    font-size: 18px;
    padding: 10px 30px;
  }

  .trainer-header h1 {
    font-size: 30px;
    width: 100%;
    padding: 10px 0;
  }

  .trainer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .trainer-card1, .trainer-card2, .trainer-card3 {
    width: 90%;
    height: 300px;
    background-size: cover;
  }

  .trainer-info {
    width: 180px;
    right: 500px;

  }

  .trainer-info p {
    font-size: 14px;
  }

  .trainer-info h1 {
    font-size: 18px;
  }

  .trainer-section .side-text {
    font-size: 80px;
    left: 50%;
    bottom: -50px;
    transform-origin: center;
  }
}










/* Default iframe styling */
iframe {
  width: 100%;
  height: 600px;
}

.map {
  position: relative;
}

/* Contact Info Box */
.contact-info {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  width: 720px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-img img {
  height: 320px;
  width: 350px;
  border-radius: 10px;
}

.location-info {
  display: flex;
  align-items: center;
  padding: 10px 25px 5px 10px;
}

.location-info i {
  padding: 20px;
  font-size: 50px;
  color: rgb(116, 116, 116);
}

.icon-info h1 {
  color: red;
  font-size: 18px;
  padding-bottom: 2px;
}
.icon-info a {
  color: rgb(116, 116, 116);
  font-size: 16px;
}

.contact-form{
  margin-top: 230px;
  display: flex;
}

.contact-form-info{
  padding: 20px 20px 20px 40px;
}

.contact-form-info h3{
  letter-spacing: 1px;
  font-weight: 600;
  padding-bottom: 20px;
  font-size: 20px;
  color: rgb(116, 116, 116);
}
.contact-form-info p  {
  padding-top: 20px;
  width: 500px;
  line-height: 1.5;
  font-size: 16px;
  color: rgb(101,104,101);
}
.contact-form-info h1{
  font-size: 60px;
  font-weight: 900;
}
form {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.form-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  background-color: #f1f0f0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input::placeholder,
textarea::placeholder{
  font-family:  "Plus Jakarta Sans", serif;
  font-size: 16px;
  font-weight: 500;
}

textarea {
  resize: none;
}
.btn-box1{
  position: relative;
  float: left;
  margin-left: 30px;
}
.btn-one-outer1 {
  position: relative;
  padding-left: 7px;
  padding-bottom: 3px;
  padding-right: 7px;
  padding-top: 10px;
  z-index: 1;
  display: inline-block;
  transition: all 600ms ease;
}
.btn-one-outer1:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 44px;
  height: 44px;
  z-index: -1;
  border-left: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
  transition: all 600ms ease;
}
.btn-one-outer1:after {
  position: absolute;
  content: "";
  right: 3px;
  top: 9px;
  width: 44px;
  height: 44px;
  opacity: 0;
  z-index: -1;
  border-right: 2px solid #ff0000;
  border-top: 2px solid #ff0000;
  transition: all 600ms ease;
}
.btn-style-one1 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: rgb(101,104,101);
  padding: 12px 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
  overflow: hidden;
  background: none;
  border-radius: 0px;
  text-transform: capitalize;
  border: 1px solid rgb(116, 116, 116);
  font-family: "Montserrat", sans-serif;
  transition: all 600ms ease;
}
.btn-style-one1 .txt {
  position: relative;
  z-index: 1;
}
.btn-style-one1:before {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: -50px;
  border-bottom: 55px solid red;
  border-right: 30px solid transparent;
  transition: all 600ms ease;
  transform: translateX(-100%);
}
.btn-style-one1:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: -50px;
  border-left: 30px solid transparent;
  border-bottom: 55px solid red;
  transition: all 600ms ease;
  transform: translateX(100%);
}
.btn-style-one1:hover::before {
  transform: translateX(-40%);
}
.btn-style-one1:hover::after {
  transform: translateX(40%);
}
.btn-one-outer1:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.btn-one-outer1:hover::before {
  opacity: 0;
}
.btn-one-outer1:hover .btn-style-one1 {
  color: #fff;
  transform: translate(-7px, 10px);
}




/* Responsive Queries */

/* For Laptops and Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .map {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  iframe {
    width: 90%;
    height: 400px;
  }

  .contact-info {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    width: 90%;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
  }

  .contact-img img {
    width: 100%;
    height: auto;
  }

  .contact-img-info {
    width: 100%;
  }

  .location-info {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .location-info i {
    font-size: 40px;
    padding: 10px;
  }

  .contact-form {
    flex-direction: column;
    text-align: center;
    margin-top: 200px;
  }

  .contact-form-info {
    padding: 20px;
  }

  .contact-form-info h1 {
    font-size: 50px;
  }

  .contact-form-info p {
    width: auto;
  }

  form {
    width: 90%;
  }

  .form-group {
    flex-direction: column;
  }

  .btn-box1 {
    margin-left: 0;
    text-align: center;
  }
}

/* For Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
  .map {
    width: 100%;
    padding: 10px;
  }

  iframe {
    width: 100%;
    height: 300px;
  }

  .contact-info {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .contact-img img {
    width: 100%;
    height: auto;
  }

  .contact-img-info {
    width: 100%;
  }

  .location-info {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
  }

  .location-info i {
    font-size: 35px;
    padding: 8px;
  }

  .icon-info h1 {
    font-size: 16px;
  }

  .icon-info p {
    font-size: 14px;
  }

  .contact-form {
    flex-direction: column;
    margin-top: 150px;
    text-align: center;
  }

  .contact-form-info {
    padding: 10px;
  }

  .contact-form-info h1 {
    font-size: 40px;
  }

  .contact-form-info p {
    width: auto;
    font-size: 14px;
  }

  form {
    width: 80%;
  }

  .form-group {
    flex-direction: column;
  }

  input,
  textarea {
    font-size: 14px;
  }

  .btn-box1 {
    text-align: center;
    margin-left: 0;
    margin-top: 20px;
  }

  .btn-style-one1 {
    font-size: 14px;
    padding: 10px 30px;
  }

  .btn-one-outer1:hover .btn-style-one1 {
    background-color: red;
    color: white;
  }
}





  
.patner{
  display: flex;
  justify-content: center;
  align-items: center;
  width:70%;
  margin: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}


.patner1{
  padding: 10px;
}
.patner1 img{
  filter: grayscale(100%);
}

.patner1 img:hover{
  filter: none;
}

/* For tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .patner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .patner1 img {
    width: 120px; /* Adjust image size */
    margin: 20px;
  }
}

/* For mobile devices (max-width: 767px) */
@media screen and (max-width: 767px) {
  .patner {
    flex-direction: column;
    margin-top: 40px;
  }

  .patner1 img {
    width: 100px; /* Reduce image size for smaller screens */
    margin: 15px;
  }
}











/*---------------------Classes Section----------*/

.classes{
  background-image: url('../Images/1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 250vh;
}

.class-header{
  padding-top: 50px;
  text-align: center;
  color: white;
  margin-bottom: 100px;
}

.class-header h3{
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 10px;
}

.class-header h1{
  font-size: 60px;
  font-weight: 900;
  margin: auto;
}

.classes-info{
  padding: 50px 80px;
}

.class-card-img img{
  height: 100%;
  width: 100%;
}
.all-classes .title{
  padding-top: 50px;
  color: white;
  font-weight: 800;
  text-align: center;
}

.all-classes .v-line{
  background-color: red;
  width: 100px;
  margin:10px auto;
  margin-bottom: 20px;
  height: 4px;
}
.card-container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.class-card1{
  padding: 20px;
  background-color: #fff;
  width:400px;
  height: 580px;
  box-shadow: 0px 4px 12px rgba(255,255,255,0.2);
}

.class-card1 h1{
  text-align: left;
  color: red;
}

.class-card1 .list{
  padding: 15px;
  line-height: 1.5;
}

.class-card1 .list li{
  font-size: 16px;
  color: gray;
}
.class-card1 h2{
  margin: 20px auto;
  text-align: center;
}
.class-card1 a{
  padding: 10px 15px;
  background-color: red;
  border-radius: 10px;
  margin-left: 35%;
  font-weight: bold;
  color: white;
  text-align: center;
}


/* Large Screens (Above 1200px) */
@media screen and (max-width: 1200px) {
  .classes-info {
    padding: 40px;
  }
  .class-card1 {
    width: 45%;
  }
}

/* Tablet Devices (Between 768px and 1024px) */
@media screen and (max-width: 1024px) {
  .classes {
    height: auto;
    padding-bottom: 50px;
  }
  .menu-classes {
    width: 100%;
    padding-bottom: 40px;
  }
  .class-name {
    padding: 30px;
    text-align: center;
  }
  .class-name .div1 {
    width: 80%;
    text-align: center;
  }
  .class-contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .image img {
    width: 100%;
    height: auto;
  }
  .classes-info {
    padding: 30px;
  }
  .card-container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .class-card1 {
    width: 45%;
    height: auto;
  }
}

/* Mobile Devices (Below 768px) */
@media screen and (max-width: 768px) {
  .classes {
    height: auto;
    padding: 20px 0;
  }
  .menu-classes {
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
  }
  .class-name {
    padding: 20px;
  }
  .class-name .div1 {
    width: 90%;
  }
  .class-contact-info {
    width: 100%;
  }
  .image img {
    width: 90%;
    height: auto;
  }
  .image-info {
    text-align: center;
  }
  .classes-info {
    padding: 20px;
  }
  .card-container {
    flex-direction: column;
    align-items: center;
  }
  .class-card1 {
    width: 90%;
    height: auto;
  }
  .class-card1 h1 {
    font-size: 20px;
    text-align: center;
  }
  .class-card1 h2 {
    font-size: 18px;
    text-align: center;
  }
  .class-card1 a {
    display: block;
    text-align: center;
    margin: 10px auto;
    width: 80%;
  }
}

/* Small Mobile Screens (Below 480px) */
@media screen and (max-width: 480px) {
  .classes-info {
    padding: 10px;
  }
  .class-name {
    padding: 10px;
  }
  .class-name .div1 {
    font-size: 14px;
    width: 100%;
  }
  .class-card1 {
    width: 100%;
    padding: 15px;
  }
  .class-card1 h1 {
    font-size: 18px;
  }
  .class-card1 h2 {
    font-size: 16px;
  }
  .class-card1 a {
    font-size: 16px;
    padding: 10px;
  }
}




/*=================testinimoal============*/
.testimonial{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:100vh;
  margin-left: 100px;
  margin-bottom: 20px;
}

.testimonial-header h2{
  color: rgb(101,104,101);
  letter-spacing: 1px;
  padding: 20px 20px 20px 0px;
  font-size: 20px;
  text-align: left;
  font-weight: 700;
}
.testimonial-header h1{
  font-size: 50px;
  font-weight: 900;
  padding-bottom: 60px;
}

.testimonial-client{
  position: relative;
}
.testimonial1 {
  position: absolute;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  opacity: 0;
  transform: translateX(100%);
}

.testimonial1.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial1 .p1{
  color: rgb(101,104,101);
  font-size: 16px;
}
.testimonial1 h1{
  padding: 10px 10px 10px 0px;

}

.star i{
  color: red;
  padding-bottom: 10px;
}
.quote{
  position: absolute;
  left: 400px;
  top: -40px;
}
.quote i{
  font-size: 150px;
  color: #ececec;
}
.testimonial1 .p2{
  font-size: 16px;
  width: 600px;
  line-height: 1.5;
  color: rgb(116, 116, 116);
  padding-bottom: 10px;
}


.slider-button{
  margin-top: 200px;
  /* margin-left: 150px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev, .next {
  transform: translateY(-50%);
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color:black;
  padding: 20px;
}

.prev:hover, .next:hover{
  color: red;
}
.prev { left: 10px; }
.next { right: 10px; }


.testimonial-img{
  position: relative;
  width: 600px;
  margin-right: 20px;
  height: 550px;
}
.author1{
  position: absolute;
  height: 250px;
  left: 10px;
  top: 120px;
  filter: grayscale(100%);
}

.author2{
  position: absolute;
  left: 220px;
  height: 250px;
  top: 10px;
  filter: grayscale(100%);
}
.author4{
  position: absolute;
  right: 170px;
  bottom:0px;
  height: 250px;
  filter: grayscale(100%);
}
.author3{
  position: absolute;
  right: 10px;
  bottom:150px;
  height: 250px;
  filter: grayscale(100%);
}

.author1:hover,
.author2:hover,
.author3:hover,
.author4:hover
{
  filter: grayscale(0);
  z-index: 1;
  border: 2px solid red;
  border-radius: 10px;
}

/* For large screens (1200px and above) */
@media screen and (max-width: 1200px) {
  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    margin-left: 0;
  }
  .testimonial-header h1 {
    font-size: 40px;
    padding-bottom: 40px;
  }
  .testimonial-client {
    width: 80%;
  }
  .testimonial1 .p2 {
    width: 100%;
  }
  .quote {
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }
  .quote i {
    font-size: 100px;
  }
  .testimonial-img {
    width: 500px;
    height: 450px;
  }
  .author1,
  .author2,
  .author3,
  .author4 {
    height: 200px;
  }
}

/* For tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    margin-left: 0;
  }
  .testimonial-header h1 {
    font-size: 35px;
    padding-bottom: 30px;
  }
  .testimonial-client {
    width: 90%;
  }
  .testimonial1 .p2 {
    width: 100%;
  }
  .quote {
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
  }
  .quote i {
    font-size: 80px;
  }
  .testimonial-img {
    width: 400px;
    height: 350px;
    position: relative;
  }
  .author1,
  .author2,
  .author3,
  .author4 {
    height: 150px;
  }
  .author1 {
    top: 50px;
    left: 0;
  }
  .author2 {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  .author3 {
    right: 0;
    bottom: 80px;
  }
  .author4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* For mobile devices (max-width: 767px) */
@media screen and (max-width: 767px) {
  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    margin-left: 0;
    margin-bottom: 200px;
  }
  .testimonial-header h1 {
    font-size: 28px;
    padding-bottom: 20px;
  }
  .testimonial-client {
    width: 100%;
  }
  .testimonial1 .p2 {
    width: 100%;
    font-size: 14px;
  }
  .quote {
    left: 95%;
    top: -10px;
    transform: translateX(-50%);
  }
  .quote i {
    font-size: 60px;
  }
  .testimonial-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: flex;
    margin-top: 30px;
    margin-bottom: 10px;
    justify-content: center;
    position: relative;
  }
  .author1,
  .author2,
  .author3,
  .author4 {
    height: 120px;
    position: absolute;
  }
  .author1 {
    top: 30px;
    left: 35px;
  }
  .author2 {
    left: 52%;
    transform: translateX(-50%);
    top:80px;
  }
  .author3 {
    right: 20px;
    bottom: -120px;
  }
  .author4 {
    top: -50px;
    left: 52%;
    transform: translateX(-50%);
  }
  .slider-button{
    padding-top: 70px;
  }
}

















/*---------------foooter info -------------------*/


footer{
  background-image: url('../Images/background-footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  color:#fff;
}

.footer-container{
  width: 95%;
  margin: auto;
  display: flex;
  align-items: center;
  opacity: 0.9;
  justify-content: center;
  gap: 30px;
}

.footer-logo{
  padding: 40px 20px 10px 10px;

}

.footer-logo img{
  width:150px;
  height: 150px;
}

.footer-logo p{
  padding:10px;
  text-align: justify;
  width: 300px;
  font-size: 16px;
  line-height: 1.5;
}

.social-icon .icons{
  display: flex;
  justify-content: left;
  align-items: center;
}
.social-icon .icons a i{
  color: rgb(116, 116, 116);
  font-size: 25px;
  padding: 10px;
}

.latest-div{
  padding-top: 10px;
}
.f1{
  background-color: #fff;
  margin: 10px 0px;
  width: 50px;
  height: 1px;
}
.latest1{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.l-info{
  width: 180px;
  padding-left: 20px;
}
.l-info a{
  font-size: 16px;
  font-weight: bold;
  color: white;
  padding-bottom: 10px;
}

.l-info a:hover{
  color: red;
}

.l-info p{
  font-size: 14px;
  margin-top: 10px;
  letter-spacing: 0.2px;
}
/* 
.services h2{
  padding-bottom: 40px;
} */

.footer-links {
  margin-top: 30px;
}
.footer-links li{
   list-style: none;
   line-height: 2;
}

.footer-links li a{
  color: white;
}
.footer-links li a i{
  padding-right: 10px;
}

.footer-links li a:hover{
  color: red;
}


.working h2{
  padding-left: 20px;
}
.f2{
  background-color: #fff;
  margin: 10px 10px 10px 20px;
  width: 50px;
  height: 1px;
}
.day{
  font-size: 20px;
  font-weight: 600;
  padding: 20px;
}
.time{
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
}

.d3 h2{
  font-size: 25px;
  font-weight: 800;
  padding-top: 20px;
  padding-left: 20px;
  color: red;
}

.copyright{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.copyright p{
  color: rgb(211, 211, 211)
}

.copyright-hr{
  width: 90%;
  margin: auto;
  background-color: rgb(101,104,101);
  height: 1px;
}


/* For Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    text-align: left;
    gap: 20px;
    justify-content: flex-start;
  }

  .footer-logo {
    padding: 30px 10px;
  }

  .footer-logo p {
    width: auto;
  }

  .social-icon .icons {
    justify-content: flex-start;
  }

  .latest,
  .services,
  .working {
    width: 100%;
    text-align: left;
  }

  .latest1 {
    flex-direction: row;
    align-items: flex-start;
  }

  .l-info {
    padding-left: 10px;
    width: auto;
  }

  .footer-links {
    text-align: left;
  }

  .footer-links li {
    display: block;
    margin: 5px 0;
  }

  .working {
    text-align: left;
  }

  .d1, .d2, .d3 {
    text-align: left;
  }
}

/* For Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
  footer {
    height: auto;
    padding-bottom: 20px;
  }

  .footer-container {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    padding-left: 20px;
  }

  .footer-logo {
    padding: 20px;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-logo p {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }

  .social-icon h1 {
    font-size: 18px;
  }

  .social-icon .icons {
    justify-content: flex-start;
  }

  .latest {
    width: 100%;
    text-align: left;
  }

  .latest1 {
    flex-direction: row;
    align-items: flex-start;
  }

  .l-info {
    width: auto;
    padding-left: 10px;
  }

  .footer-links {
    margin-top: 20px;
    text-align: left;
  }

  .footer-links li {
    display: block;
    margin-bottom: 5px;
  }

  .working {
    text-align: left;
  }

  .d1, .d2, .d3 {
    text-align: left;
  }

  .copyright {
    text-align: left;
    padding: 10px;
  }
}

