


        /* hero section  */
        .offer-section {
      position: relative;
      padding: 80px 5%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* === Background Animated Circles === */
    .circle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.6;
      z-index: 0;
      animation: floatAnimation 12s ease-in-out infinite alternate;
    }

    .circle-yellow {
      background: #fcd85f;
      width: 350px;
      height: 350px;
      top: -100px;
      left: -120px;
      animation-delay: 0s;
    }

    .circle-blue {
      background: #a5c4ff;
      width: 150px;
      height: 150px;
      top: 50px;
      right: 200px;
      animation-delay: 2s;
    }

    .circle-pink {
      background: #f8a6b8;
      width: 80px;
      height: 80px;
      bottom: 120px;
      right: 150px;
      animation-delay: 4s;
    }

    .circle-purple {
      background: #7b61ff;
      width: 100px;
      height: 100px;
      bottom: 50px;
      left: 100px;
      animation-delay: 6s;
    }

    /* Floating motion */
    @keyframes floatAnimation {
      0% {
        transform: translate(0, 0) scale(1);
      }
      25% {
        transform: translate(40px, -30px) scale(1.05);
      }
      50% {
        transform: translate(-30px, 40px) scale(0.95);
      }
      75% {
        transform: translate(30px, 20px) scale(1.1);
      }
      100% {
        transform: translate(-40px, -20px) scale(1);
      }
    }

    /* === Main Container === */
    .offer-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      position: relative;
      z-index: 2;
      flex-wrap: wrap;
    }

    .offer-content {
      flex: 1 1 400px;
    }

    .subtitle {
      color: #7b61ff;
      letter-spacing: 1px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #111;
      line-height: 1.2;
    }

    .title span {
      color: #7b61ff;
    }

    .description {
      margin-top: 15px;
      color: #444;
      max-width: 400px;
    }

    .btn {
      display: inline-block;
      margin-top: 25px;
      background: #7b61ff;
      color: white;
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s;
    }

    .btn:hover {
      background: #6a4bff;
    }

    /* === Image Circle + Badge === */
    .offer-image {
      position: relative;
      flex: 1 1 400px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .offer-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 50%;
      object-fit: cover;
      border: 10px solid #e8ebf7;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .experience-box {
      position: absolute;
      bottom: 25px;
      left: 30px;
      background: #fff;
      padding: 20px 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: moveBadge 4s ease-in-out infinite alternate;
    }

    @keyframes moveBadge {
      0% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(10px);
      }
      100% {
        transform: translateX(-10px);
      }
    }

    .experience-box h2 {
      color: #7b61ff;
      font-size: 2rem;
      margin: 0;
    }

    .experience-box p {
      font-size: 0.9rem;
      color: #111;
      margin: 0;
      line-height: 1.3;
    }

    /* === Responsive === */
    @media (max-width: 992px) {
      .offer-container {
        flex-direction: column-reverse;
        text-align: center;
      }

      .offer-content {
        margin-top: 30px;
      }

      .offer-image img {
        max-width: 350px;
      }

      .experience-box {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
      }
    }

    @media (max-width: 600px) {
      .title {
        font-size: 2rem;
      }

      .btn {
        padding: 10px 25px;
      }

      .circle-yellow {
        width: 200px;
        height: 200px;
      }

      .experience-box {
        padding: 15px 25px;
      }
    }


    /* what we do section  */
        section.services {
      padding: 80px 5%;
      text-align: center;
      background: #fff;
    }

    .services h5 {
      color: #5c3ef7;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .services h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #000;
      margin-bottom: 50px;
      line-height: 1.3;
    }

    .service-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 40px 25px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #6a5af9, #7f6bff);
      transition: all 0.5s ease;
      z-index: 0;
      opacity: 0;
    }

    .card:hover::before {
      top: 0;
      opacity: 0.1;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .card img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 25px;
      z-index: 1;
      position: relative;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
      z-index: 1;
      position: relative;
    }

    .card p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 20px;
      z-index: 1;
      position: relative;
      line-height: 1.6;
    }

    .card a {
      display: inline-block;
      text-decoration: none;
      font-weight: 600;
      color: #5c3ef7;
      transition: color 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .card a:hover {
      color: #3a24f1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .services h2 {
        font-size: 2rem;
      }
      .card {
        padding: 30px 20px;
      }
    }



    /* 3rd section  */


.about-section {
  padding: 80px 8%;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.img-box {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  animation: floatUp 6s ease-in-out infinite;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.img-box:hover img {
  transform: scale(1.08);
}

.main-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffce33;
  border-radius: 20px;
  font-size: 4rem;
  animation: pulse 3s infinite;
}

.icon {
  animation: bounce 3s infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-content .section-subtitle {
  color: #5c41ff;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin: 15px 0;
  font-weight: 700;
}

.about-content h2 span {
  color: #000;
}

.about-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-quote {
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  border-left: 5px solid #5c41ff;
}

.about-quote:hover {
  transform: translateY(-5px);
}

.about-services .service {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.icon-circle {
  width: 57px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.4s;
}

.icon-circle:hover {
  transform: rotate(10deg) scale(1.1);
}

.pink {
  background: #ff5c8a;
}

.yellow {
  background: #ffb400;
}

.service-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #222;
}

.service-text p {
  color: #777;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    order: 2;
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    order: 1;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .about-images {
    grid-template-columns: 1fr;
  }

  .img-box {
    height: 220px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
}





/* portfolio section  */

    section.portfolio {
      position: relative;
      padding: 100px 20px;
      text-align: center;
      background: #fff;
      overflow: hidden;
    }

    /* Floating background bubble on right */
    section.portfolio::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url("https://themes.adnanshoukat.com/designsbridge/webcon/images/others/bubble-9.png") no-repeat right center;
      background-size: contain;
      opacity: 0.3;
      z-index: 0;
      pointer-events: none;
      animation: float-bg 10s ease-in-out infinite alternate;
    }

    @keyframes float-bg {
      0% { transform: translateY(0px); }
      100% { transform: translateY(25px); }
    }

    .portfolio .subheading {
      color: #5e2ced;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
      position: relative;
      z-index: 2;
    }

    .portfolio h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 60px;
      position: relative;
      z-index: 2;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: 0 auto 60px;
      position: relative;
      z-index: 2;
    }

    .portfolio-item {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .portfolio-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    /* Overlay effect */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .overlay i {
      font-size: 2rem;
      color: #fff;
      transform: translateY(15px);
      opacity: 0;
      transition: all 0.4s ease;
    }

    .portfolio-item:hover .overlay {
      opacity: 1;
      visibility: visible;
    }

    .portfolio-item:hover .overlay i {
      opacity: 1;
      transform: translateY(0);
    }

    .btn {
      background: linear-gradient(135deg, #5e2ced, #8f4efc);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      padding: 14px 40px;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(94, 44, 237, 0.3);
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(94, 44, 237, 0.4);
    }

    @media (max-width: 768px) {
      section.portfolio::after {
        display: none;
      }

      .portfolio h2 {
        font-size: 1.8rem;
      }

      .portfolio-grid {
        gap: 15px;
      }

      .btn {
        padding: 12px 30px;
      }
    }



        .team-section {
      position: relative;
      text-align: center;
      padding: 100px 20px;
      background: #f7fbff url("https://themes.adnanshoukat.com/designsbridge/webcon/images/bg/team-bg.png") no-repeat center;
      background-size: contain;
      overflow: hidden;
    }

    .team-section h5 {
      font-size: 16px;
      color: #6b4bff;
      font-weight: 600;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .team-section h2 {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 60px;
      color: #111;
    }

    .team-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 40px;
      justify-content: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .team-card {
      background: #f2f4f7;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .team-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .team-card:hover img {
      transform: scale(1.05);
    }

    .team-info {
      padding: 20px 10px 25px;
      background: #f2f4f7;
    }

    .team-info h3 {
      font-size: 16px;
      font-weight: 700;
      color: #1f1f75;
      margin-bottom: 4px;
    }

    .team-info p {
      font-size: 13px;
      color: #777;
    }

    /* Hover Overlay with Arrow */
    .team-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }

    .team-card:hover::before {
      opacity: 1;
    }

    .team-card::after {
      content: "\2192";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.5);
      color: #fff;
      font-size: 32px;
      opacity: 0;
      z-index: 2;
      transition: all 0.4s ease;
    }

    .team-card:hover::after {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    @media (max-width: 1024px) {
      .team-section {
        padding: 80px 15px;
      }

      .team-section h2 {
        font-size: 32px;
      }

      .team-card img {
        height: 260px;
      }
    }

    @media (max-width: 768px) {
      .team-section h2 {
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {
      .team-card img {
        height: 230px;
      }

      .team-info h3 {
        font-size: 15px;
      }
    }



    /* blog sectiopn  */
    
    section.blog-section {
      position: relative;
      padding: 80px 5%;
      overflow: hidden;
    }

    .blog-section h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #222;
    }

    /* Floating Background Elements */
    .floating-bg span {
      position: absolute;
      border-radius: 50%;
      background: rgb(33 150 243 / 24%);
      animation: moveRandom 20s linear infinite;
    }

    .floating-bg span:nth-child(1) {
      width: 120px;
      height: 120px;
      top: 15%;
      left: 10%;
      animation-duration: 18s;
    }

    .floating-bg span:nth-child(2) {
      width: 90px;
      height: 90px;
      bottom: 20%;
      right: 15%;
      animation-duration: 25s;
    }

    .floating-bg span:nth-child(3) {
      width: 100px;
      height: 100px;
      top: 40%;
      right: 5%;
      animation-duration: 22s;
    }

    @keyframes moveRandom {
      0% { transform: translate(0, 0); }
      50% { transform: translate(50px, -60px) rotate(30deg); }
      100% { transform: translate(0, 0); }
    }

    /* Swiper Container */
    .swiper {
      width: 100%;
      padding-bottom: 60px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    /* Blog Card */
    .blog-card {
      position: relative;
      width: 350px;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      cursor: pointer;
      text-decoration: none;

    }

    .blog-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
      border-radius: 15px;
    }

    .blog-card:hover img {
      transform: scale(1.02);
    }

    .blog-content {
      padding: 20px;
    }

    .blog-content h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #111;
    }

    .blog-content p {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.5;
    }

    /* Hover Overlay and Arrow */
    .blog-card::after {
      content: "→";
      position: absolute;
      right: 20px;
      top: 20px;
      font-size: 1.5rem;
      color: #4f46e5;
      opacity: 0;
      transition: all 0.4s ease;
      transform: translateX(-10px);
    }

    .blog-card:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
    }

    /* Swiper Pagination */
    .swiper-pagination-bullet {
      background: #4f46e5;
      opacity: 0.3;
    }

    .swiper-pagination-bullet-active {
      opacity: 1;
      background: #4f46e5;
    }
    .swiper-wrapper{
      padding-block: 30px !important;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .blog-card {
        width: 300px;
      }
    }

    @media (max-width: 768px) {
      .blog-section h2 {
        font-size: 2rem;
      }
      .blog-card {
        width: 270px;
      }
    }

    @media (max-width: 480px) {
      .blog-card {
        width: 90%;
      }
    }