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

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f6f9;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2f3, #ffffff);
}

#backgroundCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  width: 100%;
  max-width: 900px;
}

.hero-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.text-content h1 {
  font-size: 3rem;
  color: #222;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn.primary {
  background-color: #5a67d8;
  color: white;
}

.btn.primary:hover {
  background-color: #434190;
}

.btn.secondary {
  background-color: #e2e8f0;
  color: #1a202c;
}

.btn.secondary:hover {
  background-color: #cbd5e0;
}



/* About Us Section */
/* About Us Section with Lottie */
.about {
  padding: 100px 5% 80px;
  background-color: #f9fafc;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 1rem;
}

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

.highlights {
  list-style: none;
  padding-left: 0;
  color: #2d3748;
  font-size: 1rem;
  line-height: 1.8;
}

.about-animation {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}


/* Services Section */
.services {
  padding: 100px 5% 80px;
  background-color: #ffffff;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services h2 {
  font-size: 2.2rem;
  color: #2d3748;
  margin-bottom: 3rem;
}

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

.service-card {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}




.container {
  max-width: 1200px;
  margin: 0 auto;
}

.case-studies {
  background: linear-gradient(120deg, #f5faff 0%, #e3f0ff 100%);
  padding: 60px 0;
}

.scroll-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.project-card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  color: #222;
}

.project-card:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  transform: translateY(-4px) scale(1.04);
}

.project-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00ffff;
}

.project-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}











/* Pricing Section - Light Theme */
.pricing-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  color: #222;
}

.pricing-section h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.pricing-section .subheadline {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #666;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 30px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card .icon {
  font-size: 2em;
  margin-bottom: 10px;
}

.pricing-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #222;
}

.pricing-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
}

.pricing-card ul li {
  margin-bottom: 8px;
}

.btn-primary {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
}






.why-us-section {
  padding: 80px 20px;
  background: #f8f9fc;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #1f2937;
}

.section-title .highlight {
  color: #6366f1;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.icon-badge {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #60a5fa);
  color: white;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.feature-card p {
  font-size: 0.95rem;
  color: #4b5563;
}





.contact-section {
  padding: 80px 40px;
  text-align: center;
  background: #f9f9fb;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-form {
  flex: 1 1 400px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: none;
  background: #ffffffdd;
  font-size: 16px;
}

.contact-form button {
  padding: 12px 24px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #555;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 20px;
}








.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-links,
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-copy {
  color: #777;
  margin-top: 20px;
}

:root {
  --primary: #1976d2;
  --secondary: #64b5f6;
  --gradient: linear-gradient(120deg, #e3f0ff 0%, #f5faff 100%);
  --card-bg: #fff;
  --card-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
  --font-main: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

body {
  background: var(--gradient);
  color: #222;
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-title {
  font-size: 3em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(25,118,210,0.08);
}

.brand-subtitle {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 32px;
}

.hero {
  background: linear-gradient(120deg, #e3f0ff 0%, #c8e6fa 100%);
  padding: 100px 0 60px 0;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 24px;
}

.btn {
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn:hover, .btn:focus {
  box-shadow: 0 6px 24px rgba(25,118,210,0.18);
  transform: translateY(-2px) scale(1.03);
}

section {
  padding: 60px 0;
}

.about-container, .services-container, .container, .contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text, .about-animation {
  flex: 1 1 400px;
}

.about-text ul.highlights {
  margin-top: 18px;
  padding-left: 18px;
}

.services-grid, .features-grid, .pricing-cards, .scroll-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card, .feature-card, .pricing-card, .project-card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.service-card:hover, .feature-card:hover, .pricing-card:hover, .project-card:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  transform: translateY(-4px) scale(1.04);
}

.icon, .icon-badge {
  font-size: 2.2em;
  margin-bottom: 14px;
  color: var(--primary);
}

.section-title, h2 {
  font-size: 2.2em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 32px;
}

.highlight {
  color: var(--secondary);
}

.contact-section {
  background: linear-gradient(120deg, #f5faff 0%, #e3f0ff 100%);
}

.contact-form {
  flex: 1 1 340px;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 32px 24px;
  margin-bottom: 24px;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #b3c6e6;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
  background: #f5faff;
  transition: border 0.2s;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}

.contact-form button {
  width: 100%;
  margin-top: 8px;
}

.contact-info {
  flex: 1 1 340px;
  padding: 24px;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
}

.contact-info p {
  margin: 12px 0;
  color: var(--primary);
  font-size: 1.05em;
}

.footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 40px 0 18px 0;
  font-size: 1em;
}

.footer-links, .footer-socials {
  margin-bottom: 18px;
}

.footer-links a, .footer-socials a {
  color: #fff;
  margin: 0 16px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover, .footer-socials a:hover {
  color: var(--secondary);
}

.footer-copy {
  margin-top: 18px;
  font-size: 0.95em;
  color: #e3f0ff;
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-container, .services-container, .container, .contact-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 10px;
  }
  .service-card, .feature-card, .pricing-card, .project-card, .contact-form, .contact-info {
    min-width: 220px;
    padding: 24px 12px;
  }
  .hero {
    padding: 60px 0 40px 0;
  }
  .brand-title {
    font-size: 2em;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 0 8px;
  }
  .section-title, h2 {
    font-size: 1.4em;
  }
  .about-text, .about-animation, .contact-form, .contact-info {
    flex: 1 1 100%;
    padding: 16px 8px;
  }
  .btn {
    padding: 10px 18px;
    font-size: 1em;
  }
}

/* Smooth fade-in animation for sections */
section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
