/* Dear all I have made several comments in the document so that u can understand which code stands for what thing */



/* HEADER CODE STARTS */


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Ruda:wght@400;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: url("../img/bg.jpg") no-repeat center center/cover;
  background-color: rgb(23, 6, 45);
  min-height: 100vh;
  font-family: "poppins", sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}


header {
  background: rgba(49, 80, 208, 0.8);
  padding: 0.5rem 0;
  position: sticky; top: 0;
  z-index: 2000;
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0rem 1.5rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.logo img {
  width: 30%;
  object-fit: cover;
  margin-right: 8px;
}

.logo span {
  font-size: 2rem;
}

nav ul {
  display: flex;
  list-style-type: none;
}

nav ul li {
  margin: 0rem 0.4rem;
  align-items: center;
  padding: 0.5rem 0.5rem;
  /* transition: color 3s; */
  transition: text-shadow .3s;
}

nav ul li a {
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 2.5px;
  color: #fff;
  padding: 0.7rem 1rem;
  transition: color 1s;
}

nav ul li :hover{
  color: red;
  font-weight: bold;
}



/* main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    color: #fff;
  }
  
  main h2 {
    font-size: 4.1rem;
  }
  
  .txt h2 span {
    background: #3150d0;
    border-radius: 5px;
  }
  
  main h4 {
    font-size: 2rem;
  } */
  
  /* p {
    font-size: 1rem;
    line-height: 1.9;
    margin: 1rem 0;
    width: 50%;
  }
  
  .form-input {
    margin: 1rem 0;
    width: 50%;
    position: relative;
  }
  
  .form-input input {
    width: 100%;
    outline: none;
    padding: 1.4rem 1rem;
    margin: 1rem 0rem;
    border-radius: 04px;
    border: none;
    font-size: 1.2rem;
  }
  
  .form-input button {
    position: absolute;
    top: 25px;
    right: 0;
    padding: 0.8rem 1.5rem;
    margin: 0 1rem;
    outline: none;
    border: none;
    border-radius: 5px;
    background: #3150d0;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
  } */
  
  .btn {
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
  }



  @media (max-width: 1150px) {
    main h2 {
      font-size: 2rem;
    }
  
    p {
      font-size: 0.9rem;
    }
  
    nav ul {
      display: none;
    }
  
    .form-input input {
      padding: 1rem 1rem;
      margin: 0.8rem 0rem;
      font-size: 1rem;
    }
  
    .form-input button {
      position: absolute;
      top: 16px;
      right: 0;
      padding: 0.8rem 1rem;
      margin: 0 1rem;
      font-size: 1rem;
      cursor: pointer;
    }
  
    .btn {
      display: block;
    }
  
    nav ul {
      display: flex;
      flex-direction: column;
      position: fixed;
      width: 300px;
      height: 100vh;
      background: #3150d0;
      top: 65px;
      left: -100%;
      padding: 5rem 0;
      transition: all 0.5s ease-in;
      z-index: 10;
    }
  
    nav ul.display {
      left: 0;
      transition: all 0.5s ease-in-out;
    }
  
    ul li a {
      display: block;
      margin: 10px;
    }
  
    .close-btn {
      position: absolute;
      top: 0;
      left: 15rem;
      margin: 25px;
    }
  }


  /* HEADER CODE ENDS */


/* Content about style Starts */

  #content {
    font-family: 'Michroma', sans-serif;
      width: 100%;
      /* padding: 20px; */
      min-height: 100vh;
      transition: all 0.3s;
      color: rgb(255, 255, 255);
      background-color: rgb(23, 6, 45);
      padding-top: 20px;
      text-align: center;
      font-size: 16px;
  }
  #About{
    margin-left: 100px;
    margin-right: 100px;
  }

  #content h1{
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 0px;
    padding-bottom: 5px;
    font-size: 50px;
    color: rgb(218, 118, 146);
    margin-bottom: 10px;
  }

  @media (max-width: 1150px) {
    #About{
      margin-left: 60px;
      margin-right: 60px;
    }
    #content h1{
      font-size: 45px;
    }
  }

  /* @media (max-width: 900px) {
    #About{
      margin-left: 60px;
      margin-right: 60px;
    }
    #content h1{
      font-size: 45px;
    }
  } */
  @media (max-width: 750px) {
    #About{
      margin-left: 50px;
      margin-right: 50px;
    }
    #content h1{
      font-size: 40px;
    }
  }
  @media (max-width: 600px) {
    #About{
      margin-left: 40px;
      margin-right: 40px;
    }
    #content h1{
      font-size: 35px;
    }
  }

  @media (max-width: 450px) {
    #About{
      margin-left: 30px;
      margin-right: 30px;
    }
    #content h1{
      font-size: 30px;
    }
  }


/* Content about style Ends */



/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */
/* body{
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  color: #555;
} */
/* h2{
  text-align: center;
  margin-top: 50px;
  font-size: 30px;
} */


/* Secy and committee information starts */
.products{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, auto));
  grid-gap: 50px;
  margin: 10px auto;
  max-width: 1240px;
  padding: 20px;
}
.products1{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, auto));
  grid-gap: 50px;
  margin: 10px auto;
  max-width: 1240px;
  padding: 20px;
}
.product{
  padding: 10px 0px;
  margin-right: 10px;
  width: 170px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.product img{
  width: 170px;
  height: 180px;
  border-radius: 10%;
  display: block;
  /* margin-right: 20px; */
}

@media (max-width: 390px) {
  .product img{
    width: 300px;
    height: 300px;
  }
  .product{
    width:320px;
  }
}
.product .title{
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.product .description{
  padding: 0 20px 10px 20px;
  line-height: 22px;
}
.product .price{
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  color: #9b0b03;
  padding-top: 30px;
  font-family: sans-serif;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  transform: rotate(-45deg);
}
.product .cart{
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
  background-color: #3e628f;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
.product .cart i{
  padding-left: 10px;
}
.view-more{
  margin: 0 auto;
  max-width: 1240px;
  padding: 20px;
  text-align: center;
}
.view-more button{
  padding: 10px 25px;
}

/* Secy and committee information ends */


/* for social buttons  */

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -10px;
}
.social-buttons__button {
  margin: 10px 5px 0;
}

.social-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  width: 35px;
  height: 35px;
  text-decoration: none;
  border-radius: 100%;
  text-align: center;
}
.social-button::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  transition: 0.3s;
}
.social-button:focus, .social-button:hover {
  color: #fff;
}
.social-button:focus::after, .social-button:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin-left: calc(-50% - 1px);
}
.social-button i,
.social-button svg {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.social-button i {
  font-size: 28px;
}
.social-button svg {
  height: 40%;
  width: 40%;
}
.social-button--mail {
  color: #505050;
}
.social-button--mail::after {
  background: #505050;
}
.social-button--facebook {
  color: #3b5999;
}
.social-button--facebook::after {
  background: #3b5999;
}
.social-button--linkedin {
  color: #0077b5;
}
.social-button--linkedin::after {
  background: #0077b5;
}
.social-button--email {
  color: #007bff;
}
.social-button--email::after {
  background: #007bff;
}
.social-button--instagram {
  color: #e4405f;
}
.social-button--instagram::after {
  background: #e4405f;
}

/* Social buttons over */


/* Footer Code starts */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
.footer {
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 5px 0 5px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}


.mess-menu{
  display: flex;
  justify-content: center;
  background-size: cover;
}
.menu{
  height: 44rem;
  width: 31rem;
}
@media (min-width: 1000px){
  .menu{
    height: 71rem;
    width: 50rem;
  }
}
@media (min-width: 1200px){
  .menu{
    height: 88rem;
    width: 62rem;
  }
}

@media (max-width: 500px){
  .menu{
    height: 28rem;
    width: 19.8rem;
  }
}
.slider{
  margin-bottom: 1rem;
}
.mess-budget button{
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-size: 1.2rem;
  border-radius: 15px;
  background-color: #007bff;
  color: white;
  transition-duration: 0.5s;
}
.mess-budget button:hover{
  color: red;
}

/* slider code */

.slider {
  position: relative;
  width: 85%;
  max-width: 900px;
  overflow: hidden;
  margin: 50px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  border-radius: 10px;
}
.prev{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  left: 10px;
}
.next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  right: 10px;
}

/* Commitee member */
.com-mem{
  height: 800px;
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap:wrap;
}
.div{
  height: 23%;
  width: 24%;
  color: black;
  font-weight: bold;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(255, 0, 0, 0.737),maroon,crimson,pink)
}
.div a{
  font-size: 2rem;
}
.social-media{
  display: flex;
  gap: 20px;
}
.com-cont{
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.slider-cont{
  display: flex;
  justify-content: center;
}

@media (max-width: 300px) {
  .com-mem{
  height: 1200px;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap:wrap;
}
.div{
  height: 16%;
  width: 48%;
  color: black;
  font-weight: bold;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(255, 0, 0, 0.737),maroon,crimson,pink)
}
.div a{
  font-size: 1rem;
}
}
@media (min-width: 900px) {
  .com-mem{
    height: 500px;
    width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
  }
  .div{
    height: 40%;
    width: 16%;
    color: black;
    font-weight: bold;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(255, 0, 0, 0.737),maroon,crimson,pink)
  }
  .div a{
    font-size: 2rem;
  }
}
#Secretaries h2{
  color:#9b0b03;
}
.mess-budget a{
  text-decoration: none;
  color: white;
  height: 100%;
  width: 100%;
}
.mess-budget a:hover{
  color: red;
}
