@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Sacramento&display=swap");

/* font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif; */

html, body{
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #715df2;
  --bg: #001220;
  --bg2: #182e52;
  --text-light: #9ab8cf;
}

body {
  scroll-behavior: smooth;
  position: relative;
}

.scroll-top-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

/* Navbar Section */

.nav-container {
  /* background-color: #001220; */
  background: none;
  height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 0px 5%;

  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 10;
}
.show-mobile-nav {
  flex-direction: column;
  background-color: #0b1d35;
  margin: 15px 0;
  padding: 15px 0;
  height: 200px;
}

.show-mobile-nav ul {
  flex-direction: column;
}

.nav-left img {
  height: 40px;
}

.nav-right {
  color: white;
}

.nav-right ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-right ul li {
  margin: 0px 20px;
  list-style: none;
  color: #bbbbbb;
  transition: 100ms color ease-in-out;
  cursor: pointer;
}

.nav-right ul li:hover {
  color: var(--primary);
}

.hamburger-container {
  display: none;
  color: white;
}

#hamburger-menu {
  display: none;
  cursor: pointer;
}

.mobile-nav-container {
  background-color: #010d16;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 11;
  width: 100%;
  transform: translateX(100%);
  transition: 100ms transform ease-in-out;
  /* border: 2px solid white; */
}

.mobile-nav-container ul a li{
  margin: 20px 0px;
  list-style: none;
  text-align: center;
  font-size: 1.5rem;
}

.close-icon-container{
  position: absolute;  
  top: 50px;
  right: 30px;
  /* border: 2px solid red; */
}

.close-icon-container span{
  font-size: 2rem;
}

.reveal{
  transform: translateX(0%);
}
/* Hero Section */

.hero-container {
  height: 100vh;
  background-color: #001220;
  background-image: url("./Assets/hero-img.png");
  background-position: center;
  background-size: cover;
  /* border: 2px solid red; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.go-btn {
  background-color: var(--primary);
  --btn-width: 55px;
  height: var(--btn-width);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 100px;
  cursor: pointer;
  transition: 100ms filter ease-in-out, 100ms transform ease-in-out;
  z-index: 10;
}
.explore-icon {
  position: absolute;
  bottom: 75px;
  left: calc(50vw - var(--btn-width) / 2);
}

.explore-icon:hover {
  filter: drop-shadow(0px 0px 20px #715df22f);
  transform: scale(1.1, 1.1);
}

@keyframes breathe {
  from {
    filter: drop-shadow(0px -10px 20px #715df227);
  }

  to {
    filter: drop-shadow(0px -10px 60px #715df286);
  }
}

.breathe-effect {
  animation-name: breathe;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.hero-svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  filter: drop-shadow(0px -10px 60px #715df22f);
}

.hero-img-container {
  text-align: center;
  width: clamp(350px, 80vw, 700px);
}

.hero-img-container img {
  z-index: 5;
  /* border: 2px solid red; */
}

.date {
  color: #816dff;
  text-shadow: 0px 4px 24px rgba(255, 123, 199, 0.5);
}

.hero-btn-container {
  margin-top: 20px;
  width: clamp(250px, 50vw, 350px);
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: space-evenly;
  z-index: 5;
}

.hero-btn-common {
  padding: 5px 30px;
  font-size: large;
  border: 2px solid #816dff;
  border-radius: 100px;
  transition: 100ms color ease-in-out, 100ms background-color ease-in-out;
}

.hero-btn-common:hover {
  cursor: pointer;

  background-color: #8f80f5;
  color: white;
}

.register-btn {
  background-color: var(--primary);
  color: white;
}

.brochure-btn {
  color: #816dff;
  background: none;
}

.guidelines-btn {
  color: #816dff;
  background: none;
  border: none;
}

.timer-container {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  color: white;
  margin-top: 50px;
}

.timer-container > div {
  text-align: center;
  color: #dcdcdc;
  margin-right: 10px;
}

.timer-count-common {
  border: 2px solid #dcdcdc;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 25px;
  margin-bottom: 10px;
  margin: 10px;
}

/* Events */

.event {
  background: linear-gradient(180deg, #001220 0%, #102443 100%);
  min-height: 100vh;
  padding-bottom: 20vh;
  position: relative;
}

.events-wave-svg {
  /* border: 2px solid red; */
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateX(-1px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  /* border: 2px solid red; */
  padding: 40px 5%;
  /* height: 100%; */
}

.header-container h2 {
  font-size: 2rem;
}

.horizontal-line {
  height: 2px;
  width: 100%;
  background-color: white;
  margin-left: 20px;
  opacity: 0.2;
}

.about-one-liner {
  /* border: 2px solid red; */
  margin: 0px 10%;
}

.about-one-liner h2 {
  font-weight: 400;
  font-size: 1.1rem;
  text-align: center;
}

.cards-container {
  /* border: 2px solid red; */
  padding: 0px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  min-height: 200px;
  width: 250px;
  margin: 40px 40px;
  padding-bottom: 10px;
  border-radius: 11px;
  overflow: hidden;
  transition: 100ms background-color ease-in-out, 100ms transform ease-in-out,
    150ms box-shadow ease-in-out;
}

.card:hover {
  /* background-color: #081d2e; */
  cursor: pointer;
  transform: scale(1.05, 1.05);
  box-shadow: 0px 0px 24px 5px #52637e28;
}

.card:hover .open-new-icon {
  opacity: 1;
}

.card:hover .card-bg-img {
  transform: scale(1.1, 1.1);
  filter: blur(2px);
}

.card-image-container {
  position: relative;
  overflow: hidden;
  position: relative;
  max-height: 160px;
}

.open-new-icon {
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  opacity: 0;
  transition: 100ms opacity ease-in-out;
}

.count-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.card-text-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  /* border: 2px solid red; */
  padding: 5px 10px;
}

.card-bg-img {
  position: relative;
  width: 100%;
  transition: 100ms transform ease-in-out, 100ms filter ease-in-out;
}

.card-overlay {
  position: absolute;
  height: 96%;
  width: 100%;
  /* border: 2px solid red; */
  top: 0px;
  left: 0px;
  background: linear-gradient(180deg, #000000 0%, #002b4d 100%);
  opacity: 0.6;
}

.event-header {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.event-para {
  color: var(--text-light);
  font-size: 0.8rem;
}

.bg-image-container {
  position: relative;
}

.event-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* border: 2px solid red; */
  width: 80%;
}

/* About */
.about {
  background: linear-gradient(180deg, #001220 0%, #102443 100%);
  min-height: 100vh;
  padding-bottom: 10vh;
}

.xactitude-img {
  width: clamp(350px, 80vw, 900px);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-para-container {
  margin-top: 50px;
}

.about-para-container p {
  padding: 0px 10%;
  text-align: justify;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 400;
}

.about-para-container > p > span {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.qr-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  margin-top: 5rem;
}

.qr-container > h2 {
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
}

.qr-container > img {
  width: clamp(150px, 50vw, 250px);
  aspect-ratio: 1/1;
}

.qr-container > a {
  color: var(--primary);
}

.qr-container > a:hover {
  text-decoration: underline;
}

.about-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 0px 10%;
  margin-top: 5rem;
}

.highlight-common {
  width: 250px;
  margin: 15px;
  aspect-ratio: 1/1;
  background-color: var(--bg2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.main-highlight {
  background-color: var(--primary);
  height: 300px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #0b1d35;
}

.main-highlight h1 {
  font-size: 7rem;
  margin: 0px;
  line-height: 6rem;
}

.main-highlight h2 {
  font-size: 2rem;
}

.common-small-card {
  padding: 10px;
}

.common-small-card > span {
  /* border: 2px solid red; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  margin-bottom: 10px;
}

.common-small-card > h1 {
  color: white;
  font-size: 1.5rem;
}

.common-small-card > p {
  color: #9eb6dd;
  font-size: 0.8rem;
}

.learn-more-container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
  margin: 0px auto;
  margin-top: 40px;
  height: auto;
}

.learn-more-container h2 {
  font-weight: 500;
  font-size: 1.2rem;
}

.links-container {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  /* margin-top: 20px; */
}

.links-container a {
  background-color: var(--bg2);
  width: clamp(200px, 80vw, 26em);
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  transition: 100ms background-color ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.links-container > a > span {
  margin-left: 10px;
}

.links-container a:hover {
  background-color: var(--primary);
}

/* Contact Us */

/*contact section background*/
.contact-container {
  background-color: #715df2;
  padding-top: 25vh;
  position: relative;
}

.contact-wave-illus {
  position: absolute;
  top: 0;
}

/*contact section parent div*/
.container-contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 35px;
  margin: 25px;
}

.contact-box-common {
  padding: 50px 25px;
  background-color: #816dff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 11px;
  color: #ffffff;
  transition: 100ms transform ease-in-out;
}

.contact-box-common:hover {
  transform: scale(1.025, 1.025);
}

.contact-box-common h1 {
  font-size: 1.2rem;
  margin: 15px 15px;
}

.student-cord,
.faculty-cord {
  grid-row: span 1;
  grid-column: span 1;
}
/*contact section - location div*/
.address-box {
  grid-area: 2 / 1 / 3 / 3;
}

.form-box {
  grid-area: 1 / 3 / 3 / 5;
}

/*contact section Form inputboxes*/

.form > form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

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

.name-email-container > input {
  width: 45%;
}

input {
  height: 50px;
}

input,
.msg-body {
  background: none;
  border: none;
  border-bottom: 2px groove white;
  width: 100%;
  color: white;
  font-size: 1rem;
  margin-top: 10px;
}

input:focus,
.msg-body:focus {
  outline: none;
  border-bottom: 2px solid white;
}

/*placeholder*/
/* Chrome, Firefox, Opera, Safari 10.1+*/
::placeholder {
  color: #ffffff;
  opacity: 0.5; /* Firefox */
}
/* Internet Explorer 10-11*/
:-ms-input-placeholder {
  color: #ffffff;
}
/* Microsoft Edge*/
::-ms-input-placeholder {
  color: #ffffff;
}

/*contact section Form - Send Button*/
.submit-btn {
  padding: 10px 35px;
  background: #ffffff;
  border-radius: 100px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  cursor: pointer;
}

.social-media-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding-bottom: 15px;
}

.social-media-container img {
  height: 60px;
  width: 60px;
  border-radius: 11px;
  padding: 10px;
  box-sizing: border-box;
  /* border: 2px solid white; */
  margin: 0px 20px;
  color: white;
  cursor: pointer;
}

.social-media-container img:hover {
  transform: scale(1.1, 1.1);
}

#p1,
#p2 {
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
}

/* Google Maps */
#map iframe {
  width: 100vw;
  height: 400px;
  border: 1px solid black;
  /*    margin:  10vw 0 10vw;*/
}

/* Footer */
