@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");
html {
  scroll-behavior: smooth;
}
.register-btn {
  background-color: #004a7f;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;

  font-size: 20px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
.navbar img {
  width: 80%;
  min-width: 100px;
}
#text {
  color: black;
}
@-webkit-keyframes glowing {
  0% {
    background-color: #405fbe;
    -webkit-box-shadow: 0 0 3px #405fbe;
  }
  50% {
    background-color: #2d1d7c;
    -webkit-box-shadow: 0 0 40px #2d1d7c;
  }
  100% {
    background-color: #312e6e;
    -webkit-box-shadow: 0 0 3px #312e6e;
  }
}

@-moz-keyframes glowing {
  0% {
    background-color: #405fbe;
    -moz-box-shadow: 0 0 3px #405fbe;
  }
  50% {
    background-color: #2d1d7c;
    -moz-box-shadow: 0 0 40px#2d1d7c;
  }
  100% {
    background-color: #312e6e;
    -moz-box-shadow: 0 0 3px #312e6e;
  }
}

@-o-keyframes glowing {
  0% {
    background-color: #405fbe;
    box-shadow: 0 0 3px #405fbe;
  }
  50% {
    background-color: #2d1d7c;
    box-shadow: 0 0 40px#2d1d7c;
  }
  100% {
    background-color: #312e6e;
    box-shadow: 0 0 3px #312e6e;
  }
}

@keyframes glowing {
  0% {
    background-color: #405fbe;
    box-shadow: 0 0 3px #405fbe;
  }
  50% {
    background-color: #2d1d7c;
    box-shadow: 0 0 40px #2d1d7c;
  }
  100% {
    background-color: #312e6e;
    box-shadow: 0 0 3px #312e6e;
  }
}

.register-btn:hover {
  background-color: #d35400;
}
.timer {
  /* margin-top: 5vh; */

  /* background: linear-gradient(135deg, #4a90e2, #9013fe); */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  box-sizing: border-box;
  margin-bottom: 5vh;
}
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100px;
  height: 150px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  /* background-color: #000080ff; */
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 3em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.flip-card-back {
  background-color: #ffffff;
  color: #333;
  transform: rotateY(180deg);
}

.time-label {
  font-size: 1.2em;
  text-transform: uppercase;
  margin-top: 10px;
  text-align: center;
  color: #000080ff;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cards_container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}
.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.centered-text > .small-text {
  color: #4792edff;
}
.small-text {
  font-size: calc(1rem + 1vw);
  color: #000080;
  letter-spacing: 2px;
  margin: auto;
}

.big-text {
  font-size: calc(2rem + 8vw);
  color: #000080;
  font-weight: bold;
  letter-spacing: 5px;
  text-align: center;
  margin-top: 0;
}

.centered-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 2px;
  transform: translate(-50%, -60%);
}
@media (width < 1000px) {
  /* .fixed-top {
    position: static;
    top: 0;
  } */
}
.bodynav {
  position: sticky;
  top: 0;
}
@media (max-width: 768px) {
  .bodynav {
    position: sticky;
    top: 0;
  }
  .small-text {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .big-text {
    font-size: 4.5rem;
    top: -5px;
  }
  .time-label {
    font-size: 3vw;
  }
}

@media (max-width: 576px) {
  .small-text {
    font-size: 1rem;
  }

  .big-text {
    font-size: 3rem;
    top: 0;
  }
  .flip-card-inner {
    width: 20vw;
    height: 80px;
    margin: 0;
  }
}

.slider {
  height: 150px;
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.slide-track {
  display: flex;
  width: calc(250px * 18);
  animation: scroll 40s linear infinite;
}
.slide-track:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 9));
  }
}
.slide {
  height: 120px;
  width: 150px;
  display: flex;
  align-items: center;
  padding: 15px;
  perspective: 100px;
}
.assimg {
  width: 100%;
  transition: transform 1s;
}
.assimg:hover {
  transform: translateZ(20px);
}
.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
}
.slider::before {
  left: 0;
  top: 0;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.para1 {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
}

#para2 {
  color: #4691ed;
  font-size: 30px;
  font-family: Helvetica;
  font-style: italic;
}
#e-cell,
#assosiation {
  font-size: 30px;
  font-weight: bold;
  font-family: Helvetica;
}
.centercontainer {
  display: flex;
  justify-content: center;
}
.imagewrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.img1container {
  width: 200px;
  height: 200px;

  overflow: hidden;
}
.img1 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  display: block;
}

footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.social-icons {
  transition: filter 0.1s, scale 0.1s;
}
.social-icons:hover {
  scale: 1.1;
  filter: invert(0.8);
  filter: brightness(0) saturate(100%) invert(40%) sepia(84%) saturate(678%)
    hue-rotate(200deg) brightness(94%) contrast(89%);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 18px;
  margin: 0;
  color: #ccc;
}

.footer-links {
  flex: 1;
  min-width: 220px;
}

.footer-links h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-social {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.footer-social h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
}

.footer-social a:hover {
  color: #fff;
}

.footer-register {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.footer-register h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-register p {
  color: #ccc;
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #444;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-social,
  .footer-register {
    margin: 10px 0;
  }
}
highlight {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  padding: 20px;
}

.highlights-container {
  min-height: 500px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.h1 {
  font-size: 3em;
  margin-bottom: 40px;
  color: #ff7f50; /* Fallback color */
  background: linear-gradient(90deg, #ff7f50, #ff6347);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  font-family: Verdana;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  color: transparent;
  background-clip: text;
}

.h1::after {
  content: "";
  width: 100px;
  height: 5px;
  background-color: #ff6347;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.highlight-card {
  background-color: #fff;
  margin: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: inline-block;
  min-height: 300px;
  width: 100%;
  max-width: 250px;
  vertical-align: top;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.highlight-number {
  font-size: 3em;
  font-weight: bold;
  color: #2839bb;
  margin-bottom: 15px;
}

.highlight-card p {
  font-size: 1.2em;
  color: #333;
}
.exp {
  font-family: "Montserrat", sans-serif;
  background-color: #f9f9f9;
  color: #444;
  padding: 20px;
}

.head {
  font-size: 2.8rem;
  color: #161055;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.head::before {
  content: "";
  width: 50%;
  height: 4px;
  background: #1a73e8;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.block2 > .head::before {
  width: 10%;
}
#explore {
  display: flex;
  flex-direction: column;
}
.highlight-card {
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  border: none;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.highlight-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.highlight-card p {
  font-size: 1.3rem;
  color: #282727;
}

.mentoring-card {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

.internships-card {
  background: linear-gradient(135deg, #f3e7e9, #e3eeff);
}

.expo-card {
  background: linear-gradient(135deg, #c9ffbf, #ffafbd);
}

.clinic-card {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

.panel-card {
  background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
}

.fund-card {
  background: linear-gradient(135deg, #fff1eb, #ace0f9);
}

.validation-card {
  background: linear-gradient(135deg, #fddb92, #d1fdff);
}
.img2 {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.imagecontainer {
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
.bannerimg {
  width: 100%;
}
#mainimg {
  height: 40px;
  width: auto;
}
.glass {
  position: relative;
  padding: 20px;
  background: url("./images/glass.jpeg") no-repeat center center/cover;
}

.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.glass * {
  position: relative;
  z-index: 1;
}

.block2R {
  width: 100%;
}
.block2 {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  margin: 0 auto;
  max-width: 2200px;
  border: none;
  padding: 8vh 5% 4vh 5%;
}
.block2-1 {
  width: 90%;
  aspect-ratio: 13/5;
  display: flex;
  flex-direction: row;
  /* padding: 2%; */
}
.block2-2 {
  width: 90%;
  aspect-ratio: 13/5;
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  padding: 2%;
}

.img-3 {
  width: 350px;
  border-radius: 25px;
  aspect-ratio: 8 / 5;
  align-self: center;
  justify-self: center;
  cursor: none;
  height: 350px;
}
.img-3:hover {
  scale: 1.005;
  box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.604);
}

.block2-2-1,
.block2-1-1 {
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  justify-items: center;
  justify-content: center;
  gap: auto;
}
.block2-2-1-1,
.block2-1-1-1 {
  /* color: ; */
  /* padding: 5px; */
  font-size: 30px;
  /* border: 2px white solid; */
  border-radius: 20px;
  margin: 5px;
  font-weight: 400;
}
.block2-2-1-2,
.block2-1-1-2 {
  /* padding: 20px; */
  /* border: 2px white solid; */
  border-radius: 20px;
  font-weight: 400;
  color: #656464;
}

.button {
  padding: 5px;
  aspect-ratio: 3/1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-weight: 500;
  border: solid 1px #4db5ffff;
  color: #4db5ffff;
  margin: 40px auto;
  text-decoration: none;
  min-width: 80px;
}
.button:hover {
  scale: 0.95;
  cursor: pointer;
}
.button:active {
  scale: 0.95;
  opacity: 0.8;
}

@media (width < 1200px) {
  /* .block2 {
    align-items: center;
  } */
  .block2-1,
  .block2-2 {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 90%;
  }
  .img-3 {
    align-items: center;
  }
  .block2-1-2 {
    order: -1;
  }
  .block2-1-1 {
    order: 1;
  }
}
.timer {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.animation1RL {
  animation: scrollreveal1RL ease-in-out both;
  animation-timeline: view();
  animation-range: entry 50% cover 50%;
}

@keyframes scrollreveal1RL {
  from {
    opacity: 0;
    transform: translateX(5%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animation1LR {
  animation: scrollreveal1LR ease-in-out both;
  animation-timeline: view();
  animation-range: entry 50% cover 50%;
}

@keyframes scrollreveal1LR {
  from {
    opacity: 0;
    transform: translateX(-5%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo img {
  width: 80%;
  min-width: 100px;
}

.bodynav {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: sticky;
  top: 0px;
  z-index: 1000;
  background-color: #dedede9f;
  top: 0px;
  z-index: 1000;
  background-color: #dedede9f;
}
nav {
  background-color: transparent;
  padding: 10px 20px;
}

#register {
  color: white;
}
#family {
  font-family: rancho;
}

.logo img {
  max-width: 500px;
}

nav input[type="checkbox"] {
  display: none;
}

nav .menu-icon {
  display: none;
  font-size: 24px;
  color: black;
}

nav .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 30px;
}

nav .nav-links li {
  margin-left: 20px;
}

nav .nav-links a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  padding: 8px 15px;
  transition: color 0.3s ease;
}

nav .nav-links a:hover {
  color: #000000;
}

.register-btn {
  background-color: #004a7f;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;

  font-size: 20px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}

.bodynav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  /* .bodynav {
    position: static;
    top: 0px;
  } */
  .bodynav > .container {
    flex-wrap: wrap;
  }

  .logo {
    flex: 1;
  }

  nav .menu-icon {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  nav .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: transparent;
    display: none;
    margin-top: 20px;
    align-items: center;
  }

  nav .nav-links li {
    margin: 10px 0;
  }

  nav input[type="checkbox"]:checked ~ .nav-links {
    display: flex;
  }
}

.grid_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}
.card1 {
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 20px;
  gap: 20px;
  box-shadow: 5px 5px 10px #58585882;
  max-width: 95%;
  min-height: 190px;
}
#soc{
  font-size: 25px;
}
bodygallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;
}
.galleryhead{
  color: rgb(11, 11, 107);
  font-weight: bold;
  text-align: center;
}
.grid-container {
  columns: 5 200px;
  column-gap: 1.5rem;
  width: 90%;
  margin: 0 auto;
  .divgallery {
    width: 150px;
    margin: 0 1.5rem 1.5rem 0;
    display: inline-block;
    width: 100%;
    border: solid 2px black;
    padding: 5px;
    box-shadow: 5px 5px 5px rgba(25, 12, 12, 0.995);
    border-radius: 5px;
    transition: all .25s ease-in-out;
    &:hover img {
      filter: grayscale(0);
    }
    &:hover {
      border-color: rgb(14, 19, 123);
    }
    .imggallery {
      width: 100%;
      filter: grayscale(100%);
      border-radius: 5px;
      transition: all .25s ease-in-out;
    }
  }
}
