/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.hero-section {
  width: 100%;
}

/* Accent color */
.hero-subtitle {
  color: #ff2d7d;
  font-weight: 600;
}

/* HERO WRAPPER */
.blur-box {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.blur-box .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.55);
  transform: scale(1.05);
  z-index: 0;
}

/* Gradient overlay instead of flat color */
.blur-box .blue-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 37, 120, 0.75) 0%,
    rgba(82, 82, 204, 0.55) 50%,
    rgba(82, 82, 204, 0.25) 100%
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 70px;
  width: 92%;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
  padding: 40px 20px;
  margin: 120px 0 80px;
}

/* LEFT */
.hero-left {
  flex: 1;
  width: 50%;
}

.hero-left .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.hero-left .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-left .hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #e9ecf3;
  max-width: 520px;
}

/* CTA */
.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  background: linear-gradient(135deg, #ff2d7d, #c3004b);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(255, 45, 125, 0.35);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 45, 125, 0.5);
}

/* RIGHT */
.hero-right {
  width: 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-right .hero-img {
  width: 100%;
  max-width: 480px;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s ease;
}

.hero-right .hero-img:hover {
  transform: scale(1.04);
}

/* TABLET */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }

  .hero-left {
    width: 100%;
  }

  .hero-left .hero-title {
    font-size: 2.6rem;
  }

  .hero-left .hero-description {
    margin: 0 auto 30px;
  }

  .hero-right {
    width: 100%;
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .blur-box {
    min-height: 520px;
  }

  .hero-left .hero-title {
    font-size: 2rem;
  }

  .hero-left .hero-subtitle {
    font-size: 1rem;
  }

  .hero-right .hero-img {
    height: 260px;
  }
}

.about-section {
  padding: 80px 0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-left {
  width: 40%;
}

.about-left h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* .about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0a66c2;background: #ae2459;
  
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
} */

/* .about-btn:hover {
  background: #C3004B;
  color: white;
} */

.about-right {
  width: 50%;
}

.about-right img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}


/* ========================
     Responsive Design
=========================== */

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left, 
  .about-right {
    width: 100%;
  }

  .about-left h3 {
    font-size: 30px;
  }

  .about-left p {
    font-size: 16px;
  }

  .about-right img {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-left h3 {
    font-size: 26px;
  }

  .about-btn {
    padding: 10px 22px;
    font-size: 15px;
  }
}
/* service */
.service-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #f7f9fc, #eef3f8);
}

.service-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: black;
}

.service-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 17px;
  color: #555;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Cards */
.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e3e3e3;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
  border-color: #0a66c2;
  background: white;
  /* clip-path: ellipse(100% 90% at 50% 10%); */
  clip-path: polygon(0 10px, 100% 0, 100% 100%, 0% 100%);
}

/* Icon Circle */
.icon-box {
  height: 70px;
  width: 70px;
  /* background: #f1f8fe; */
  color: #fff;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-card:hover .icon-box {
  background: #8fbdef;
}

/* Text */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0a66c2;
  font-weight: 700;
}

.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 30px;
  }
  
  .service-card {
    padding: 28px;
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 25px;
  }

  .icon-box {
    height: 60px;
    width: 60px;
    font-size: 26px;
  }
}

/* WHY CHOOSE US SECTION */

.why-choose-section {
  padding: 70px 0;
  background: #f8f9fa; 
  /* clip-path: polygon(0 10px, 100% 0, 100% 100%, 0% 100%); */

}

.why-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.why-subtitle {
  text-align: center;
  font-size: 16px;
  width: 60%;
  margin: 0 auto 40px;
  color: #555;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  clip-path: polygon(0 10px, 100% 0, 100% 100%, 0% 100%);

}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0a66c2;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a66c2;
}

.why-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-subtitle {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-subtitle {
    width: 100%;
  }
  .why-title {
    font-size: 28px;
  }
}

