* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px;
}

.card {
  flex: 1 1 calc(33.333% - 48px); /* 3 cards per row with gap */
  max-width: calc(33.333% - 48px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}


.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.card h3 {
  font-size: 1.4rem;
  margin: 18px 0 8px;
  color: #222;
  font-weight: bold;
}

.card .offering {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.ai-report {
  display: flex;
  justify-content: right;
  align-items: right;
  gap: 50px;
  max-width: 1200px;
  margin: 20px;
  flex-wrap: wrap;
}



.left img {
  width: 350px;
  border-radius: 10px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
}

.right {
  max-width: 600px;
}

.right h1 {
  font-size: 2.8rem;
  color: #2e1c53;
  line-height: 1.3;
  margin-bottom: 20px;
}

.right h1 span {
  color: #2e1c53;
  font-weight: bold;
}

.right p {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-download {
  display: inline-block;
  background-color: #3b2361;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-download:hover {
  background-color: #5a3486;
}

.ai-service-section {
  background-color: #2904ff;
  color: #fff;
  padding: 60px 20px;
}

.ai-service-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.ai-service-text {
  flex: 1 1 500px;
}

.ai-service-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.ai-service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}



.ai-service-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-size: cover;         /* Makes the image cover entire section */
  background-position: center;    /* Keeps image centered */

}

.ai-service-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Optional: dim overlay for readability */
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 1200px;
}

.ai-service-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.ai-service-text {
  flex: 1;
  min-width: 300px;
  margin-right: 30px;
}

.ai-service-text h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.ai-service-text p {
  font-size: 1.1em;
  line-height: 1.6;
}

.ai-btn {
  display: inline-block;
  margin-top: 20px;
  background: #FF6B35;
  color: #ffffff;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ai-btn:hover {
  background: #D9480F;
  color: white;
}

.ai-service-image img {
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  animation: pulse 3s infinite ease-in-out;
}

/* Optional animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}
@media (max-width: 992px) {
  .card {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}
@media (max-width: 576px) {
  .card {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 10px 0;
  }
}
/* Image left, text right on mobile */
@media (max-width: 767px) {
  .ai-report {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .ai-report .left {
    width: 50%;
  }

  .ai-report .left img {
    width: 100%;
    height: auto;
  }

  .ai-report .right {
    text-align: left;
    padding-left: 10px;
  }
}


/* ================== Section Styling ================== */
.services-section-two {
  position: relative;
  padding: 10px 150px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #1e3c72;
  overflow: hidden;
}

.services-section-two #particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Section Header */
.services-section-two .sec-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.services-section-two .sec-title .title {
  font-size: 16px;
  color: #0060ff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: bold;
}
.services-section-two .sec-title h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Service Card */
.service-card {
  background: #ffffff;
  color: #1e3c72;
  border-radius: 20px;
  padding: 30px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.service-card a {
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 2;
}

/* Soft Light Behind Card */
.card-light {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(41, 41, 254, 0.15), transparent 70%);
  top: -25%;
  left: -25%;
  filter: blur(60px);
  animation: light-move 6s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes light-move {
  0% { transform: translate(0,0);}
  50% { transform: translate(10px, 10px);}
  100% { transform: translate(0,0);}
}

.service-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

/* Gradient Icon Colors */
.gradient-1 { background: linear-gradient(135deg,#ff7e5f,#feb47b);}
.gradient-2 { background: linear-gradient(135deg,#6a11cb,#2575fc);}
.gradient-3 { background: linear-gradient(135deg,#ff4e50,#f9d423);}
.gradient-4 { background: linear-gradient(135deg,#43cea2,#185a9d);}
.gradient-5 { background: linear-gradient(135deg,#ff6a00,#ee0979);}
.gradient-6 { background: linear-gradient(135deg,#11998e,#38ef7d);}
.gradient-7 { background: linear-gradient(135deg,#f7971e,#ffd200);}
.gradient-8 { background: linear-gradient(135deg,#36d1dc,#5b86e5);}
.gradient-9 { background: linear-gradient(135deg,#ff512f,#dd2476);}

.service-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}
.service-card:hover .icon-box {
  transform: scale(1.2) rotate(15deg);
}

/* Responsive */
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr;} .services-section-two .sec-title h2 { font-size: 28px; } }


/* Contact Options Styling */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff, #f9f9ff);
  border-radius: 20px;
  padding: 20px 25px;
  display: flex;
  align-items: center; /* centers icon and text vertically */
  gap: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 380px;
  margin: 10px auto;
}

.contact-card .icon-box {
  flex-shrink: 0;
}

.contact-card .info {
  display: flex;
  flex-direction: column;
}

.contact-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  line-height: 1.3;
}

.contact-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.contact-card a {
  text-decoration: none;
  color: #2a5298;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* Icon Styling */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.icon-box.phone { background: linear-gradient(135deg, #1e90ff, #0072ff); }
.icon-box.email { background: linear-gradient(135deg, #ff5f6d, #ffc371); }
.icon-box.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }

/* Animation */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .contact-options {
    margin-top: 30px;
  }
  .contact-card {
    flex-direction: row;
  }
}

