/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* About Us Section */
.about-us {
  margin-top: 100px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.about-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e91e63, #ff4081);
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: translateY(-10px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(255, 64, 129, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-btn {
  background: linear-gradient(135deg, #e91e63, #ff4081);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #e91e63, #ff4081);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #e91e63, #ff4081);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(255, 64, 129, 0.1));
  transition: all 0.3s ease;
  position: relative;
}

.icon-wrapper {
  position: relative;
  display: inline-block;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #e91e63, #ff4081);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 40px;
  background: linear-gradient(45deg, #e91e63, #ff4081);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #e91e63, #ff4081);
  transform: scale(1.1);
}

.feature-card:hover .icon-bg {
  opacity: 0.25;
  transform: translate(-50%, -50%) scale(1.1);
}

.feature-card:hover .feature-icon i {
  background: linear-gradient(45deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.2);
}

.feature-card:hover .feature-icon img {
  filter: brightness(0) invert(1);
  transform: scale(1.2);
}

.feature-card h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Digital Assets Pack Section */
.digital-assets {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.assets-content {
  margin: 3rem 0;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.asset-feature {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.asset-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.asset-feature i {
  font-size: 2.5rem;
  color: #e91e63;
  background: linear-gradient(135deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
}

.feature-text h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #666;
  line-height: 1.6;
}

.investment-section {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
}

.investment-section h3 {
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.investment-section p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section {
  background: linear-gradient(135deg, #e91e63, #f06292);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
}

.cta-section h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.thank-you {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 2rem !important;
}

.cta-button {
  background: #fff;
  color: #e91e63;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

/* Responsive Design for Digital Assets Section */
@media (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .asset-feature {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .investment-section {
    padding: 2rem;
  }

  .investment-section h3 {
    font-size: 1.8rem;
  }

  .cta-section {
    padding: 2rem;
  }

  .cta-section h3 {
    font-size: 1.8rem;
  }
}

/* Footer */
.footer {
  background-color: #E7E4F8;
  padding: 50px 0 0;
  width: 100%;
  margin-top: 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 32px;
  color: #0D0E43;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 22px;
  color: #0D0E43;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info h4 {
  font-size: 18px;
  color: #0D0E43;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info p {
  color: #8A8FB9;
  line-height: 1.8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #FB2E86;
  width: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #8A8FB9;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  line-height: 1.6;
}

.footer-section ul li a:hover {
  color: #FB2E86;
}

.footer-bottom {
  width: 100%;
  background-color: #E7E4F8;
  border-top: 1px solid #C7C8D3;
  padding: 20px 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #9DA0AE;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  background-color: #FB2E86;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #0D0E43;
  transform: translateY(-2px);
}

.footer-powered {
  background-color: #000000;
  width: 100%;
  padding: 12px 0;
  text-align: center;
}

.footer-powered p {
  color: #FFFFFF;
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  border-radius: 4px;
}

.footer-powered strong {
  color: #FB2E86;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: #e91e63;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #e91e63;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .about-content {
    gap: 3rem;
  }

  .page-title {
    font-size: 3rem;
  }

  .about-text h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    flex-wrap: wrap;
  }

  .navbar {
    display: none;
    width: 100%;
    order: 3;
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .mobile-menu {
    display: block;
  }

  .header-actions {
    gap: 1rem;
  }

  .search-box {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .about-text h2 {
    font-size: 1.7rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .logo h2 {
    font-size: 1.5rem;
  }

  .user-actions {
    gap: 0.5rem;
  }

  .login-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .contact-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem 1rem;
  }
}

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

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s;
}

/* Additional animations and interactions */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-text {
  animation: slideInLeft 0.8s ease-out;
}

.about-image {
  animation: slideInRight 0.8s ease-out;
}

/* Gradient text effects */
.feature-card:hover h4 {
  background: linear-gradient(135deg, #e91e63, #ff4081);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced button styles */
.contact-btn,
.login-btn {
  position: relative;
  overflow: hidden;
}

.contact-btn::after,
.login-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-btn:active::after,
.login-btn:active::after {
  width: 300px;
  height: 300px;
}