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

/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
body {
  background-color: #000712;
  font-family: "Inter", sans-serif;
  backface-visibility: hidden;
}

section {
  overflow: hidden;
}

@media (min-width: 1850px) {
  .custom-container {
    max-width: 1700px;
  }
}

@media (min-width: 1700px) {
  .custom-container {
    max-width: 1600px;
  }
}

@media (min-width: 1600px) {
  .custom-container {
    max-width: 1500px;
  }
}

@media (min-width: 1500px) {
  .custom-container {
    max-width: 1400px;
  }
}

/* Loader Wrapper Fullscreen */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Loader Container */
.loader-container {
  text-align: center;
}

/* Logo */
.loader-logo {
  margin-bottom: 15px;
}

.loader-logo img {
  height: 43px;
  width: auto;
  filter: grayscale(1);
}

/* Tagline */
.tagline {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: #dcdcdc;
  margin-bottom: 20px;
}

/* Loader Bar */
.loader-bar {
  width: 300px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

/* Filling Effect */
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4fc3f7, #00e5ff);
  box-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff;
  border-radius: 3px;
  animation: fillBar 3s ease-in-out forwards;
}

/* Fill Animation */
@keyframes fillBar {
  0% {
    width: 0%;
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

/* Hide loader when done */
.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Show page content */
.content {
  display: none;
  text-align: center;
  padding: 50px;
}

.content.show {
  display: block;
}

/* Loader Bar */
.loader-bar {
  width: 300px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

/* Filling Effect with Glow */
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.9) 0%, rgba(79, 195, 247, 0.8) 40%, rgba(0, 229, 255, 0.2) 100%);
  border-radius: 3px;
  position: relative;
  animation: fillBar 3s ease-in-out forwards;
}

/* Glowing "dot" at leading edge */
.loader-fill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: #00e5ff;
  border-radius: 50%;
  filter: blur(8px);
  box-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff, 0 0 40px #00e5ff;
}

.common-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -1.2px;
  color: #fff;
}

@media (max-width: 1679px) {
  .common-title {
    font-size: 44px;
    line-height: 48px;
  }
}

@media (max-width: 1441px) {
  .common-title {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 1199px) {
  .common-title {
    font-size: 36px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .common-title {
    font-size: 30px;
    line-height: 34px;
  }
}

@media (max-width: 767px) {
  .common-title {
    font-size: 26px;
    line-height: 30px;
  }
}

@media (max-width: 579px) {
  .common-title {
    font-size: 24px;
    line-height: 28px;
  }
}

.common-title span {
  background: linear-gradient(90deg, #0A65B0 0%, #0CC7F6 40.87%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.common-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  text-align: center;
}

@media (max-width: 1679px) {
  .common-desc {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 1199px) {
  .common-desc {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .common-desc {
    font-size: 13px;
    line-height: 21px;
  }
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #eee;
}
.btn-secondary:hover {
  background-color: transparent;
  border: 1px solid #eee;
}
.animated-btn {
  background: linear-gradient(90deg, #0A65B0 0%, #0A65B0 40.87%);
}


#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 8px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1843137255);
  animation: animate-pulse 3s linear infinite;
}

#scrollTopBtn img {
  max-width: 15px;
}

@media (max-width: 1679px) {
  #scrollTopBtn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 1441px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 579px) {
  #scrollTopBtn {
    display: none;
  }
}

#scrollTopBtn:hover {
  background-color: #2F30F2;
  border-color: #2F30F2;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(12, 199, 246, 0.4), 0 0 0 0 rgba(12, 199, 246, 0.4);
  }

  40% {
    box-shadow: 0 0 0 50px rgba(12, 199, 246, 0), 0 0 0 0 rgba(12, 199, 246, 0.4);
  }

  80% {
    box-shadow: 0 0 0 50px rgba(12, 199, 246, 0), 0 0 0 30px rgba(12, 199, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(12, 199, 246, 0), 0 0 0 30px rgba(12, 199, 246, 0);
  }
}

.dropdown-menu {
  background-color: #000712;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  text-align: left;
  line-height: 18px;
  color: #fff;
}

@media (max-width: 579px) {
  .dropdown-menu .dropdown-item {
    font-size: 13px;
  }
}

/*# sourceMappingURL=common.css.map */







