/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Global Animations */
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDelay {
    0%,
    30% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes radialExpand {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes slideInStagger {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
  }
  
  .animate-fade-in-delay {
    animation: fadeInDelay 1.5s ease-out forwards;
  }

  /* Hero Section Styles */
  .hero-section {
    position: relative;
    width: 100%;
    z-index: 1;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .hero-section.hide {
    opacity: 0;
    transform: translateY(-50px) scale(0.98);
    pointer-events: none;
  }

  .hero-bg img {
    transition: transform 0.5s ease-out;
  }

  .hero-section.hide .hero-bg img {
    transform: scale(1.05);
  }

  /* Content wrapper - follows hero naturally */
  .content-wrapper {
    position: relative;
    z-index: 10;
  }

  /* Scroll Reveal Animations */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
  }

  .scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation for children */
  .scroll-reveal.active > * {
    animation: fadeIn 0.8s ease-out forwards;
  }

  .scroll-reveal.active > *:nth-child(1) {
    animation-delay: 0.1s;
  }

  .scroll-reveal.active > *:nth-child(2) {
    animation-delay: 0.2s;
  }

  .scroll-reveal.active > *:nth-child(3) {
    animation-delay: 0.3s;
  }

  .scroll-reveal.active > *:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  /* Navbar Glassmorphism */
  .navbar {
    padding: 1.5rem 0;
    backdrop-filter: blur(0px);
    background: transparent;
  }
  
  .navbar.scrolled {
    padding: 0.75rem 0;
    backdrop-filter: blur(20px);
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
      0 0 20px 0 rgba(168, 85, 247, 0.1);
  }
  
  .navbar-container {
    transition: all 0.3s ease;
  }
  
  /* Logo */
  .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(
      135deg,
      rgba(168, 85, 247, 0.8),
      rgba(59, 130, 246, 0.8)
    );
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled .logo-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .navbar.scrolled .logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .logo-text {
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled .logo-text {
    font-size: 1.125rem;
  }
  
  /* Navigation Links */
  .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: inline-block;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
  }
  
  .nav-link:hover {
    color: rgba(255, 255, 255, 1);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  /* Liquid Ink Bar Effect */
  .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(168, 85, 247, 0.3);
    transform: translateX(-50%);
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(2px);
    border-radius: 2px;
  }
  
  .nav-link:hover::before {
    width: 120%;
  }
  
  /* CTA Button */
  .cta-button {
    position: relative;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    color: white;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .navbar.scrolled .cta-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
  }
  

  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn:hover .hamburger-line {
    background: linear-gradient(90deg, #a855f7, #3b82f6);
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(0.5rem);
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-0.5rem);
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(88, 28, 135, 0.15), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(25px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
  }
  
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu-content {
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1rem 2rem;
    min-height: 100vh;
  }
  
  .mobile-menu.active .mobile-menu-content {
    transform: scale(1);
    opacity: 1;
  }
  
  .close-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    padding: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 101;
  }
  
  .close-btn:hover {
    transform: rotate(90deg);
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
  }
  
  .mobile-menu.active .close-btn {
    opacity: 1;
  }
  
  /* Mobile Navigation List */
  .mobile-nav-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
  }
  
  .mobile-nav-item {
    opacity: 0;
    transform: translateY(30px);
    margin: 0.75rem 0;
  }
  
  .mobile-menu.active .mobile-nav-item {
    animation: mobileSlideIn 0.5s ease forwards;
  }

  @keyframes mobileSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mobile-menu.active .mobile-nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .mobile-menu.active .mobile-nav-item:nth-child(2) {
    animation-delay: 0.15s;
  }
  
  .mobile-menu.active .mobile-nav-item:nth-child(3) {
    animation-delay: 0.2s;
  }
  
  .mobile-menu.active .mobile-nav-item:nth-child(4) {
    animation-delay: 0.25s;
  }
  
  .mobile-menu.active .mobile-nav-item:nth-child(5) {
    animation-delay: 0.3s;
  }
  
  .mobile-menu.active .mobile-nav-item:nth-child(6) {
    animation-delay: 0.35s;
  }
  
  .mobile-nav-link {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
  }
  
  .mobile-nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    color: white;
    transform: scale(1.02);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
  }
  
  .mobile-nav-link:hover::before,
  .mobile-nav-link:active::before {
    opacity: 1;
  }
  
  .mobile-cta-button {
    padding: 1.125rem 3rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
    width: 100%;
    max-width: 280px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }
  
  .mobile-cta-button:hover,
  .mobile-cta-button:active {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .navbar {
      padding: 1rem 0;
    }
  
    .navbar.scrolled {
      padding: 0.75rem 0;
    }
  }
  
  /* Desktop Dropdown Styles */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-content {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.75rem;
  min-width: 280px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(168, 85, 247, 0.15);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
}

.dropdown-item:hover::before {
  opacity: 1;
}

.dropdown-item:hover {
  color: white;
  transform: translateX(5px);
}

.dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.dropdown-item:hover .dropdown-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), rgba(59, 130, 246, 0.6));
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  position: relative;
  z-index: 1;
}

.dropdown-title {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dropdown-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.mobile-dropdown-arrow {
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-dropdown.active .mobile-dropdown-toggle {
  color: #a855f7;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.4s ease,
              opacity 0.3s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  text-align: center;
  padding: 0 0.5rem;
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.8) 0%, rgba(59, 130, 246, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.5);
  background: linear-gradient(135deg, rgba(168, 85, 247, 1) 0%, rgba(59, 130, 246, 1) 100%);
}

.scroll-top-btn:active {
  transform: translateY(-2px);
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-top-btn svg {
    width: 20px;
    height: 20px;
  }
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 250px;
  padding: 1rem 0.5rem;
  opacity: 1;
}

.mobile-dropdown-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.mobile-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #a855f7, #3b82f6);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-dropdown-item:hover::before,
.mobile-dropdown-item:active::before {
  transform: scaleY(1);
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  color: white;
  transform: translateX(5px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.25);
}

/* Contact Page Styles */
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), rgba(59, 130, 246, 0.6));
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
}

.contact-card-icon svg {
  color: white;
}

.contact-card-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-card-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(168, 85, 247, 0.9);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.contact-card-link:hover {
  color: #a855f7;
  text-decoration: underline;
}

.contact-card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.contact-card-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

select.form-input {
  cursor: pointer;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  position: relative;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.form-submit-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.form-submit-btn:hover .form-submit-shine {
  left: 100%;
}

/* Map Section */
.map-wrapper {
  position: relative;
  height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(88, 28, 135, 0.9));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-overlay-content {
  padding: 2rem;
}

.map-overlay-content svg {
  margin: 0 auto 1rem;
  color: #a855f7;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

/* About Page Styles */
.about-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 1.5rem;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.about-card:hover .about-card-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), rgba(59, 130, 246, 0.6));
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
  transform: scale(1.1);
}

.about-card-icon svg {
  color: white;
}

.about-card h2,
.about-card p {
  position: relative;
  z-index: 1;
}

/* Stats Section */
.stats-section {
  margin-top: 4rem;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats-section {
    padding: 3rem;
  }
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(59, 130, 246, 0.05));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .stats-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-card {
  text-align: center;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .stat-card {
    padding: 1.25rem;
  }
}

@media (min-width: 768px) {
  .stat-card {
    padding: 1.5rem;
  }
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 0.9375rem;
  }
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 1rem;
  }
}

/* Footer Styles */
.footer-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(7, 11, 21, 0.98));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.footer-container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.8), rgba(59, 130, 246, 0.8));
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: rgba(168, 85, 247, 0.8);
}

.footer-contact-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer Headings */
.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 1rem;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background: rgba(168, 85, 247, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-link:hover::before {
  background: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

/* Footer Social */
.footer-social-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  color: white;
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link svg {
  position: relative;
  z-index: 1;
}

/* Copyright Section */
.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.footer-copyright-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright-content {
    flex-direction: row;
    text-align: left;
  }
}

.footer-copyright-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-copyright-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-copyright-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-copyright-link:hover {
  color: rgba(168, 85, 247, 0.9);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
}

/* Smooth Scroll */
  html {
    scroll-behavior: smooth;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #0f172a;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #a855f7, #3b82f6);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9333ea, #2563eb);
  }

  /* Project Card Styles */
.project-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
}

.project-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image-placeholder {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(59, 130, 246, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-view-text {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.project-card:hover .project-view-text {
  transform: translateY(0);
}

.project-content {
  padding: 1.5rem;
}

.project-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 9999px;
  color: #a855f7;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.project-card:hover .project-title {
  color: #a855f7;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.project-location svg {
  color: #a855f7;
}

.project-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Stats Cards */
.stats-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.stats-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stats-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* CTA Box */
.cta-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem 2rem;
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  color: white;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a855f7;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Ongoing Project Styles */
.ongoing-project-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.ongoing-project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 165, 0, 0.5);
  box-shadow: 0 20px 60px rgba(255, 165, 0, 0.3);
}

.project-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.9), rgba(255, 140, 0, 0.9));
  border-radius: 9999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.progress-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.9), rgba(59, 130, 246, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ongoing-project-card:hover .progress-overlay {
  opacity: 1;
}

.progress-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-text {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.project-progress {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff8c00, #ffa500);
  border-radius: 9999px;
  transition: width 1s ease;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.progress-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Timeline Styles */
.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.5), rgba(255, 255, 255, 0.1));
}

.timeline-marker {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timeline-marker.completed {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.timeline-marker.active {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  border-color: #ffa500;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-marker.upcoming {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.timeline-content {
  text-align: center;
}

.timeline-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .stats-value {
    font-size: 2rem;
  }
  
  .project-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .timeline-container {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-item::after {
    display: none;
  }
}

/* Animated Background for About Section */
.about-bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.floating-icon {
  position: absolute;
  color: rgba(168, 85, 247, 0.8);
  animation: float 20s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.floating-icon:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 14s;
}

.floating-icon:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
  animation-duration: 13s;
}

.floating-icon:nth-child(4) {
  top: 60%;
  right: 5%;
  animation-delay: 6s;
  animation-duration: 15s;
}

.floating-icon:nth-child(5) {
  bottom: 30%;
  right: 20%;
  animation-delay: 8s;
  animation-duration: 16s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(5deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-60px) translateX(-15px) rotate(-5deg);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-30px) translateX(-30px) rotate(3deg);
    opacity: 0.8;
  }
}
  