/* //////////////////////////////////////////////////////// */
/* HEADER */
/* //////////////////////////////////////////////////////// */

.solutions-header {
  height: 400px;
  width: 100%;
  background-image: url('../assets/images/solutions-header-image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;

  & .main-heading {
    width: 60%;
    font-family: 'Poiret One', cursive;
    font-size: 44px;
    color: var(--color-white);
    -webkit-text-stroke: 1.5px var(--color-white);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.4;
  }
}

/* //////////////////////////////////////////////////////// */
/* MAIN CONTENT */
/* //////////////////////////////////////////////////////// */

.main-content {
  max-width: 849px;
  margin: auto;
  margin-top: 40px;
  text-align: center;

  & .heading-primary {
    font-size: 44px;
    margin-bottom: 24px;
    padding: 0 12px;
  }

  & .heading-secondary {
    font-size: 36px;
    font-family: 'Poiret One', cursive;
    color: var(--grey-49);
    -webkit-text-stroke: 1px var(--grey-49);
    letter-spacing: 2px;
    margin-bottom: 40px;
  }

  & .main-description {
    font-size: 18px;
    -webkit-text-stroke: 0.5px var(--text-black);
    color: var(--text-black);
    letter-spacing: 1px;
    padding: 0 24px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
  }

  & .main-image {
    width: 100%;
  }

  & .bottom-text {
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
    font-weight: 700;
    -webkit-text-stroke: 0.5px var(--text-black);
    letter-spacing: 1px;
    color: var(--text-black);
    padding: 0 12px;
  }
}

/* colored section */
.color-solution-section {
  background-color: var(--color-primary-light);
  padding: 40px 52px;
  margin-top: 40px;
}

/* HIGHLIGHTED BOX */
.highlight-box {
  background-color: var(--color-white);
  margin: 0 22px 40px;
  padding: 24px 24px 30px;
  border-radius: 16px;
  box-shadow: 2px 2px 20px 0px #00000014;
  text-align: left;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  list-style: none;
  margin-bottom: 40px;

  & .highlight-list-el {
    width: 70%;
    display: flex;
    gap: 20px;
    font-size: 18px;
    font-weight: 500;
    -webkit-text-stroke: 0.5px var(--grey-37);
    letter-spacing: 1px;
    color: var(--grey-37);

    & .icon {
      height: 18px;
      margin-top: 4px;
    }
  }
}

.highlight-note {
  width: 90%;
  font-size: 18px;
  color: var(--grey-37);
}


.section-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  font-size: 18px;
  color: var(--grey-37);
  letter-spacing: 1px;
  line-height: 1.4;
}

/* //////////////////////////////////////////////////////// */
/* BUSSINESS COMPUTER SERVICES */
/* //////////////////////////////////////////////////////// */

.providing-services-container {
  max-width: 752px;
  margin: auto;
}

.computer-services-container {
  margin-bottom: 40px;
}

.computer-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(276px, 334px));
  justify-content: center;
  gap: 24px;

  & .computer-service-card {
    min-height: 178px;
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    text-align: start;
    box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.078);

    & h4 {
      font-size: 20px;
      /* font-weight: 700; */
      -webkit-text-stroke: 0.75px var(--grey-49);
      letter-spacing: 2px;
      line-height: 1.4;
      margin-bottom: 12px;
      color: var(--grey-49);
    }

    & p {
      font-size: 16px;
      line-height: 1.4;
      -webkit-text-stroke: 0.5px var(--text-black);
      letter-spacing: 1px;
      color: var(--grey-49);
    }
  }
}

/* providing services */
.providing-services-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-around;
  gap: 12px;
  padding: 24px 0 24px 100px;
  text-align: start;
  border-radius: 16px;
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.078);
  margin-bottom: 40px;

  & p {
    font-size: 20px;
    -webkit-text-stroke: 0.5px var(--grey-37);
    letter-spacing: 1px;
    color: var(--grey-7c);
    line-height: 1.4;
  }
}

/* //////////////////////////////////////////////////////// */
/* Security Cameras SERVICES */
/* //////////////////////////////////////////////////////// */
.network-overview {
  & .main-description {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0;
  }
}

/* //////////////////////////////////////////////////////// */
/* Structured Cabling */
/* //////////////////////////////////////////////////////// */
.network-cabling-section {
  & .highlight-list-el {
    width: auto;
    -webkit-text-stroke: 0.75px var(--grey-37);
  }
}

/* //////////////////////////////////////////////////////// */
/* WIRLESS NETWORK */
/* //////////////////////////////////////////////////////// */
.wifi-services-section {
  & .highlight-list {
    grid-template-columns: repeat(1, 1fr);

    & .highlight-list-el {
      width: 100%;

      & .description {
        font-size: 16px;
        /* font-weight: 400; */
        -webkit-text-stroke: 0.5px var(--grey-37);
        letter-spacing: 1px;
        margin-top: 16px;
      }
    }
  }
}


/* //////////////////////////////////////////////////////// */
/* NETWORK SECURITY */
/* //////////////////////////////////////////////////////// */
.protection-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 2px 2px 20px 0px #00000014;
  text-align: left;
  margin-bottom: 32px;
  color: var(--grey-49);

  & .icon {
    height: 50px;
    width: 50px;
  }

  & .title {
    font-size: 24px;
    /* font-weight: 700; */
    -webkit-text-stroke: 0.75px var(--grey-49);
    letter-spacing: 2px;
  }

  & .description {
    width: 90%;
    font-size: 16px;
    line-height: 1.4;
    -webkit-text-stroke: 0.5px var(--grey-49);
    letter-spacing: 1px;
  }
}

/* //////////////////////////////////////////////////////// */
/* DESKTOP COMPUTER REPAIR */
/* //////////////////////////////////////////////////////// */

.tag-section {
  padding-left: 12px;
  padding-right: 12px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tag {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background-color: var(--color-white);
  box-shadow: 1.6px 1.6px 8px 0px #D0D2DA80;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-49);
  cursor: pointer;
  transition: background-color 0.3s;
}

.tag:hover {
  background-color: #f0f0f0;
}

.desktop-bottom-text {
  margin-top: 24px;
}


/* //////////////////////////////////////////////////////// */
/* DATA SERVER REPAIR */
/* //////////////////////////////////////////////////////// */
.data-server-repair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.server-service-card {
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 2px 2px 20px 0px #00000014;
  padding: 24px;
  text-align: start;

  & .title {
    font-size: 20px;
    font-weight: 700;
    -webkit-text-stroke: 0.75px var(--grey-49);
    letter-spacing: 2px;
    color: var(--grey-49);
    margin-bottom: 16px;
  }

  & .description {
    font-size: 16px;
    -webkit-text-stroke: 0.5px var(--grey-49);
    letter-spacing: 1px;
    color: var(--grey-49);
    margin-bottom: 12px;
  }
}

/* //////////////////////////////////////////////////////// */
/* DESKTOP AND LAPTOP */
/* //////////////////////////////////////////////////////// */
.complications-section {

  & .highlight-box {
    margin: 0;
  }

  & .highlight-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 0;


    & .highlight-list-el {
      width: 100%;

      & .icon {
        margin-top: 2px;
      }
    }
  }
}

/* //////////////////////////////////////////////////////// */
/* DATA RECOVERY */
/* //////////////////////////////////////////////////////// */

.recovery-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;

  & .recovery-box {
    flex: 1 1 320px;
    max-width: 400px;
  }
}

.recovery-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 2px 2px 20px 0px #00000014;
  text-align: start;

  & .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--grey-49);
  }

  & p {
    -webkit-text-stroke: 0.5px var(--grey-37);
    letter-spacing: 1px;
    line-height: 1.4;
  }

  & .highlight-list {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 0;
    gap: 16px;

    & .highlight-list-el {
      width: 100%;

      & .icon {
        margin-top: 2px;
      }
    }
  }
}

/* //////////////////////////////////////////////////////// */
/* IT AND Cybersecurity */
/* //////////////////////////////////////////////////////// */


.IT-cyber-services {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
  background-color: var(--color-primary-light);
  margin-top: 40px;

  & .top-service-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    flex: 1 1 320px;
    max-width: 400px;
    box-shadow: 2px 2px 20px 0px #00000014;
    text-align: start;

    & .title {
      font-size: 24px;
      /* font-weight: 700; */
      -webkit-text-stroke: 0.75px var(--grey-49);
      letter-spacing: 2px;
      color: var(--grey-49);
    }

    & .description {
      font-size: 16px;
      /* font-weight: 400; */
      -webkit-text-stroke: 0.5px var(--grey-49);
      letter-spacing: 1px;
    }

    & .icon {
      height: 50px;
      width: 50px;
    }
  }
}

.IT-cyber-services-box {
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 2px 2px 20px 0px #00000014;
  padding: 32px 64px;
  margin-top: 60px;

  & .highlight-list {
    grid-template-columns: repeat(1, 1fr);
    text-align: start;
  }

  & .highlight-list-el {
    width: 100%;
    font-size: 20px;
    line-height: 1.4;
  }
}

/* //////////////////////////////////////////////////////// */
/* SUNDANCE PAGE */
/* //////////////////////////////////////////////////////// */

.sundance-page {
  padding-bottom: 40px;
}

/* HERO (single box) */
.sundance-hero {
  background-color: var(--color-white);
  border-radius: 16px;
  /* box-shadow: 2px 2px 20px 0px #00000014; */
  padding: 28px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  /* margin-bottom: 24px; */

  & .sundance-hero-left {
    & .heading-primary {
      font-size: 44px;
      margin-bottom: 12px;
      letter-spacing: 1px;
      font-weight: 700;
    }

    & .description-text {
      font-size: 18px;
      line-height: 1.5;
      -webkit-text-stroke: 0.4px var(--text-black);
      color: var(--text-black);
      letter-spacing: 0.5px;
      font-weight: 700;
      margin-bottom: 12px;
    }
  }

  & .sundance-quick-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
    font-weight: 700;
  }

  & .sundance-cta-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--grey-49);
  }

  .sundance-cta-meta strong {
    font-weight: 900;
  }

  /* Hero ke andar wali card ko single-box feel dene ke liye flat kar diya */
  & .sundance-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;

    & .heading {
      font-size: 22px;
      font-weight: 700;
      -webkit-text-stroke: 0.6px var(--grey-49);
      color: var(--grey-49);
      letter-spacing: 1px;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    & .description {
      font-size: 16px;
      line-height: 1.5;
      font-weight: 700;
      color: var(--grey-49);
      -webkit-text-stroke: 0.4px var(--grey-49);
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }
  }
}

/* Cards (for rest of page) */
.sundance-card {
  background-color: var(--color-white);
  border-radius: 16px;
  /* box-shadow: 2px 2px 20px 0px #00000014; */
  padding: 24px;
  text-align: start;

  & .heading {
    font-size: 22px;
    -webkit-text-stroke: 0.6px var(--grey-49);
    color: var(--grey-49);
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.35;
  }

  & .description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--grey-49);
    font-weight: 700;
    -webkit-text-stroke: 0.4px var(--grey-49);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }
}

/* GRID BELOW HERO (single column on desktop too) */
.sundance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.sundance-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 14px;
  padding-left: 0;

  & li {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--grey-49);
    -webkit-text-stroke: 0.4px var(--grey-49);
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 18px;

    &::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--grey-49);
    }
  }
}

/* FORM */
.sundance-form-wrap {
  margin-top: 24px;
  margin-bottom: 24px;
}

.sundance-form-card {
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 2px 2px 20px 0px #00000014;
  padding: 28px;

  & .heading-primary {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  & .description-text {
    font-size: 16px;
    color: var(--grey-49);
    -webkit-text-stroke: 0.4px var(--grey-49);
    letter-spacing: 0.4px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.45;
  }
}

.sundance-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.sundance-field {
  & label {
    display: block;
    font-size: 14px;
    color: var(--grey-49);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-align: left;
    font-weight: 700;
  }

  & input,
  & select,
  & textarea {
    width: 100%;
    border: 1px solid #0000001f;
    border-radius: 12px;
    padding: 12px 12px;
    font-size: 16px;
    outline: none;
    background: #fff;
    font-family: 'Roboto', sans-serif;
  }

  & textarea {
    resize: vertical;
    margin-bottom: 12px;
  }

  & input:focus,
  & select:focus,
  & textarea:focus {
    border-color: #00000040;
  }
}

.sundance-submit {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  transition: all .2s ease;
  cursor: pointer;
  margin-top: 12px;
}

.sundance-form-help {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 14px;
  color: var(--grey-49);
}

/* FOOTER SEO */
.sundance-footer-seo {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #8080801a;

  & .description {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--grey-49);
    -webkit-text-stroke: 0.35px var(--grey-49);
    letter-spacing: 0.4px;
  }
}

/* //////////////////////////////////////////////////////// */
/* RESPONSIVE */
/* //////////////////////////////////////////////////////// */

@media (max-width: 1024px) {
  .sundance-hero {
    padding: 24px;

    & .sundance-hero-left {
      & .heading-primary {
        font-size: 40px;
      }
    }
  }
}

@media (max-width: 768px) {
  .sundance-page {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .sundance-hero {
    padding: 20px;

    & .sundance-hero-left {
      & .heading-primary {
        font-size: 34px;
      }

      & .description-text {
        font-size: 16px;
      }
    }
  }

  .sundance-card {
    padding: 20px;

    & .heading {
      font-size: 20px;
    }
  }

  .sundance-form-card {
    padding: 20px;
  }

  .sundance-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .sundance-hero {
    & .sundance-hero-left {
      & .heading-primary {
        font-size: 28px;
      }
    }

    & .sundance-quick-cta {
      gap: 12px;
    }
  }

  .sundance-form-help {
    flex-direction: column;
    gap: 8px;
  }
}