* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* HERO SECTION */
.seo-hero {
    position: relative;
    height: 100vh;
    background: url("./Assets/seo/Hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.seo-hero-content {
    position: relative;
    text-align: center;
    width: 60%;
    background: rgba(0,0,0,0.55);
    padding: 40px 30px;
    border-radius: 10px;
}

.seo-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.seo-hero-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.seo-btn {
    padding: 12px 28px;
    background: #0052cc;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.seo-btn:hover {
    background: #4f82ce;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .seo-hero-content {
        width: 90%;
        padding: 30px 20px;
    }

    .seo-hero-content h1 {
        font-size: 28px;
    }

    .seo-hero-content p {
        font-size: 16px;
    }
}



/* ================= CARD SECTION ================= */
.seo-card-area {
  width: 100%;
  padding: 80px 40px;
  background: #f7f9fb;
}

.seo-card-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.seo-card {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

.seo-card h3 {
  font-size: 22px;
  color: #111;
  font-weight: 700;
  margin-bottom: 12px;
}

.seo-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.seo-card-btn {
  margin-top: 10px;
  padding: 12px 26px;
  background: #0052cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.seo-card-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-card-area {
    padding: 60px 20px;
  }

  .seo-card-container {
    gap: 20px;
    justify-content: flex-start;
  }

  .seo-card {
    padding: 25px;
    min-width: 100%;
  }
}


/* WHY CHOOSE US */
.seo-why-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    gap: 50px;
}

.seo-why-left {
    position: relative;
    flex: 1;
    max-width: 45%;
}

.seo-image-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e4f0ff;
    border-radius: 30% 70% 60% 40% / 40% 40% 60% 70%;
    z-index: 1;
    top: -20px;
    left: -20px;
}

.seo-why-left img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
}

.seo-why-right {
    flex: 1;
    max-width: 50%;
}

.seo-why-right h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #002147;
}

.seo-why-right ul {
    list-style: none;
    padding: 0;
}

.seo-why-right ul li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

@media (max-width: 768px) {
    .seo-why-wrapper {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .seo-why-left, 
    .seo-why-right {
        max-width: 100%;
    }

    .seo-why-right ul li {
        text-align: left;
        margin-left: 10px;
    }
}


/* WHAT WE OFFER */
.seo-offer-section {
    display: flex;
    justify-content: space-between;
    padding: 80px 5%;
    gap: 50px;
    background: #E8F7FB;
}

.seo-offer-left {
    width: 45%;
}

.seo-offer-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 20px;
}

.seo-offer-left p {
    font-size: 18px;
    line-height: 26px;
    color: #333;
    margin-bottom: 40px;
}

.seo-offer-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-bg-shape {
    position: absolute;
    width: 380px;
    height: 380px;
    background: #c3f0e9;
    border-radius: 50% 40% 60% 50%;
    top: 20px;
    left: 0;
    right: 25;
    margin: auto;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.seo-offer-illustration img {
    width: 100%;
    max-width: 420px;
    z-index: 2;
}

.seo-offer-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.seo-offer-item img {
    width: 45px;
    margin-bottom: 10px;
}

.seo-offer-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #003366;
}

.seo-offer-item p {
    color: #444;
    line-height: 24px;
}

@media (max-width: 900px) {
    .seo-offer-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .seo-offer-left, .seo-offer-right {
        width: 100%;
    }

    .seo-offer-right {
        grid-template-columns: 1fr;
    }

    .seo-bg-shape {
        width: 260px;
        height: 260px;
        top: 10px;
    }

    .seo-offer-illustration {
        justify-content: flex-start;
    }

    .seo-offer-illustration img {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .seo-bg-shape {
        width: 220px;
        height: 220px;
        top: 0;
    }

    .seo-offer-illustration img {
        max-width: 240px;
    }
}
