html{
  scroll-behavior: smooth;

}
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-image: url('bg.svg');
  background-repeat: no-repeat;
  background-position: calc(50% - 0px) -50px; 
  width: 100%;
  height: 100vh; /* Makes sure the body covers the viewport */
  background-color: #04010e;
  background-attachment: fixed;
}


.body-fixing{
  margin-top: 250px;
}

/* Customize scrollbar for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;  /* Thin scrollbar */
}

::-webkit-scrollbar-track {
  background-color: #333;  /* Dark background for the scrollbar track */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #555;  /* Dark grey thumb */
  border-radius: 4px;
  border: 2px solid #333;  /* Border for thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888;  /* Lighter grey thumb on hover */
}




a,
a:hover,
a:active,
a:link,
a:visited {
  text-decoration: none !important;
  color: rgb(255, 255, 255);
}

select {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
}

select:focus {
  border: none;
  outline: none;
}
/* Remove default styling and add custom styles for option elements */
option {
  background-color: #ffffff;
  color: #333333;
  padding: 20px;
  border-radius: 10px;
  border: none;
  font-family: "Roboto", sans-serif;
}

/* Optional: Custom arrow styling */
select::after {
  content: "▼"; /* Unicode for downward arrow */
  font-size: 16px;
  color: #333;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Modal CSS */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* Centered */
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.modal-content.show {
  transform: translateY(0); /* Modal slides in */
}

.close {
  color: #000000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content label {
  margin: 10px 0 5px;
}

.modal-content input,
.modal-content select {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #d1d1d19e;
  font-family: "Roboto", sans-serif;
}

.modal-content button {
  padding: 15px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 4px; /* Rounded button */
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.modal-content button:hover {
  background-color: #fd3579;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;
}

/* Navbar Styles */
header {
  width: 85%;
  z-index: 1444 !important;
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
  position: fixed;
  max-width: 900px;
  top: 20px; /* Initial position from top */
  left: 50%;
  transform: translateX(-50%) translateY(0); /* Neutral position */
  transition: transform 1s ease-in-out, top 1s ease-in-out, bottom 1s ease-in-out;
}

/* When scrolled more than 200px */
header.hidden-bottom {
  top: unset; /* Reset top to allow bottom positioning */
  bottom: 20px; /* Move to bottom */
  transform: translateX(-50%) translateY(-20px); /* Slide upwards */
}

/* When user scrolls back to top */
header.hidden-top {
  top: 20px; /* Move back to top */
  bottom: unset; /* Reset bottom to allow top positioning */
  transform: translateX(-50%) translateY(20px); /* Slide downwards */
}


div.nav-wrap {
  padding: 15px 15px;
  background-color: #0f0f21db;
  backdrop-filter: blur(5px) brightness(0.8) !important;
  z-index: 2454545;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(0, 0, 0);
  margin: 0px auto;
  position: relative;
  width: 100%;
}

.logo img {
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  color: rgb(255 255 255);
  text-decoration: none;
  padding: 12px 10px;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
  color:black;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}
.loader {
  background: #000;
  box-shadow: 0 0 0 0 #0004;
  animation: l1 1s infinite;
}
@keyframes l1 {
  100% {
    box-shadow: 0 0 0 10px #0000;
  }
}

/* Mobile Nav Styles */
.mobile-nav {
  display: none;
  flex-direction: column;
  top: 60px;
  right: 0;
  width: 100%;
  z-index: 1;
}
.mobile-nav.show {
  display: flex;
}

.mobile-nav a {
  padding: 10px;
  margin: 2px 0px;
  color: rgb(255 255 255);
  text-decoration: none;
  display: block;
  border-radius: 10px;
}

.mobile-nav a:hover {
  background-color: #232323;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .mobile-nav.show {
    display: flex;
  }
}

@media (max-width: 480px) {
  .mobile-nav a {
    padding: 10px !important;
    color: rgb(255 255 255);
    text-decoration: none;
    display: block;
  }
}

.new-btn {
  background-color: #282e49!important;
  border-radius: 5px !important;
  color: white !important;
  padding: 14px 28px !important;
}

.loader {
  box-shadow: 0 0 0 0 #9f9fa644;
  animation: l1 1s infinite;
}
@keyframes l1 {
    100% {box-shadow: 0 0 0 8px #0000}
}

.new-btn:hover {
  background-color: #281b4f !important;
  color: rgb(255, 255, 255) !important;
}
.container {
  text-align: center;
}

.headline {
  margin-bottom: 20px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 36px); /* Responsive font size */
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 20px;
}


.headline-top {
  margin-bottom: 20px!important;
  color: white!important;
  text-align: center!important;
  margin-top: 100px!important;
  text-transform: uppercase!important;
  font-size: clamp(3em, 4vw, 45px)!important; /* Responsive font size */
  padding-left: 10%!important;
  padding-right: 10%!important;
}

.description{
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
  color:rgb(255, 255, 255);
  text-align: center;
  padding: 10px 25px;
  border-radius: 5px;
}


.description {
  position: relative;
  font-family: sans-serif;
  text-transform: uppercase;
  font-size: 2em;
  letter-spacing: 4px;
  overflow: hidden;
  background: linear-gradient(90deg, #000, #fff, #000);
  background-repeat: no-repeat;
  background-size: 80%;
  animation: animate 10s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}
.actions {
  margin-top: 20px;
  display: flex; /* Use flexbox for the container */
  justify-content: center; /* Center buttons horizontally */
}

.button {
  display: flex; /* Use flexbox for the button */
  align-items: center; /* Center items vertically */
  background-color: #6200ea; /* Purple button */
  color: #ffffff !important;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Transition for both background and transform */
  height: 50px; /* Set a fixed height for equal button heights */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  line-height: 1; /* Prevent line-height from affecting vertical alignment */
  /* Ensure button height consistency */
}

.button svg {
  margin-right: 8px; /* Space between the icon and text */
  height: 25px; /* Ensure SVG icon size is consistent */
  width: 25px;
}

.button-text {
  display: inline;
}

#view-pricing {
  background-color: white;
  color: black !important;
}
#get-started {
  background-color: #282e49;
  color: white;
}

.actions > a:first-child:hover {
  transform: translateY(-3px);
}

.actions > a:nth-child(2):hover {
  background-color: #ffffff !important;
  color: black !important;
  transform: translateY(-3px);
}

.video-wrapper {
  padding: 25px 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  margin: 0 auto;
  background-color: #ffffff05;
   margin-left: 15%;
  margin-right: 15%; 
  margin-top: 50px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%; /* Set a maximum width relative to the viewport */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  background: #000;
  overflow: hidden;
  border-radius: 8px; /* Optional: Add rounded corners for a more polished look */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional: Add responsiveness for very small screens */
@media (max-width: 980px) {
  .video-wrapper {
    padding: 10px; /* Adjust padding for very small screens if needed */
  }
}

.video-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.video-container-plyr {
  width: 20%;
}
.video-gallery {
  overflow: hidden;
  
}
.plyr:fullscreen video {
  height: 100%;
  margin: 0px auto;
}
@keyframes scroll-line1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-line2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}


.line-scroll {
  overflow-x: hidden; 
  scroll-behavior: smooth;
  cursor: grab; 
  white-space: nowrap; 
}

.line-scroll:active {
  cursor: grabbing;
}

#line1 {
  display: flex;
  animation: scroll-line1 20s linear infinite;
  cursor: grabbing;
}
#line2 {
  display: flex;
  animation: scroll-line2 20s linear infinite;
}

.video-slider {
  display: flex;
  width: 100%;
  align-items: center; 
  justify-content: space-around; 
  user-select: none;
}

.gallery-wrapper{
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px) 0 0,
  linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px) 0 0;
 background-size: 50px 50px; /* Grid cell size */
 padding: 20px 0px;
}

.plyr audio,
.plyr iframe,
.plyr video {
  display: block;
  height: 250px;
  width: auto;
  object-fit: cover;
}

.plyr {
  min-width: 100% !important;
  border-radius: 10px;
}
.video-slider-wrapper {
  padding: 10px 5px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plyr__control--overlaid {
  background: #1a1b25;
  border-radius: 50%;
  padding: 20px;
}

.plyr__control svg {
  fill: currentColor;
  display: block;
  height: 18px;
  height: var(--plyr-control-icon-size, 12px);
  pointer-events: none;
  width: 18px;
  width: var(--plyr-control-icon-size,12px);
}


.plyr__volume {
  align-items: center;
  display: none;
  position: relative;
}


.plyr:hover .plyr__volume {
          display: flex;
      }
.testimonials {
  display: flex;
  padding: 20px;
  border: 1px solid white;
  border-radius: 10px;
  margin: 10%;
  gap: 30px;
  flex-wrap: wrap;
}

.swiper-container {
  padding-bottom: 85px;
  padding-left: 40px;
  flex: 1;
}

.swiper {
  width: 200px;
  height: 270px;
  margin-right: 20px; /* Adds space between Swiper and details */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  overflow: hidden; /* Ensures video does not overflow the slide */
}

.next-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #00ff2a;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.next-button:hover {
  background-color: #ecff80;
}

.swiper-container .video-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding-bottom: none;
  height: 100%;
}

.custom-video {
  width: 100%;
  height: auto;
}

.playPauseBtn {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  font-size: 14px;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  flex: 3;
}

.video-details img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.video-details h2 {
  margin: 0 0 10px 0;
}

.video-details p {
  margin: 0 0 10px 0;
  font-size: 14px;
}
.button-controllers button {
  background-color: #333333;
  color: white;
  padding: 15px 19px;
  font-size: 27px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-controllers button:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}
.button-controllers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.pricing-cards {
  display: flex; /* Arrange cards in a row */
  gap: 50px; /* Spacing between cards */
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  align-items: center;
}

.service-cards {
  display: flex; /* Arrange cards in a row */
  gap: 20px; /* Spacing between cards */
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.card {
  background-color: #0f0f21; /* Background color of the card */
  border-radius: 10px!important; /* Rounded corners */
  padding: 20px;
  width: 300px; /* Width of each card */
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: rgb(53 54 145 / 10%); /* Semi-transparent background */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Soft shadow */
  backdrop-filter: blur(15px); /* Blur effect */
  -webkit-backdrop-filter: blur(15px); /* For Safari */
  /* border: 1px solid rgba(255, 255, 255, 0.2); Frosted border */
  color: #fff;
}

.card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.card-header-pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 10px 10px 0 0;
  padding: 40px 10px;
  position: relative!important;
}

.logo {
  font-size: 1.2em;
  font-weight: bold;
}

.tag {
  color: #ffffff;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}


@media screen and (max-width: 768px) {
  .advanced-card {
      min-width: 320px!important; 
  }
}



@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0px 5px 15px rgba(114, 35, 255, 0.5);
  }
  50% {
    box-shadow: 0px 10px 25px rgba(114, 35, 255, 0.8);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.video-slider-wrapper .plyr__controls {
  opacity: 0; /* Hide controls by default */
  visibility: hidden; /* Make them non-interactive */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

.video-slider-wrapper:hover .plyr__controls {
  opacity: 1; /* Show controls on hover */
  visibility: visible; /* Make them interactive */
}


.badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f5b82e; /* Yellow color */
  color: #5e3b3b;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: bold;
}

.card-body {
  flex-grow: 1; /* Allow body to take available space */
  text-align: left;
  margin-bottom: 20px;

}

.card-body h2 {
  font-size: 2em;
  margin: 20px 0;
  margin-top: 30px;
  text-transform: uppercase;
  font-weight: 800;
}

.card-body ul {
  list-style-type: none; /* Remove bullet points */
  padding: 0;
  line-height: 1.5;
  font-size: 20px;
}

.card-body ul li {
  margin-bottom: 10px; /* Space between list items */
}

.card-header-title{
  text-align: center;
}

.buy-now,.view-btn {
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 15px;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 0px 40px;
}
.buy-now:hover,.view-btn:hover {
  background-color: #d6d6d6; /* Button hover background color */
}


.wrapper-counter {
  position: relative;
  text-align: center;
}

.wrapper-counter svg {
  position: absolute;
  top: 17px; /* Adjust this value to be below the first span */
  left: 50%; /* Center horizontally based on its parent */
  transform: translateX(
    -50%
  ); /* Offset the element by half of its width to achieve centering */
}
.counter-section {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 50px auto;
  background: #0f0f21;
  width: 90%;
  border-radius: 10px;
  color: white !important;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1200px;
  background: rgb(53 54 145 / 10%); /* Semi-transparent background */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Soft shadow */
  backdrop-filter: blur(15px); /* Blur effect */
  -webkit-backdrop-filter: blur(15px); /* For Safari */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Frosted border */
  
}

.counter h2 {
  font-size: 3em;
  color: #ffffff;
}

.counter p {
  font-size: 1.2em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 19px;
  margin: 5px;
  border-radius: 5px;
}


.content{
  margin-top: -70px;
}



.button-container {
  text-align: center; /* Center the button */
  margin-top: 20px; /* Adjust spacing */
  margin-bottom: 50px;
}

.view-all-link {
  text-decoration: none; /* Remove underline */
}
.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #141531;
  color: white;
  font-size: 16px;
  padding: 16px 16px;
  border: 2px solid transparent;
  border-radius: 30px;
  cursor: pointer;
  animation: neonGlow 2s ease-in-out infinite;
  box-shadow: 0px 0px 8px rgba(0, 255, 255, 0.3); /* Reduced Neon glow */
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.5s ease, box-shadow 0.3s ease; /* Smooth scaling & glow */
  text-transform: uppercase; 
  margin: 20px;
}

.view-all-btn:hover {
  transform: scale(1.1); /* Smooth scale up */
  box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.5), 0px 0px 20px rgba(0, 255, 255, 0.4); /* Reduced enhanced glow */
}

.view-all-btn:active {
  transform: scale(0.95); /* Slight shrink on click */
  box-shadow: 0px 0px 6px rgba(0, 255, 255, 0.3);
}

@keyframes neonGlow {
  0%, 100% {
    box-shadow: 0px 0px 8px rgba(0, 255, 255, 0.3), 0px 0px 16px rgba(0, 255, 255, 0.2); /* Reduced spread */
  }
  50% {
    box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.5), 0px 0px 24px rgba(0, 255, 255, 0.3); /* Reduced peak spread */
  }
}

.view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent); /* Reduced brightness */
  animation: shine 2s infinite;
  z-index: -1;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 100%;
  }
}

.view-all-btn .text {
  margin-right: 8px;
  font-weight: bold;
  text-transform: uppercase;
}



@media screen and (max-width: 1100px) {
  #scrollTopBtn {
    bottom: 125px!important; 
  }
}


.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  margin: 0px auto;
}
.testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}
.slide p {
  text-align: center;
  padding: 0 160px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff;
}
.slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}
.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .name {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}
.details .job a {
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}
/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.2s;
}
.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #fff;
}
.swiper-pagination-bullet {
  background-color: rgb(255 255 255);
}
.swiper-pagination-bullet-active {
  background-color: #4070f4;
}
@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }
  .nav-btn {
    display: none;
  }
}



/* Modal CSS */
.modal {
  display: none; /* Initially hidden */
  position: fixed;
  z-index: 3333331;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.15); /* Darker background with high opacity */
  backdrop-filter: blur(6px); /* Slightly stronger blur effect */
}

.modal-content {
  background-color: white;
  color: #e0e0e0; /* Soft light text color for a premium feel */
  margin: 5% auto; /* Centered */
  padding: 25px;
  border: 1px solid #444; /* Darker border */
  width: 90%;
  max-width: 700px;
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8); /* Deeper shadow for premium effect */
  border-radius: 12px; /* Slightly more rounded corners */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease; /* Added transition for shadow */
}

.modal-content.show {
  transform: translateY(0); /* Modal slides in */
}

.close {
  color: #e0e0e0; /* Light color for close button */
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  background: none; /* No background */
  border: none; /* Remove border */
  transition: color 0.3s ease; /* Transition for color change */
}

.close:hover,
.close:focus {
  color: #c0c0c0; /* Slightly lighter color on hover */
  text-decoration: none;
}

.modal-content h2 {
  margin-top: 0;
  color: #000000; /* Lighter color for heading */
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content label {
  margin: 10px 0 5px;
  color: #b0b0b0; /* Light gray for labels */
}
.modal-content input,
.modal-content select {
  padding: 12px;
  margin-bottom: 15px;
  font-size: 1em;
  border-radius: 6px; /* Rounded edges for inputs */
  border: none; /* Dark border */
  background-color: #090712; /* Dark background for inputs */
  color: #edebeb; /* Light text color */
  font-family: 'Hind Siliguri', sans-serif;
}

.modal-content button {
  padding: 15px;
  background-color: #1f1353; /* Darker button background */
  color: #e0e0e0; /* Light text color */
  border: none;
  border-radius: 6px; /* Rounded button */
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Transition for hover effects */
}

.modal-content button:hover {
  background-color: #1a1c31; /* Slightly lighter on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.9); /* Deeper shadow on hover */
}





@property --angle {
  syntax: '<angle>';
  initial-value: 90deg;
  inherits: true;
}

@property --gradX {
  syntax: '<percentage>';
  initial-value: 50%;
  inherits: true;
}

@property --gradY {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: true;
}


:root {
	--d: 2500ms;
	--angle: 90deg;
	--gradX: 100%;
	--gradY: 50%;
	--c1: rgba(168, 239, 255, 1);
	--c2: rgba(255, 168, 172, 0);
}


.box {
	border: 0.15rem solid;
	border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
	animation: borderRotate var(--d) linear infinite forwards;
  position: relative;
}


@keyframes borderRotate {
	100% {
		--angle: 420deg;
	}
}

#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #2d2d49;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.5s ease;
  transform: rotate(180deg); /* Rotate 180° to change the direction */

}

#scrollIcon {
  transition: transform 0.5s ease;
}

#scrollTopBtn:hover {
  background-color: #080919;
}

.rotate-up {
  transform: rotate(180deg); /* Rotate 180° to change the direction */
}


.calendar-iframe {
  width: 100%;
  height: 650px; /* Adjust height as needed */
  border: none;
}










@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap");

body {

  color: #fff;
}

*,
*::before,
*::after {
  font-family: inherit;
  box-sizing: border-box;
}

.aura-content {
  text-align: center;
}

.aura-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1.75px;
  position: relative;
  overflow: hidden;
  color: white;
  margin: 0;
}

.aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: darken;
  pointer-events: none;
}

.aurora__item {
  overflow: hidden;
  position: absolute;
  width: 60vw;
  height: 60vw;
  background-color: #00c2ff; /* First color */
  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  filter: blur(1rem);
  mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
  top: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
  background-color: #ffc640; /* Second color */
  right: 0;
  top: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
  background-color: #33ff8c; /* Third color */
  left: 0;
  bottom: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
  background-color: #e54cff; /* Fourth color */
  right: 0;
  bottom: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
  0% {
    top: 0;
    right: 0;
  }

  50% {
    top: 100%;
    right: 75%;
  }

  75% {
    top: 100%;
    right: 25%;
  }

  100% {
    top: 0;
    right: 0;
  }
}

@keyframes aurora-2 {
  0% {
    top: -50%;
    left: 0%;
  }

  60% {
    top: 100%;
    left: 75%;
  }

  85% {
    top: 100%;
    left: 25%;
  }

  100% {
    top: -50%;
    left: 0%;
  }
}

@keyframes aurora-3 {
  0% {
    bottom: 0;
    left: 0;
  }

  40% {
    bottom: 100%;
    left: 75%;
  }

  65% {
    bottom: 40%;
    left: 50%;
  }

  100% {
    bottom: 0;
    left: 0;
  }
}

@keyframes aurora-4 {
  0% {
    bottom: -50%;
    right: 0;
  }

  50% {
    bottom: 0%;
    right: 40%;
  }

  90% {
    bottom: 50%;
    right: 25%;
  }

  100% {
    bottom: -50%;
    right: 0;
  }
}

@keyframes aurora-border {
  0% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }

  25% {
    border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
  }

  50% {
    border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
  }

  75% {
    border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
  }

  100% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }
}



@keyframes lights {
  0% {
    color: hsl(230, 40%, 80%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2),
      0 0 0.125em hsla(320, 100%, 60%, 0.3),
      -1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
      1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
  
  30% { 
    color: hsl(230, 80%, 90%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 60%, 0.5),
      -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
      0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }
  
  40% { 
    color: hsl(230, 100%, 95%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 90%, 0.5),
      -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2),
      0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
  }
  
  70% {
    color: hsl(230, 80%, 90%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 60%, 0.5),
      0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
      -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }
  
  100% {
    color: hsl(230, 40%, 80%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2),
      0 0 0.125em hsla(320, 100%, 60%, 0.3),
      1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
      -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
  
}


.counter1 {
  margin: auto;
  font-size: 3.5rem;
  font-weight: 600;
  animation: lights 5s 750ms linear infinite;
}





.advanced-text {
  font-size: 3vw;
  color: #ffffff;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: anim 8s linear infinite;
}

.advanced-card {

  background-color: #100a36 !important;
 
}

.advanced-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  z-index: -1;
  animation: anim 8s linear infinite;
  border-radius: 15px;
}

.advanced-card::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  z-index: -2;
  animation: anim 8s linear infinite;
  border-radius: 15px;
  filter: blur(0.6rem); /* Reduced blur for less glow */
}

@keyframes anim {
  from {background-position: 0;}
  to {background-position: 400%;}
}



.speech-bubble {
  position: relative;
  display: inline-block;
  position: absolute;
  top: 45px;
}



.speech-bubble img{
height: 75px;
}



