/* Color Variables */
:root {
  --primary: #4361ee;
  --secondary: #3f37c9;
  --accent: #4895ef;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #4cc9f0;
  --warning: #f72585;
}

/* Base Styles */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--dark);
  line-height: 1.6;
  background: linear-gradient(135deg, #1a2a6c, #2c3e50);
       
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  background: linear-gradient(135deg, #1a2a6c, #2c3e50);
 
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 3rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.logo span {
  color: var(--accent);
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.highlight {
  background-color: rgba(255,255,255,0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Button Styles */
.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: 2px solid white;
}

.cta-button:hover {
  background-color: transparent;
  color: white;
}

.cta-button.secondary {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
}

.cta-button.secondary:hover {
  background-color: transparent;
  color: var(--accent);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
  background-color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.hero-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background-color: #f5f7ff;
  text-align: center;
}

.pricing h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card .icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.pricing-card p {
  color: #666;
}

.note {
  background-color: rgba(73, 149, 239, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.note p {
  margin-bottom: 0.5rem;
}

.note strong {
  color: var(--secondary);
}

/* Payment Section */
.payment {
  padding: 4rem 0;
  text-align: center;
  background-color: white;
}

.payment h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.steps {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  padding-left: 1.5rem;
}

.steps li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  text-align: center;
  background-color: #f5f7ff;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--success);
  margin-right: 1rem;
}

.delivery {
  font-weight: 600;
  color: var(--primary);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}
:root {
  --primary: #6c5ce7;
  --secondary: #a29bfe;
  --accent: #fd79a8;
  --dark: #2d3436;
  --light: #f5f6fa;
  --success: #00b894;
  --warning: #fdcb6e;
  --danger: #d63031;
}

/* Header Styles */
.header-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.badge {
  display: flex;
  align-items: center;
  background-color: rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  gap: 0.5rem;
  backdrop-filter: blur(5px);
}

.badge i {
  font-size: 0.9rem;
}

/* Hero Section */
.hero h1 i {
  color: var(--accent);
  margin-left: 0.5rem;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--light);
}

.features .container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  text-align: center;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stars {
  color: var(--warning);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.customer {
  font-weight: 600;
  color: var(--primary);
}

/* Contact Section */
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.footer-links a {
  color: var(--secondary);
  text-decoration: none;
}

.copyright {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
/* Color Variables */
:root {
  --primary: #6c5ce7;
  --secondary: #a29bfe;
  --accent: #fd79a8;
  --dark: #2d3436;
  --light: #f5f6fa;
  --success: #00b894;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 3rem 0;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--light);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

/* Stats Section */
.stats {
  padding: 3rem 0;
  background-color: white;
}

.stats .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--dark);
}

/* Why Choose Section */
.why-choose {
  padding: 4rem 0;
  background-color: var(--light);
}

.why-choose h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.benefit-card p {
  color: #666;
}

/* CTA Section */
.cta {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background-color: white;
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }
  
  .stats .container {
      flex-direction: column;
      align-items: center;
  }
  
  .benefits-grid {
      grid-template-columns: 1fr;
  }
}

/* Boost Section */
.boost-section {
  padding: 5rem 0;
  background-color: #f9f9ff;
}

.boost-header {
  text-align: center;
  margin-bottom: 3rem;
}

.boost-header h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.boost-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Platforms Grid */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.platform-card {
  background: white;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.platform-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.platform-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.boost-services {
  list-style: none;
  padding: 0;
  text-align: left;
}

.boost-services li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.boost-services i {
  font-size: 0.8rem;
  margin-right: 0.7rem;
  color: var(--success);
}

/* Platform Specific Colors */
.facebook { border-color: #1877f2; }
.facebook i { color: #1877f2; }

.instagram { border-color: #e4405f; }
.instagram i { color: #e4405f; }

.twitter { border-color: #1da1f2; }
.twitter i { color: #1da1f2; }

.tiktok { border-color: #000000; }
.tiktok i { color: #000000; }

.youtube { border-color: #ff0000; }
.youtube i { color: #ff0000; }

.snapchat { border-color: #fffc00; }
.snapchat i { color: #fffc00; }

.telegram { border-color: #0088cc; }
.telegram i { color: #0088cc; }

.messenger { border-color: #006aff; }
.messenger i { color: #006aff; }

/* Features Section */
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

.feature-card strong {
  color: var(--primary);
}

/* Contact Info */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: var(--light);
  border-radius: 50px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: var(--primary);
  color: white;
}

.contact-method i {
  margin-right: 0.7rem;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .platforms-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .features-section {
      grid-template-columns: 1fr;
  }
  
  .contact-methods {
      flex-direction: column;
      align-items: center;
  }
}




.container {
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern Navbar Styles */
.navbar {
  background: linear-gradient(135deg, #0f1b3a, #1d2c4d);
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.logo-icon i {
  font-size: 22px;
  color: white;
}

.logo-text {
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.logo-text span {
  color: #4cc9f0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  height: 100%;
}

.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.nav-links > li > a:hover {
  color: white;
  background: rgba(67, 97, 238, 0.15);
}

.nav-links > li > a i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f0f5ff;
  color: #4361ee;
  padding-left: 25px;
}

.dropdown-menu a i {
  margin-right: 10px;
  color: #4361ee;
  font-size: 14px;
  width: 20px;
}

.dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}

/* Action Buttons */
.nav-actions {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  color: white;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.5);
}

.btn-outline {
  border: 2px solid #4cc9f0;
  color: #4cc9f0;
}

.btn-outline:hover {
  background: rgba(76, 201, 240, 0.1);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #0c1a3a, #1b2a4d);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
}

.mobile-links li {
  margin-bottom: 10px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  padding: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-links a:hover {
  background: rgba(67, 97, 238, 0.2);
  color: white;
}

.mobile-links a i {
  margin-right: 15px;
  font-size: 18px;
  width: 24px;
}

.mobile-dropdown-menu {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  margin-left: 20px;
}

.mobile-dropdown-menu a {
  padding-left: 45px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 500px;
}

.mobile-dropdown-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Content Styles */
.content {
  padding: 40px;
  text-align: center;
}

.hero {
  padding: 60px 0;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4cc9f0, #4361ee);
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 5px 20px rgba(67, 97, 238, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(67, 97, 238, 0.6);
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(67, 97, 238, 0.2);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(67, 97, 238, 0.3);
}

.feature-card i {
  font-size: 50px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4cc9f0, #4361ee);
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links, .nav-actions {
      display: none;
  }
  
  .mobile-toggle {
      display: block;
  }
  
  .navbar {
      padding: 0 20px;
  }
  
  .hero h1 {
      font-size: 36px;
  }
  
  .hero p {
      font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
      font-size: 32px;
  }
  
  .feature-card {
      width: 100%;
  }
}
