* {
  padding: 0;
  margin: 0;
}

a {
  color: #fff !important;
  text-decoration: none !important;
}

body {
  font-family: "Montserrat", sans-serif !important;
}

html {
  scroll-behavior: smooth; /* smooth scrolling */
}

section,
.about-section,
.services-section,
.portfolio-section,
.contact-section {
  scroll-margin-top: 150px; /* adjust to your navbar height */
}

/* CSS */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(45deg, #8400ff, #7a00ff, rgba(187, 164, 182, 0.5058823529));
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.button-85:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

header {
  position: fixed;
  width: 100%;
  background-color: #000;
  z-index: 99999;
}
header .navbar-light .navbar-nav .nav-link {
  color: #fff;
}
header .navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}
header .active {
  color: #fff;
}
header .navbar .nav-link {
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}
header .navbar .nav-link:focus {
  color: #fff !important;
}
header .navbar .nav-link:hover,
header .navbar .nav-link.active {
  background: rgba(68, 0, 255, 0.4784313725);
  color: #fff;
  box-shadow: rgba(98, 3, 187, 0.25) 0px -7px 55px, rgba(90, 13, 179, 0.12) 0px -12px 30px, rgba(147, 31, 243, 0.12) 0px 4px 6px, rgba(87, 6, 218, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
header .navbar {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: rgba(44, 44, 44, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  z-index: 99999 !important;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  padding: 0px;
  border-radius: 10px;
}

.hero-section {
  background: radial-gradient(circle, rgba(5, 2, 2, 0.23) 0%, rgba(170, 70, 252, 0.22) 100%);
  padding: 10% 7%;
}
.hero-section img {
  border-radius: 20px;
}
.hero-section span {
  font-family: "Playfair Display", sans-serif !important;
  color: #bfbfbf;
  font-size: 2.5rem;
  font-weight: 400;
  margin-top: 5%;
}
.hero-section span::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 40px;
  background-color: #fff;
  margin-bottom: 3%;
}
.hero-section h1 {
  font-family: "Playfair Display", sans-serif !important;
  font-size: 9.5rem;
  font-weight: 500;
  color: #fff;
  padding-left: 15%;
  padding-top: 10%;
  position: relative;
  z-index: 999;
  letter-spacing: 8px;
}
.hero-section button {
  margin-left: 17%;
  margin-top: 10%;
}
.hero-section p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
  padding-top: 30px;
}

.about-section h2 {
  color: #fff;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}
.about-section p {
  color: #ddd;
}
.about-section .card {
  transition: all 0.3s ease;
  background-color: rgba(134, 9, 229, 0.231372549);
  cursor: pointer;
}
.about-section .card h5 {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
}
.about-section .card p {
  font-size: 16px;
  color: #ddd;
}
.about-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.about-section .icon-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #ddd;
  color: #7d3cff;
  border-radius: 10px;
}

.video-section {
  position: relative;
  background: radial-gradient(circle, rgba(5, 2, 2, 0.4) 0%, rgba(170, 70, 252, 0.3) 100%);
  border-radius: 30px;
  padding: 2%;
  margin: 3%;
  animation-delay: 0.6s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}
.video-section h2 {
  color: #fff;
  font-weight: 600;
  line-height: inherit;
  font-size: 3.2rem;
}
.video-section p {
  font-size: 16px;
  color: #ddd;
}
.video-section .video {
  border-radius: 20px;
}

.services-section h2 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.services-section .para {
  color: #ddd;
  font-size: 1.1rem;
}
.services-section section {
  width: 100%;
  display: grid;
  place-items: center;
}
.services-section .row {
  display: flex;
  flex-wrap: wrap;
}
.services-section .column {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}
.services-section .card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(rgba(124, 38, 236, 0.1803921569) 50%, rgba(111, 22, 170, 0.3568627451) 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}
.services-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 1em 0;
}
.services-section p {
  color: lightgray;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.services-section .icon-wrapper {
  background-color: rgba(111, 22, 170, 0.3568627451);
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.services-section .card:hover {
  background-position: 0 100%;
}
.services-section .card:hover .icon-wrapper {
  background-color: #ffffff;
  color: rgba(111, 22, 170, 0.3568627451);
}
.services-section .card:hover h3 {
  color: #ffffff;
}
.services-section .card:hover p {
  color: #f0f0f0;
}
@media screen and (min-width: 768px) {
  .services-section section {
    padding: 0 2em;
  }
  .services-section .column {
    flex: 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .services-section section {
    padding: 1em 3em;
  }
  .services-section .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.core-values {
  /* wrapper for scrolling effect */
}
.core-values h2 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.core-values .para {
  color: #ddd;
  font-size: 1.1rem;
}
.core-values img {
  border-radius: 20px;
}
.core-values .card {
  background-color: transparent;
  border: 1px solid rgba(221, 221, 221, 0.368627451);
  padding: 15px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}
.core-values .card h4 {
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
}
.core-values .card p {
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #ddd;
  margin-bottom: 0px;
}
.core-values .card:hover {
  border: 1px solid #6403b3;
}
.core-values .height-area {
  height: 500px; /* adjust height */
  overflow: hidden;
  position: relative;
}
.core-values .height-area .card {
  margin-bottom: 20px;
}
.core-values .scroll-container {
  display: flex;
  flex-direction: column;
  animation: scroll-up 10s linear infinite;
}
.core-values .height-area:hover .scroll-container {
  animation-play-state: paused; /* pause on hover */
}
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* adjust according to content */
  }
}

.portfolio-section .tab-wrapper {
  width: 100%;
}
.portfolio-section h2 {
  color: #fff;
  font-weight: 600;
  line-height: inherit;
  font-size: 3.2rem;
  text-align: center;
}
.portfolio-section .tabs {
  text-align: center;
  gap: 10px;
  margin-bottom: 20px;
}
.portfolio-section img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}
.portfolio-section img:hover {
  transform: scale(1.1);
  transition: 0.7s;
}
.portfolio-section .tab {
  flex: 1;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(238, 238, 238, 0.1725490196);
  color: #eee;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  width: 190px;
}
.portfolio-section .tab.active {
  background: rgba(68, 0, 255, 0.4784313725);
  color: #fff;
  box-shadow: rgba(98, 3, 187, 0.25) 0px -7px 55px, rgba(90, 13, 179, 0.12) 0px -12px 30px, rgba(147, 31, 243, 0.12) 0px 4px 6px, rgba(87, 6, 218, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.portfolio-section .tab:hover {
  box-shadow: rgba(98, 3, 187, 0.25) 0px -7px 55px, rgba(90, 13, 179, 0.12) 0px -12px 30px, rgba(147, 31, 243, 0.12) 0px 4px 6px, rgba(87, 6, 218, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.portfolio-section .tab-content {
  padding: 20px;
  border-radius: 6px;
}

.contact-section {
  /* Floating labels effect */
}
.contact-section h2 {
  font-size: 26px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 25px;
}
.contact-section .form-area {
  background: #333;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  max-width: 750px;
  width: 100%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
}
.contact-section .form-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c0ada, #6403b3, #7f03e6);
  animation: shimmer 2s infinite;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.contact-section .form-group {
  margin-bottom: 15px;
  position: relative;
}
.contact-section .form-group.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-section label {
  display: block;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.contact-section input, .contact-section textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(229, 231, 235, 0.1843137255);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: transparent;
  transition: all 0.2s ease;
  outline: none;
}
.contact-section input:focus, .contact-section textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}
.contact-section input:hover, .contact-section textarea:hover {
  border-color: #d1d5db;
}
.contact-section textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Inter", sans-serif;
}
.contact-section .button-85 {
  margin: auto;
  display: flex;
  width: 215px;
  justify-content: center;
}
.contact-section .button-85::after {
  background-color: #6b09b3;
}
.contact-section .submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}
.contact-section .submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.contact-section .form-footer {
  margin-top: 24px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}
@media (max-width: 640px) {
  .contact-section .form-area {
    padding: 32px 24px;
    margin: 20px;
    border-radius: 20px;
  }
  .contact-section .title {
    font-size: 28px;
  }
  .contact-section .form-group.double {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-section .form-group.double .form-group {
    margin-bottom: 24px;
  }
}
.contact-section .floating-label {
  position: relative;
}
.contact-section .floating-label input,
.contact-section .floating-label textarea {
  padding-top: 24px;
  padding-bottom: 8px;
}
.contact-section .floating-label label {
  position: absolute;
  left: 20px;
  top: 16px;
  transition: all 0.2s ease;
  pointer-events: none;
  background: #333;
  padding: 0 4px;
  margin: 0;
}
.contact-section .floating-label input:not(:-moz-placeholder) + label, .contact-section .floating-label textarea:not(:-moz-placeholder) + label {
  transform: translateY(-24px) scale(0.85);
  color: #fff;
}
.contact-section .floating-label input:focus + label,
.contact-section .floating-label textarea:focus + label,
.contact-section .floating-label input:not(:placeholder-shown) + label,
.contact-section .floating-label textarea:not(:placeholder-shown) + label {
  transform: translateY(-24px) scale(0.85);
  color: #fff;
}

footer {
  padding-top: 5%;
  border-top: 1px solid rgba(221, 221, 221, 0.1803921569);
}
footer h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
}
footer p {
  color: rgba(221, 221, 221, 0.4862745098);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.6px;
}
footer .bottom-footer {
  padding-top: 3%;
}
footer .bottom-footer p {
  color: rgba(221, 221, 221, 0.4862745098);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-align: center;
}

#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background: #fff;
  color: #000;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  box-shadow: rgba(98, 3, 187, 0.61) 0px -7px 55px, rgba(90, 13, 179, 0.34) 0px -12px 30px, rgba(147, 31, 243, 0.12) 0px 4px 6px, rgba(87, 6, 218, 0.38) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: #000;
  color: #fff;
}

#popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* semi-transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#popupOverlay h2 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
}

#popupBox {
  background: #ddd;
  color: #333;
  border: 1px solid lightgray;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: rgba(98, 3, 187, 0.25) 0px -7px 55px, rgba(90, 13, 179, 0.12) 0px -12px 30px, rgba(147, 31, 243, 0.12) 0px 4px 6px, rgba(87, 6, 218, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.social-icon {
  display: flex;
  gap: 15px;
}
.social-icon i {
  font-size: 28px;
  color: #fff;
}/*# sourceMappingURL=styles.css.map */