/* ===== Base Styles ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0F172A;
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* ===== Navigation ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}
.logo span {
  color: #EC4899;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}
.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 10px;
}
.nav-links a:hover,
.nav-links a.active {
  color: #4F46E5;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: white;
}

/* ===== Hero Section ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.hero-content {
  z-index: 2;
  max-width: 800px;
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.cta-btn {
  background-color: #4F46E5;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  background-color: #EC4899;
  transform: scale(1.05);
}

/* Floating Shapes */
.floating-shapes .shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}
.shape:nth-child(1) { width: 80px; height: 80px; top: 20%; left: 10%; }
.shape:nth-child(2) { width: 100px; height: 100px; bottom: 25%; right: 15%; }
.shape:nth-child(3) { width: 60px; height: 60px; bottom: 10%; left: 50%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== Features Section ===== */
.features {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  text-align: center;
}

.features .section-title h1,
.pricing .section-title h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card i {
  margin-bottom: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
}

.feature-card:hover i {
  transform: rotate(5deg) scale(1.2);
  filter: drop-shadow(0 0 10px currentColor);
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4F46E5;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-card ul li {
  margin: 0.8rem 0;
  position: relative;
  padding-left: 25px;
}

.pricing-card ul li:before {
  content: "•";
  color: #4F46E5;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

/* ===== About Section ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content .section-title h1 {
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.about-content .section-title p {
  text-align: left;
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.highlight-box {
  background: rgba(236, 72, 153, 0.15);
  border-left: 5px solid #EC4899;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-weight: 600;
  color: #f0c6d2;
  border-radius: 0 12px 12px 0;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.contact-section .section-title h1 {
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.contact-section .section-title p {
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
}

.contact-info {
  flex: 1 1 300px;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #4F46E5;
}

/* ===== Footer ===== */
.footer-section {
  background: rgba(15, 23, 42, 0.9);
  padding: 3rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

footer.text-center {
  text-align: left;
  padding: 15px 20px;
  background: rgba(15, 23, 42, 0.95);
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 15px 20px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    clip-path: circle(0px at 90% -10%);
    transition: all 0.5s ease-out;
  }
  
  .nav-links.active {
    clip-path: circle(1000px at 90% -10%);
  }
  
  /* Hero Section */
  .hero {
    height: auto;
    padding: 100px 20px;
  }
  
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  /* Contact */
  .contact-container {
    flex-direction: column;
  }
  
  .contact-form,
  .contact-info {
    width: 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-row {
    flex-direction: column;
    gap: 30px;
  }
  
  /* General */
  section {
    padding: 3rem 1rem !important;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .hero-title {
    font-size: 1.8rem !important;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .feature-card,
  .pricing-card {
    padding: 1.5rem;
  }
  
  .about-content .section-title h1,
  .contact-section .section-title h1 {
    font-size: 2rem;
  }
}
/* ===== Force Center Alignment for About Heading ===== */
main .section-title {
  text-align: center !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: block !important;
}

main .section-title h1 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

main .section-title p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 600px;
}
/* Keep all other footer styles as they were */
.footer-section {
  /* Original styles remain unchanged */
}

.footer-row {
  /* Original styles remain unchanged */
}

.footer-col {
  /* Original styles remain unchanged */
  text-align: left; /* Maintain left alignment for content */
}
/* ===== Global Link Styles ===== */
a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
  color: #4F46E5 !important;
  text-decoration: underline;
  transform: translateY(-1px);
}

/* Navbar Links */
.nav-links a:hover {
  text-decoration: none;
  transform: scale(1.05);
}

/* CTA Buttons */
.cta-btn:hover {
  text-decoration: none;
}

/* ===== Previous Center Alignment Styles ===== */
.about-content .section-title h1 {
  text-align: center;
}

footer.text-center {
  text-align: center;
}
/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo Image */
.navbar-logo {
  height: 32px; /* Adjust based on your logo */
  width: auto;
  transition: transform 0.3s ease;
}

/* Logo Text */
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

/* Logo Highlight */
.logo-highlight {
  color: #EC4899; /* Your accent color */
}

/* Hover Effects */
.logo:hover .navbar-logo {
  transform: scale(1.05);
}
/* Footer Logo Size Adjustment */
.footer-logo {
  max-width: 120px; /* Reduced from 150px */
  height: auto;
  margin-bottom: 0.8rem;
  display: block;
}

/* Footer Description Text */
.footer-col p {
  font-size: 0.9rem; /* Slightly smaller text */
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* Quick Links Section */
.footer-col ul {
  margin-top: 0.5rem;
}

/* Responsive Adjustment */
@media (max-width: 768px) {
  .footer-logo {
    max-width: 100px;
    margin: 0 auto 0.8rem; /* Center logo on mobile */
  }
  
  .footer-col {
    text-align: center;
  }
}