@import url(contact.css);
@import url(services.css);
@import url(projects.css);
@import url(about.css);
:root {
  /* 🔤 Font Families */
  --font-heading: "Sora", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-code: "JetBrains Mono", monospace;

  /* 🔠 Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* 🎨 Light Theme Colors */
  --color-bg: #f9fafb; /* Background */
  --color-bg-nav-top: black; /* Background */
  --color-bg-dark: #0d101c;

  --color-surface: #ffffff; /* Cards, containers */
  --color-text-primary: #1e1e1e; /* Main text */
  --color-text-secondary: #4b5563; /* Secondary text */
  --color-accent: #3b82f6; /* Primary accent (blue) */
  --color-accent-alt: #10b981; /* Secondary accent (mint green) */
  --color-border: #e5e7eb; /* Borders and outlines */
  --color-hover: #e0f2fe; /* Hover effects */
  --color-error: #ef4444; /* Error state */
  --color-white: #ffffff;
  --color-black: #000000;

  /* 🔤 Typography */
  --font-heading: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;

  /* 💡 Shadows (light theme) */
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* ✨ Radius + Transitions */

  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.4s ease;
  ---btn-radius: 10px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-base);
  color: var(--color-text-primary); /* from your light palette */
  margin: 0;
  padding-bottom: 0;
  background-color: var(--color-bg);
}

img {
  height: auto;
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
  color: var(--color-text-primary);
}
button {
  border: 0;
}
.section-container {
  width: 90%;
  margin: auto;
  padding-block: 70px;
}
.btn {
  border: 1px solid transparent;
  padding: 10px 15px;
  border-radius: var(---btn-radius);
  /* background-color: var(--color-accent); */
  background-color: var(--color-bg-dark);
  color: var(--color-surface);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-wrap: nowrap;
}
.btn:hover {
  background-color: var(--color-surface);
  color: var(--color-black);
  border-color: var(--color-border);
}
.btn.light_hover:hover {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text-primary);
}
.btn.dark_hover {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text-primary);

  &:hover {
    border: 1px solid transparent;
    background-color: var(--color-bg-dark);
    color: var(--color-surface);
  }
}

/* ================ header============= */
header {
  /* position: sticky;
  top: 0;
  left: 0; */
  background-color: var(--color-surface);
  z-index: 1000;
  /* ==================header_top_details_container============== */
  .header_top_details_container {
    background-color: var(--color-bg-nav-top);
    .header_top_details {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--color-white);
      padding: 0;
      a {
        color: var(--color-white);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .detail {
        display: flex;
        align-items: center;
        gap: 5px;
        height: 100%;
        flex-wrap: nowrap;
      }

      img {
        width: 25px;
        height: 25px;
      }
      .top_details_left {
        display: flex;
        align-items: center;
        height: 100%;
        /* flex-wrap: wrap; */
        justify-content: center;
        .detail {
          padding: 0 10px;
          align-items: center;
          &:first-child {
            border-right: 1px solid var(--color-border);
          }
        }
      }
      .top_details_right {
        display: flex;
        align-items: center;
        .detail {
          padding: 0 10px;
        }
        .right_two {
          display: flex;
          align-items: center;
          gap: 10px;
          flex-wrap: nowrap;
          border-left: 1px solid var(--color-border) !important;
          a {
            padding: 0 5px;
          }
        }
      }
    }
  }
  nav {
    .section-container {
      display: flex;
      padding: 10px 0 !important;
      align-items: center;
      justify-content: space-between;
      .nav_logo {
        a {
          display: flex;
          align-items: center;
          img {
            width: 150px;
            height: auto;
          }
        }
      }
      .nav_left {
        display: flex;
        align-items: center;
        gap: 20px;
        ul {
          display: flex;
          list-style: none;
          li {
            padding: 0 10px;
            a {
              transition: var(--transition-fast);
              &:hover {
                color: var(--color-accent-alt);
              }
            }
          }
        }
      }
      .nav_toggle {
        display: none;
      }
    }
  }
}

/* ================ home hero_section========== */
#hero_section {
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 30%,
      rgba(59, 130, 246, 0.17) 100%
    ),
    url(assets/background_grid.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  .section-container {
    padding-block: 90px;
    padding-block-end: 0;
    .hero_section_top {
      width: 60%;
      margin: auto;
      text-align: center;
      img {
        width: 6rem;
        display: inline;
        margin-bottom: -5px;
      }
      .globe {
        width: 3rem;
      }
      .hero_tagline {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 5px;
        overflow: hidden;
        img {
          width: 30px;
          margin-bottom: 0;
        }
        .words {
          text-align: left;
          height: 25px;
          margin: 0;
          display: grid;
          overflow: hidden;
          > * {
            display: block;
          }
        }
      }
      h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin: 0;
        overflow: hidden;
      }
      p {
        font-size: 1.2rem;
      }
      .schedule_call {
        background-color: var(--color-surface);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px;
        border-radius: 40px;
        width: 80%;
        max-width: 95%;
        margin: auto;
        flex-wrap: nowrap;
        .call_left {
          display: flex;
          align-items: center;
          gap: 5px;
          img {
            width: 60px;
            border-radius: 50%;
          }
          .temp {
            position: relative;
            display: inline-block;
            .status {
              width: 16px;
              height: 16px;
              border-radius: 50% 50%;
              border: 2px solid var(--color-border);
              background-color: var(--color-accent-alt);
              position: absolute;
            }

            .topRight {
              top: 5px;
              right: 0;
            }
          }

          .name {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            h2 {
              font-size: 1rem;
              margin: 0;
            }
            p {
              font-size: 1rem;
              margin: 0;
              color: var(--color-text-secondary);
            }
          }
        }
        button {
          border-radius: 40px;
          padding: 15px 20px;
          &:hover {
            background-color: transparent;
            border-color: var(--color-border);
            color: var(--color-text-primary);
          }
        }
      }
      .hero_btns {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
        button {
          font-size: 1.1rem;
        }
      }
    }
    .hero_bottom {
      padding-top: 20px;
      img {
        width: 60%;
        max-width: 90%;
        margin: auto;
      }
    }
  }
}

/* ===================== Trust Text Section =====================  */
#trust_section {
  .section-container {
    .trust_section_top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      h2 {
        font-size: 2rem;
        margin-top: 0;
        span {
          font-family: var(--font-code);
          color: var(--color-accent-alt);
        }
      }
      p {
        margin-top: 0;
        font-size: 1.1rem;
        line-height: 1.5;
      }
    }
    .trust_section_bottom {
      .trust_stats {
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        box-shadow: var(--shadow-medium);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 90%;
        margin: 0 auto;
        border-radius: 30px;
        padding-block: 30px;
        .stat {
          cursor: pointer;
          padding-inline: 20px;
          border-right: 1px solid var(--color-border);
          h3 {
            color: var(--color-text-secondary);
            font-weight: 400;
            font-family: var(--font-code);
            font-size: 1.1rem;
          }
          p {
            display: flex;
            flex-wrap: nowrap;
            gap: 5px;
            align-items: center;
            font-size: 1.8rem;
            margin: 0;
            color: var(--color-black);
            img {
              width: 40px;
            }
          }
        }
      }
    }
  }
}
/* =================== Mini About Section=========== */
#Mini_About_Section {
  .section-container {
    padding-block-start: 20px;
    padding-block-end: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    .mini_about_left {
      img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }
    }
    .mini_about_right {
      h2 {
        font-size: 2rem;
        margin-bottom: 0;
        span {
          position: relative;
          &::before {
            content: url("assets/Ellipse.svg");
            position: absolute;
            /* scale: 0.6; */
            left: -5px;
            top: -10px;
          }
        }
      }
      p {
        font-size: 1.2rem;
        line-height: 1.5;
      }
      ul {
        padding: 0;
        padding-bottom: 20px;

        li {
          display: flex;
          align-items: center;
          flex-wrap: nowrap;
          gap: 5px;
          padding-top: 5px;
          img {
            width: 30px;
          }
        }
      }
      a {
        font-size: 1.1rem;
        padding: 10px 20px;
      }
    }
  }
}
/* =================== Process Section===========  */
.green {
  color: var(--color-accent-alt);
}
.servicepage_header {
  text-align: center;
  width: 70%;
  margin: 0 auto;
  h2 {
    margin: 0;
    font-size: 2rem;
    font-family: var(--font-code);
  }
  p {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
  }
}
#process {
  .section-container {
    .process_bottom {
      padding-top: 30px;
      .process_cards {
        padding-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        .process_card {
          border: 1px solid var(--color-border);
          box-shadow: var(--shadow-light);
          padding: 40px 20px;
          position: relative;
          background-color: var(--color-surface);
          border-radius: 20px 45px 10px;
          img {
            width: 80px;
            margin-top: -80px;
          }
          h3 {
            margin-bottom: 0;
            font-family: var(--font-code);
            font-size: 1.2rem;
          }
          p {
            font-size: 1rem;
            color: var(--color-text-secondary);
          }
        }
      }
    }
  }
}
#section_header {
  width: 70%;
  h2 {
    font-size: 2.5rem;
    margin: 0;
  }
  p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
  }
  a {
    color: var(--color-black);
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    img {
      width: 30px;
      rotate: -45deg;
      transition: var(--transition-smooth);
    }
    &:hover {
      color: var(--color-accent-alt);
      img {
        rotate: 0deg;
      }
    }
  }
}
/* ========== service_section ========== */
.service_section {
  .section-container {
    .service_bottom_cards {
      .service_cards {
        row-gap: 50px !important;
      }
    }
  }
}

/* project section */
.project_section {
  .section-containers {
    .project_lists {
      & .project_list_imgs {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        gap: 1vw;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
        & .list_img {
          flex-basis: 50%;
          display: flex;
          img {
            object-fit: contain;
            width: 100%;
            border-radius: 10px;
            height: 100%;
            box-shadow: var(--shadow-light);
          }
        }
        & :nth-child(1) {
          transform: translateY(10%);
        }
        & :nth-child(2) {
          transform: translateY(-10%);
        }
      }
    }
  }
}
/* ============== contact section=========== */

#contact_section {
  background-color: var(--color-bg-dark);
  .section-container {
    .contact_card {
      background-color: var(--color-surface);
      border-radius: 30px;
      border: 1px solid var(--color-border);
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      align-items: center;
      .card_left {
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: start;
        .tag {
          background-color: var(--color-bg-dark);
          color: var(--color-surface);
          padding: 9px 15px;
          border-radius: 10px;
          font-size: 1.1rem;
          font-weight: 500;
        }
        h2 {
          font-size: 2.2rem;
          margin: 0;
        }
        p {
          margin: 0;
          font-size: 1.2rem;
          color: var(--color-text-secondary);
        }
        .btns {
          display: flex;
          flex-wrap: nowrap;
          gap: 15px;
          align-items: center;
          .btn {
            padding: 15px 15px;
            display: flex;
            align-items: center;
            gap: 5px;
            flex-wrap: nowrap;
            font-size: 15px;

            img {
              width: 20px;
            }
            .icon_black {
              display: none;
            }
            &:hover {
              .icon_white {
                display: none;
              }
              .icon_black {
                display: flex;
              }
            }
          }
        }
      }
    }
  }
}
/* =====================footer============== */
footer {
  .section-container {
    padding-block-end: 0;
    .footer_top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      align-items: start;
      padding-inline: 0;
      gap: 40px;
      .footer_logo {
        img {
          width: 200px;
        }
        p {
          font-size: 1rem;
          color: var(--color-text-secondary);
        }
      }
      .footer_links {
        h3 {
          color: var(--color-accent-alt);
          font-family: var(--font-code);
          margin: 0 !important;
          font-size: 1.2rem;
        }
        ul {
          padding: 0;

          li {
            list-style: none;
            padding-bottom: 10px;
          }
        }
        a {
          color: var(--color-text-primary);
          font-size: 1.1rem;
          transition: var(--transition-fast);
          &:hover {
            color: var(--color-accent-alt);
          }
        }
      }
    }
    .footer_bottom {
      border-top: 1px solid var(--color-border);
      padding-bottom: 20px;
    }
  }
}

/* ============= media query for 1024px=============== */
@media (width<= 1024px) {
  /* ================ header============= */

  header {
    position: static;
    /* ==================header_top_details_container============== */
    .header_top_details_container {
      .header_top_details {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding-block: 10px;
        a {
          align-items: center;
          gap: 10px;
        }
        .detail {
          display: flex;
          align-items: center;
          gap: 5px;
          height: 100%;
        }

        img {
          width: 20px;
          height: 20px;
        }
        .top_details_right {
          align-items: center;
          .right_two {
            gap: 5px;
          }
        }
      }
    }
    nav {
      .section-container {
        .nav_left {
          position: absolute;
          top: 80px;
          left: 0;
          right: 0;
          flex-direction: column;
          width: 100%;
          background-color: var(--color-bg);
          z-index: 11111;
          transition: all 0.8s;
          overflow: hidden;
          max-height: 0;
          & .nav_links {
            flex-direction: column;
            width: 100%;
            text-align: center;
            margin: 0;
            padding: 0;

            li {
              padding: 20px;
            }
          }
        }
        .nav_toggle {
          display: inline-block;
          width: 60px;
          z-index: 222222;
        }
      }
    }
  }
  /* ================ home hero_section========== */

  #hero_section {
    .section-container {
      padding-block: 50px;
      padding-block-end: 0;
      .hero_section_top {
        width: 75%;
        img {
          width: 5rem;
        }
        .globe {
          width: 2rem;
        }
        .hero_tagline {
          img {
            width: 30px;
          }
        }
        h1 {
          font-size: 2.5rem;
        }
        p {
          font-size: 1rem;
        }
        .schedule_call {
          button {
            padding: 15px;
          }
        }
        .hero_btns {
          gap: 10px;
          button {
            font-size: 1rem;
          }
        }
      }
      .hero_bottom {
        padding-top: 20px;
        img {
          width: 60%;
          max-width: 90%;
          margin: auto;
        }
      }
    }
  }

  /* ===================== Trust Text Section =====================  */
  #trust_section {
    .section-container {
      .trust_section_top {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        h2 {
          font-size: 1.5rem;
        }
        p {
          font-size: 1rem;
          line-height: 1.5;
        }
      }
      .trust_section_bottom {
        .trust_stats {
          width: 100%;
          .stat {
            h3 {
              font-size: 1rem;
            }
            p {
              font-size: 1.5rem;
              img {
                width: 30px;
              }
            }
          }
        }
      }
    }
  }
  /* =================== Mini About Section=========== */
  #Mini_About_Section {
    .section-container {
      padding-block-start: 20px;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      .mini_about_right {
        h2 {
          font-size: 1.5rem;
          span {
            &::before {
              scale: 0.8;
              left: -20px;
              top: -15px;
            }
          }
        }
        p {
          font-size: 1rem;
        }
        ul {
          padding-bottom: 10px;

          li {
            img {
              width: 20px;
            }
          }
        }
        a {
          font-size: 1rem;
          padding: 10px 15px;
        }
      }
    }
  }
  /* =================== Process Section===========  */
  .servicepage_header {
    width: 80%;
    h2 {
      margin: 0;
      font-size: 1.7rem;
      font-family: var(--font-code);
    }
    p {
      margin-top: 5px;
      font-size: 1.1rem;
    }
  }
  #process {
    .section-container {
      .process_bottom {
        .process_cards {
          grid-template-columns: repeat(3, 1fr);
          gap: 30px;
          .process_card {
            padding: 40px 20px;
            img {
              width: 60px;
              margin-top: -60px;
            }
            h3 {
              font-size: 1.1rem;
            }
            p {
              font-size: 0.9rem;
            }
          }
        }
      }
    }
  }
  #section_header {
    width: 80%;
  }
  /* project section */
  /* ============== contact section=========== */

  #contact_section {
    .section-container {
      .contact_card {
        .card_left {
          padding: 30px;
          .tag {
            padding: 9px 12px;
            border-radius: 10px;
            font-size: 0.8rem;
          }
          h2 {
            font-size: 1.7rem;
          }
          p {
            font-size: 1.1rem;
          }
          .btns {
            .btn {
              padding: 10px 10px;
              font-size: 12px;
            }
          }
        }
      }
    }
  }
}

/* ============= media query for 890px=============== */
@media (width<= 890px) {
  .section-container {
    width: 95%;
  }
  header {
    .header_top_details_container {
      .header_top_details {
        .top_details_right {
          flex-direction: column;
          .right_one {
            .detail {
              p {
                margin-block: 10px !important;
              }
            }
          }
          .right_two {
            border-left-color: transparent !important;
          }
        }
      }
    }
  }

  /* ======================= hero section ============== */
  #hero_section {
    .section-container {
      .hero_section_top {
        width: 90%;
        h1 {
          font-size: 2.2rem;
        }
        p {
          font-size: 1rem;
          span.words {
            &:first-child {
              padding-bottom: 100px;
              color: red !important;
            }
          }
        }
        .schedule_call {
          width: 80%;
          max-width: 95%;

          button {
            padding: 10px 20px;
          }
        }
      }
      .hero_bottom {
        padding-top: 20px;
        img {
          width: 80%;
          max-width: 90%;
          margin: auto;
        }
      }
    }
  }
  /* ===================== Trust Text Section =====================  */
  #trust_section {
    .section-container {
      .trust_section_top {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 85%;
        h2 {
          font-size: 2rem;
          margin: 0;
        }
        p {
          font-size: 1.1rem;
        }
      }
      .trust_section_bottom {
        .trust_stats {
          width: 100%;
          .stat {
            h3 {
              font-size: 1rem;
            }
            p {
              font-size: 1.2rem;
              img {
                width: 30px;
              }
            }
          }
        }
      }
    }
  }
  /* =================== Mini About Section=========== */
  #Mini_About_Section {
    .section-container {
      padding-block-start: 20px;
      grid-template-columns: 1fr;
      gap: 0px;
      .mini_about_left {
        order: 1;
        img {
          scale: 0.8;
        }
      }
      .mini_about_right {
        h2 {
          font-size: 2rem;

          span {
            &::before {
              scale: 1;
              left: -10px;
              top: -10px;
            }
          }
        }
        p {
          font-size: 1.2rem;
        }
        ul {
          li {
            img {
              width: 20px;
            }
          }
        }
        a {
          font-size: 1rem;
          padding: 10px 15px;
        }
      }
    }
  }
  #section_header {
    width: 90%;
    h2 {
      font-size: 2.2rem;
    }
  }
  /* project section */

  /* ============== contact section=========== */

  #contact_section {
    .section-container {
      .contact_card {
        .card_left {
          padding: 30px;
          .tag {
            padding: 9px 12px;
            border-radius: 10px;
            font-size: 0.8rem;
          }
          h2 {
            font-size: 1.5rem;
          }
          p {
            font-size: 1rem;
          }
          .btns {
            .btn {
              padding: 10px 10px;
              font-size: 12px;
            }
          }
        }
      }
    }
  }
}
/* ============= media query for 800px=============== */
@media (width<= 800px) {
  /* =================== Mini About Section=========== */
  #Mini_About_Section {
    .section-container {
      padding-block-start: 20px;
      gap: 0px;
      .mini_about_right {
        h2 {
          font-size: 2.5rem;

          span {
            &::before {
              scale: 1.3;
              left: 10px;
              top: 0px;
            }
          }
        }
        p {
          font-size: 1.1rem;
        }
      }
    }
  }
  /* =================== Process Section===========  */
  .servicepage_header {
    width: 85%;
    h2 {
      font-size: 1.5rem;
    }
    p {
      font-size: 1rem;
    }
  }
  #process {
    .section-container {
      .process_bottom {
        .process_cards {
          padding-top: 10px;
          grid-template-columns: repeat(2, 1fr);
          .process_card {
            padding: 40px 20px;
            img {
              width: 60px;
              margin-top: -60px;
            }
            h3 {
              font-size: 1.1rem;
            }
            p {
              font-size: 0.9rem;
            }
          }
        }
      }
    }
  }
  /* ========== service_section ========== */
  .service_section {
    .section-container {
      .service_bottom_cards {
        .service_cards {
          row-gap: 30px !important;
        }
      }
    }
  }
  /* =====================footer============== */
  footer {
    .section-container {
      .footer_top {
        grid-template-columns: 1fr;
        gap: 10px;
        .footer_logo {
          img {
            width: 150px;
          }
          p {
            font-size: 1rem;
            width: 80%;
          }
        }
        .footer_links {
          h3 {
            font-size: 1.1rem;
          }
          ul {
            li {
              padding-bottom: 5px;
            }
          }
          a {
            font-size: 1.1rem;
          }
        }
      }
    }
  }
  #section_header {
    width: 90%;
    h2 {
      font-size: 2.2rem;
    }
    p {
      font-size: 1.1rem;
    }
    a {
      font-size: 1.1rem;
      img {
        width: 25px;
      }
    }
  }
  /* project section */

  /* ============== contact section=========== */

  #contact_section {
    .section-container {
      .contact_card {
        grid-template-columns: 1fr;
        .card_left {
          padding: 30px;
          padding-inline: 10px;
          align-items: center;
          text-align: center;
          .tag {
            padding: 9px 12px;
            border-radius: 10px;
            font-size: 1rem;
          }
          h2 {
            font-size: 2rem;
          }
          p {
            font-size: 1.1rem;
          }
          .btns {
            .btn {
              padding: 10px 10px;
              font-size: 16px;
            }
          }
        }
      }
    }
  }
}

/* ============= media query for 670px=============== */
@media (width<= 670px) {
  .section-container {
    width: 96%;
  }

  /* ======================== hero section=============== */
  #hero_section {
    .section-container {
      .hero_section_top {
        width: 98%;
        text-align: center;
        img {
          width: 4rem;
        }
        .globe {
          width: 2rem;
        }
        h1 {
          font-size: 1.8rem;
        }
        p {
          font-size: 1rem;
        }
        .schedule_call {
          width: 95%;
        }
        .hero_btns {
          gap: 10px;
          button {
            font-size: 1rem;
          }
        }
      }
      .hero_bottom {
        padding-top: 20px;
        img {
          width: 85%;
          max-width: 90%;
          margin: auto;
        }
      }
    }
  }
  /* ===================== Trust Text Section =====================  */
  #trust_section {
    .section-container {
      .trust_section_top {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 95%;
        h2 {
          font-size: 1.5rem;
        }
        p {
          font-size: 1rem;
        }
      }
      .trust_section_bottom {
        .trust_stats {
          margin: 0;
          grid-template-columns: 1fr;
          width: 80%;
          padding-block: 0;

          .stat {
            padding-block: 20px;
            border-bottom: 1px solid var(--color-border);
            h3 {
              font-size: 1.2rem;
            }
            p {
              font-size: 1.2rem;
              img {
                width: 40px;
              }
            }
            &:last-child {
              border-bottom-color: transparent;
            }
          }
        }
      }
    }
  }
  /* =================== Process Section===========  */
  .servicepage_header {
    width: 90%;
    h2 {
      font-size: 1.5rem;
    }
    p {
      font-size: 1rem;
    }
  }
  #process {
    .section-container {
      .process_bottom {
        .process_cards {
          padding-top: 10px;
          grid-template-columns: 1fr;
          justify-items: center;
          .process_card {
            width: 70%;
            padding: 40px 20px;
            img {
              width: 60px;
              margin-top: -60px;
            }
            h3 {
              font-size: 1.1rem;
            }
            p {
              font-size: 0.9rem;
            }
          }
        }
      }
    }
  }
  #section_header {
    width: 99%;
    h2 {
      font-size: 2rem;
    }
    p {
      font-size: 1.1rem;
    }
    a {
      font-size: 1.1rem;
      img {
        width: 25px;
      }
    }
  }
  /* project section */
}

/* ============= media query for 545px=============== */
@media (width<= 545px) {
  #Mini_About_Section {
    .section-container {
      padding-block-start: 20px;
      gap: 0px;
      .mini_about_right {
        h2 {
          font-size: 2.2rem;

          span {
            &::before {
              scale: 1;
              left: -5px;
              top: -10px;
            }
          }
        }
        p {
          font-size: 1.1rem;
        }
      }
    }
  }
  /* =================== Process Section===========  */
  .servicepage_header {
    width: 95%;
    h2 {
      font-size: 1.5rem;
    }
    p {
      font-size: 1rem;
    }
  }
  #process {
    .section-container {
      .process_bottom {
        .process_cards {
          padding-top: 10px;
          grid-template-columns: 1fr;
          justify-items: center;
          .process_card {
            width: 80%;
            padding: 40px 20px;
            img {
              width: 60px;
              margin-top: -60px;
            }
            h3 {
              font-size: 1.1rem;
            }
            p {
              font-size: 0.9rem;
            }
          }
        }
      }
    }
  }
  /* project section */
  .project_section {
    .section-containers {
      .project_lists {
        padding-top: 30px;
        & .project_list_imgs {
          display: flex;
          flex-wrap: wrap;
          gap: 0.2vw;
          align-items: center;
          flex-direction: column;
          & .list_img {
            display: flex;
            width: 98%;
            margin: auto;
            img {
              object-fit: contain;
              width: 100%;
              border-radius: 10px;
              height: 100%;
              box-shadow: var(--shadow-light);
            }
          }
          & :nth-child(1) {
            transform: translateY(0%);
          }
          & :nth-child(2) {
            transform: translateY(0%);
          }
        }
      }
    }
  }
  /* =====================footer============== */
  footer {
    .section-container {
      .footer_top {
        .footer_logo {
          img {
            width: 150px;
          }
          p {
            width: 100%;
          }
        }
        .footer_links {
          h3 {
            font-size: 1.1rem;
          }
          a {
            font-size: 1.1rem;
          }
        }
      }
    }
  }
}
/* ============= media query for 480px=============== */
@media (width<= 480px) {
  #Mini_About_Section {
    .section-container {
      .mini_about_right {
        h2 {
          font-size: 2rem;
        }
      }
    }
  }
  /* =================== Process Section===========  */
  .servicepage_header {
    width: 100%;
    h2 {
      font-size: 1.3rem;
    }
    p {
      font-size: 1rem;
    }
  }
  #process {
    .section-container {
      .process_bottom {
        .process_cards {
          padding-top: 10px;
          .process_card {
            width: 90%;
            padding: 40px 20px;
          }
        }
      }
    }
  }
  /* ============== contact section=========== */

  #contact_section {
    .section-container {
      .contact_card {
        grid-template-columns: 1fr;
        .card_left {
          padding: 30px;
          padding-inline: 10px;
          .tag {
            padding: 9px 12px;
            border-radius: 10px;
            font-size: 0.8rem;
          }
          h2 {
            font-size: 1.8rem;
          }
          p {
            font-size: 1.1rem;
          }
          .btns {
            .btn {
              padding: 10px 10px;
              font-size: 14px;
            }
          }
        }
      }
    }
  }
}

/* ============= media query for 450px=============== */
@media (width<= 450px) {
  #hero_section {
    .section-container {
      padding-block-start: 30px;

      .hero_section_top {
        width: 99%;
        h1 {
          font-size: 1.5rem;
        }
        p {
          font-size: 1rem;
        }
        .schedule_call {
          width: 95%;
          .call_left {
            img {
              width: 50px;
            }

            .name {
              h2 {
                font-size: 0.9rem;
              }
              p {
                font-size: 0.9rem;
              }
            }
          }
          button {
            padding: 10px;
          }
        }
        .hero_btns {
          gap: 10px;
          button {
            font-size: 1rem;
          }
        }
      }
      .hero_bottom {
        padding-top: 20px;
        img {
          width: 90%;
        }
      }
    }
  }
  /* ===================== Trust Text Section =====================  */
  #trust_section {
    .section-container {
      .trust_section_top {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 99%;
        h2 {
          font-size: 1.5rem;
        }
        p {
          font-size: 1rem;
        }
      }
      .trust_section_bottom {
        .trust_stats {
          grid-template-columns: 1fr;
          width: 98%;
          margin: 0 auto;
          .stat {
            padding-block: 20px;
            border-bottom: 1px solid var(--color-border);
            h3 {
              font-size: 1.2rem;
            }
            p {
              font-size: 1.2rem;
              img {
                width: 40px;
              }
            }
            &:last-child {
              border-bottom-color: transparent;
            }
          }
        }
      }
    }
  }
}
/* ============= media query for 435px=============== */
@media (width<= 435px) {
  #Mini_About_Section {
    .section-container {
      .mini_about_left {
        img {
          scale: 1;
        }
      }
      .mini_about_right {
        h2 {
          font-size: 1.5rem;
          span {
            &::before {
              scale: 0.8;
              left: -20px;
              top: -15px;
            }
          }
        }
        p {
          font-size: 1rem;
        }
      }
    }
  }
  /* =================== Process Section===========  */
  #process {
    .section-container {
      .process_bottom {
        .process_cards {
          .process_card {
            width: 98%;
          }
        }
      }
    }
  }
  /* ============== contact section=========== */

  #contact_section {
    .section-container {
      .contact_card {
        .card_left {
          padding: 30px;
          padding-inline: 5px;
          .tag {
            font-size: 0.8rem;
          }
          h2 {
            font-size: 1.5rem;
          }
          p {
            font-size: 1rem;
          }
          .btns {
            .btn {
              padding: 10px 10px;
              font-size: 12px;
            }
          }
        }
      }
    }
  }
}
