@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,500;1,700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.scroll_bar_visible::selection {
  background-color: rgb(253, 250, 250);
}

.scroll_bar_visible::-webkit-scrollbar {
  width: 10px !important;
  background-color: #2e313a;
}

.scroll_bar_visible::-webkit-scrollbar-thumb {
  background-color: #ddf3f7;
}
.no_scroll_bar::-webkit-scrollbar {
  display: none;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Ensures the video covers the entire viewport */
  z-index: -1; /* Keep the video behind all other content */
  background-size: cover;
  overflow: hidden;
}

body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}


.preloader_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #000000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader {
  text-align: center;
}

.preloader {
  width: 142px;
  height: 142px;
  padding: 0;
  margin: 30px auto;
  list-style: none;
  position: relative;
  animation: rotate 10s infinite linear;
}

.preloader li {
  border: 6px solid transparent;
  border-bottom: none;
  transform-origin: 50% 100% 0;
  position: absolute;
  top: 50%;
  left: 50%;
  animation: rotate 3s infinite cubic-bezier(0.09, 0.6, 0.8, 0.03);
}

.preloader li:nth-child(1) {
  width: 44px;
  height: 22px;
  margin: -22px 0 0 -22px;
  border-color: #2172b8;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  animation-timing-function: cubic-bezier(0.09, 0.3, 0.12, 0.03);
}

.preloader li:nth-child(2) {
  width: 58px;
  height: 29px;
  margin: -29px 0 0 -29px;
  border-color: #18a39b;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  animation-timing-function: cubic-bezier(0.09, 0.6, 0.24, 0.03);
}

.preloader li:nth-child(3) {
  width: 72px;
  height: 36px;
  margin: -36px 0 0 -36px;
  border-color: #82c545;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  animation-timing-function: cubic-bezier(0.09, 0.9, 0.36, 0.03);
}

.preloader li:nth-child(4) {
  width: 86px;
  height: 43px;
  margin: -43px 0 0 -43px;
  border-color: #f8b739;
  border-top-left-radius: 54px;
  border-top-right-radius: 54px;
  animation-timing-function: cubic-bezier(0.09, 1.2, 0.48, 0.03);
}

.preloader li:nth-child(5) {
  width: 100px;
  height: 50px;
  margin: -50px 0 0 -50px;
  border-color: #f06045;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  animation-timing-function: cubic-bezier(0.09, 1.5, 0.6, 0.03);
}

.preloader li:nth-child(6) {
  width: 114px;
  height: 57px;
  margin: -57px 0 0 -57px;
  border-color: #ed2861;
  border-top-left-radius: 66px;
  border-top-right-radius: 66px;
  animation-timing-function: cubic-bezier(0.09, 1.8, 0.72, 0.03);
}

.preloader li:nth-child(7) {
  width: 128px;
  height: 64px;
  margin: -64px 0 0 -64px;
  border-color: #c12680;
  border-top-left-radius: 72px;
  border-top-right-radius: 72px;
  animation-timing-function: cubic-bezier(0.09, 2.1, 0.84, 0.03);
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

h3 {
  margin-top: 20px;
  font-size: 18px;
  color: #ffffff;
}

#dot1,
#dot2,
#dot3 {
  animation: blink 1.5s infinite step-start 1s;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.container1 {
  min-height: 100vh; /* Ensures the container takes up at least the full viewport height */
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.main {
  background-color: rgba(255, 243, 226, 0); /* Transparent background */
  height: 30vh;
  width: 150vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

.india_heading {
  margin: 3vh auto 3vh auto;
  font-family: 'Metamorphous', cursive;
  color: rgb(255, 255, 255);
  text-shadow: 4px 5px 5px rgb(0, 0, 0);
  text-align: center;
  font-size: 77px;
  letter-spacing: 43px;
}

.india_phrase {
  text-align: center;
  padding: 3vh auto 0vh auto;
  font-family: 'Metamorphous', cursive;
  transform: translateY(-3.5vh);
  letter-spacing: 3px;
  font-size: 25px;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 5px rgb(0, 0, 0);
}

.navbar-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 1rem;
  background-color: #0a0a0a71;
  height: 8vh;
  width: 100%;
}

.navbar-section p,
a,
i,
button {
  color: rgb(253, 249, 249);
  font-size: 1.3rem;
}

.user {
  margin-right: 5vh;
}

.btn {
  margin-top: -2px;
}

.navbar-section button {
  background: none;
  border: none;
  outline: none;
}

.navbar-section p {
  padding-right: 10px;
}

.navbar-section a {
  padding-right: 10px;
}

.navbar-section a i {
  font-size: 24px;
  margin-top: -4px;
}

@media(max-width:840px) {
  .main {
    width: 61vh;
  }
}

@media(max-width:700px) {
  .india_heading {
    font-size: 60px;
  }
}

.container2 {
  width: 40%;
  height: 450px;
  margin: 50px auto 50px auto;
  z-index: 101;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.main_container2 {
  background-color: #0a0a0a71;
  display: flex;
  flex-direction: row;
}

.main_container4 {
  background-color: #0a0a0a71;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.recognization {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background-color: #0a0a0a71;
}

.head {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: bolder;
  padding-bottom: 5px;
}

.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s;
}

.toggle {
  cursor: pointer;
  background-color: #0a0a0a00;
  width: 25vw;
  border: none;
}

.fa-arrow {
  color: #ddf3f7;
  font-weight: bolder;
}

@media(max-width:300px) {
  section .rightside a {
    padding: .525rem 1.05rem;
    color: white;
    font-weight: bold;
    margin-top: 0.625rem;
    text-align: center;
    width: 4.9rem;
    font-size: 14px;
  }

  section .leftside {
    margin-bottom: 5px;
  }

  .navbar-section p {
    font-size: 1.1rem;
  }

  .navbar-section a i {
    font-size: 1.4rem;
  }

  .navbar-section button i {
    font-size: 1.1rem;
  }

  .container1 {
    height: 500px;
  }
}

.navbar-section a {
  font-size: 18px;
  text-decoration: none;
  background-color: none;
  color: rgb(248, 246, 246);
  padding: 16px 50px 14.5px 50px;
  transition: all .3s;
  font-family: 'Roboto', sans-serif;
}

@media(max-width:820px) {
  .navbar-section a {
    font-size: 15px;
    padding: 16px 30px 13.5px 30px;
  }
}

.navbar-section a:hover {
  background: #c9acacc3;
  border-bottom: 3px solid rgba(155, 75, 75, 0.781);
  color: #ffffff;
  transition: 0.4s;
}

/* Styling for dropdown */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

.dropbtn {
  background-color: rgba(51, 51, 51, 0.8);
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(249, 249, 249, 0.8);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: fadeIn 0.5s ease-in-out;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s ease-in-out;
}

.dropdown-content a:hover {
  background-color: rgba(241, 241, 241, 0.9);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: rgba(62, 142, 65, 0.8);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-dropdown-content {
  display: none;  /* Hidden by default */
  background-color: #f1f1f1;
  position: relative;
  margin-left: 20px;
}

/* Only show sub-dropdown content when its toggle is clicked */
.sub-dropdown-toggle.active + .sub-dropdown-content {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




