* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

/* @font-face {
  font-family: 'Switzer';
  font-display: swap;
} */

::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 2px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bg-black-olive);
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--bg-blue);
}

:root {
  /* Background colors */
  --bg-blue: #2b85cf;
  --bg-blue-dark: #002c8b;
  --accent: #E8F9FF;

  /* white and black shades */
  --bg-white-smoke: #f2f2f2;
  --bg-grey: #f8f9fa;
  --bg-black: #212121;
  --bg-black-olive: #414141;

  /* Text colors */
  --text-primary: #008dda;
  --text-dark: #2a2a2a;
  --text-light: #52595f;
  --text-white: #fff;

}


body {
  font-family: 'Switzer', sans-serif;
  scroll-behavior: smooth;
  background-color: #fff;
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
  overflow-x: hidden;
}



.container-fluid {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
}

@media (max-width: 991px) {
  .container-fluid {
    width: 100%;
  }

  .wrapper {
    padding: 2rem 0 !important;
  }
}

.wrapper {
  padding: 6rem 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}


.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.text-secondary {
  color: var(--text-light) !important;
}

.heading {
  letter-spacing: -.05rem;
  font-weight: 700;
  line-height: 4rem;
  color: var(--text-light);
}

/* CSS */
.main-btn {
  align-items: center;
  background-color: var(--bg-black);
  border: none;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: fit-content;
  min-height: 3.2rem;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  text-wrap-mode: nowrap;
}

.main-btn:hover,
.main-btn:focus {
  background-color: var(--bg-black-olive) !important;
  text-decoration: none;
}

.main-btn:active {
  background: var(--bg-blue-dark);
  color: rgb(255, 255, 255, .7);
}

.main-btn:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}

.circle-btn {
  border: none;
  background-color: var(--bg-grey);
  border-radius: 50%;
  box-sizing: border-box;
  color: var(--text-light);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  line-height: 20px;
  max-width: fit-content;
  height: 50px;
  min-width: 0px;
  width: 50px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: display 0.6s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  text-wrap-mode: nowrap;
}




@media (max-width: 568px) {

  .main-btn,
  .fill-btn {
    font-size: 0.8rem;
    text-wrap-mode: wrap;
  }

  .navbar {
    padding: 0.5rem !important;
  }


}

.navbar {
  width: 96%;
  background: transparent;
  z-index: 999;
  box-shadow: none;
  padding: 1.5rem;
  gap: 40px;
  border-radius: 0;
  transition: all .5s cubic-bezier(.25, .46, .45, .94), box-shadow .5s cubic-bezier(.25, .46, .45, .94);
}

/* logo font with Didact */
.navbar-brand span {
  font-family: "Didact Gothic", sans-serif;
  font-weight: 700;
  line-height: 32px;
  font-size: 24px;
  color: var(--bg-blue-dark);
  will-change: transform;
}



.roll-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1rem;
  display: flex;
  flex-direction: column;
}

.roll-text span {
  display: block;
  line-height: 1;
  transform: translateY(0%);
}

.navbar-nav .nav-link {
  display: inline-block;
  overflow: hidden;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  color: var(--text-light, #333);
  font-weight: 600;
  margin: 0 5px;
  transition: color 0.3s ease;
  text-wrap-mode: nowrap;
  will-change: transform;

}

.navbar-nav .nav-link:hover {
  color: var(--text-primary) !important;
  text-decoration: none;
  background: transparent !important;

}

#menuToggle {
  will-change: transform;
}

#menuToggle.active {
  transform: rotate(90deg) !important;
  transition: all 0.3s ease;
}

#menuToggle:not(.active) {
  transform: rotate(0deg) !important;
  transition: all 0.3s ease;
}



.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  opacity: 0;
  width: 100%;
  background: linear-gradient(0deg, hsla(196, 100%, 80%, 1) 0%, hsla(0, 0%, 96%, 1) 51%);
  transform-origin: top;
  transition: transform 0.3s ease-out, background 0.3s;
  overflow: hidden;
  pointer-events: auto;
  width: 100%;
  z-index: 10;
  will-change: transform;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}



.mobile-overlay .nav {
  list-style: none;
  /* padding: 4rem 0; */
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.no-scroll {
  overflow: hidden;
}

.mobile-overlay .nav-link {
  position: relative;
  display: inline-block;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 1rem;
  padding: 0;
  mix-blend-mode: difference;

}

.mobile-overlay .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #aaa;
  transition: height 0.3s ease;
  z-index: -1;
}

.mobile-overlay .nav-link:hover::after {
  height: 24px;
}



/* scroll to top btn */
.scrollToTopBtn {
  background-color: transparent;
  border: none;
  width: 90px;
  height: 90px;
  border-radius: 100% 0 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 0 0 1rem;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.4s ease;

  &:hover {
    background-color: var(--bg-black);
    color: #fff;

    svg {
      fill: #fff;
    }
  }
}

.scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



.fa-circle-dot {
  font-size: 12px;
  color: #aaa;
}

hr {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, #004cbd4b, #002ec49f, #004ab9);
}

mark {
  font-family: "Didact Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0px;
}

/* hero section start */
.hero-section {

  background: #fff;
  .grid-layout-w {
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 2.6rem;
    grid-row-gap: 2.6rem;
    flex-grow: 1;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template: "slot-1 slot-1 slot-2 slot-3" "slot-4 slot-5 slot-6 slot-7";
  }

  .trust-desc-w mark {
    background: linear-gradient(to right, #ffd54f 100%, #ffd54f 100%) no-repeat;
    background-size: 0% 100%;
    background-position: left center;
    transition: background-size 0.4s ease-out;
  }




  .trust-desc-w {
    grid-column-gap: 2.4rem;
    grid-row-gap: 1.4rem;
    flex-flow: column;
    display: flex;
    grid-area: slot-1;

    .trust-tag-w {
      color: var(--bg-blue-dark);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    h1 {
      font-size: 3rem;
      letter-spacing: -.110rem;
      font-weight: 800;
      line-height: 4.5rem;
      color: var(--text-dark);
    }

    p {
      width: 75%;
    }
  }

  .trust-card-w {
    border-radius: 20px;
    flex-flow: column;
    justify-content: space-between;
    gap: 1rem;
    align-items: stretch;
    padding: 1.5rem;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    i {
      font-size: xx-large;
    }

    .fa-fire {
      color: #ffad6b;
    }

    .fa-rotate {
      color: #00bcd4;
    }

    .fa-globe {
      color: #5031ff;
    }

    .fa-brain {
      color: #ffe23c;
    }

  }

  .trusted-description-card-w {
    grid-column-gap: 1.6rem;
    grid-row-gap: 0.6rem;
    flex-flow: column;
    display: flex;

    .title {
      font-weight: 600;
      letter-spacing: -.010rem;
      line-height: 2.5rem;
      color: #fff;
    }

  }

  .svg-bg {
    padding: 0;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }
  }

  .deco-bg-2 {
    grid-area: slot-4;
  }

  .deco-bg-3 {
    grid-area: slot-6;
  }

  .bg-first {
    grid-area: slot-2;
    background-color: var(--bg-blue);
    color: var(--accent);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }

  .bg-second {
    grid-area: slot-3;
    background-color: #d9eff1;
    color: #313131;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

    h3 {
      color: #333 !important;
    }
  }

  .bg-third {
    grid-area: slot-5;
    background-color: #7A85C1;
    color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }

  .bg-fourth {
    grid-area: slot-7;
    background-color: #34b0a9;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
}



@media (max-width: 1400px) {
  .hero-section .grid-layout-w {
    grid-auto-columns: 0fr;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
      "slot-1 slot-1 slot-1 slot-6"
      "slot-2 slot-2 slot-3 slot-3"
      "slot-5 slot-5 slot-7 slot-7";

  }

  .deco-bg-2 {
    display: none !important;
  }

}

@media(min-width: 769px) {
    .hero-section {
      background-image: url(./../../image/bg.jfif);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
}

/* Below 768px – stack cards in single column */
@media (max-width: 768px) {
    
    
  .trust-desc-w p {
    width: 100% !important;
  }

  .deco-bg-3 {
    display: none !important;
  }

  .grid-layout-w {
    grid-template-columns: repeat(auto-fit, minmax(300px, auto)) !important;
    grid-template-rows: repeat(auto-fit, minmax(200px, min-content)) !important;
    grid-template-areas:
      "slot-1"
      "slot-2"
      "slot-3"
      "slot-5"
      "slot-7" !important;
  }

  .heading {
    line-height: 3rem !important;
  }

}

/* hero section end */


/* industry section start */

@media (max-width: 1199px) {
  .industry-section {
    overflow: hidden;

    .right-pane {
      transform: translateX(0%);
    }
  }

}


@media (min-width: 1200px) {
  .right-pane {
    transform: translateX(14%) !important;
  }

  .left-pane {
    position: sticky;
    top: 30%;
    height: 50%;

    mark {
      background: linear-gradient(to right, #9ff1ff 100%, #9ff1ff 100%) no-repeat;
      background-size: 0% 100%;
      background-position: left center;
      transition: background-size 0.4s ease-out;
    }
  }


}

.industry-card {
  width: 100%;
  min-height: 300px;
  height: 100%;
  border-radius: 0px 20px 20px 4px;
  margin-bottom: 2.5rem;
  background: linear-gradient(to bottom, #bdc3c7 50%, #2c3e50 100%);
  color: #fff;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.308), rgba(0, 0, 0, 0.4));
    z-index: 1;
    border-radius: inherit;
  }

  .industry-desc {
    margin: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 1px;
    color: #fff;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px #0000009a;
    line-height: normal;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  }
}



.industry-card>* {
  position: relative;
  z-index: 2;
}

.industry-card .top-section {
  height: 50px;
  border-radius: 20px;
  display: flex;
  position: relative;
  align-items: center;

  .industry-icon {
    flex-basis: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

    img {
      filter: drop-shadow(5px 5px 5px #6e6e6e);
    }
  }

  .industry-name {
    flex-basis: 70%;
    font-size: 1.2rem;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 1rem 0.2rem;

    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    position: relative;
    border-bottom-right-radius: 30px;

    span {
      border-left: 4px solid #6f91ff;
      padding-left: 0.4rem;
      letter-spacing: 0.08rem;
      line-height: 1.2rem;
    }
  }

  .industry-name::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0px;
    background: rgba(255, 255, 255, 0);
    height: 25px;
    width: 25px;
    border-top-left-radius: 15px;
    box-shadow: -5px -5px 0 5px #fff;
  }

  .industry-name::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -25px;
    background: rgba(255, 255, 255, 0);
    height: 25px;
    width: 25px;
    border-top-left-radius: 15px;
    box-shadow: -5px -5px 0 5px #ffffff;
    z-index: 2;
  }
}

.nav-pills {
  background: var(--bg-black-olive);
  max-width: 300px;
  width: 100%;
  margin: 2rem 2rem 0;
  border-radius: 50px;
  padding: 0.3rem;
  position: sticky;
  top: 10%;
  z-index: 2;

  .nav-item {
    width: 50%;
    text-align: center;

  }

  .nav-link {
    width: 100%;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    padding: 0.3rem;
  }

  .nav-link.active {
    background-color: #fff;
    color: var(--text-primary);
  }
}


.tab-content {
  overflow: hidden;
  height: 100%;
  min-height: 60dvh;
  margin-bottom: 2rem;
}


.services-section {
  position: relative;
  overflow: hidden;

  svg {
    position: absolute;
    bottom: -2%;
    left: -2%;
    z-index: 1;
    transform: rotate(45deg);
    width: 10%;
    height: 10%;
  }

  mark {
    background: linear-gradient(to right, #e1d6ff 100%, #e1d6ff 100%) no-repeat;
    background-size: 0% 100%;
    background-position: left center;
    transition: background-size 0.4s ease-out;
  }

  .nav-pills svg {
    position: absolute;
    top: -30%;
    left: -26%;
    z-index: -1;
    transform: rotate(140deg);
    width: 50%;
    height: 50%;
  }

  .services-list {
    margin-top: 3rem;

    .service-card {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      background: #fff;
      padding: 1.2rem 0;
      border-radius: 12px;
      /* box-shadow: 0 0 0 1px #eaeaea; */
      transition: transform 0.2s ease;
      height: 100%;
      margin-bottom: 1rem;

      .border-bottom {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
      }

      .icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border-radius: 8px;
        padding: 12px;
        padding-top: 0;
        filter: drop-shadow(2px 4px 4px #C68EFD);
      }

      h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: #2d2d2d;
      }

      p {
        padding: 8px 0;
        color: #4a4a4a;
        font-size: 0.9rem;
        line-height: 1.4;
      }
    }
  }


  .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: 80%;
    /* margin: 0 auto; */


    .benefit-card {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      background: #fff;
      padding: 1.2rem 1.0;
      border-radius: 12px;
      transition: transform 0.2s ease;

      .icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border-radius: 10px;
        background: #f5f5f5;
        padding: 8px;
      }

      h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: #2d2d2d;
      }

      p {
        padding: 8px 0;
        color: #4a4a4a;
        font-size: 0.9rem;
        line-height: 1.4;
      }
    }

  }

}



@media(max-width: 768px) {

  .services-section {
    .services-list {
      margin-top: 0rem;
    }

    .service-card {
      padding: 0.5rem !important;
    }

    svg {
      bottom: -5%;
    }
  }

  .services-section .benefits-list {
    width: 100%;

    .benefit-card {
      flex-direction: column;
      align-items: center;
      text-align: center;

      p {
        text-align: justify;
      }
    }
  }
}

.solution-section {
  background: #f7f7f7;
  background-image: url('./../../image/bg.jfif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

  .solution-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

    .icon {
      height: 40px;
      object-fit: contain;
      border-radius: 0.5rem;
      filter: drop-shadow(2px 1px 1px #333);
      position: absolute;
      left: 0;
      top: 0;
    }

    .category {
      font-size: 0.8rem;
      padding: 4px 8px;
      background-color: #f6fcff;
      border-radius: 50px 0 0 50px;
      font-weight: 500;
      color: var(--text-light);
      box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
      transform: translateX(1.5rem);
    }

    .desc {
      font-size: 1rem;
      line-height: normal;
      letter-spacing: normal;
      color: var(--text-light);
      text-align: justify;
    }

    .desc .word {
      opacity: 0;
      display: inline-block;
      transition: opacity 0.3s ease;
    }

    .main-btn {
      align-items: center;
    }
  }

  mark {
    background: linear-gradient(to right, #181a29 100%, #181a29 100%) no-repeat;
    background-size: 0% 100%;
    background-position: left center;
    transition: background-size 0.4s ease-out;
    color: #fff;
  }
}

.achivement-section {
  position: relative;
  overflow: hidden;

  svg {
    position: absolute;
    bottom: -20%;
    right: -45%;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.2;
  }
}

.footer {
  background: var(--bg-black);
  color: var(--text-white);
  padding: 2rem 0;
  min-height: 400px;
  height: 100%;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
  position: relative;

  .left-footer {
    min-height: 400px;
  }

  .container-fluid {
    background-image: url("./../../image/footer_bg.png");
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
  }

  .nav-link {
    text-wrap-mode: nowrap;
  }

  .footer-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
  }

  .company-name {
    font-size: 7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 6rem;
  }

  .cta {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background-color: #f0f8ff;
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
  }

  .bottom-footer>* {
    color: #ddd;
  }
}


@media (max-width: 578px) {
  .footer .container-fluid {
    background-position: center;
  }

  .hero-section .trust-desc-w h1 {
    font-size: 2.2rem;
    line-height: 3.5rem;
  }
}

@media (max-width: 378px) {
  .hero-section .trust-desc-w h1 {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.contact-section {
  mark {
    background: linear-gradient(to right, #2994c9 100%, #2994c9 100%) no-repeat;
    background-size: 100% 100%;
    color: #fff;
    background-position: left center;
    letter-spacing: 0.1rem;
    transition: background-size 0.4s ease-out;
  }

  .banner {
    display: block;
    background-image:
      linear-gradient(to right,
        rgba(7, 58, 78, 0.6) 0%,
        rgba(6, 73, 85, 0.1) 30%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(5, 28, 77, 0.6) 100%),
      url("./../../image/contact.webp");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;

  }

  .contact-card {
    padding: 1rem;
    border-radius: 8px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    /* max-width: 400px; */
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 200px;

    .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      object-fit: contain;
      border-radius: 8px;
      padding: 10px;
      border: 1px solid #ddd;
      margin-bottom: 1rem;

      i {
        font-size: 0.8rem;
        color: #333;
      }
    }

    h5 {
      font-size: 1rem;
      min-height: 1rem;
    }

    span {
      display: block;
      font-size: 0.8rem;
      color: var(--text-light);
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 0.8rem;
      color: var(--text-dark);
      line-height: 1.2rem;
      transition: all 0.3s ease-in-out;
    }
  }

  .contact-card:hover p {
    color: #fff;
    background-color: var(--bg-black-olive);
    padding: 0px 8px;
    clip-path: polygon(4% 0, 100% 0%, 96% 100%, 0% 100%);
  }

  .contact-form {
    max-width: 500px;
    margin-top: 2rem;
  }
}

@media (max-width: 991.98px) {
  .banner {
    height: 35vh !important;
  }
}

@media (max-width: 575.98px) {
  .banner {
    height: 30vh !important;
  }
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-light);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  border: none;
  padding: 0;
  font-size: 1rem;
  outline: none;
  border-bottom: 1px dashed #888;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom: 1px solid #888;
}