* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

/* home-img */
/* ---------- Banner Background ---------- */
.page-banner {
  position: relative;
  width: 100%;
  height: 450px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.922)),
    url('./img/developer-Team.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* Background image fade-in */
  animation: bgFadeIn 1.5s ease-out forwards;
}

/* ---------- Text Content Animation ---------- */
.page-banner-content {
  opacity: 0;margin-top: 7%;
  transform: translateY(30px);
  animation: contentFadeUp 1s ease-out 0.10s forwards;
}

.page-banner-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
}

.page-banner-content p {
  margin-top: 10px;
  font-size: 18px;
}

/* ---------- Animations ---------- */
@keyframes bgFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contentFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   ABOUT SECTION STYLES
   ============================== */

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 10%;
  /* font-family: 'Urbanist', sans-serif; */
}

/* Image side */
.about-image {
  flex: 1;
  position: relative;
}

.about-image .main-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Small overlapping image */
.about-thumb {
  position: absolute;
  bottom: -30px;
  left: 30px;
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.about-thumb img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content side */
.about-content {
  flex: 1;
  padding: 20px;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/* Services list */
.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.about-list .icon {
  font-size: 22px;
  color: #1a73e8;
}

/* Learn more button */
/* .about-btn {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
}

.about-btn:hover {
  background: #125abc;
} */
/* Services List */
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 25px;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.services-list .icon {
  /* background: #007bff; */
  color: #007bff;
  border-radius: 15px;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.services-list h4 {
  font-size: 18px;
  margin: 0 0 5px;
}

.services-list p {
  font-size: 16px;
  color: #777;
  margin: 0;
}.content-col h2{
font-size: 40px;font-weight: 800;

}

/* Button */
.learn-more {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s;
}

.learn-more:hover {
  background: #007bff;
}


/* ==============================
   RESPONSIVE DESIGN
   ============================== */

/* Tablet & below */
@media (max-width: 991px) {
  .about-container {
    flex-direction: column; /* stack on mobile/tablet */
    text-align: center;
  }

  .about-thumb {
    position: static; /* no overlap */
    margin: 20px auto 0;
    width: 60%;
    display: block;
  }

  .about-list {
    text-align: left;
    margin: 20px auto;
    max-width: 400px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .about-thumb {
    width: 80%;
  }
}

/*  cards-slider -> About */
/* Process Slider Styles - Isolated */
#process-slider-head {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-top: 35px;margin-bottom: 30px;
}

#process-slider-para {
  text-align: center;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
}

.process-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px 60px;
}

.step-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  /* border-radius: 45%; */
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  /* border-bottom-left-radius: 30%;border-bottom-right-radius: 30%; */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin: 15px;
  position: relative;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.step-number-circle {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #007bff, #007bff);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.step-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 20px;
  border: 5px solid #fff;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}

.working-process-head{
  font-size: 19px;color: #1a1a1a;
}

.step-description {
  font-size: 15px;
  color: #666;
  padding: 15px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

/*  about- Video */

.about-video {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background: #f5f5f5;
}

.video-container {
  width: 80%;
  height: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



.play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

/*  Our values */


.mission-section {
  max-width: 1200px;
  margin: auto;
  padding: 70px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.info-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.info-card h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.info-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.info-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 40px;
  color: #4169e1;
  margin-bottom: 15px;
}

/* client-reviews */
.testimonial-title {
  text-align: center;
  font-size: 2.8rem;
  color: #222;
  margin-top: 35px;
}

.testimonial-subtitle {
  text-align: center;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px 20px;
  margin: 15px;
  transition: all 0.4s ease;
}

.testimonial-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 5px solid #fff;
}

.testimonial-heading {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-text {
  font-size: 15px;
  color: #666;
  padding: 10px;
}

.testimonial-stars {
  margin-top: 10px;
  font-size: 18px;
  color: orange;
}

.owl-item.center .testimonial-card {
  transform: translateY(-25px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

/* client-review -> About */

.client-review-card #process-slider-head {
  text-align: center;
  font-size: 2.8rem;
  color: #222;
  margin-top: 35px;
}

.client-review-card #process-slider-para {
  text-align: center;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
}

.client-review-card .process-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px 20px;
}

.client-review-card .step-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  /* border-top-left-radius: 50%;border-top-right-radius: 50%; */
  /* border-bottom-left-radius: 30%;border-bottom-right-radius: 30%; */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.3s ease translateY(-12px);
  margin: 15px;
  position: relative;
}

.client-review-card .step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.client-review-card .step-number-circle {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #007bff, #007bff);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.client-review-card .step-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 20px;
  border: 5px solid #fff;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}



.client-review-card .step-description {
  font-size: 15px;
  color: #666;
  padding: 15px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

/* --------------- Contact - Page ------------------------ */

.contact-detail {
  background: #f9fbfd;
  padding: 50px 20px;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  background-color: #f1f6fd !important;
}

.contact-info,
.contact-form {
  flex: 1 1 400px;
  padding: 50px;
  border-radius: 20px;
  background: #f1f6fd;
  transition: background 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-info:hover {
  background: #e6f0ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  font-size: 28px;
  margin: 10px 0;
  color: #000;
}

.contact-info h4 {
  font-size: 18px;
  text-align: center;
  margin: 10px 0;
  color: #000;
}

.contact-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s;
}

.info-item small,
p {
  margin-top: 1px;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-item .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;padding: 25px;
  color: #0b48ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.con-details {
  margin-top: 22px;
}

.contact-form {
  background: #fff;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form img {
  margin-left: 33%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  /* display: flex */
  gap: 20px;
  flex-wrap: wrap;
}

.input-box {
  position: relative;
  flex: 1;
}

.input-box input,
.input-box select {
  width: 100%;
  padding: 15px;
  padding-right: 40px;
  border-radius: 10px;
  border: none;
  background: #f1f6fd;
  outline: none;
  font-size: 14px;
}

.input-box i {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

.textarea-box {
  position: relative;
}

.textarea-box textarea {
  width: 100%;
  height: 150px;
  padding: 15px;
  padding-right: 40px;
  border-radius: 10px;
  background: #f1f6fd;
  border: none;
  font-size: 14px;
  resize: none;
  outline: none;
}

.textarea-box i {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #999;
}

.submit-btn {
  background: #003ef3;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #002fc0;
  transform: translateY(-2px);
}

small {
  color: #000;
}
@media (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: column;
  }
}
/* map */
.map {
  padding: 50px 20px;
  text-align: center;
}

.map h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #000000;
}

.map-wrapper {
  position: relative;
  width: 80%;
  margin: auto;
  padding-bottom: 40.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;

}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-icon {
  font-size: 40px;
  color: #003ef3;
  /* margin-bottom: 5px; */
  animation: bounce 1s infinite;
}

/* Optional bounce animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ---------------------- Blog ----------------------- */



.blog-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.left-panel {
  flex: 0 0 70%;
  background: #ffffff;
  padding: 60px 40px;
}

.left-panel h1 {
  font-size: 42px;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.left-panel h2 {
  font-size: 24px;
  margin: 30px 0 10px;
  color: #222;
}

.left-panel ul {
  list-style: none;
  padding-left: 0;
}

.left-panel li {
  margin: 10px 0;
  font-size: 16px;
}

.left-panel li::before {
  content: "✔";
  color: #003ef3;
  margin-right: 10px;
}

.left-panel p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 15px;
}

.image-banner {
  width: 100%;
  height: 350px;
  background: #ddd url(./img/bolg-img.webp) center/cover no-repeat;
  border-radius: 12px;
  margin: 30px 0;
}

.testimonials {
  background: #f8faff;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
}

.testimonial {
  margin-bottom: 25px;
  font-style: italic;
  color: #444;
}

.testimonial::before {
  content: "“";
  font-size: 24px;
  color: #003ef3;
}

.testimonial::after {
  content: "”";
  font-size: 24px;
  color: #003ef3;
}

.testimonial-author {
  margin-top: 10px;
  font-weight: bold;
  color: #003ef3;
}

.right-panel {
  flex: 0 0 30%;
  background: #ffffff;
  color: rgb(0, 0, 0);
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-sidebar {
  flex: 0 0 28%;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  height: fit-content;
  margin-top: 20%;
}

.right-panel h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.cta-box {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.822), rgba(0, 0, 0, 0.816)), url('./img/blog-side\ img.webp');
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  padding: 35px;
  color: white;
  text-align: center;
}

.cta-box i {
  font-size: 25px;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-box a {
  display: inline-block;
  padding: 12px 24px;

  color: #003ef3;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.sidebar-box {
  margin-bottom: 30px;
  background-color: #f1f6fd;
  padding: 20px;
  border-radius: 10px;
}

.sidebar-box1 h3 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  color: #334e68;
}

.sidebar-box input {
  width: 100%;
  padding: 10px;
  display: none;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.category-list,
.recent-posts {
  list-style: none;
}

.category-list li,
.recent-posts li {
  margin-bottom: 10px;
  background: white;
  padding: 10px 15px;
  border-radius: 6px;
  transition: 0.3s;
  cursor: pointer;
}

.category-list li:hover,
.recent-posts li:hover {
  background: #1a73e8;
  color: white;
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .left-content,
  .right-sidebar {
    flex: 0 0 100%;
  }
}


.cta-box a:hover {
  background: #000000a6;
}

.sidebar-box1 {
  background-color: #f1f6fd;
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    flex: 100%;
    padding: 40px 20px;
  }
}

/* -------------------------- Services ---------------------------------
   ------------------------------------------------------------------------
   */

/* Creative Services Section */

    #service-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }

    #service-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 20px;
      /* background: linear-gradient(45deg, #000, #555); */
  
     
    }

    #service-section p.subtitle {
      text-align: center;
      margin-bottom: 50px;
      font-size: 1.1rem;
      color: #666;
    }

    /* Grid Layout */
    .services-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    /* Card Styles */
    .services-cards {
      background: #fff;
      padding: 25px;
      border-radius: 18px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(50px);
    }

    .services-cards.show {
      animation: scrollUpCard 0.8s ease forwards;
    }

    .services-cards:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }

    .services-cards img {
      width: 90%;
      margin-bottom: 15px;
    }

    .services-cards h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #222;
    }

    .services-cards p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 20px;
    }

    .services-cards .btn {
      display: inline-block;
      padding: 10px 18px;
      background: linear-gradient(45deg, #1a73e8, #1a73e8);
      color: #fff;
      border: none;
      border-radius: 30px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

   .services-cards .btn:hover {
       background: linear-gradient(45deg, #000000, #313131);
      transform: scale(1.05);color: white;
    }

    /* Keyframes */
    @keyframes scrollUpCard {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Typography */
    @media (max-width: 768px) {
      h2 {
        font-size: 2rem;
      }
      p.subtitle {
        font-size: 1rem;
      }
    }

/*  */
/* Counter Section */
.stats-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
  background: #fff;
}

.stats-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  text-align: center;
  background: #f9f9f9;
  padding: 36px 20px 20px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  position: relative;
}

.stats-item:hover {
  transform: translateY(-8px);
}

.stats-icon {
  font-size: 40px;
  color: #ff6600;
  margin-top: 10px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.stats-ring {
  width: 80px;
  height: 80px;
  border: 5px solid #007bff;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.stats-number {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  animation: fadeInUp 0.8s ease;
}

.stats-label {
  font-size: 16px;
  color: #666;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .stats-item {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 480px) {
  .stats-item {
    flex: 1 1 100%;
  }
}

/* ----------------------------------------- dd serivces------------------------
----------------------------------------------------------------------------- */
/* Web design and Develpment  */
.services-home {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  padding: clamp(32px, 6vw, 96px);
  background: #f8f9fa;
  max-width: 1500px;
  margin-inline: auto;margin-top: 5%;
}


/* Animation initial state */
.serviceleft {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.serviceright {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

/* Animation visible state */
.serviceleft.show {
  opacity: 1;
  transform: translateX(0);
}

.serviceright.show {
  opacity: 1;
  transform: translateX(0);
}

.serviceleft h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.serviceleft p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.serviceleft button {
   background: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.serviceleft button:hover {
   background: black;
}


/* .serviceright{ justify-self:end; } */
.serviceright img {
  width: min(520px, 80%);
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .services-home {
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
  }

  .serviceright img {
    max-width: 100%;
  }
}

@media (max-width:1024px) {
  .services-home {
    padding: 48px 32px;
    grid-template-columns: 1fr 1fr;
  }

  .serviceright img {
    width: min(420px, 100%);
  }

  .serviceright img {
    max-width: 380px;
  }
}

/* Stack on smaller tablets (≤ 900px) */
@media (max-width:900px) {
  .services-home {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .serviceleft {
    order: 2;
  }

  .serviceright {
    order: 1;
    justify-self: center;
  }

  .serviceleft p {
    margin-inline: auto;
  }

  .serviceright img {
    width: min(360px, 100%);
  }
}

/* Main Section */
.dd-services {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.dd-services h2 {
  font-size: 2.2rem;
  margin-bottom: 80px;
}

/* Grid */
.card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.blog_post {
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.1);
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog_post:hover {
  transform: translateY(-10px);
  box-shadow: 1px 1px 2.5rem rgba(0, 0, 0, 0.3);
}

.container_copy {
  padding: 3rem 2rem 2rem;
}

.blog_post h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.blog_post p {
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

/* Image Holder */
.img_pod {
  height: 80px;
  width: 80px;
  background: #fff;
  border: 3px solid #007bff;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: 50%;overflow: hidden;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_pod img {
  height: 4.3rem;
  width: 4.3rem;
  border-radius: 50%;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .dd-services h3 {
    font-size: 1.8rem;
  }

  .card-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .img_pod {
    height: 70px;
    width: 70px;
    top: -30px;
  }

  .img_pod img {
   width: 4.2rem;
   padding: 13px 5px 0px 5px;
   /* padding: 5px; */
   height: 4.2rem;
  }
}
@media (max-width: 768px) {
  .dd-services h2 {
    font-size: 1.8rem;
  }

  .blog_post {
    width: 80%;
    max-width: 600px;       /* keeps card from stretching too wide */
    margin: 20px auto;      /* centers the card */
    padding: 20px;
    background: #fff;       /* card background */
    border-radius: 12px;    /* rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: center;    /* centers content horizontally */
    justify-content: center;
  }

  .blog_post img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .blog_post h3{
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-align: center;
  }

  .blog_post p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    color: #444;
  }
}

@media (max-width: 480px) {
  .dd-services h2{
    font-size: 1.5rem;
  }

  .blog_post h3 {
    font-size: 1.1rem;
  }.blog_post  {
    width: 100%;
  }

  .blog_post p {
    font-size: 0.9rem;
  }
}

/* Expert cards */
.expert {
  /* font-family: Arial, sans-serif; */
  background: #fff;
  padding: 40px;
}

.expert h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.expert .tech-card {
  background: white;
  border-radius: 8px;
  /* box-shadow: 0 4px 15px #007bff27; */
  border: 2px solid #007bff33;
  display: flex !important;
  /* Required for Slick items */
  justify-content: center;
  align-items: center;
  padding: 20px;padding-left: 10px;padding-right: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
}

.expert .tech-card img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
}

.expert .tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px #007bff31;
}

.tech-card i{
  font-size: 60px;
  color: #000;
}


/* google - adz */

    #ads-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }
.ad-section h3{ text-align: center;}
    #ads-section h2 {
      font-size: 32px;
      text-align: center;
      margin-bottom: 50px;
    }

    #ads-section .ad-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      margin-bottom: 80px;
    }

    #ads-section .ad-text h3 {
      font-size: 28px;
      color: #000000;
      margin-bottom: 15px;
    }

    #ads-section .ad-text p {
      line-height: 1.6;
      font-size: 16px;
      color: #444;
    }

    #ads-section .ad-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }


    
    /* thank you  */

      .thankyou-main {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(-45deg, #4facfe, #0098fe, #ff6607,  #f77e33);
      background-size: 400% 400%;
      animation: gradientBG 12s ease infinite;
      overflow: hidden;
    }

    .ty-container {
      text-align: center;
      color: #fff;
      animation: fadeIn 1.5s ease-in-out forwards;
      z-index: 1;
    }

    /* Checkmark animation */
   .checkmark {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: #fff;
  margin-bottom: 30px;
  animation: pop 0.6s ease-in-out forwards;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 38px;   /* adjust horizontally */
  top: 28px;    /* adjust vertically */
  width: 25px;
  height: 50px;
  border: solid #4facfe;
  border-width: 0 8px 8px 0;
  transform: rotate(45deg) scale(0);
  animation: draw 0.8s ease forwards 0.5s;
}


    /* Typing animation */
   .ty-container h1 {
      font-size: 3rem;
      margin-bottom: 15px;
      border-right: 4px solid #fff;
      white-space: nowrap;
      overflow: hidden;
      width: 0;
      animation: typing 1s steps(20, end) forwards, blink 0.8s infinite;
    }

   .ty-container p {
      font-size: 1.2rem;
      opacity: 0;
      animation: fadeSlideUp 1s ease forwards 1.3s;
    }

    /* Button with glowing pulse */
   .ty-container .btn {
      display: inline-block;
      margin-top: 25px;
      padding: 12px 28px;
      background: #fff;
      color: #4facfe;
      font-weight: 600;
      text-decoration: none;
      border-radius: 30px;
      box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
      animation: pulse 2s infinite, fadeSlideUp 1.5s ease forwards 2s;
      opacity: 0;
    }

   .ty-container .btn:hover {
      background: #4facfe;
      color: #fff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* Floating background bubbles */
    .bubbles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .bubble {
      position: absolute;
      bottom: -100px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      animation: rise 20s infinite ease-in;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes pop {
      0% { transform: scale(0); }
      80% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    @keyframes draw {
      to { transform: rotate(45deg) scale(1); }
    }

    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
      70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }

    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes rise {
      from { transform: translateY(0) scale(1); opacity: 1; }
      to { transform: translateY(-120vh) scale(1.3); opacity: 0; }
    }
    .errorlist {
    color: red;
    font-size: 13px;
    margin: 4px 0;
    padding: 0;
    list-style: none;
}

/* privacy Policy */

/* Banner */
.privacy-img {
  background: url("./img/privacypolicy-img\ copy.webp") no-repeat;background-position: center;
  background-size: cover;
  width: 100%;
  height: 350px;margin-top: 7%;
}
.container-policy a{
  text-decoration: none;color: #000000;
}.container-terms a{
  text-decoration: none;color: #000000;
}
/* Container */
.container-policy {
  max-width: 85%;
  margin: 50px auto;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
  animation: fadeIn 1s ease-in-out;
}

.container-policy h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.container-policy h4 {
  margin-top: 20px;
  font-size: 1.2rem;
}

.container-policy ul {
  padding-left: 20px;
  margin-top: 10px;
}

.container-policy li {
  margin-bottom: 8px;
}

.container-policy .highlight {
  color: #000000;
  font-weight: bold;
}


/* Social Icons */
.bottom-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
  flex: 1 1 100%;
}

.bottom-icons i {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.bottom-icons i:hover {
  transform: scale(1.2);
  color: #1a73e8;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 1024px) {
  .container-policy {
    max-width: 90%;
    padding: 25px;
  }

  .container-policy h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .container-policy {
    margin: 20px;
    padding: 20px;
  }

  .container-policy h1 {
    font-size: 1.8rem;
  }

  .privacy-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .container-policy {
    padding: 15px;
  }

  .container-policy h1 {
    font-size: 1.5rem;
  }
}

/* Terms and condition */

/* Banner */
.terms-img {
  background: url("./img/terms-condition.webp") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 300px;margin-top: 7%;
}

/* Container */
.container-terms {
  max-width: 85%;
  margin: 50px auto;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.page-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.container-terms h4 {
  margin-top: 20px;
  font-size: 1.2rem;
}

.highlight { color: #1a73e8; font-weight: bold; }

.terms-section { 
  margin-top: 25px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.terms-section.show { opacity:1; transform: translateY(0); }

/* Animation Variants */
.fade-in { transform: translateY(30px); }
.fade-in.show { transform: translateY(0); }

.slide-in-left { transform: translateX(-50px); }
.slide-in-left.show { transform: translateX(0); }

.slide-in-right { transform: translateX(50px); }
.slide-in-right.show { transform: translateX(0); }


/* Responsive */
@media (max-width: 1024px) {
  .container-terms { max-width: 90%; padding: 25px; }
  .page-title { font-size: 2rem; }
  .homeimg { height: 250px; }
}

@media (max-width: 768px) {
  .container-terms { margin: 20px; padding: 20px; }
  .page-title { font-size: 1.8rem; }
  .homeimg { height: 200px; }
}

@media (max-width: 480px) {
  .container-terms { padding: 15px; }
  .page-title { font-size: 1.5rem; }
  .homeimg { height: 150px; }
  .copy-right { flex-direction: column; gap:10px; }
}

/* 404 page  */
.error-page {
      margin: 0;
      
      background: linear-gradient(135deg, #1a73e8, #00c6ff);
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      color: #fff;
    }

    .page404-container{
      text-align: center;
      z-index: 2;
      position: relative;
    }.page404-container img{
width: 400px;margin-top: 0;
    }

    .page404-container h1 {
      font-size: 10rem;
      margin: 0;
      animation: float 3s ease-in-out infinite;
    }

    .page404-container h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .page404-container p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .page404-container a {
      display: inline-block;
      padding: 12px 25px;
      font-size: 1.1rem;
      background: #fff;
      color: #1a73e8;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .page404-container a:hover {
      background: #1a73e8;
      color: #fff;
      transform: scale(1.1);
    }

    /* Floating animation for 404 */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    /* Background animated circles */
    .circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      animation: move 10s infinite;
    }

    .circle.small {
      width: 80px;
      height: 80px;
      bottom: 10%;
      left: 20%;
      animation-duration: 12s;
    }

    .circle.large {
      width: 200px;
      height: 200px;
      top: 15%;
      right: 15%;
      animation-duration: 18s;
    }

    @keyframes move {
      0% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-50px) rotate(180deg); }
      100% { transform: translateY(0) rotate(360deg); }
    }
 