:root {
  --primary: rgb(0, 0, 0);
  --primary-light: rgb(0, 2, 146);
  --primary-dark: #425e87;
  --secondary: #ec4890;
  --accent: #f59e0b;
  --dark: #1f2937;
  --light: #f9fafb;
  --success: #10b981;
  --gray-light: #f5f7fa;
  --gray-dark: #6b7280;
  --white: #ffffff;
  --black: #111827;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  color: var(--dark);
  overflow-x: hidden;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: 160px 0 180px;
  position: relative;
  overflow: hidden;
}

/* Wave effect using SVG background */
.about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.1' fill='%23ffffff'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.1' fill='%23ffffff'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  pointer-events: none;

  /* Rotate the wave */
  transform: rotate(180deg);
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
}

.shape-2 {
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
}
.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-header p {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: -95px !important;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.03) 0%,
    rgba(236, 72, 153, 0.03) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover .service-icon {
  transform: rotate(5deg) scale(1.1);
}

.service-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
}

.service-card:nth-child(2) .service-icon::before {
  background: linear-gradient(135deg, var(--secondary) 0%, #f472b6 100%);
}

.service-card:nth-child(3) .service-icon::before {
  background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
}

.service-card:nth-child(4) .service-icon::before {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-card:nth-child(5) .service-icon::before {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.service-card:nth-child(6) .service-icon::before {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary);
}

.maargin-top {
  margin-top: 110px !important;
}

.service-desc {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-features li::before {
  transform: scale(1.2);
  color: var(--secondary);
}

.service-card:nth-child(2) .service-features li::before {
  color: var(--secondary);
}

.service-card:nth-child(3) .service-features li::before {
  color: var(--accent);
}

.service-card:nth-child(4) .service-features li::before {
  color: #10b981;
}

.service-card:nth-child(5) .service-features li::before {
  color: #3b82f6;
}

.service-card:nth-child(6) .service-features li::before {
  color: #8b5cf6;
}

.hover-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.05);
  z-index: -1;
  transition: all 0.5s ease;
}

.shape-1 {
  top: -30px;
  right: -30px;
}

.shape-2 {
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
}

.service-card:hover .hover-shape {
  transform: scale(1.2);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
}
