/* Index/Home Page Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-bg-1) 0%, var(--dark-bg-3) 50%, var(--dark-bg-5) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231bb1dc' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}
.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff !important;
  padding: 18px 45px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-hero-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(27, 177, 220, 0.4);
  color: #fff !important;
}
.btn-hero-secondary {
  background: transparent;
  border: 2px solid var(--border-dark);
  color: var(--text-light);
  padding: 16px 45px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-hero-secondary:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-5px);
}
.hero-image img {
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(27, 177, 220, 0.2));
  transition: filter 0.3s ease;
}
.hero-image img:hover {
  filter: drop-shadow(0 25px 50px rgba(27, 177, 220, 0.35));
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-bg-1), var(--dark-bg-2));
}
.about-section .img-fluid {
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(27, 177, 220, 0.15));
  transition: all 0.4s ease;
}
.about-section .img-fluid:hover {
  filter: drop-shadow(0 30px 60px rgba(27, 177, 220, 0.25));
  transform: scale(1.02);
}
.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-content p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-features {
  margin-top: 40px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.about-feature i {
  font-size: 24px;
  color: var(--accent-blue);
  margin-right: 20px;
  margin-top: 5px;
}
.about-feature h4 {
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.about-feature p {
  margin: 0;
  font-size: 0.95rem;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-bg-2), var(--dark-bg-3));
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 25px;
  padding: 50px 40px;
  margin-bottom: 30px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  opacity: 0;
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(27, 177, 220, 0.2);
  border-color: rgba(27, 177, 220, 0.3);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card .icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(27, 177, 220, 0.1), rgba(108, 99, 255, 0.1));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}
.service-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}
.service-card .icon-wrapper i {
  font-size: 40px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}
.service-card:hover .icon-wrapper i {
  -webkit-text-fill-color: white;
  background: none;
}
.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--text-light);
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.service-card ul li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
}
.service-card ul li::before {
  content: '✓';
  color: var(--accent-blue);
  margin-right: 12px;
  font-weight: bold;
}
.btn-service {
  background: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-service:hover {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-color: transparent;
  color: white;
  transform: translateX(5px);
}

/* Products Section */
.products-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-bg-3), var(--dark-bg-1));
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 30px;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(27, 177, 220, 0.2);
  border-color: rgba(27, 177, 220, 0.3);
}
.product-card .product-icon {
  flex-shrink: 0;
}
.product-card .product-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(27, 177, 220, 0.3));
  transition: all 0.4s ease;
}
.product-card:hover .product-icon img {
  filter: drop-shadow(0 10px 25px rgba(27, 177, 220, 0.5));
  transform: scale(1.1) rotate(5deg);
}
.product-card h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.product-card p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-bg-2), var(--dark-bg-4));
  text-align: center;
}
.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-light);
}
.cta-section p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .product-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Light Theme Overrides for Index Page */
body.light-theme .hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 50%, #e8eef5 100%) !important;
}

body.light-theme .hero-section::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d6efd' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body.light-theme .hero-content h1 {
  color: #1a1a2e;
}

body.light-theme .hero-content p {
  color: #4a5568;
}

body.light-theme .btn-hero-secondary {
  border-color: rgba(0, 0, 0, 0.15);
  color: #333;
}

body.light-theme .btn-hero-secondary:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

body.light-theme .about-section {
  background: linear-gradient(180deg, #ffffff, #f8f9fc) !important;
}

body.light-theme .about-section .img-fluid {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

body.light-theme .about-section .img-fluid:hover {
  filter: drop-shadow(0 30px 60px rgba(13, 110, 253, 0.15));
}

body.light-theme .about-feature h4 {
  color: #1a1a2e;
}

body.light-theme .about-feature p {
  color: #4a5568;
}

body.light-theme .services-section {
  background: linear-gradient(135deg, #f8f9fc, #eef2f7) !important;
}

body.light-theme .service-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .service-card:hover {
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 30px 60px rgba(13, 110, 253, 0.12);
}

body.light-theme .service-card h3 {
  color: #1a1a2e;
}

body.light-theme .service-card ul li {
  color: #4a5568;
}

body.light-theme .btn-service:hover {
  color: #ffffff;
}

body.light-theme .products-section {
  background: linear-gradient(180deg, #eef2f7, #ffffff) !important;
}

body.light-theme .product-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .product-card:hover {
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 25px 50px rgba(13, 110, 253, 0.12);
}

body.light-theme .product-card h3 {
  color: #1a1a2e;
}

body.light-theme .product-card p {
  color: #4a5568;
}

body.light-theme .cta-section {
  background: linear-gradient(135deg, #f8f9fc, #e4eaf2) !important;
}

body.light-theme .cta-section h2 {
  color: #1a1a2e;
}

body.light-theme .cta-section p {
  color: #4a5568;
}

body.light-theme .cta-section .btn-hero-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

body.light-theme .cta-section .btn-hero-primary:hover {
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.4);
}
