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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-menu {
  display: flex;
}

.navbar-nav {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
}

.navbar-nav .nav-link {
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* Account Button */
.nav-account {
  height: 40px;
  padding: 0 1.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
}

.nav-account:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: white !important;
}

/* Remove any text gradient effects from account button */
.nav-account,
.nav-account:hover {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }
  .container {
    padding: 0 15px;
  }
  .nav-account {
    width: 100%;
    margin-top: 1rem;
    height: 44px;
  }
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  border-top: 1px solid rgba(86, 171, 47, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.dropdown-section {
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-section {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-section:nth-child(1) {
  transition-delay: 0.1s;
}
.dropdown-section:nth-child(2) {
  transition-delay: 0.2s;
}
.dropdown-section:nth-child(3) {
  transition-delay: 0.3s;
}

.dropdown-section h4 {
  color: #1a202c;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  min-height: 44px;
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0.3rem 0;
  font-weight: 500;
}

.dropdown-link i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
  color: white;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Custom gradients for different sections */
.dropdown-section:nth-child(1) .dropdown-link i {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.dropdown-section:nth-child(2) .dropdown-link i {
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.dropdown-section:nth-child(3) .dropdown-link i {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.dropdown-section:nth-child(4) .dropdown-link i {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.dropdown-link:hover {
  background: rgba(102, 126, 234, 0.05);
  color: #667eea;
  transform: translateX(5px);
}

.dropdown-link:hover i {
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 1200px) {
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .dropdown-section {
    padding: 1rem;
  }
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  z-index: 1001;
  transition: all 0.5s ease;
}

.navbar-toggle span {
  width: 28px;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    padding: 80px 2rem 2rem;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid rgba(102, 126, 234, 0.452);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: none;
  }

  .dropdown-open .dropdown-menu {
    display: block;
  }

  .dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .dropdown-section {
    width: 100%;
    margin-bottom: 1rem;
    opacity: 1;
    transform: none;
  }

  .dropdown-section h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.1) 0%,
      rgba(118, 75, 162, 0.1) 100%
    );
  }

  .dropdown-link {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
  }

  .dropdown-link i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .dropdown-link:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
  }

  .dropdown-link:hover i {
    transform: scale(1.1);
  }
}

/* Hero Slider Improvements */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: 60px;
  background: #667eea; /* Initial background color */
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.8s ease-in-out, visibility 1.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: opacity 1.8s ease-in-out, visibility 1.8s ease-in-out;
}

/* Hero Slider Gradients - Based on Main Theme */
.slide[data-bg="gradient1"] {
  background: linear-gradient(135deg, #4338ca 0%, #c084fc 100%);
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out,
    background 0s;
}

.slide[data-bg="gradient2"] {
  background: linear-gradient(135deg, #2563eb 0%, #818cf8 100%);
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out,
    background 0s;
}

.slide[data-bg="gradient3"] {
  background: linear-gradient(135deg, #9333ea 0%, #e879f9 100%);
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out,
    background 0s;
}

.slide[data-bg="gradient4"] {
  background: linear-gradient(135deg, #4f46e5 0%, #a5b4fc 100%);
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out,
    background 0s;
}

.slide[data-bg="gradient5"] {
  background: linear-gradient(135deg, #667eea 0%, #fca5a5 100%);
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out,
    background 0s;
}

.slide[data-bg="gradient6"] {
  background: linear-gradient(135deg, #7e22ce 0%, #c084fc 100%);
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out,
    background 0s;
}

.slide[data-bg="gradient7"] {
  background: linear-gradient(135deg, #1d4ed8 0%, #93c5fd 100%);
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out,
    background 0s;
}

.slide[data-bg="gradient8"] {
  background: linear-gradient(135deg, #6d28d9 0%, #ddd6fe 100%);
}

.slide[data-bg="gradient9"] {
  background: linear-gradient(135deg, #0ea5e9 0%, #bae6fd 100%);
}

.slide[data-bg="gradient10"] {
  background: linear-gradient(135deg, #6366f1 0%, #e0e7ff 100%);
}

/* Add subtle overlay to all slides */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

/* Ensure slide content is visible */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1.8s ease-out, opacity 1.8s ease-out;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.slide-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slide.active .slide-icon {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slide-icon i {
  transition: all 0.6s ease;
  opacity: 0;
  transform: scale(0.8);
}

.slide.active .slide-icon i {
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s ease 0.3s;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s ease-out 0.4s;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.slide.active .slide-content h1 {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s ease-out 0.4s;
}

.slide-content p {
  font-size: 1.25rem;
  margin: 1rem auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s ease-out 0.6s;
  max-width: 600px;
  line-height: 1.6;
  padding: 0 1rem;
}

.slide.active .slide-content p {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s ease-out 0.6s;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slide.active .slide-buttons {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transform: scale(0.95);
  opacity: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.slide.active .btn {
  transform: scale(1);
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 1400px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  position: relative;
  left: -80px;
}

.nav-btn.next {
  left: auto;
  right: -80px;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@media (max-width: 1600px) {
  .nav-btn {
    left: 20px;
  }

  .nav-btn.next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }

  .btn {
    padding: 0.6rem 1.75rem;
    font-size: 0.95rem;
  }
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}
.indicator {
  width: 12px;
  height: 12px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  background-clip: content-box;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 16px;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 768px) {
  .hero-slider {
    height: 550px;
    margin-top: 60px;
  }

  .slide-content {
    width: 100%;
    max-width: 600px;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .slide-icon {
    width: 80px;
    height: 80px;
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .slide-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .slide-content p {
    font-size: 1.2rem;
    margin: 1rem auto;
    max-width: 500px;
  }

  .slide-buttons {
    margin-top: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 550px;
  }

  .slide-content {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .slide-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    padding: 0;
    max-width: 100%;
  }

  .slide-content p {
    font-size: 1.1rem;
    margin: 0.5rem auto;
    padding: 0;
    max-width: 100%;
    line-height: 1.4;
  }

  .slide-buttons {
    margin-top: 0.8rem;
  }

  .slider-nav {
    display: none; /* Hide navigation container on mobile */
  }

  .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
}
/* Services Section */
.services-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-section .section-header p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Custom gradients for different cards */
.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #ec008c 0%, #fc6767 100%);
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #f09819 0%, #ff512f 100%);
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, #b465da 0%, #cf6cc9 100%);
}

/* Service Card Icon Gradients */
.app-vpn .service-icon {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.app-matrimony .service-icon {
  background: linear-gradient(135deg, #e91e63 0%, #ff6b95 100%);
}

.app-dating .service-icon {
  background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
}

.app-printer .service-icon {
  background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
}

.app-flatshare .service-icon {
  background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

.app-calling .service-icon {
  background: linear-gradient(135deg, #4776e6 0%, #8e54e9 100%);
}

.app-legaldoc .service-icon {
  background: linear-gradient(135deg, #141e30 0%, #243b55 100%);
}

.app-story .service-icon {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.app-emailverifier .service-icon {
  background: linear-gradient(135deg, #6190e8 0%, #a7bfe8 100%);
}

.app-business-email .service-icon {
  background: linear-gradient(135deg, #373b44 0%, #4286f4 100%);
}

.app-lawyer .service-icon {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
}

.app-food .service-icon {
  background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
}

.app-qibla .service-icon {
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
}

.app-islamic .service-icon {
  background: linear-gradient(135deg, #1f4037 0%, #99f2c8 100%);
}

.app-ecommerce .service-icon {
  background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f4f8 100%);
}

.features-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-section .section-header p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.feature-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 85px;
  height: 85px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}

.feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%);
}

.feature-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
}

.feature-content {
  text-align: center;
}

.feature-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-content p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 3rem 0;
  }

  .features-section .section-header h2 {
    font-size: 2rem;
  }

  .features-section .section-header p {
    font-size: 1rem;
  }

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

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

  .feature-icon {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }
}

/* Ready to Start Section */
.ready-to-start {
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
  padding: 5rem 0;
  text-align: center;
}

.ready-to-start .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ready-to-start h2 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ready-to-start p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.ready-to-start .buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.ready-to-start .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  min-width: 160px;
}

.ready-to-start .btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Footer Styles */
.footer {
  background: #1a202c;
  padding: 4rem 0 1.5rem;
  color: white;
  border-radius: 100px 100px 0px 0px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.footer-logo .logo-square {
  width: 48px;
  height: 48px;
  background: #6366f1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.footer-logo h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 300px;
  margin: 0;
  opacity: 0.8;
}

.footer-section h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  color: #64748b;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover i {
  color: white;
}

/* Footer Bottom Section */
.footer-bottom-wrapper {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  width: 100%;
}

.footer-mobile-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer-mobile-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-mobile-links a:hover {
  color: #fff;
}

.footer-mobile-links a i {
  font-size: 0.875rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-copyright {
  text-align: center;
  margin-top: 1.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer {
    background: #1a1f2b;
    padding: 2rem 1rem;
    border-radius: 30px 30px 0px 0px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
  }

  .footer-section {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding-bottom: 1rem;
  }

  .footer-section h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
  }

  .footer-links a i {
    color: #64748b;
    font-size: 1rem;
    width: 20px;
    text-align: center;
  }

  .footer-bottom-wrapper {
    margin-top: 1rem;
    padding: 0;
    border-top: none;
  }

  .footer-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-mobile-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  }

  .footer-mobile-links a:last-child {
    border-bottom: none;
  }

  .footer-mobile-links a span {
    color: #94a3b8;
  }

  .footer-mobile-links a i {
    color: #64748b;
    font-size: 0.875rem;
  }

  .footer-copyright {
    text-align: center;
    padding: 1.5rem 0 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    color: #94a3b8;
    font-size: 0.875rem;
    opacity: 0.8;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-links a,
  .footer-mobile-links a {
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }
}

/* Mobile Apps Section */
.mobile-apps {
  background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
  padding: 2rem 0;
}

.mobile-apps h3 {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.mobile-apps .app-links a {
  display: block;
  padding: 0.75rem 0;
  color: #e91e63;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-apps .app-links a:hover {
  color: #ad1457;
  transform: translateX(5px);
}

/* Business Solutions Section */
.business-solutions {
  background: linear-gradient(135deg, #f1f4f8 0%, #e8eef5 100%);
  padding: 2rem 0;
}

/* Development Services Section */
.development-services {
  background: linear-gradient(135deg, #e8eef5 0%, #dfe7f2 100%);
  padding: 2rem 0;
}

/* App Showcase Section */
.app-showcase {
  padding: 5rem 0;
  background: #f8fafc;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.app-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.app-card:hover::before {
  opacity: 1;
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.app-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.app-icon i {
  font-size: 2.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.app-card:hover .app-icon i {
  transform: scale(1.1);
}

.app-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.app-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.app-link {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  gap: 0.5rem;
  font-size: 1.1rem;
}

.app-link:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateX(5px);
  color: #2563eb;
}

/* Enhanced gradients for app icons */
.app-legaldoc .app-icon {
  background: linear-gradient(135deg, #1a365d 0%, #2d5a9e 100%);
}

.app-story .app-icon {
  background: linear-gradient(135deg, #004d40 0%, #00897b 100%);
}

.app-emailverifier .app-icon {
  background: linear-gradient(135deg, #c31432 0%, #ff3d4f 100%);
}

.app-business-email .app-icon {
  background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
}

.app-lawyer .app-icon {
  background: linear-gradient(135deg, #243949 0%, #517fa4 100%);
}

.app-food .app-icon {
  background: linear-gradient(135deg, #ff4b1f 0%, #ff9068 100%);
}

.app-qibla .app-icon {
  background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
}

.app-islamic .app-icon {
  background: linear-gradient(135deg, #1fa2ff 0%, #12d8fa 100%);
}

.app-ecommerce .app-icon {
  background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1.5rem;
  }

  .app-card {
    padding: 2rem 1.5rem;
  }

  .app-icon {
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
  }

  .app-card h3 {
    font-size: 1.5rem;
  }

  .app-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .app-showcase {
    padding: 3rem 0;
  }

  .app-grid {
    gap: 1.5rem;
  }

  .app-card {
    padding: 1.75rem 1.25rem;
  }

  .app-icon {
    width: 80px;
    height: 80px;
    font-size: 2.2rem;
  }
}

/* Add swipe hint animation for mobile */
@media (max-width: 768px) {
  .slider-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
    animation: swipeHint 2s ease-in-out 1s;
  }
}

@keyframes swipeHint {
  0% {
    opacity: 0;
    transform: translate(-80%, -50%);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-20%, -50%);
  }
}

/* Footer Mobile Links */
.footer-mobile-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-mobile-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-mobile-links a:hover {
  color: #fff;
}

.footer-mobile-links a i {
  font-size: 1rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-mobile-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    width: 100%;
  }

  .footer-mobile-links a {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #cbd5e1;
  }

  .footer-mobile-links a i {
    color: #64748b;
  }

  .footer-mobile-links a:hover {
    transform: translateX(5px);
  }

  .footer-mobile-links a:hover i {
    color: #fff;
  }
}

@media (max-width: 480px) {
  .footer-mobile-links {
    margin: 0.5rem 0;
  }

  .footer-mobile-links a {
    font-size: 0.9rem;
    padding: 0.75rem 0;
  }
}

/* Brand Gradient Button */
.ecomtech-gradient-btn {
  height: 40px;
  padding: 0 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.ecomtech-gradient-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ecomtech-gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.ecomtech-gradient-btn:hover::before {
  opacity: 1;
}

.ecomtech-gradient-btn span {
  position: relative;
  z-index: 1;
  color: white;
}

.ecomtech-gradient-btn i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.ecomtech-gradient-btn:hover i {
  transform: translateX(3px);
}

/* Account Button Specific */
.ecomtech-gradient-btn.account-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0 1.5rem;
  min-width: 120px;
  justify-content: center;
}

.ecomtech-gradient-btn.account-btn span {
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .ecomtech-gradient-btn.account-btn {
    margin-top: 1rem;
    padding: 0 1.25rem;
    min-width: unset;
  }
}
