/* 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;
} 
/* .absolute-center {
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  display:flex;
  align-items: center;
  justify-content: center;

} */



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;
} 
/* .container {
  width:100vh;
  margin:0;
  padding:0;
  box-sizing: border-box;
} */

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;
}
  
  .btn {
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
  }
 p{
  font-size: 1.2rem;
}



  @media (max-width: 1150px) {
    main h2 {
      font-size: 2rem;
    }
  
    p {
      font-size: 1.2rem;
    }
  
    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;
    }
  }
  @media (max-width: 550px) {
    p{
      font-size: 1rem;
    }
  }

  /* HEADER CODE ENDS */


/* Content about style Starts */

#content {
  font-family: 'Michroma', sans-serif;
  width: 100%;
  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;
  /* Removing display: flex for better layout control */
}

  #About{
    margin-left: 100px;
    margin-right: 100px;
  }

  #content h1 {
    margin: 0 10px 10px; /* Combine margins */
    padding: 0;
    font-size: 50px;
    color: rgb(218, 118, 146);
}

  @media (max-width: 1150px) {
    #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;
    }
  }

  /* .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: yellow; 
  font-size: 3rem; 
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
  font-family: Arial, sans-serif; 
  }
  @media (max-width: 850px) {
    .centered {
      font-size: 2.3rem;
    }
  }
  @media (max-width: 650px) {
    .centered {
      font-size: 1.7rem;
    }
  }
  @media (max-width: 450px) {
    .centered {
      font-size: 1.3rem;
    }
  } */

  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: yellow;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content; /* Ensures width fits the text */
  
    /* Typing animation without the cursor */
    animation: typing 8s steps(30, end) infinite;
    animation-fill-mode: forwards;
  }
  
  /* Define the typing animation */
  @keyframes typing {
    0% { width: 0; }
    100% { width: 100%; }
  }
  
  /* Media queries for responsive font size */
  @media (max-width: 850px) {
    .centered {
      font-size: 2.3rem;
    }
  }
  @media (max-width: 650px) {
    .centered {
      font-size: 1.7rem;
    }
  }
  @media (max-width: 450px) {
    .centered {
      font-size: 1.3rem;
    }
  }
  
  
  
  
  


/* Content about style Ends */




/* Alumni information starts */
.profiles-container {
  display: flex;  /* Use flexbox for layout */
  justify-content: center;  /* Center items horizontally */
  flex-wrap: wrap;  /* Allow items to wrap to the next line */
  gap: 50px;  /* Space between items */
  max-width: 1240px;  /* Maximum width of the container */
  width: 100%;  /* Make container responsive */
  padding: 20px;
  margin: 0 auto;  /* Center the container itself horizontally */
}

.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 !important;
}

.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;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.wrapper {
    max-width: 100%;
    padding: 0;
    margin: 0;

  }


  .wrapper .swiper-wrapper {
    width: 100%;
    height: 32em;
    display: flex;
    align-items: center;
  }
  
  .wrapper .swiper-wrapper .card {
    width: 20em;
    height: 90%;
    background: #fff;
    border-radius: 2em;
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
    padding: 1em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 2em;
  } 
  .content-wrapper {
    position:relative;
    width: 100%;
    max-width:1536px; /*Equivalent to max-w-2xl*/

  } 
  .image-wrapper {
    position:relative;
    width:100%;
    height:auto;
    overflow:hidden;
  }
  .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
  }

  
  .card .image {
    width: 15em;
    height: 15em;
    border-radius: 50%;
    border: 5px solid #4070f4;
    padding: 3px;
    margin-bottom: 2em;
    
  }
  
  .card .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .card .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .card .content .title {
    font-size: 1.8em;
    font-weight: 600;
    position: relative;
    top: -0.8em;
    color: black;
  }
  
  .card .content .name {
    margin-top: -20.8px;
    font-size: 1.5em;
    color: #0b2c89;
  }
  
  .card .content .desc {
    text-align: center;
    font-size: 1.1em;
    margin: 1em 0;
    color: black;
  }
  
  
  ::-webkit-scrollbar {
    width: 1px;
  }
  
  .wrapper {
    overflow: hidden; /* Ensures content doesn't spill out */
    padding-bottom: 20px; /* Optional: Adds some padding to prevent cut-off at the bottom */
}

.swiper-slide {
    overflow: hidden; /* Ensure each slide doesn't overflow */
    max-width: calc(100% - 1.1em); /* Keeps slides within bounds considering spacing */
}


@media (max-width: 674px) {
    .card .image {
        width: 10em;
        height: 10em;
        border-radius: 50%;
        border: 5px solid #4070f4;
        padding: 3px;
        margin-bottom: 2em;
        
      }
      .card .content .title {
        font-size: 1.5em;
        font-weight: 600;
        position: relative;
        top: -0.8em;
      }
      
      .card .content .name {
        margin-top: -20.8px;
        font-size: 1.3em;
        color: #0b2c89;
      }
      
      .card .content .desc {
        text-align: center;
        font-size: 0.9em;
        margin: 1em 0;
      }
      .wrapper .swiper-wrapper {
        width: 50%;
        height: 26em;
        display: flex;
        align-items: center;
      }
      
      .wrapper .swiper-wrapper .card {
        width: 20em;
        height: 90%;
        background: #fff;
        border-radius: 2em;
        box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
        padding: 1em 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 2em;
      }
    
}
  
@media (max-width: 590px) {
    .card .image {
        width: 10em;
        height: 10em;
        border-radius: 50%;
        border: 5px solid #4070f4;
        padding: 3px;
        margin-bottom: 2em;
        
      }
      .card .content .title {
        font-size: 1.5em;
        font-weight: 600;
        position: relative;
        top: -0.8em;
      }
      
      .card .content .name {
        margin-top: -20.8px;
        font-size: 1.1em;
        color: #0b2c89;
      }
      
      .card .content .desc {
        text-align: center;
        font-size: 0.9em;
        margin: 1em 0;
      }
      .wrapper .swiper-wrapper {
        width: 70%px;
        height: 26em;
        display: flex;
        align-items: center;
      }
      
      .wrapper .swiper-wrapper .card {
        width: 20em;
        height: 85%;
        background: #fff;
        border-radius: 2em;
        box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
        padding: 1em 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 2em;
      }
    
}
/* Swiper Container */
/* Raw Slider Container */
.raw-slider-container {
  max-width: 850px; /* Adjust this value to control the width */
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  padding: 0px 40px;
}

.raw-slider {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

/* Raw Slides Container */
.raw-slides {
  display: flex;
  transition: transform 0.5s ease;
}

/* Individual Raw Slide */
.raw-slide {
  min-width: 100%;
  box-sizing: border-box;
}

/* Raw Slide Images */
/* .raw-slide img {
  width: 100%;
  height: auto;
} */

 .raw-slide img {
  width: 100%; 
  height: 500px; 
  object-fit: cover; 
}
@media (max-width: 887px) {
  .raw-slide img {
    
    height: 400px; 
    width: 100%;
    object-fit: cover; 
  }
  /* .raw-slider-container{
    padding: 0px 20px;
  } */
  
}
@media (max-width: 674px) {
  .raw-slide img {
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
  }
  .raw-slider-container{
    padding: 0px 25px;
  }
}
@media (max-width: 474px) {
  .raw-slide img {
    width: 100%; 
    height: 250px; 
    object-fit: cover; 
  }
  .raw-slider-container{
    padding: 0px 15px;
  }
}

/* Navigation Buttons */
.raw-prev, .raw-next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border: none;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}

.raw-next {
  right: 0;
}

.raw-prev {
  left: 0;
}


@media (max-width: 514px) {
    .card .image {
        width: 8em;
        height: 8em;
        border-radius: 50%;
        border: 5px solid #4070f4;
        padding: 3px;
        margin-bottom: 2em;
        
      }
      .card .content .title {
        font-size: 1.3em;
        font-weight: 600;
        position: relative;
        top: -0.8em;
      }
      
      .card .content .name {
        margin-top: -20.8px;
        font-size: 0.9 em;
        color: #0b2c89;
      }
      
      .card .content .desc {
        text-align: center;
        font-size: 0.8em;
        margin: 1em 0;
      }
      .wrapper .swiper-wrapper {
        width: 70%px;
        height: 26em;
        display: flex;
        align-items: center;
      }
      
      .wrapper .swiper-wrapper .card {
        width: 20em;
        height: 78%;
        background: #fff;
        border-radius: 2em;
        box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
        padding: 1em 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 2em;
      }
    
}

@media (max-width: 400px) {
    .card .image {
        width: 7em;
        height: 7em;
        border-radius: 50%;
        border: 5px solid #4070f4;
        padding: 3px;
        margin-bottom: 2em;
        
      }
      .card .content .title {
        font-size: 1.1em;
        font-weight: 600;
        position: relative;
        top: -0.8em;
      }
      
      .card .content .name {
        margin-top: -20.8px;
        font-size: 0.8 em;
        color: #0b2c89;
      }
      
      .card .content .desc {
        text-align: center;
        font-size: 0.7em;
        margin: 1em 0;
      }
      .wrapper .swiper-wrapper {
        width: 70%px;
        height: 26em;
        display: flex;
        align-items: center;
      }
      
      .wrapper .swiper-wrapper .card {
        width: 15em;
        height: 75%;
        background: #fff;
        border-radius: 2em;
        box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
        padding: 1em 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 2em;
      }
    
}


/* Warden inf code  */
.v7h9tC1 {
  text-align: center;
  padding-bottom: 40px;
}

.a1qB3v9 {
  color: #9b2335;
  font-size: 2.5em;
  margin-bottom: 40px;
}

.v8YkP9r {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.q9Gf3Lk {
  background-color: #f8f8f8;
  padding: 20px;
  border: 2px solid #3a5a40;
  border-radius: 10px;
  width: 200px;
  padding-bottom: 20px; /* Added padding-bottom */
}

.K1lP3xM {
  color: #3a5a40;
  font-size: 1.5em;
  margin: 0;
  border-bottom: 2px solid #3a5a40;
  padding-bottom: 5px;
}

.D1rT9vM {
  color: #3a5a40;
  font-size: 1.2em;
  margin: 10px 0;
  border-bottom: 2px solid #3a5a40;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .v8YkP9r {
      flex-direction: column;
      align-items: center;
  }
  
  .q9Gf3Lk {
      width: 90%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .q9Gf3Lk {
      width: 250px;
  }
}


