/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}


.review-carousel-container {
    width: 60%;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 1s ease;
}

.carousel-item {
    min-width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

.review-text {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
    text-align: center;
}

.review-author {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

.review-stars {
    text-align: center;
    margin-top: 10px;
}

.review-stars .star {
    font-size: 24px;
    color: gold;
}

@media screen and (max-width: 768px) {
    .review-carousel-container {
        width: 90%;
    }

    .review-text {
        font-size: 20px;
    }

    .review-author {
        font-size: 18px;
    }

    .review-stars .star {
        font-size: 20px;
    }
}

    footer{
        margin: 0;
        padding: 0;
        padding: 80px 0px;
        text-align: center;
        background-color: black;
        color: white;
        font-family: sans-serif;
        
    }
    .main-footer h1{
        font-size: 42px;
        font-family: sans-serif;
        letter-spacing: 5px;
    }
    footer ul{
        margin: auto;
        list-style-type: none;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 20px;
        width: 400px;
    }
    footer ul li{
        font-size: 16px;
        cursor: pointer;
        color:white;
    }
    footer ul li a{
        color:white;
    }
    .social_media_icon{
        display: flex;
        padding-top: 20px;
        justify-content: space-between;
        width: 200px;
        margin: auto;
    }
    .social_media_icon i{
        font-size: 20px;
        border: 1px solid white ;
        padding: 7px 10px;
        border-radius: 50%;
        cursor: pointer;
        transition: .3s ease-in;
    }
    .social_media_icon i:hover{
        background-color: white;
        color: black;
    }
    footer p{
        font-family: sans-serif;
        letter-spacing: 2px;
        margin-top: 50px;
        color: rgb(94, 89, 89);
        font-size: 16px;
        font-weight: 600;
    }

a{
  text-decoration: none;
}

body {
  background-color: rgb(8, 8, 8);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


.menu-panel {
  position: fixed;
  top: 0;
  left: -300px;
  /* Initially hidden */
  width: 300px;
  height: 100%;
  background-color: #333;
  color: white;
  padding: 20px;
  transition: left 0.3s ease;
  /* Smooth slide effect */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  /* Ensure it appears above other content */
}

.menu-panel.active {
  left: 0;
  /* Slide in */
}

#close-menu {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 10px;
  margin-right: 10px;
  font-size: 24px;
  font-weight: 900;
}

/* 
.menu-panel {
  position: fixed;
  top: 0;
  right: -300px; /* Initially hidden on the right 
  width: 300px;
  height: 100%;
  background-color: #333;
  color: white;
  padding: 40px 50px;
  transition: right 0.3s ease; /* Smooth transition for sliding 
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto; /* Enables vertical scrolling 
}

.menu-panel.active {
  right: 0; /* Slide the menu into view when active 
} 
*/

.menu-panel h2 {
  margin-top: 30px;
  color: cornflowerblue;
  letter-spacing: 5px;
  text-align: center;
  font-size: 30px;
}

.menu-panel h3 {
  font-size: 19px;
}

.menu-panel .detail_menu_p {
  font-size: 13px;
  margin-top: 5px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.timing_content {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 15px 0px;
}

/* #close-menu {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 24px;
  font-weight: 900;
} */

.menu-panel hr {
  margin-bottom: 40px;
}

.menu-panel ul {
  list-style-type: none;
  padding: 0px 0px;
}

.menu-panel ul li {
  margin: 15px 0;
  font-size: 16px;
  cursor: pointer;
  color:white;
}


.history_h1{
    text-align:center;
    font-size:48px;
    color:white;
    margin: 20px 0px 10px;
}

.flex_clss {
  margin-top: 9px;
  display: flex;
  justify-content: space-around;
}

/* .accept-btn {
  background-color: green;
  outline: none;
  border: none;
  color: white;
  padding: 5px 15px;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
}

.reject-btn {
  cursor: pointer;
  color: white;
  background-color: red;
  outline: none;
  border: none;
  padding: 5px 15px;
  border-radius: 7px;
  font-weight: 600;
}

.notification-item {
  margin-top: 14px;
  padding: 10px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.notification-item h3 {
  margin: 0;
  font-size: 18px;

}

.notification-item p {
  margin: 5px 0;
  font-size: 12px;
}


.notification-count {
  position: absolute;
  top: -5px;
  /* Adjust position /
  right: -7px;
  /* Adjust position /
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  /* Add some padding 
  font-size: 12px;
  /* Adjust font size 
  font-weight: bold;
} */




body::-webkit-scrollbar {
  display: none;
}

.heading_box {
  height: 705px;
  margin: 0;
  width: 100%;
  background-image: url('./Images/main_slider_img.jpg');
  background-size: cover;
}

.navbar {
  display: flex;
  padding-top: 20px;
  justify-content: space-around;
  color: white;
}

.nav_h1 {
    color: white;
  letter-spacing: 10px;
  margin-top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.navbar ul {
  display: flex;
  /* margin-left: -100px; */
  list-style-type: none;
  color: white;
  gap: 40px;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.navbar ul li a{
    color: white;
}

/* .navbar ul li:hover {
  transition: .3s ease-in;
} */

.navbar #login_button {
  
  padding: 6px 19px;
  outline: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  background-color: rgb(107, 96, 96);
  border-radius: 7px;
  color: white;
  transition: .5s ease-in-out;
  cursor: pointer;
  
  
}

.service_option{
  padding: 4px 10px;
  outline: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  background-color: rgb(107, 96, 96);
  border-radius: 7px;
  color: white;
  transition: .5s ease-in-out;
  cursor: pointer;
}


.navbar #login_button:hover {
  color: rgb(107, 96, 96);
  background-color: white;
}

.greeting_p {
  color: white;
  font-size: 19px;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.nav_last {
  /* width: 400px; */
  display: flex;
  gap: 25px;
  padding: auto;
}


.nav_last #bell-icon {
  font-size: 24px;
  font-weight: 900;
  font-size: 22px;
  cursor: pointer;
  margin-top: 10px;
}

.nav_last #menu_but {
  font-size: 28px;
  margin-left: 20px;
  margin-top: -2px;
}

.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  outline: none;
}




.nav_last #list_menu {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
  margin-right: -10px;
}

.nav_last #history_menu {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  margin-right: -10px;
  color: white;
}



.slider_main {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  color: white;
  gap: 80px;
}

.slider_main_left {
  padding: 40px 0px;
  transform: translateY(100px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.3s 1s linear 1 forwards;
}

@keyframes showContent {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.live_gam {
  color: rgb(107, 96, 96);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(to right, black, rgba(0, 128, 0, 0));
  font-size: 20px;
  color: white;
  width: max-content;
  position: relative;
  border-radius: 10px;
  margin-top: 70px;
  margin-bottom: 20px;
  padding: 17px 0 17px 20px;
}


.slider_main_left .head {
  margin: 30px 0 21px;
  font-size: 118px;
  font-family: "Kalam", cursive;
  line-height: 0.8;
  text-shadow: -3px -5px 0px black;
}

.slider_main_left p {
  font-family: sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  letter-spacing: 4px;
}

.btn-7 {
  background: rgb(107, 96, 96);
  line-height: 42px;
  padding: 0;
  color: black;
  font-size: 18px;
  margin-top: 20px;
  border: none;
}

.service_option{
  background: green;
  color: white;
  /*font-size: 18px;*/
  /*margin-top: 20px;*/
  /*border: none;*/
}

.slider_main_right {
  width: 400px;
  height: 550px;
  transform: translateX(100px);
  filter: blur(20px);
  opacity: 0;
  animation: showImage 0.3s .3s linear 1 forwards;
}


/* Player Card Style */

.hhgg {
  padding-top: 40px;
  background-image: url("https://media.istockphoto.com/id/1392502862/photo/smoke-background.jpg?s=612x612&w=0&k=20&c=JDPZDRlGJDvMVtnQ7Fq12X0qTbo757njDqiqbG5n12U=");
  background-size: cover;
}


.top-players-card {
  padding: 60px 100px;
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
}

.player-content {
  position: relative;
  width: 250px;
  height: 300px;
  text-align: center;
  background-size: cover;
  border-radius: 13px;
  filter: brightness(0.5);
  color: white;
  padding-top: 300px;
  padding-left: 20px;
  overflow: hidden;
  cursor: pointer;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease-in, opacity 0.5s ease-in;
}

.player-content.visible {
  transform: translateX(0);
  /* Move to original position */
  opacity: 1;
  /* Make visible */
}





.player-content:hover {
  filter: brightness(1);
  padding-top: 240px;
  transition: .3s ease-in;
}


.p1 {
  background-image: url("./Images/haircut.jpg");
}

.p2 {
  background-image: url("./Images/shaving.jpg");
}

.p3 {
  background-image: url("./Images/coloring.jpg");
}

.p4 {
  background-image: url("./Images/trimming.jpg");
}

.pl_4_h1 {
  color: white;
  text-align: center;
  font-size: 48px;
}

/* Player Card Style End */





.about_welcome {
  display: flex;
  justify-content: space-between;
  padding: 30px 120px;
  background-color: rgb(12, 8, 37);
  height: 590px;
  color: white;
  background: rgb(247, 233, 233);
  color: rgb(36, 36, 82);
  width: 100%;
}

.wel_lf {
  width: 60%;
  font-family: sans-serif;
  transform: scale(.3, .3);
  opacity: 0;
  padding-top: 100px;
  filter: blur(20px);
  animation: showWelcomeText 0.5s .5s ease-in 1 forwards;
}

@keyframes showWelcomeText {
  to {
    transform: scale(1, 1);
    opacity: 1;
    filter: blur(0px);
  }
}

.wel_rg {
  width: 30%;
  height: 500px;
  margin-left: 100px;
  justify-content: center;
  background-image: url("./Images/vintage_barber.jpg");
  background-size: cover;
  border-radius: 7px;
  background-position: center;
  /* border: 2px solid white; */
  opacity: 0;
  transform: scale(0.3, 0.3);
  animation: showWelcomeImage 0.3s .7s ease-out 1 forwards;
}

@keyframes showWelcomeImage {
  to {
    opacity: 1;
    transform: scale(1, 1);
  }
}

.wel_lf h2 {
  font-size: 22px;
  font-family: sans-serif;
}


.wel_lf h1 {
  width: 89%;
  font-size: 52px;
  margin-top: 15px;
  font-family: sans-serif;
}

.wel_lf p {
  line-height: 25px;
  margin-top: 15px;
  font-size: 17px;
  font-family: sans-serif;
}

/*gallery Start*/

/*

All grid code is placed in a 'supports' rule (feature query) at the bottom of the CSS (Line 77). 
        
The 'supports' rule will only run if your browser supports CSS grid.

Flexbox is used as a fallback so that browsers which don't support grid will still recieve an identical layout.

*/

@import url(https://fonts.googleapis.com/css?family=Montserrat:500);

:root {
  /* Base font size */
  font-size: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #fafafa;
}

.container {
  max-width: 100rem;
  margin: auto;
  padding: 0 2rem 2rem;
}

.heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  padding: 3.5rem 0;
  color: #1a1a1a;
}


.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem -1rem;
}

.gallery-item {
  flex: 1 0 24rem;
  margin: 1rem;
  box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}

.gallery-image:hover {
  transform: scale(1.15);
}

/*

The following rule will only run if your browser supports CSS grid.

Remove or comment-out the code block below to see how the browser will fall-back to flexbox styling. 

*/

@supports (display: grid) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    grid-gap: 2rem;
  }

  .gallery,
  .gallery-item {
    margin: 0;
  }
}

/*gallery end*/


/* Footer End */

.site_detail {
  width: 400px;
  background-color: black;
  height: 700px;
  position: absolute;
  z-index: 1000;
  margin-left: 1480px;
}

.page {
  width: 100%;
  height: 315px;
  background-image: url("./Images/page_detail_bg.jpg");
  background-size: cover;
  color: white;
  padding: 90px 170px;
}

.page h1 {
  font-size: 72px;
}

.page_name {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  width: 250px;
}

.page_name i {
  font-size: 18px;
  margin-top: 6px;
  margin-right: 20px;
}

a {
  text-decoration: none;
}

.appointment_form {
  margin: auto;
  color: white;
  background-color: #1a1a1a;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 90px;
  padding: 70px;
}

.appointment_form img {
  height: 450px;
  margin-top: 0px;
}

.appointment_form form {
  width: 50%;
  margin: auto;
  text-align: center;
  /* margin-top: 0; */
  margin-left: 50px;
}

.appointment_form form h1 {
  margin-bottom: 40px;
}

.appointment_form form input {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: rgb(36, 21, 21);
  font-weight: 600;
  outline: none;
  padding: 8px 19px;
  font-size: 17px;

}

.appointment_form form .input_divider {
  display: flex;
  justify-content: space-between;
}

.appointment_form form .half_inp {
  width: 48%;
}

.appointment_form form .input_divider label{
  width: 48%;
  font-size: 18px;
}

.appointment_form form button {
  outline: none;
  background-color: burlywood;
  text-align: center;
  width: 60%;
  padding: 10px 22px;
  font-size: 18px;
  border-radius: 12px;
  margin-top: 30px;
  font-weight: 600;
  cursor: pointer;
}

.reject_inp{
  padding: 8px 12px;
  border-radius: 12px;
  outline: none;
  border: none;
  font-weight: 600;
  margin-top: 7px;
}

.reject_sub{
  padding: 8px 12px;
  border-radius: 12px;
  outline: none;
  border: none;
  font-weight: 600;
  margin-top: 7px;
  background: green;
  color: white;
}

.half_selector{
  width: 48%;
  height: 45px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: rgb(36, 21, 21);
  font-weight: 600;
  outline: none;
  padding: 8px 19px;
  font-size: 17px;
}

.full_selector{
  width: 100%;
  height: 45px;
  margin-top: 10px;
  /* margin-bottom: 20px; */
  border-radius: 12px;
  color: rgb(36, 21, 21);
  font-weight: 600;
  outline: none;
  padding: 8px 19px;
  font-size: 17px;  
}



/* Contact Us*/

.contact_us_main_div{
  padding: 150px 200px;
  background-color: #a7dd9162;
  display: flex;
  justify-content: space-between;
}

.contact_us_main_div form{
  padding-top: 30px;
  width: 35%;
}

.contact_us_main_div form input{
  width: 100%;
  outline: none;
  background-color: transparent ;
  border: 2px solid black;
  margin-bottom: 20px;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 16px;
}
.contact_us_main_div form textarea{
  width: 100%;
  outline: none;
  background-color: transparent ;
  border: 2px solid black;
  margin-bottom: 20px;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 16px;
}

.contact_us_main_div form button{
  width: 40%;
  outline: none;
  background-color: black ;
  border: 2px solid black;
  margin-bottom: 20px;
  color: white;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 16px;
  letter-spacing: 5PX;
}

.contact_us_main_div .contact_info{
  width: 55%;
}

.contact_info h1{
  font-size: 42px;
}

.contact_info p{
  font-size: 18px;
  font-family: sans-serif;
  padding: 20px 0px;
}

.contact_info .contact_det{
  display: flex;
  margin: 0;
  padding: 0;
  width: max-content;
  max-width: 300px;
  justify-content: space-between;
  gap: 30px;
}

.contact_info .contact_det i{
  font-size: 20px;
  margin-top: 15px;
}


.about_us_main_div{
  padding: 60px 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
  align-items: center;
}

.about_us_main_div img{
  width: 40%;
  height: 400px;
}

.about_us_overview{
  width: 50%;
}

.about_us_overview h1{
  margin-top: 20px;
  font-size: 32px;
}

.about_us_overview p{
  font-size: 16px;
  font-family: sans-serif;
  line-height:25px;
}

.our_vision{
  padding: 100px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.our_vision img{
  width: 40%;
  height: auto;
}

.our_vision .overview_detail{
  width: 50%;
}

.overview_detail h1{
  margin-top: 40px;
  font-size: 32px;
}

.overview_detail p{
  font-size: 16px;
  font-family: sans-serif;
  padding: 20px 0px;
  line-height: 28px;
}

/* Responsive Styles */

@media screen and (max-width: 1024px) {
  
.about_us_main_div{
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about_us_main_div img{
  width: 40%;
  height: 300px;
}

.about_us_overview{
  width: 50%;
}

.about_us_overview h1{
  margin-top: 0px;
}

}



@media screen and (max-width: 768px) {
  .about_us_main_div img, .our_vision img {
    width: 100%;
    height: auto;
  }

  .about_us_overview, .our_vision .overview_detail {
    width: 100%;
  }

  .about_us_main_div {
    padding: 40px 20px;
  }

  .about_us_overview h1, .overview_detail h1 {
    font-size: 28px;
  }

  .about_us_overview p, .overview_detail p {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .about_us_main_div {
    padding: 30px 15px;
  }

  .about_us_main_div img, .our_vision img {
    height: auto;
  }

  .about_us_overview h1, .overview_detail h1 {
    font-size: 24px;
  }

  .about_us_overview p, .overview_detail p {
    font-size: 12px;
  }
}



@media only screen and (max-width: 1024px) {
  .nav_h1 {
    font-size: 18px;
    letter-spacing: 8px;
  }

  .navbar ul {
    gap: 20px;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .navbar #login_button {
    padding: 0px 14px;
    height: 30px;
    font-size: 15px;
  }


  .navbar #login_button:hover {
    color: rgb(107, 96, 96);
    background-color: white;
  }

  .greeting_p {
    color: white;
    font-size: 19px;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 2px 2px 5px red;
  }

  .nav_last {
    /* width: 400px; */
    display: flex;
    gap: 20px;
    padding: auto;
  }

  .nav_last #list_menu {
    font-weight: 900;
    margin-top: 0px;
    font-size: 24px;
  }


  .slider_main {
    padding: 20px 40px;
    gap: 40px;
  }

  .slider_main_left {
    padding: 40px 0px;
    transform: translateY(100px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.3s 1s linear 1 forwards;
  }

  @keyframes showContent {
    to {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }
  }

  .live_gam {
    letter-spacing: 3px;
    font-size: 15px;
    color: white;
    margin-top: 80px;
    margin-bottom: 15px;
  }

  .slider_main_left .head {
    font-size: 84px;
  }

  .slider_main_left p {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .btn-7 {
    line-height: 35px;
    font-size: 16px;
  }

  .top-players-card {
    gap: 20px;
  }

  .player-content {
    width: 300px;
  }


  .about_welcome {
    padding: 30px 80px;
  }

  .wel_lf {
    width: 56%;
  }

  .wel_rg {
    width: 40%;
  }

  .wel_lf h2 {
    font-size: 20px;
    font-family: sans-serif;
  }

  .wel_lf p {
    font-size: 16px;
  }
  
  

}


@media only screen and (max-width: 866px) {
  .top-players-card {
    padding: 40px 40px;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
  }

  .player-content {
    height: 180px;
    padding-top: 180px;
  }

  .player-content:hover {
    padding-top: 150px;
    transition: .3s ease-in;
  }

  .top-players-card {
    /* flex-direction: column; */
    padding: 20px;
  }

  .pl_4_h1 {
    font-size: 32px;
    /* Reduce heading size on smaller screens */
  }

  .about_welcome {
    padding: 30px 30px;
    height: 510px;
  }

  .wel_lf {
    width: 54%;
    padding-top: 60px;
  }

  .wel_rg {
    width: 42%;
    height: 400px;
    margin-top: 60px;
  }


  .wel_lf h2 {
    font-size: 16px;
    font-family: sans-serif;
  }


  .wel_lf h1 {
    width: 89%;
    font-size: 38px;
    margin-top: 15px;
    font-family: sans-serif;
  }

  .wel_lf p {
    line-height: 25px;
    margin-top: 15px;
    font-size: 17px;
    font-family: sans-serif;
  }
}

@media only screen and (max-width: 768px) {

    
.page h1 {
  font-size: 42px;
}

    
  .heading_box {
    height: 570px;
    width: 100%;
    padding: 0px 10px;
  }

  .navbar {
    padding-top: 10px;
  }

  .nav_h1 {
    margin-top: 2px;
    letter-spacing: 2px;
    font-size: 20px;
  }

  .navbar ul {
    gap: 10px;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .navbar #login_button {
    padding: 2px 15px;
    font-size: 12px;
    height: 25px;
  }

  .greeting_p {
    font-size: 12px;
  }

  .nav_last {
    gap: 18px;
  }

  .nav_last #list_menu {
    font-size: 20px;
  }

  .nav_last #bell-icon {
    font-size: 18px;
  }


  .slider_main {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    gap: 0px;
  }



  .live_gam {
    letter-spacing: 2px;
    font-size: 14px;
    margin-top: 60px;
    margin-bottom: 20px;
    padding: 10px 0 10px 14px;
  }

  .slider_main_left .head {
    margin: 20px 0 15px;
    font-size: 64px;
  }

  .slider_main_left p {
    font-family: sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .btn-7 {
    line-height: 27px;
    color: black;
    font-size: 14px;
    padding: 8px 10px;
    margin-top: 14px;
  }

  .top-players-card {
    padding: 40px 40px;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
  }

  .player-content:hover {
    padding-top: 140px;
    transition: .3s ease-in;
  }

  .top-players-card {
    /* flex-direction: column; */
    padding: 20px;
  }

  .pl_4_h1 {
    font-size: 32px;
    /* Reduce heading size on smaller screens */
  }


  .about_welcome {
    padding: 30px 30px;
    height: 510px;
  }

  .wel_lf {
    width: 54%;
    padding-top: 60px;
  }

  .wel_rg {
    width: 42%;
    height: 400px;
    margin-top: 60px;
  }


  .wel_lf h2 {
    font-size: 16px;
    font-family: sans-serif;
  }


  .wel_lf h1 {
    width: 89%;
    font-size: 38px;
    margin-top: 15px;
    font-family: sans-serif;
  }

  .wel_lf p {
    line-height: 25px;
    margin-top: 15px;
    font-size: 17px;
    font-family: sans-serif;
  }


}



@media only screen and (max-width: 717px) {
  .about_welcome {
    padding: 30px 30px;
    height: 550px;
  }

  .wel_lf {
    width: 50%;
  }

  .wel_rg {
    width: 46%;
    height: 400px;
    margin-left: 0px;
  }


  .wel_lf h2 {
    font-size: 14px;
  }


  .wel_lf h1 {
    width: 89%;
    font-size: 28px;
  }

  .wel_lf p {
    line-height: 25px;
    margin-top: 15px;
    font-size: 15px;
    font-family: sans-serif;
  }
}


@media only screen and (max-width: 650px) {
  
  .player-content {
    width: 48%; /* Two cards in one row */
    height: auto; /* Let the content dictate height */
    padding-top: 100px; /* Adjust padding for smaller screens */
  }
  
  /* Optional: adjust other styles for mobile */
  .top-players-card {
    flex-wrap: wrap;
  }
  .heading_box {
    height: 500px;
    width: 100%;
    padding: 0px 10px;
  }

  .notification-count {
    top: -3px;
    /* Adjust position */
    right: -3px;
    padding: 2px 4px;
    font-size: 5px;
  }

  .navbar {
    padding-top: 10px;
  }

  .nav_h1 {
    margin-top: 2px;
    letter-spacing: 2px;
    font-size: 18px;
  }

  .navbar ul {
    gap: 8px;
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .navbar #login_button {
    font-size: 10px;
    height: 22px;
  }

  .greeting_p {
    font-size: 10px;
  }

  .nav_last {
    gap: 15px;
  }

  .nav_last #list_menu {
    font-size: 17px;
  }

  .nav_last #bell-icon {
    font-size: 15px;
  }


  .slider_main {
    padding: 30px 20px;
    gap: 0px;
  }



  .live_gam {
    font-size: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .slider_main_left .head {
    margin: 20px 0 10px;
    font-size: 48px;
  }

  .slider_main_left p {
    font-family: sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .btn-7 {
    height: 25px;
    color: black;
    font-size: 12px;
    width: 100px;
    padding: 0px 8px;
  }

}

@media only screen and (max-width: 600px) {
    .about_welcome {
        flex-direction: column;
    padding: 30px 30px;
    height: 800px;
  }

  .wel_lf {
    width: 100%;
    padding-top: 60px;
  }

  .wel_rg {
    width: 50%;
    height: 400px;
    margin-top: 60px;
  }


  .wel_lf h2 {
    font-size: 16px;
    font-family: sans-serif;
  }


  .wel_lf h1 {
    width: 89%;
    font-size: 38px;
    margin-top: 15px;
    font-family: sans-serif;
  }

  .wel_lf p {
    line-height: 25px;
    margin-top: 15px;
    font-size: 17px;
    font-family: sans-serif;
  }
    
}


@media only screen and (max-width: 550px) {
  
  .player-content {
    width: 48%; /* Two cards in one row */
    height: auto; /* Let the content dictate height */
    padding-top: 100px; /* Adjust padding for smaller screens */
  }
  
  /* Optional: adjust other styles for mobile */
  .top-players-card {
    flex-wrap: wrap;
  }
  .heading_box {
    height: 400px;
    width: 100%;
    padding: 0px 10px;
  }

  .nav_h1 {
    margin-top: 2px;
    letter-spacing: 2px;
    font-size: 18px;
  }

  .navbar ul{
    display: none;
  }
  .wel_rg {
    width: 60%;
    margin-left: 0px;
  }
  
  .top-players-card {
    padding: 40px 40px;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
  }
  
  .player-content {
    height: 150px;
    padding-top: 150px;
  padding-left: 10px;
  }

  .player-content:hover {
    padding-top: 110px;
    transition: .3s ease-in;
  }
  .top-players-card {
    /* flex-direction: column; */
    padding: 20px;
  }
  
  .page {
  width: 100%;
  height: 205px;
  padding: 50px 80px;
}

.page h1 {
  font-size: 32px;
}

.page_name {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  width: 200px;
}

.page_name i {
  font-size: 13px;
  margin-top: 6px;
  margin-right: 20px;
}

}


@media only screen and (max-width: 450px) {
  .heading_box {
    height: 350px;
    width: 100%;
    padding: 0px 10px;
  }

  .nav_h1 {
    margin-top: 2px;
    letter-spacing: 2px;
    font-size: 18px;
  }

  .navbar ul{
    display: none;
  }



  .live_gam {
    letter-spacing: 2px;
    font-size: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 8px 0 8px 10px;
  }

  .slider_main_left .head {
    margin: 20px 0 15px;
    font-size: 38px;
  }

  .slider_main_left p {
    font-family: sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .btn-7 {
    /*line-height: 27px;*/
    color: black;
    font-size: 10px;
    padding: 0px 4px;
    height: 25px;
  }
    
  .about_welcome{
      padding-top: 30px;
      height: 900px;
  }

  .wel_rg {
    width: 60%;
    height: 300px;
    margin-left: 0px;
  }
  

.player-content {
    width: 60%; /* Two cards in one row */
    height: 200px; /* Let the content dictate height */
    padding-top: 200px;
  }
  
  /* Optional: adjust other styles for mobile */
  .top-players-card {
    flex-wrap: wrap;
  }
  .player-content:hover {
    padding-top: 160px;
    transition: .3s ease-in;
  }

    .main-footer h1{
        font-size: 28px;
    }
    
    footer ul{
        margin: auto;
        list-style-type: none;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-top: 20px;
        width: 330px;
    }
    footer ul li{
        font-size: 12px;
        cursor: pointer;
    }
    footer p{
        font-size: 12px;
    }


}


/*Contact Us Query*/


@media screen and (max-width: 1024px) {
            .contact_us_main_div {
                padding: 100px 80px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact_us_main_div form {
                width: 100%;
                padding-top: 0;
                margin-bottom: 50px;
            }

            .contact_us_main_div .contact_info {
                width: 100%;
            }

            .contact_info h1 {
                font-size: 36px;
            }

            .contact_info p {
                font-size: 16px;
            }
            
            
            
        @media screen and (max-width: 768px) {
            .contact_us_main_div {
                padding: 100px 50px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact_us_main_div form {
                width: 100%;
                padding-top: 0;
                margin-bottom: 50px;
            }

            .contact_us_main_div .contact_info {
                width: 100%;
            }

            .contact_info h1 {
                font-size: 36px;
            }

            .contact_info p {
                font-size: 16px;
            }
            
            
                      
        }
        
        

        /* Media Query for Mobile (max-width: 500px) */
       @media screen and (max-width: 500px) {
    .contact_us_main_div {
        padding: 50px 20px;
    }

    .contact_us_main_div form input,
    .contact_us_main_div form textarea {
        padding: 8px 15px;
        font-size: 14px;
    }

    .contact_us_main_div form button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        letter-spacing: 3px;
    }

    .contact_info h1 {
        font-size: 30px;
    }

    .contact_info p {
        font-size: 14px;
    }

    .contact_info .contact_det {
        display: flex;
        flex-direction: row;
        align-items: flex-start; 
        gap: 15px;
        text-align: left;
    }

    .contact_info .contact_det p {
        font-size: 14px;
        margin: 0;
    }

    .contact_info .contact_det i {
        font-size: 20px;
        margin-top: 4px; 
    }
}

/* Appointment page Query*/

@media screen and (max-width: 1024px) {
  .appointment_form {
    gap: 40px;
    padding: 40px;
  }

  .appointment_form img {
    width: 50%;
    height: auto;
  }

  .appointment_form form {
    width: 100%;
    margin: 0;
  }

  .appointment_form form h1 {
    font-size: 30px;
  }

  .appointment_form form button {
    width: 70%;
  }
}

/* Tablets and smaller screens */
@media screen and (max-width: 768px) {
  .appointment_form {
    gap: 40px;
    padding: 30px;
  }

  .appointment_form img {
    width: 100%;
    height: auto;
  }

  .appointment_form form {
    width: 100%;
    margin: 0;
  }

  .appointment_form form .input_divider {
    flex-direction: column;
    gap: 10px;
  }

  .appointment_form form button {
    width: 80%;
  }
}

/* Mobile devices */
@media screen and (max-width: 1000px) {
  .appointment_form {
    padding: 20px;
  }

  .appointment_form form h1 {
    font-size: 28px;
  }

  .appointment_form form input,
  .appointment_form form select {
      width:100%;
    font-size: 15px;
    padding: 8px 12px;
  }

  .appointment_form form button {
    width: 100%;
  }

  .appointment_form form .input_divider {
    flex-direction: column;
    gap: 10px;
  }

  .appointment_form img {
    display: none; /* Hide image on small mobile screens */
  }
  .appointment_form form .half_inp {
      
      width:100%;
  }
}