@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a1a;
  scroll-behavior: smooth;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(90deg, #8B5CF6, #D946EF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating HI Animation */
body::before {
  content: "HI";
  position: fixed;
  font-size: 40rem;
  font-weight: bold;
  opacity: 0.02;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: linear-gradient(90deg, #8B5CF6, #D946EF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
}
/* Hero Image Tilt Effect */
.hero-image {
  transform: perspective(1000px) rotateY(15deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.animated-bg::before,
.animated-bg::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(90deg, #8B5CF6, #D946EF);
  opacity: 0.1;
  filter: blur(60px);
  animation: blob 15s infinite;
}

.animated-bg::before {
  top: 20%;
  left: 20%;
  animation-delay: -5s;
}

.animated-bg::after {
  bottom: 20%;
  right: 20%;
}

@keyframes blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
/* Fade In Animation for Content */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.ticker {
  display: flex;
  white-space: nowrap;
}

.ticker-content {
  display: flex;
  align-items: center;
  animation: ticker 20s linear infinite;
  padding-right: 50px;
}

.ticker-content span {
  color: white;
  padding: 0 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.ticker-content .star {
  color: white;
  opacity: 0.5;
  font-size: 0.8em;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Optional: Pause animation on hover */
.ticker:hover .ticker-content {
  animation-play-state: paused;
}

.about-sec {
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.05), rgba(217, 70, 239, 0.05));
  /* Keyframes for background animation */
  /* Apply background animation */
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.about-sec .absolute {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
@keyframes fillCircle {
  from {
    stroke-dasharray: 0, 100;
  }
  to {
    stroke-dasharray: var(--progress), 100;
  }
}
.about-sec .animate-progress {
  animation: fillCircle 2s ease-in-out forwards;
}
.about-sec .circle-progress {
  position: relative;
  width: 150px;
  height: 150px;
}
.about-sec .circle-progress canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.about-sec .circle-progress .percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.about-sec .percentage span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.about-sec .percentage p {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

.experience-education {
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.05), rgba(217, 70, 239, 0.05));
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 50%;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100%;
  }
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background-color: #111827;
  color: #F9FAFB;
}

.contact-section {
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}

.title {
  margin-bottom: 2rem;
}
.title h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.title h1 .gradient-text {
  background: linear-gradient(to right, #6B46C1, #3B82F6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.title p {
  color: #9CA3AF;
  opacity: 0.85;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-box {
  background: rgba(31, 41, 55, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group .form-input {
  width: 100%;
  padding: 0.75rem;
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 0.5rem;
  color: #F9FAFB;
  transition: border-color 0.3s ease;
}
.form-group .form-input:focus {
  outline: none;
  border-color: #6B46C1;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #6B46C1, #3B82F6);
  color: #F9FAFB;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.submit-btn:hover {
  opacity: 0.9;
}

.info-box {
  background: rgba(31, 41, 55, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.5rem;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.availability {
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-details a {
  color: #F9FAFB;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-details a:hover {
  color: #6B46C1;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links .social-icon {
  color: #9CA3AF;
  transition: color 0.3s ease;
}
.social-links .social-icon:hover {
  color: #6B46C1;
}
.social-links .social-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer {
  background-color: #111827;
  color: #374151;
  position: relative;
  overflow: hidden;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer__top {
  padding: 5rem 0 3rem;
  position: relative;
}
.footer__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 70, 193, 0.3), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer__brand .brand-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__brand .brand-logo .dot {
  color: #6B46C1;
}
.footer__brand .brand-description {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer .social-links {
  display: flex;
  gap: 1rem;
}
.footer .social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: "all .3s linear";
}
.footer .social-links .social-link:hover {
  color: #6B46C1;
  transform: translateY(-2px);
}
.footer .social-links .social-link:hover {
  background: #6B46C1;
  color: white;
}
.footer__links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer__links h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 2px;
  background-color: #6B46C1;
}
.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links ul li {
  margin-bottom: 0.75rem;
}
.footer__links .hover-link {
  color: #374151;
  text-decoration: none;
  display: inline-block;
  transition: "all .3s linear";
}
.footer__links .hover-link:hover {
  color: #6B46C1;
  transform: translateY(-2px);
}
.footer__newsletter h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__newsletter p {
  color: #374151;
  margin-bottom: 1.5rem;
}
.footer__newsletter .input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #374151;
  transition: "all .3s linear";
}
.footer__newsletter .input-group:focus-within {
  border-color: #6B46C1;
}
.footer__newsletter .input-group input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: #374151;
}
.footer__newsletter .input-group input::-moz-placeholder {
  color: #374151;
}
.footer__newsletter .input-group input::placeholder {
  color: #374151;
}
.footer__newsletter .input-group input:focus {
  outline: none;
}
.footer__newsletter .input-group button {
  padding: 0.75rem 1.5rem;
  background: #6B46C1;
  border: none;
  color: white;
  cursor: pointer;
  transition: "all .3s linear";
}
.footer__newsletter .input-group button:hover {
  background: #55359f;
}
.footer__bottom {
  background-color: #374151;
  padding: 1.5rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom .copyright {
  color: #374151;
  font-size: 0.9rem;
}
.footer__bottom .footer__links-bottom {
  display: flex;
  gap: 2rem;
}
.footer__bottom .footer__links-bottom a {
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
  transition: "all .3s linear";
}
.footer__bottom .footer__links-bottom a:hover {
  color: #6B46C1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }
  .footer__bottom .container .footer__links-bottom {
    justify-content: center;
  }
}
/*
    Loading 
*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.preloader .loader {
  position: relative;
  width: 200px;
  height: 200px;
}
.preloader .logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  color: white;
  opacity: 0;
}
.preloader .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: rotate 2s infinite linear;
}
.preloader .circle-outer {
  border-top-color: #814cec;
  animation-duration: 2s;
}
.preloader .circle-middle {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: #6c3ce9;
  animation-duration: 1.8s;
  animation-direction: reverse;
}
.preloader .circle-inner {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-top-color: #5832e6;
  animation-duration: 1.6s;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.preloader .counter {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
}
.preloader .progress-bar {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader .progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #814cec, #6c3ce9);
  transition: width 0.2s ease;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes float-delayed {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes tilt {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}
.animate-tilt {
  animation: tilt 10s infinite linear;
}

/* Message container */
.message-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  min-width: 300px;
}

/* Alert styles */
.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.alert.show {
  opacity: 1;
  transform: translateX(0);
}

.alert-success {
  background-color: #34D399;
  color: white;
  border-left: 4px solid #059669;
}

.alert-error {
  background-color: #F87171;
  color: white;
  border-left: 4px solid #DC2626;
}

/* Icon styles */
.alert-icon {
  width: 24px;
  height: 24px;
}

.success-icon {
  fill: white;
}

.error-icon {
  fill: white;
}

/* Form loading state */
.submit-btn.sending {
  position: relative;
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn.sending::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
/* Testimonial Swiper Styles */
.testimonialSwiper {
  width: 100%;
  padding-bottom: 60px;
  position: relative;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #814cec;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
  background: #6136b3;
  transform: scale(1.05);
}

.testimonialSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #814cec;
  opacity: 0.5;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #814cec;
}

.testimonialSwiper .swiper-slide {
  height: auto;
  transition: transform 0.3s ease;
}

/* Add hover effect to testimonial cards */
.testimonialSwiper .swiper-slide:hover .bg-\[\#814cec\]\/10 {
  background-color: rgba(129, 76, 236, 0.15);
}

@media screen and (max-width: 780px) {
  .hero {
    padding-bottom: 30px !important;
    padding-top: 50px !important;
  }
}/*# sourceMappingURL=main.css.map */