@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,500;0,600;0,700;1,200&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;

}
body {

  font-family: "Poppins", sans-serif;
}

section {
    padding: 0 5%;  
    padding-top: 80px;
    margin-bottom: -20px;
  }
header {
  border-bottom: 2px solid #300058;
  height: 80px;
  position: fixed;
  padding: 15px 8%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:#ffffff;
  z-index: 10;
  transition: 0.3s;


}

header .logo {
  position: relative; 
  font-size: 1.7rem;
  font-weight: 700;
  color: #ff7716;
 
}

header .logo img {
  top: 27px;
  position: relative;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  
}

header span {
  background:#000000;
  -webkit-background-clip: text;
  color: transparent;
}
header .navlist {
  display: flex;
}
.navlist li {
  margin: 0 1rem;
}
.navlist li a {
  font-size: 18px;
  display: inline-flex;
  font-weight: 600;
  color:rgb(0, 0, 0);
}
.navlist li a:hover {
  background:#ff7716;
  -webkit-background-clip: text;
  color: transparent;

  
}
.right-header {
  display: flex;
  align-items: center;
  justify-content: end;
  grid-gap: 0.8rem;
  
}
.btn {
  background:#fa6a04;
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 20PX;
  transition: all 0.3s ease;
  
}
.btn i{
padding-left: 5px;

}

.menu-icon {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  cursor: pointer;
  /* background-color: blue; */
}

.menu-icon .bar,
.menu-icon::after,
.menu-icon::before {
  content: "";
  display: none;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #ff7716;
  margin: 6px 0;
  transition: 0.4s;
}
.menu-icon.active::before {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.menu-icon.active::after {
  transform: rotate(45deg) translate(-8px, -8px);
}
.menu-icon.active .bar {
  opacity: 0;
}

/* animation in header */

@keyframes move{
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}

.animat{
  opacity: 0;
  transform: translateX(-300px);
  animation: moveup 0.8s linear forwards;
  }
  @keyframes moveup{
    100%{
      opacity: 1;
      transform: translateX(0px);
    }
  }

    /* ==========home============ */

    .home-section {
        top: 50px;
        position: relative;
        height: 90vh;
        overflow: hidden;
      }
      
      
      .background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.1)), url('/img/homebg.jpg');
        background-size: cover;
        background-position: center;
        filter: brightness(0.8); /* Adjust as needed */
      }
      
      .content {
        top: 20%;
        position: relative;
        z-index: 1;
        text-align: left;
        color:white;
        padding: 20px;
      }
      
      .content h1{
        color:rgb(255, 255, 255);
        padding-bottom: 20px;
        font-size: 4rem;
      }
      .content p{
        padding-bottom: 20px;
        font-size: 1.3rem;
      }
      
      .buttons {
        
        margin-top: 20px;
        text-align: left;
        width: 200px;
      }
      
      .home-section .btn {
        padding: 10px 12px;
        margin: 0 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 700;
        font-size: 18px;
        background-color:#fa6a04;
        color: white;
      }
      
    
      .home-section .btn a{
        color: white;
      }

      .heading {
        text-align: center; /* Center align the heading */
        font-size: 2rem;
       
      }
      
      .heading h2 {
        position: relative; 
        display: inline-block; 
        padding-bottom: 6px; 
      }
    
      .heading h2::after {
        content: ''; /* Add pseudo-element for underline */
        position: absolute; /* Position it absolutely */
        left: 0; /* Align it to the left */
        bottom: 0; /* Align it to the bottom */
        width: 100%; /* Make it span the whole width */
        height: 3px; /* Set the height of the underline */
        background-color: #ff9100; /* Set the color of the underline */
      }

      /* ==================== SPORT AND COUCH ================== */
      .container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 25px;
      }
      
      .container .card {
        width: 400px;
        margin: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
      }
      
      .container .card:hover {
        border: 1px solid #ff7716;
        border-radius: 50px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      }
      .container  .card img {
        width: 100%;
        height: auto;
      }
      
      .container  .info {
        padding: 10px;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
      }
      
      .container .btn:hover {
        background-color:  #fbc885;
      }


      /* =================== About Us ============================= */
      
.responsive-container-block {

  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.text-blk {
 
  padding:10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainImg {

  width: 55%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 7px;
 border-radius: 10px;
}

.text-blk.headingText {
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  color: #fa6a04;
  padding: 10px;
  margin-bottom: 5px;

}

.allText {
  margin-left: 40px;
  width: 40%;
}

.text-blk.subHeadingText {
  text-align: justify;
  color: rgb(35, 30, 30);
  font-size: 20px;
  line-height: 34px;
  font-weight: 700;
 padding: 5px 10px;
  margin-bottom: 15px;
  
}

.text-blk.description {
  text-align: justify;
  font-size: 20px;
  line-height: 34px;
  color: rgb(4, 4, 4);
  margin-bottom: 50px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.explore {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  background-color:#fa6a04;
  padding: 10px 50px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}
.explore a{
  color: white;
}
.explore:hover {
  border-radius: 20px;
  background-color: rgb(0, 0, 0);
  color:white;
}

.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
 padding: 10px;
}

.responsive-container-block.Container.bottomContainer {
  margin-top: 100px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  flex-direction: row-reverse;
  margin: 100px auto 50px auto;
}

.allText.aboveText {
  margin: 0 0 0 40px;
}

.allText.bottomText {
  margin: 0 40px 0 0;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .text-blk.description {
    text-align: justify;
    font-size: 18px;
  }

  .allText {
    width: 40%;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
  padding: 10px;
  }

  .text-blk.subHeadingText {
    text-align: justify;
    font-size: 18px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin: 30px 0 0 40px;
  }

  .allText.bottomText {
    margin: 30px 40px 0 0;
  }
}

@media (max-width: 768px) {
  .mainImg {
    width: 90%;
  margin-top: -10px;
  }

  .allText {
   
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
 
  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }


  .text-blk.subHeadingText {
    text-align: center;
    font-size: 18px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 15px;
  }

  .allText {
    margin-top: 40px;
  }

  .allText.aboveText {
    margin: 40px 0 0 0;
  }

  .responsive-container-block.Container {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 50px auto 50px auto;
  }

  .allText.bottomText {
    margin: 40px 0 0 0;
  }

}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  
}

.gallery img {
  border-radius: 20px;
  width: calc(33.33% - 20px);
  margin: 10px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.gallery img:hover{
  border: 1px solid orange;
  border-radius: 50px;
}
/* Media query for responsiveness */
@media screen and (max-width: 768px) {
  .gallery img {
      width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .gallery img {
      width: calc(100% - 20px);
  }
}
      /* ====================================footer==================== */
      footer {
       
        background-color: #121315;
        color: #ffffff;
        font-size: 16px;
      }
      footer * {
        font-family: "Poppins", sans-serif;
        box-sizing: border-box;
        border: none;
        outline: none;
        
      }
      footer .row {
        padding: 2em 1em;
      }
      footer .row.primary {
        display: grid;
        grid-template-columns: 2fr 1fr 2fr;
        align-items: stretch;
      }
      footer .column {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0 2em;
        min-height: 10em;
      }
      footer h3 {
        width: 100%;
        text-align: left;
        color:#ff7716;
        font-size: 1.6em;
        white-space: nowrap;
      }
      footer ul {
        
        list-style: none;
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
      }
      footer li:not(:first-child) {
        margin-top: 0.8em;
      }
      footer ul li a {
        color: #ffffff;
        text-decoration: none;
      }
      footer ul li a:hover {
        color: #2a8ded;
      }
      .about p {
        text-align: justify;
        line-height: 2;
        margin: 0;
      }
      footer input,
      button {
        font-size: 1em;
        padding: 1em;
        width: 100%;
        border-radius: 5px;
        margin-bottom: 5px;
      }
      footer button {
        background-color: #ff7716;
        color: #ffffff;
      }
      footer div.social {
        display: flex;
        justify-content: space-around;
        font-size: 2.4em;
        flex-direction: row;
        margin-top: 0.5em;
      }
      footer .social i:hover {
        color: #2a8ded;
      }
      footer .row.secondary {
        display: flex;
        justify-content: space-around;
        text-align: center;
        
      }
      footer .row.secondary i {
        font-size: 1.8em;
        color: #ff7716;
      }
      footer .row.secondary div {
        padding: 1em 0;
        width: 100%;
      }
      footer .row.secondary div:hover {
        background-color: #25262e;
      }
      footer .copyright {
        padding: 0.3em 1em;
        background-color: #25262e;
      }
      footer .copyright p {
        font-size: 0.9em;
        text-align: center;
      }
      @media screen and (max-width: 850px) {
          footer .row.primary {
          grid-template-columns: 1fr;
        }
        footer .row.secondary {
          flex-direction: column;
        }
      }