  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
    body {
      font-family: "Inter", sans-serif;
      background: #f4f4f4;
      color: #222;
    }

    h1, h2, h3, h4 {font-family: "Bebas Neue", sans-serif;}

    a {
      text-decoration: none;
    }

    /* =========================
       HEADER
    ========================== */

    .top-navbar {
      background: #ffffff;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
    }

    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #222;
    }

    .logo span {
      color: #24a99a;
    }

    .nav-link {
      color: #222 !important;
      font-weight: 600;
      margin: 0 10px;
      transition: 0.3s;
    }

    .nav-link:hover {
      color: #24a99a !important;
    }

    .phone-btn,
    .contact-btn {
      padding: 10px 22px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      border: none;
    }

    .phone-btn {
      background: #f7a44c;
      color: #fff;
    }

    .contact-btn {
      background: #24a99a;
      color: #fff;
    }

    /* =========================
       HERO
    ========================== */

    .hero-section {
      background: #24a99a;
      padding: 90px 0;
      color: #fff;
    }

    .hero-title {
      font-family: "Oswald", sans-serif;
      font-size: 78px;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 30px;
    }

    .hero-text {
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 30px;
      max-width: 500px;
    }

    .hero-btn {
      background: #f7a44c;
      color: #fff;
      padding: 14px 30px;
      border-radius: 30px;
      display: inline-block;
      font-weight: 600;
      transition: 0.3s;
    }

    .hero-btn:hover {
      background: #fff;
      color: #24a99a;
    }

    .hero-img img {
      width: 100%;
      border-radius: 8px;
    }

    /* =========================
       SECTION TITLE
    ========================== */

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

    .section-title {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1c1c1c;
    }

    .section-subtitle {
      color: #666;
      line-height: 1.8;
      max-width: 800px;
      margin: auto;
    }

    /* =========================
       VALUES
    ========================== */

    .value-card {
      background: #fff;
      padding: 35px 25px;
      border-radius: 14px;
      height: 100%;
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .value-card:hover {
      transform: translateY(-8px);
    }

    .value-card i {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .value-card h4 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .value-card p {
      color: #666;
      line-height: 1.7;
    }

    .orange {
      color: #f07f4f;
    }

    .purple {
      color: #7350ff;
    }

    .green {
      color: #24a99a;
    }

    .yellow {
      color: #f7a44c;
    }

    /* =========================
       SERVICES
    ========================== */

    .services-home .service-card {
      padding: 40px 30px;
      border-radius: 18px;
      color: #fff;
      height: 100%;
    }

    .services-home .service-card h3 {
      font-size: 42px;
      font-family: "Oswald", sans-serif;
      margin-bottom: 20px;
    }

    .services-home .service-card p {
      line-height: 1.8;
      color:#fff;
      margin-bottom: 25px;
    }

   .services-home .service-btn {
      background: #fff;
      color: #222;
      padding: 10px 22px;
      border-radius: 30px;
      font-weight: 600;
      display: inline-block;
    }

    .services-home .service-card.google-ads1 {
      background: #0c8b83;
    }

   .services-home .service-card.seo {
      background: #24485d;
    }

    .services-home .service-card.social {
      background: #744bb8;
    }

    /* =========================
       TESTIMONIALS
    ========================== */

    .testimonial-card {
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      height: 100%;
    }

    .testimonial-card p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .client-name {
      font-weight: 700;
      font-size: 18px;
    }

    /* =========================
       WORK SECTION
    ========================== */

    .work-section {
      background: #fff;
      padding: 100px 0;
    }

    .work-box {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }

    .work-box img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

    .work-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: #fff;
      text-align: center;
    }

    .work-overlay h3 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    /* =========================
       BLOG
    ========================== */

    .blog-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      transition: 0.3s;
      height: 100%;
    }

    .blog-card:hover {
      transform: translateY(-8px);
    }

    .blog-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .blog-content {
      padding: 25px;
    }

    .blog-content h4 {
      font-size: 24px;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .blog-content p {
      color: #666;
      line-height: 1.7;
    }

    /* =========================
       CONTACT
    ========================== */

    .contact-box {
      background: #fff;
      padding: 40px;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

    .form-control {
      height: 55px;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    textarea.form-control {
      height: 140px;
      resize: none;
    }

    .submit-btn {
      background: #f7a44c;
      color: #fff;
      border: none;
      padding: 14px 35px;
      border-radius: 30px;
      font-weight: 600;
    }

    /* =========================
       FOOTER
    ========================== */

    footer {
      background: #163847;
      color: #fff;
      padding: 70px 0 30px;
    }

    .footer-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .footer-links a {
      display: block;
      color: #ddd;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #24a99a;
      padding-left: 5px;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      margin-right: 10px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #24a99a;
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      color: #ddd;
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:991px) {
      .hero-title {
        font-size: 56px;
      }

      .hero-img {
        margin-top: 40px;
      }
    }

    @media(max-width:767px) {
      .hero-title {
        font-size: 42px;
      }

      .section-title {
        font-size: 34px;
      }
    }


    /* ========our team */


     .our-team-section {
    background: #fff;
  }

  .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    position: relative;
  }

  .section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #24a99a;
    display: block;
    margin: 14px auto 0;
    border-radius: 10px;
  }

  .section-subtitle {
    max-width: 850px;
    color: #666;
    line-height: 1.9;
    font-size: 16px;
  }

  .team-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  }

  .team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(36, 169, 154, 0.25);
  }

  .team-img {
    position: relative;
    overflow: hidden;
  }

  .team-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.5s;
  }

  .team-card:hover .team-img img {
    transform: scale(1.08);
  }

  .team-social {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    transition: 0.4s ease;
  }

  .team-card:hover .team-social {
    bottom: 25px;
  }

  .team-social a {
    width: 45px;
    height: 45px;
    background: #24a99a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
  }

  .team-social a:hover {
    background: #111;
    transform: translateY(-5px);
  }

  .team-content {
    padding: 30px 25px;
    text-align: center;
  }

  .team-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
  }

  .team-content span {
    color: #24a99a;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  @media (max-width: 767px) {
    .section-title {
      font-size: 32px;
    }

    .team-img img {
      height: 350px;
    }
  }


  /* feature */



.features-card {
  background: linear-gradient(135deg, #f8fbfb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.features-card::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(36, 169, 154, 0.06);
  border-radius: 50%;
  top: -180px;
  left: -120px;
}

.features-card::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(36, 169, 154, 0.05);
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
}

.features-card .container {
  position: relative;
  z-index: 2;
}

/* SECTION TITLE */

.section-title {
  font-size: 46px;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-title::after {
  content: "";
  width: 90px;
  height: 5px;
  background: #24a99a;
  display: block;
  margin: 18px auto 0;
  border-radius: 20px;
}

.section-subtitle {
  max-width: 850px;
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}

/* CARD DESIGN */

.card-item {
  background: #fff;
  padding: 45px 35px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  z-index: 1;
  border: 1px solid rgba(36, 169, 154, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #24a99a, #111);
}

.card-item::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(36, 169, 154, 0.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  transition: 0.5s;
  z-index: -1;
}

.card-item:hover::after {
  transform: scale(2);
}

.card-item:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 60px rgba(36, 169, 154, 0.18);
}

/* ICON */

.icon-box {
  width: 80px;
  height: 80px;
  background: rgba(36, 169, 154, 0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: 0.4s ease;
}

.icon-box i {
  font-size: 34px;
  color: #24a99a;
}

.card-item:hover .icon-box {
  background: #24a99a;
  transform: rotate(-6deg);
}

.card-item:hover .icon-box i {
  color: #fff;
}

/* NUMBER */

.number {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 65px;
  font-weight: 800;
  color: rgba(36, 169, 154, 0.08);
  line-height: 1;
}

/* CONTENT */

.card-item h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
  transition: 0.3s;
}

.card-item:hover h2 {
  color: #24a99a;
}

.card-item p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 991px) {

  .section-title {
    font-size: 38px;
  }

  .card-item {
    padding: 35px 25px;
  }

  .card-item h2 {
    font-size: 24px;
  }

}

@media (max-width: 767px) {

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .card-item {
    border-radius: 22px;
  }

  .icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-box i {
    font-size: 28px;
  }

}

/* services
 */

 /* =========================
   OUR ORIGINS SECTION
========================= */

.our-origins-section {
  background: linear-gradient(135deg, #f8fbfb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* IMAGE SIDE */

.origins-image-wrapper {
  position: relative;
}

.origins-main-img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.origins-image-wrapper:hover .origins-main-img {
  transform: scale(1.02);
}

/* FLOATING EXPERIENCE BOX */

.experience-box {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #24a99a;
  padding: 25px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(36,169,154,0.3);
}

.experience-box h3 {
  font-size: 42px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 5px;
}

.experience-box span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* CONTENT SIDE */

.origins-content {
  padding-left: 20px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(36,169,154,0.12);
  color: #24a99a;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 15px;
}

.origins-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.2;
}

.origins-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* FEATURES */

.origins-features {
  margin-top: 30px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.feature-item i {
  width: 38px;
  height: 38px;
  background: #24a99a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.feature-item span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* BUTTON */

.origins-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #24a99a;
  color: #fff;
  padding: 16px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s ease;
  box-shadow: 0 12px 30px rgba(36,169,154,0.25);
}

.origins-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-5px);
}

.origins-btn i {
  transition: 0.3s;
}

.origins-btn:hover i {
  transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 991px) {

  .origins-content {
    padding-left: 0;
  }

  .origins-title {
    font-size: 38px;
  }

  .experience-box {
    right: 20px;
  }

}

@media (max-width: 767px) {

  .origins-title {
    font-size: 30px;
  }

  .experience-box {
    padding: 18px 20px;
    bottom: 20px;
    right: 15px;
  }

  .experience-box h3 {
    font-size: 30px;
  }

  .origins-main-img {
    border-radius: 20px;
  }

}

/* testimonial */


/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
  background: linear-gradient(135deg, #f8fbfb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* TAG */

.testimonial-tag {
  display: inline-block;
  background: rgba(36,169,154,0.12);
  color: #24a99a;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TITLE */

.testimonial-title {
  font-size: 50px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.testimonial-subtitle {
  max-width: 800px;
  color: #666;
  line-height: 1.9;
  font-size: 17px;
}

/* CARD */

.testimonial-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(36,169,154,0.08);
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(36,169,154,0.15);
}

/* TOP BORDER */

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,#24a99a,#111);
}

/* QUOTE */

.quote-icon {
  width: 75px;
  height: 75px;
  background: rgba(36,169,154,0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.quote-icon i {
  font-size: 34px;
  color: #24a99a;
}

/* RATING */

.rating-stars {
  margin-bottom: 20px;
}

.rating-stars i {
  color: #f8b400;
  margin-right: 4px;
  font-size: 15px;
}

/* TEXT */

.testimonial-text {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 35px;
}

/* CLIENT */

.client-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.client-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(36,169,154,0.12);
}

.client-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.client-content span {
  color: #24a99a;
  font-weight: 600;
  font-size: 15px;
}

/* DOTS */

.owl-theme .owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  background: #c7d4d2;
  transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 35px;
  border-radius: 30px;
  background: #24a99a;
}

/* RESPONSIVE */

@media(max-width:991px){

  .testimonial-title{
    font-size:40px;
  }

}

@media(max-width:767px){

  .testimonial-title{
    font-size:30px;
  }

  .testimonial-card{
    padding:30px 25px;
    border-radius:22px;
  }

}


/* =========================
   PREMIUM BLOG SECTION CSS
========================= */

.blog-list-section {
  background: #f4f8f8;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 120px 0;
}

/* PREMIUM BACKGROUND EFFECT */

.blog-list-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(36, 169, 154, 0.12) 0%,
      rgba(36, 169, 154, 0) 70%);
  top: -250px;
  left: -180px;
  z-index: -1;
}

.blog-list-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 70%);
  bottom: -220px;
  right: -150px;
  z-index: -1;
}

/* =========================
   SECTION TITLE
========================= */

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(36, 169, 154, 0.12);
  color: #24a99a;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 60px;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.section-subtitle {
  max-width: 780px;
  color: #666;
  font-size: 18px;
  line-height: 1.9;
}



/* =========================
   PREMIUM BLOG SECTION CSS
========================= */

.blog-list-section {
  background: #f4f8f8;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 120px 0;
}

/* PREMIUM BACKGROUND EFFECT */

.blog-list-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(36, 169, 154, 0.12) 0%,
      rgba(36, 169, 154, 0) 70%);
  top: -250px;
  left: -180px;
  z-index: -1;
}

.blog-list-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 70%);
  bottom: -220px;
  right: -150px;
  z-index: -1;
}

/* =========================
   SECTION TITLE
========================= */

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(36, 169, 154, 0.12);
  color: #24a99a;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.section-subtitle {
  max-width: 780px;
  color: #666;
  font-size: 18px;
  line-height: 1.9;
}

/* =========================
   BLOG CARD
========================= */

.blog-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  transition: 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(36, 169, 154, 0.08);
}

/* TOP PREMIUM BORDER */

.blog-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 40px;
  background: linear-gradient(135deg,
      rgba(36, 169, 154, 0.5),
      rgba(255, 255, 255, 0.2),
      rgba(0, 0, 0, 0.08));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* HOVER */

.blog-item:hover {
  transform: translateY(-14px) scale(1.01);
  box-shadow:
    0 35px 70px rgba(36, 169, 154, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   IMAGE
========================= */

.post-img {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.post-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: 0.7s ease;
}

.blog-item:hover .post-img img {
  transform: scale(1.08);
}

/* IMAGE OVERLAY */

.post-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0));
}

/* CATEGORY */

.blog-category {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
}

/* =========================
   CONTENT
========================= */

.blog-content {
  padding: 65px 60px;
  position: relative;
}

/* META */

.post-meta {
  margin-bottom: 30px;
}

.post-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.post-meta ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 15px;
  font-weight: 600;
}

.post-meta ul li i {
  width: 38px;
  height: 38px;
  background: rgba(36,169,154,0.12);
  color: #24a99a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* BLOG TITLE */

.blog-content h2 {
    font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  transition: 0.4s ease;
}

.blog-item:hover .blog-content h2 {
  color: #24a99a;
}

/* TEXT */

.blog-content p {
  font-size: 17px;
  line-height: 2;
  color: #666;
  margin-bottom: 38px;
}

/* =========================
   BUTTON
========================= */

.read-btn a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #24a99a, #1c8d81);
  color: #fff;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.4s ease;
  box-shadow:
    0 15px 30px rgba(36, 169, 154, 0.25);
}

.read-btn a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-5px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.15);
}

.read-btn a i {
  transition: 0.4s ease;
}

.read-btn a:hover i {
  transform: translateX(6px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

  .section-title{
    font-size:50px;
  }

  .blog-content{
    padding:50px 45px;
  }

  .blog-content h2{
    font-size:34px;
  }

}

@media(max-width:991px){

  .section-title{
    font-size:42px;
  }

  .blog-content{
    padding:40px;
  }

  .post-img img{
    min-height:350px;
  }

}

@media(max-width:767px){

  .blog-list-section{
    padding:80px 0;
  }

  .section-title{
    font-size:32px;
  }

  .section-subtitle{
    font-size:15px;
  }

  .blog-content{
    padding:30px 25px;
  }

  .blog-content h2{
    font-size:26px;
  }

  .blog-content p{
    font-size:15px;
    line-height:1.8;
  }

  .blog-item{
    border-radius:25px;
  }

  .post-img img{
    min-height:280px;
  }

  .post-meta ul{
    gap:15px;
  }

}


/* blog-detail */

/* =========================
   BLOG DETAIL PAGE
========================= */

.blog-detail {
  background: #f5f9f9;
  position: relative;
  overflow: hidden;
}

.blog-detail::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(36,169,154,0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
}

.blog-detail::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0,0,0,0.04);
  border-radius: 50%;
  bottom: -200px;
  right: -180px;
}

.blog-detail .container{
  position: relative;
  z-index: 2;
}

/* MAIN CARD */

.blog-detail-wrapper {
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* HERO IMAGE */

.blog-hero-img {
  position: relative;
  overflow: hidden;
}

.blog-hero-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #24a99a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

/* CONTENT */

.blog-content-wrap {
  padding: 60px;
}

/* META */

.post-meta {
  margin-bottom: 25px;
}

.post-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.post-meta ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-weight: 600;
}

.post-meta ul li i {
  color: #24a99a;
}

/* TITLE */

.blog-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #111;
}

/* TEXT */

.blog-content-wrap p {
  font-size: 17px;
  line-height: 2;
  color: #666;
  margin-bottom: 25px;
}

/* HEADINGS */

.blog-content-wrap h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 45px 0 20px;
  color: #111;
}

.blog-content-wrap h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 18px;
  color: #111;
}

.blog-content-wrap h4 {
  font-size: 28px;
  font-weight: 700;
  margin: 35px 0 18px;
  color: #111;
}

/* HIGHLIGHT BOX */

.highlight-box {
  background: rgba(36,169,154,0.08);
  border-left: 5px solid #24a99a;
  padding: 35px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  margin: 35px 0;
}

.highlight-box i {
  font-size: 34px;
  color: #24a99a;
}

.highlight-box p {
  margin: 0;
  color: #222;
  font-weight: 600;
}

/* TABLE */

.custom-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  margin: 40px 0;
}

.custom-table thead {
  background: #24a99a;
}

.custom-table th {
  color: #fff;
  padding: 18px;
  font-size: 16px;
  text-align: left;
}

.custom-table td {
  padding: 18px;
  border-bottom: 1px solid #eee;
  color: #666;
}

.custom-table tbody tr:nth-child(even){
  background: #f8f8f8;
}

/* TAGS */

.blog-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-tags a {
  background: rgba(36,169,154,0.1);
  color: #24a99a;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s ease;
}

.blog-tags a:hover {
  background: #24a99a;
  color: #fff;
}

/* SIDEBAR */

.blog-sidebar {
  position: sticky;
  top: 30px;
}

.sidebar-widget {
  background: #fff;
  padding: 35px;
  border-radius: 28px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.sidebar-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

/* SEARCH */

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  height: 65px;
  border: 1px solid #ddd;
  border-radius: 60px;
  padding: 0 70px 0 25px;
  outline: none;
}

.search-box button {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 50px;
  height: 50px;
  border: none;
  background: #24a99a;
  color: #fff;
  border-radius: 50%;
}

/* CATEGORY */

.category-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-list li {
  margin-bottom: 15px;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  padding: 16px 22px;
  border-radius: 15px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: 0.4s ease;
}

.category-list li a:hover {
  background: #24a99a;
  color: #fff;
}

/* RECENT POST */

.recent-post {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.recent-post-img img {
  width: 95px;
  height: 95px;
  border-radius: 18px;
  object-fit: cover;
}

.recent-post-content h5 {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.recent-post-content h5 a {
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.recent-post-content h5 a:hover {
  color: #24a99a;
}

.recent-post-content span {
  color: #666;
  font-size: 14px;
}

/* RESPONSIVE */

@media(max-width:991px){

  .blog-content-wrap{
    padding:40px;
  }

  .blog-title{
    font-size:38px;
  }

}

@media(max-width:767px){

  .blog-content-wrap{
    padding:30px 25px;
  }

  .blog-title{
    font-size:28px;
  }

  .blog-content-wrap h2{
    font-size:26px;
  }

  .blog-content-wrap h3{
    font-size:22px;
  }

  .blog-content-wrap h4{
    font-size:20px;
  }

  .blog-hero-img img{
    height:300px;
  }

  .sidebar-widget{
    padding:25px;
    border-radius:20px;
  }

  .highlight-box{
    flex-direction: column;
  }

}



/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  background: linear-gradient(135deg,#f8fbfb 0%,#ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* BACKGROUND EFFECT */

.contact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(36,169,154,0.06);
  border-radius: 50%;
  top: -220px;
  left: -180px;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0,0,0,0.04);
  border-radius: 50%;
  bottom: -200px;
  right: -180px;
}

.contact-section .container{
  position: relative;
  z-index: 2;
}

/* TAG */

.contact-tag {
  display: inline-block;
  background: rgba(36,169,154,0.12);
  color: #24a99a;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* TITLE */

.section-title {
  font-size: 56px;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-subtitle {
  max-width: 760px;
  color: #666;
  line-height: 1.9;
  font-size: 17px;
}

/* WRAPPER */

.contact-wrapper {
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* LEFT SIDE */

.contact-info {
  background: linear-gradient(135deg,#24a99a,#1e8d81);
  padding: 70px 50px;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -150px;
  right: -120px;
}

.contact-info h3 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  margin-bottom: 40px;
}

/* INFO ITEM */

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.icon-box {
  width: 65px;
  height: 65px;
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 24px;
  color: #fff;
}

.info-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-content span {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* SOCIAL */

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}

.social-links a {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.4s ease;
}

.social-links a:hover {
  background: #fff;
  color: #24a99a;
  transform: translateY(-5px);
}

/* FORM */

.contact-form-wrapper {
  padding: 70px 60px;
}

.contact-form-wrapper h3 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 35px;
  color: #111;
}

/* FORM GROUP */

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 18px 22px;
  outline: none;
  transition: 0.4s ease;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #24a99a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(36,169,154,0.08);
}

/* BUTTON */

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #24a99a;
  color: #fff;
  border: none;
  padding: 18px 34px;
  border-radius: 60px;
  font-weight: 700;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(36,169,154,0.2);
}

.contact-btn:hover {
  background: #111;
  transform: translateY(-5px);
}

.contact-btn i {
  transition: 0.3s;
}

.contact-btn:hover i {
  transform: translateX(5px);
}

/* MAP */

.map-section iframe {
  filter: grayscale(20%);
}

/* RESPONSIVE */

@media(max-width:991px){

  .contact-info,
  .contact-form-wrapper{
    padding:50px 40px;
  }

  .section-title{
    font-size:42px;
  }

}

@media(max-width:767px){

  .section-title{
    font-size:32px;
  }

  .contact-info,
  .contact-form-wrapper{
    padding:35px 25px;
  }

  .contact-info h3,
  .contact-form-wrapper h3{
    font-size:28px;
  }

  .contact-wrapper{
    border-radius:25px;
  }

}




/* result */


/* =========================
   RESULTS SECTION
========================= */

#results {
    background: linear-gradient(135deg, #f7fbfb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* BACKGROUND SHAPES */

#results::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle,
            rgba(36, 169, 154, 0.10) 0%,
            rgba(36, 169, 154, 0) 70%);
    top: -250px;
    left: -180px;
    z-index: -1;
}

#results::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0) 70%);
    bottom: -220px;
    right: -150px;
    z-index: -1;
}

/* =========================
   SECTION TITLE
========================= */

#results .display-4 {
    font-size: 62px;
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px !important;
}

#results .lead {
    color: #666 !important;
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
}

/* =========================
   RESULT CARD
========================= */

.result-card {
    background: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    border-radius: 32px !important;
    overflow: hidden;
    position: relative;
    transition: 0.5s ease;
    backdrop-filter: blur(14px);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.05),
        0 5px 15px rgba(36,169,154,0.06);
    height: 100%;
}

/* PREMIUM BORDER EFFECT */

.result-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(36,169,154,0.4),
        rgba(255,255,255,0.2),
        rgba(0,0,0,0.08)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* HOVER */

.result-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 30px 70px rgba(36,169,154,0.16),
        0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */

.result-img {
    overflow: hidden;
    position: relative;
}

.result-img img {
    transition: 0.7s ease;
    width: 100%;
    height: 240px !important;
    object-fit: cover !important;
}

.result-card:hover .result-img img {
    transform: scale(1.08);
}

/* IMAGE OVERLAY */

.result-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0,0,0,0.4),
            rgba(0,0,0,0));
}

/* =========================
   CARD BODY
========================= */

.result-card .card-body {
    padding: 35px 30px;
    position: relative;
}

/* REVENUE BADGE */

.result-card .card-body::before {
    content: "Case Study";
    position: absolute;
    top: -18px;
    left: 30px;
    background: #24a99a;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(36,169,154,0.25);
}

/* TEXT */

.result-card .text-muted {
    color: #666 !important;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 0;
}

/* HIGHLIGHT */

.result-card .text-muted b {
    display: block;
    font-size: 22px;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.4;
    font-weight: 800;
    transition: 0.3s ease;
}

.result-card:hover .text-muted b {
    color: #24a99a;
}

/* =========================
   BUTTON
========================= */

#see-more-btn {
    background: linear-gradient(135deg, #24a99a, #1f8f82);
    border: none;
    padding: 18px 38px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: 0.4s ease;
    box-shadow:
        0 15px 35px rgba(36,169,154,0.2);
}

#see-more-btn:hover {
    background: #111;
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    #results .display-4{
        font-size:52px;
    }

}

@media(max-width:991px){

    #results .display-4{
        font-size:42px;
    }

    .result-card .card-body{
        padding:30px 25px;
    }

    .result-card .text-muted b{
        font-size:20px;
    }

}

@media(max-width:767px){

    #results{
        padding:80px 0;
    }

    #results .display-4{
        font-size:32px;
    }

    #results .lead{
        font-size:16px !important;
    }

    .result-card{
        border-radius:24px !important;
    }

    .result-img img{
        height:220px !important;
    }

    .result-card .card-body{
        padding:25px 22px;
    }

    .result-card .text-muted{
        font-size:15px;
        line-height:1.8;
    }

    .result-card .text-muted b{
        font-size:18px;
    }

    #see-more-btn{
        width:100%;
        padding:16px 25px;
    }

}


/* why work */

/* =========================
   RESULTS SECTION
========================= */

#results {
    background: linear-gradient(135deg, #f7fbfb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* BACKGROUND SHAPES */

#results::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle,
            rgba(36, 169, 154, 0.10) 0%,
            rgba(36, 169, 154, 0) 70%);
    top: -250px;
    left: -180px;
    z-index: -1;
}

#results::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0) 70%);
    bottom: -220px;
    right: -150px;
    z-index: -1;
}

/* =========================
   SECTION TITLE
========================= */

#results .display-4 {
    font-size: 62px;
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px !important;
}

#results .lead {
    color: #666 !important;
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
}

/* =========================
   RESULT CARD
========================= */

.result-card {
    background: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    border-radius: 32px !important;
    overflow: hidden;
    position: relative;
    transition: 0.5s ease;
    backdrop-filter: blur(14px);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.05),
        0 5px 15px rgba(36,169,154,0.06);
    height: 100%;
}

/* PREMIUM BORDER EFFECT */

.result-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(36,169,154,0.4),
        rgba(255,255,255,0.2),
        rgba(0,0,0,0.08)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* HOVER */

.result-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 30px 70px rgba(36,169,154,0.16),
        0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */

.result-img {
    overflow: hidden;
    position: relative;
}

.result-img img {
    transition: 0.7s ease;
    width: 100%;
    height: 240px !important;
    object-fit: cover !important;
}

.result-card:hover .result-img img {
    transform: scale(1.08);
}

/* IMAGE OVERLAY */

.result-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0,0,0,0.4),
            rgba(0,0,0,0));
}

/* =========================
   CARD BODY
========================= */

.result-card .card-body {
    padding: 35px 30px;
    position: relative;
}

/* REVENUE BADGE */

.result-card .card-body::before {
    content: "Case Study";
    position: absolute;
    top: -18px;
    left: 30px;
    background: #24a99a;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(36,169,154,0.25);
}

/* TEXT */

.result-card .text-muted {
    color: #666 !important;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 0;
}

/* HIGHLIGHT */

.result-card .text-muted b {
    display: block;
    font-size: 22px;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.4;
    font-weight: 800;
    transition: 0.3s ease;
}

.result-card:hover .text-muted b {
    color: #24a99a;
}

/* =========================
   BUTTON
========================= */

#see-more-btn {
    background: linear-gradient(135deg, #24a99a, #1f8f82);
    border: none;
    padding: 18px 38px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: 0.4s ease;
    box-shadow:
        0 15px 35px rgba(36,169,154,0.2);
}

#see-more-btn:hover {
    background: #111;
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    #results .display-4{
        font-size:52px;
    }

}

@media(max-width:991px){

    #results .display-4{
        font-size:42px;
    }

    .result-card .card-body{
        padding:30px 25px;
    }

    .result-card .text-muted b{
        font-size:20px;
    }

}

@media(max-width:767px){

    #results{
        padding:80px 0;
    }

    #results .display-4{
        font-size:32px;
    }

    #results .lead{
        font-size:16px !important;
    }

    .result-card{
        border-radius:24px !important;
    }

    .result-img img{
        height:220px !important;
    }

    .result-card .card-body{
        padding:25px 22px;
    }

    .result-card .text-muted{
        font-size:15px;
        line-height:1.8;
    }

    .result-card .text-muted b{
        font-size:18px;
    }

    #see-more-btn{
        width:100%;
        padding:16px 25px;
    }

}




/* services */


/* =========================
   SERVICES SECTION
========================= */

.modern-services-section{
    background:#f7fbfb;
    overflow:hidden;
    position:relative;
}

/* BACKGROUND EFFECT */

.modern-services-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(36,169,154,0.06);
    border-radius:50%;
    top:-250px;
    left:-220px;
}

.modern-services-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,0,0,0.03);
    border-radius:50%;
    bottom:-220px;
    right:-180px;
}

.modern-services-section .container{
    position:relative;
    z-index:2;
}

/* =========================
   HEADER
========================= */

.section-heading{
    margin-bottom:90px;
}

.service-badge{
    display:inline-block;
    background:rgba(36,169,154,0.12);
    color:#24a99a;
    padding:12px 28px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:22px;
}

.section-heading h2{
    font-size:64px;
    font-weight:900;
    line-height:1.1;
    color:#111;
    margin-bottom:25px;
}

.section-heading p{
    max-width:850px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/* =========================
   SERVICE BOX
========================= */

.service-box{
    background:#fff;
    border-radius:35px;
    padding:65px;
    margin-bottom:50px;
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

.service-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#24a99a,#111);
}

/* =========================
   IMAGE
========================= */

.service-image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:28px;
}

.service-image-wrapper img{
    width:100%;
    height:650px;
    object-fit:cover;
    transition:0.7s ease;
}

.service-box:hover .service-image-wrapper img{
    transform:scale(1.08);
}

.floating-label{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#24a99a;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 15px 35px rgba(36,169,154,0.25);
}

/* =========================
   CONTENT
========================= */

.mini-label{
    display:inline-block;
    color:#24a99a;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.service-content h2{
    font-size:50px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:25px;
    color:#111;
}

.service-description{
    font-size:17px;
    color:#666;
        font-family: 'Inter';
    line-height:1.9;
    margin-bottom:40px;
}

/* =========================
   GRID
========================= */

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

/* =========================
   CARD
========================= */

.service-card{
    background:#f8fbfb;
    padding:30px;
    border-radius:25px;
    transition:0.4s ease;
    border:1px solid rgba(36,169,154,0.08);
}

.service-card:hover{
    transform:translateY(-8px);
    background:#fff;
    box-shadow:0 20px 45px rgba(36,169,154,0.12);
}

.icon-box{
    width:75px;
    height:75px;
    background:rgba(36,169,154,0.12);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.icon-box i{
    font-size:30px;
    color:#24a99a;
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* =========================
   FEATURE LIST
========================= */

.feature-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature-item{
    display:flex;
    gap:22px;
    background:#f8fbfb;
    padding:25px;
    border-radius:22px;
    transition:0.4s ease;
}

.feature-item:hover{
    background:#fff;
    transform:translateX(8px);
    box-shadow:0 18px 40px rgba(36,169,154,0.1);
}

.feature-item i{
    width:65px;
    height:65px;
    background:#24a99a;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.feature-item h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
}

.feature-item p{
    margin:0;
    color:#666;
    line-height:1.8;
}

/* =========================
   WHY UGC
========================= */

.why-ugc-box{
    background:#111;
    color:#fff;
    padding:40px;
    border-radius:28px;
    margin-top:40px;
}

.why-ugc-box h3{
    font-size:32px;
    font-weight:800;
    margin-bottom:30px;
}

.ugc-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.ugc-list div{
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.06);
    padding:18px 22px;
    border-radius:16px;
}

.ugc-list i{
    color:#24a99a;
}

.why-ugc-box p{
    color:rgba(255,255,255,0.8);
    line-height:1.9;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    .section-heading h2{
        font-size:52px;
    }

    .service-content h2{
        font-size:42px;
    }

}

@media(max-width:991px){

    .service-box{
        padding:40px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .service-content h2{
        font-size:34px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .ugc-list{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .modern-services-section{
        padding:80px 0;
    }

    .section-heading{
        margin-bottom:50px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .section-heading p{
        font-size:15px;
    }

    .service-box{
        padding:25px;
        border-radius:25px;
    }

    .service-content h2{
        font-size:28px;
    }

    .service-description{
        font-size:15px;
    }

    .service-image-wrapper img{
        height:320px;
    }

    .service-card{
        padding:24px;
    }

    .service-card h4{
        font-size:20px;
    }

    .feature-item{
        flex-direction:column;
    }

    .feature-item h5{
        font-size:20px;
    }

    .why-ugc-box{
        padding:28px;
    }

    .why-ugc-box h3{
        font-size:26px;
    }

}


/* performance */

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

    .section-heading{
      text-align:center;
      margin-bottom:60px;
    }

    .section-heading h2{
      font-size:44px;
      font-weight:700;
      margin-bottom:15px;
      color:#111;
    }

    .section-heading p{
      max-width:900px;
      margin:auto;
      color:#555;
      font-size:18px;
      line-height:1.7;
    }

    /* ACCORDION */

    .custom-accordion .accordion-item{
      border:none;
      margin-bottom:30px;
      border-radius:25px !important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 10px 35px rgba(0,0,0,0.06);
    }

    .custom-accordion .accordion-button{
      background:#fff;
      padding:35px;
      box-shadow:none !important;
      border:none;
      align-items:flex-start;
    }

    .custom-accordion .accordion-button:not(.collapsed){
      background:#fff;
      color:#111;
    }

    .custom-accordion .accordion-button::after{
      background-image:none;
      content:"\f107";
      font-family:"Font Awesome 6 Free";
      font-weight:900;
      width:auto;
      height:auto;
      font-size:20px;
      color:#2a9d8f;
      transform:none;
    }

    .custom-accordion .accordion-button:not(.collapsed)::after{
      transform:rotate(180deg);
    }

    .service-tag{
      font-size:14px;
      font-weight:500;
      color:#2a9d8f;
      margin-bottom:10px;
      text-transform:uppercase;
      letter-spacing:1px;
    }

    .service-title{
      font-size:42px;
      font-weight:700;
      color:#111;
      margin-bottom:0;
    }

    .service-description{
      color:#555;
      line-height:1.8;
      font-size:16px;
      padding-top:10px;
    }

    .accordion-body{
      padding:0 35px 40px;
    }

    /* SERVICE LIST */

    .service-list{
      margin-top:25px;
      border-top:1px solid #e6e6e6;
    }

    .service-row{
      display:flex;
      justify-content:space-between;
      gap:40px;
      padding:22px 0;
      border-bottom:1px solid #e6e6e6;
    }

    .service-row h5{
      min-width:280px;
      font-size:22px;
      font-weight:600;
      color:#111;
      margin:0;
    }

    .service-row p{
      color:#666;
      margin:0;
      line-height:1.7;
    }

    /* CASE STUDIES */

    .case-title{
      text-align:center;
      margin:50px 0 35px;
      font-size:34px;
      font-weight:700;
      color:#111;
    }

    .case-card{
      position:relative;
      overflow:hidden;
      border-radius:25px;
      height:420px;
      transition:0.4s;
      box-shadow:0 10px 30px rgba(0,0,0,0.12);
    }

    .case-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:0.5s;
    }

    .case-card:hover img{
      transform:scale(1.08);
    }

    .case-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.2),
      transparent);
    }

    .case-content{
      position:absolute;
      bottom:0;
      width:100%;
      padding:25px;
      color:#fff;
    }

    .case-content h4{
      font-size:30px;
      font-weight:700;
      margin-bottom:5px;
    }

    .case-content span{
      font-size:14px;
      color:#ddd;
      letter-spacing:1px;
    }

    .stats-bar{
      margin-top:20px;
      background:#2a9d8f;
      border-radius:15px;
      padding:15px 10px;
    }

    .stat-box{
      text-align:center;
      border-right:1px solid rgba(255,255,255,0.2);
    }

    .stat-box:last-child{
      border-right:none;
    }

    .stat-box h6{
      margin:0;
      font-size:18px;
      font-weight:700;
      color:#fff;
    }

    .stat-box small{
      color:#e8f7f5;
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:1px;
    }

    /* BUTTON */

    .explore-btn{
      margin-top:35px;
      display:inline-flex;
      align-items:center;
      gap:12px;
      padding:14px 28px;
      background:#2a9d8f;
      color:#fff;
      text-decoration:none;
      border-radius:50px;
      font-weight:600;
      transition:0.4s;
    }

    .explore-btn:hover{
      background:#21867a;
      transform:translateY(-3px);
      color:#fff;
    }

    @media(max-width:991px){

      .service-row{
        flex-direction:column;
        gap:10px;
      }

      .service-row h5{
        min-width:100%;
      }

      .service-title{
        font-size:34px;
      }

      .section-heading h2{
        font-size:34px;
      }
    }

    @media(max-width:767px){

      .accordion-button{
        padding:25px !important;
      }

      .accordion-body{
        padding:0 25px 30px;
      }

      .service-title{
        font-size:28px;
      }

      .case-card{
        height:360px;
      }
    }

    /* ugc */


    .ugc-hero-section{
    padding:60px 0;
    position:relative;
    overflow:hidden;
}

.ugc-hero-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(36,169,154,0.06);
    border-radius:50%;
    top:-250px;
    left:-200px;
}

/* HERO CONTENT */

.ugcabout-badge{
    display:inline-block;
    background:rgba(36,169,154,0.12);
    color:#24a99a;
    padding:12px 28px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:22px;
}

.ugcabout-content h2{
    font-size:30px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:25px;
    color:#111;
}

.ugcabout-subtitle{
    color:#24a99a;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.ugcabout-description{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

/* BUTTONS */

.ugcabout-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.main-btn{
    background:#24a99a;
    color:#fff;
    padding:18px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s ease;
}

.main-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-5px);
}

.secondary-btn{
    border:2px solid #24a99a;
    color:#24a99a;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s ease;
}

.secondary-btn:hover{
    background:#24a99a;
    color:#fff;
}

/* HERO IMAGE */

.hero-image{
    position:relative;
}

.hero-image img{
    border-radius:35px;
    height:650px;
    object-fit:cover;
    width:100%;
}

.floating-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:22px 25px;
    border-radius:22px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.floating-card i{
    width:65px;
    height:65px;
    background:#24a99a;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.floating-card h4{
    margin:0;
    font-size:20px;
    font-weight:700;
}

.floating-card span{
    color:#666;
}

/* ===================================
   SECTION TITLE
=================================== */

.section-title{
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#24a99a;
    font-weight:700;
    margin-bottom:16px;
}

.section-title h2{
    font-size:54px;
    font-weight:900;
    line-height:1.2;
}

/* ===================================
   STRATEGY CARD
=================================== */

.strategy-card{
    background:#fff;
    padding:40px 30px;
    border-radius:30px;
    text-align:center;
    height:100%;
    transition:0.4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,0.04);
}

.strategy-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(36,169,154,0.12);
}

.icon-box{
    width:85px;
    height:85px;
    background:rgba(36,169,154,0.12);
    color:#24a99a;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin:auto auto 25px;
}

.strategy-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.strategy-card p{
    color:#666;
    line-height:1.8;
}

/* ===================================
   UGC CARDS
=================================== */

.ugc-card{
    background:#fff;
    padding:35px;
    border-radius:28px;
    transition:0.4s ease;
    height:100%;
    border:1px solid rgba(36,169,154,0.08);
}

.ugc-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(36,169,154,0.12);
}

.ugc-card i{
    width:80px;
    height:80px;
    background:#24a99a;
    color:#fff;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.ugc-card h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}

.ugc-card p{
    color:#666;
    line-height:1.8;
}

/* ===================================
   WHY UGC
=================================== */

.why-wrapper{
    background:#111;
    padding:70px;
    border-radius:40px;
    overflow:hidden;
}

.why-content span{
    color:#24a99a;
    font-weight:700;
}

.why-content h2{
    color:#fff;
    font-size:54px;
    font-weight:900;
    line-height:1.2;
    margin:20px 0;
}

.why-content p{
    color:rgba(255,255,255,0.8);
    line-height:1.9;
    margin-bottom:35px;
}

.why-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.why-list div{
    background:rgba(255,255,255,0.06);
    padding:18px 22px;
    border-radius:16px;
    color:#fff;
    display:flex;
    align-items:center;
    gap:14px;
}

.why-list i{
    color:#24a99a;
}

.why-image img{
    border-radius:30px;
    height:500px;
    object-fit:cover;
    width:100%;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

 


    .why-wrapper{
        padding:40px;
    }

}

@media(max-width:767px){

    .ugc-hero-section{
        padding:80px 0;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-subtitle{
        font-size:18px;
    }

    .hero-description{
        font-size:15px;
    }

    .section-title h2,
    .why-content h2{
        font-size:30px;
    }

    .hero-image img,
    .why-image img{
        height:320px;
    }

    .floating-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

    .why-wrapper{
        padding:25px;
        border-radius:25px;
    }

    .ugc-card,
    .strategy-card{
        padding:25px;
    }

}



/*  */



.difference-section{
  background: #f7f7f7;
  padding: 90px 0;
}

.difference-title{
  font-size: 52px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
}

.difference-text{
  color: #666;
  font-size: 17px;
  line-height: 1.8;
  max-width: 850px;
}

.difference-card{
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.difference-card:hover{
  transform: translateY(-10px);
}

.difference-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #24a99a;
}

.difference-icon{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.difference-icon i{
  font-size: 30px;
  color: #fff;
}

.bg-green{
  background: #24a99a;
}

.bg-orange{
  background: #f49a45;
}

.bg-purple{
  background: #7d5cff;
}

.bg-darkblue{
  background: #24485d;
}

.difference-card h3{
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1f1f1f;
  font-family: "Oswald", sans-serif;
}

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

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .difference-title{
    font-size: 42px;
  }

}

@media(max-width:767px){

  .difference-title{
    font-size: 34px;
  }

  .difference-card{
    padding: 30px 25px;
  }

}




.partner-section{
  background: #f7f7f7;
  padding: 90px 0;
}

.partner-title{
  font-size: 52px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
}

.partner-text{
  color: #666;
  font-size: 17px;
  line-height: 1.8;
  max-width: 750px;
}

/* =========================
   PARTNER CARD
========================= */

.partner-card{
  background: #fff;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  margin: 15px;
}

.partner-card:hover{
  transform: translateY(-10px);
}

.partner-card i{
  font-size: 60px;
  margin-bottom: 20px;
  color: #24a99a;
}

.partner-card h5{
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #1f1f1f;
}

/* =========================
   OWL NAV
========================= */

.partner-slider .owl-nav{
  text-align: center;
  margin-top: 40px;
}

.partner-slider .owl-nav button.owl-prev,
.partner-slider .owl-nav button.owl-next{
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: #24a99a !important;
  color: #fff !important;
  font-size: 22px !important;
  margin: 0 8px;
  transition: 0.3s;
}

.partner-slider .owl-nav button.owl-prev:hover,
.partner-slider .owl-nav button.owl-next:hover{
  background: #f49a45 !important;
}

/* =========================
   OWL DOTS
========================= */

.partner-slider .owl-dots{
  text-align: center;
  margin-top: 20px;
}

.partner-slider .owl-dot span{
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #cfcfcf !important;
  display: block;
  border-radius: 50%;
}

.partner-slider .owl-dot.active span{
  background: #24a99a !important;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .partner-title{
    font-size: 40px;
  }

}

@media(max-width:767px){

  .partner-title{
    font-size: 32px;
  }

}


/* 404 */

  .error-section{
      min-height:60vh;
      padding:40px 0px;
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
      background: linear-gradient(135deg,#24a99a,#163847);
    }

    /* Background Circles */

    .circle{
      position:absolute;
      border-radius:50%;
      background:rgba(255,255,255,0.08);
      animation: float 8s infinite ease-in-out;
    }

    .circle1{
      width:300px;
      height:300px;
      top:-100px;
      left:-100px;
    }

    .circle2{
      width:220px;
      height:220px;
      bottom:-80px;
      right:-60px;
      animation-delay:2s;
    }

    .circle3{
      width:150px;
      height:150px;
      top:20%;
      right:15%;
      animation-delay:4s;
    }

    @keyframes float{
      0%{
        transform:translateY(0px);
      }
      50%{
        transform:translateY(20px);
      }
      100%{
        transform:translateY(0px);
      }
    }

    /* Main Box */

    .error-box{
      position:relative;
      z-index:2;
      background:#fff;
      padding:70px 50px;
      border-radius:30px;
      text-align:center;
      max-width:700px;
      width:100%;
      box-shadow:0 20px 60px rgba(0,0,0,0.2);
    }

    .error-number{
      font-size:180px;
      line-height:1;
      font-weight:700;
      color:#24a99a;
      font-family:"Oswald", sans-serif;
      position:relative;
    }

    .error-number span{
      color:#f4a340;
    }

    .error-icon{
      width:120px;
      height:120px;
      background:#24a99a;
      margin:0 auto 30px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      animation: bounce 2s infinite;
    }

    .error-icon i{
      color:#fff;
      font-size:50px;
    }

    @keyframes bounce{
      0%,100%{
        transform:translateY(0);
      }
      50%{
        transform:translateY(-10px);
      }
    }

    .error-title{
      font-size:42px;
      font-weight:700;
      color:#1f1f1f;
      margin-bottom:20px;
      font-family:"Oswald", sans-serif;
    }

    .error-text{
      color:#666;
      font-size:18px;
      line-height:1.8;
      margin-bottom:35px;
    }

    /* Buttons */

    .error-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:#24a99a;
      color:#fff;
      padding:15px 35px;
      border-radius:50px;
      font-weight:600;
      transition:0.3s;
      text-decoration:none;
      margin:8px;
    }

    .error-btn:hover{
      background:#f4a340;
      color:#fff;
      transform:translateY(-3px);
    }

    .outline-btn{
      background:transparent;
      border:2px solid #24a99a;
      color:#24a99a;
    }

    .outline-btn:hover{
      border-color:#f4a340;
      background:#f4a340;
      color:#fff;
    }

    /* Responsive */

    @media(max-width:768px){

      .error-box{
        padding:50px 25px;
        margin:20px;
      }

      .error-number{
        font-size:120px;
      }

      .error-title{
        font-size:32px;
      }

      .error-text{
        font-size:16px;
      }

    }