.header-section-1 {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.header-section-1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 28, 97, 0.5);
  /* #181C61 with 50% opacity */
  z-index: 1;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers the entire section */
}

/* Mobile styles */
@media (max-width: 768px) {
  .video-container {
    height: 70vh; /* 50% of viewport height */
  }
}

.nav-section {
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 2.5rem;
  /* column-gap: 130px; */
}

.nav-section .nav-logo {
  text-decoration: none;
}

.nav-section .logo {
  height: 37px;
}

.nav-section .nav-link {
  color: #ffffff;
}
/* .nav-section .nav-link:hover{
    border-bottom: 5px solid #FF8A74;
} */

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blinking-braces {
  animation: blink 1s infinite;
}

/* navbar */
.header-section {
  background-image: url("images/navbar-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
}

.nav-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  background-color: rgba(24, 28, 97, 1);
  box-shadow: -0px 1px 20px -7px black;
}

.navbar-section {
  background-image: url("images/nav-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 720px;
  position: relative;
}

.header .logo {
  height: 47px;
}
.header-mob .logo {
  height: 47px;
}

.header {
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
.header-mob {
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  display: none;
}

.navbar-list {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0 16px;
  margin: 0;
}

.nav-link {
  font-family: "Mulish", sans-serif;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: #787aa8;
  transition: all 0.3s;
}

.header .nav-link {
  color: #181c61;
}
.header-mob .nav-link {
  color: #181c61;
}

.nav-section-btn {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Dropdown styling */
.nav-item {
  position: relative;
  list-style: none;
}

.dropdown-menu {
  list-style: none;
  padding: 1.5rem;
  margin: 0 auto;
  position: absolute;
  top: 40px;
  /* top: 100%; */
  left: 0;
  transform: translateX(-40%);
  border: none;
  background-color: #ffffff;
  display: none;
  /* display: block; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 1100px;
  height: auto;
}

/* Show dropdown on hover */
/* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
} */

.dropdown-menu-container {
  display: flex;
  flex-direction: row;
}
.dropdown-menu-left {
  width: 30%;
  padding: 20px 12px;
  text-align: left;
}
.dropdown-menu-left h3 {
  color: #181c61;
  font-weight: 500;
}
.dropdown-menu-left p {
  color: #181c61;
  font-size: 14px;
  font-weight: 400;
}

.dropdown-menu-right {
  width: 70%;
  padding: 20px 12px;
}
.dropdown-menu-right h4 {
  color: #181c61;
}
.dropdown-menu-right p {
  color: #787aa8;
}

.services-links {
  list-style: none;
  padding-left: 0;
}

.dropdown-menu li {
  padding: 8px 0;
  border-radius: 10px;
}

.dropdown-menu li a {
  font-family: "Mulish", sans-serif;
  color: #181c61;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  font-weight: 800;
}
.services-links .dropdown-nav-link > img {
  height: 15px;
  margin-right: 8px;
}

.dropdown-img-container {
  width: 95%;
  height: 100px;
  padding: 0;
  border-radius: 6px;
}
.dropdown-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.dropdown-profile-cards {
  display: flex;
  gap: 20px; /* optional: space between cards */
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.dropdown-card {
  flex: 1 1 calc(50% - 10px); /* two cards per row */
  padding: 1rem;
  background-color: #c9ebf2; /* optional styling */
  border-radius: 8px; /* optional styling */
}

.dropdown-card h2 {
  color: #181c61;
  font-size: 20px;
  font-weight: 700;
}
.dropdown-card p {
  color: #787aa8;
  font-size: 16px;
  font-weight: 600;
}
.dropdown-card img {
  width: 200px;
  height: 40px;
}

/* navbar for mobile */
.mob-nav-section {
  height: 75px;
  /* display: flex;
    justify-content: space-between;
    align-items: center; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 2.5rem;
  display: none;
}

.mob-nav-section .nav-logo {
  text-decoration: none;
}

.mob-nav-section .logo {
  height: 37px;
}

.mob-nav-section .nav-link {
  color: #ffffff;
}
.mobile-nav-icon {
  width: 40px;
  height: 40px;
}

.header-section-1 .mobile-nav-icon {
  width: 30px;
  height: 30px;
}

.mobile-nav-icon .menu,
.mobile-nav-icon .close {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-navbar-btn {
  display: none;
  background: transparent;
  cursor: pointer;
}

.close-outline {
  display: none;
}

.accordion-body .dropdown-nav-link {
  font-family: "Mulish", sans-serif;
  color: #181c61;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
}

.accordion-button {
  width: auto;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
}
.accordion-header a {
  font-family: "Mulish", sans-serif;
  color: #181c61;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  display: block;
}

/* responsive navbar for mobile */
@media (max-width: 821px) {
  .nav-section {
    display: none;
  }
  .mob-nav-section {
    display: block;
  }
  .mob-nav-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    background-color: rgba(24, 28, 97, 1);
    box-shadow: -0px 1px 20px -7px black;
  }

  .mobile-navbar-btn {
    display: block;
    z-index: 999;
  }

  .header {
    position: relative;
  }
  .header {
    display: none;
  }
  .header-mob {
    position: relative;
    display: flex;
  }

  .navbar-btn {
    display: none;
  }

  .navbar {
    /* display: none; */
    z-index: 99;
    width: 100%;
    height: auto;
    background: #e7f5ff;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
    transform: translateX(100%);
    transition: all 0.5s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .mob-nav-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }

  .mob-nav-section .nav-link {
    color: #181c61;
  }

  .nav-link {
    font-size: 24px;
  }

  .navbar-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .active .navbar {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: 100vh;
    overflow-y: auto;
    z-index: 999;
  }

  .active .mobile-navbar-btn .mobile-nav-icon .close-outline {
    display: block;
    margin-top: -32px;
    margin-left: 10px;
  }

  .active .mobile-navbar-btn .mobile-nav-icon .menu-outline {
    display: none;
  }

  .accordion {
    width: 100%;
  }
}

.call-now-button {
  width: 115px;
  height: 35px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  z-index: 10;
}

.button {
  width: 185px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}

.arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease-in-out;
}

.white-arrow {
  display: none;
}

.content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 21vh auto;
}

.content h1 {
  color: #ffffff;
  font-family: "Pattaya", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 70px;
  padding: 16px 0;
}

.content p {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-contain h2 {
    font-size: 40px;
    line-height: 56px;
  }

  .hero-contain p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 1080px) {
  .navbar-list {
    gap: 20px;
    padding: 0 10px;
  }
  .nav-section {
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  .hero-contain h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .hero-contain p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 768px) {
  .header-section-1 {
    height: 60vh;
  }
  .content {
    margin: 18.5vh auto;
  }
  .hero-contain h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-contain p {
    font-size: 14px;
    line-height: 20px;
  }

  .button {
    width: 210px;
  }
}

@media (max-width: 576px) {
  .header-section-1 {
    height: 80vh;
  }
  .content {
    margin: 16vh auto;
  }

  .header-section-1 .content h1 {
    line-height: 40px;
    font-size: 40px;
  }

  .header-section-1 .content p {
    font-size: 12px;
    line-height: 21px;
  }

  .nav-section-btn {
    flex-direction: column;
    align-items: center;
  }
  .nav-section {
    column-gap: 100px;
  }
}

/* hero-section */

.hero-section {
  padding: 18px;
  background-image: url("images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}
.main-project-section {
  background: #181c61;
  width: 100%;
  height: auto;
}

.case-study-results {
  display: flex;
  gap: 48px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.case-study-result-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
.case-study-result-label {
  font-size: 0.95rem;
  color: #bbbbbb;
}

.case-study-mobile-img {
  display: none;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .case-study-dots {
    display: flex;
    z-index: 10;
  }

  .case-study-dots {
    display: none;
    gap: 10px;
  }
  .dot {
    height: 10px;
    width: 10px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
  }
  .dot.active {
    background: #007bff;
  }
}
@media (max-width: 768px) {
  .case-study-mobile-img {
    display: block;
  }
  .img-desktop {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .case-study-mobile-img {
    display: block;
  }

  .case-study-dots {
    display: none;
    gap: 10px;
  }
  .dot {
    height: 10px;
    width: 10px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
  }
  .dot.active {
    background: #007bff;
  }
}

.mackbook-about {
  margin: 20px auto;
  width: 100%;
  height: 750px;
  position: relative;
  top: -425px;
}

.new-awrds,
.new-awrds-mob {
  margin: 2rem auto;
  margin-bottom: 4rem;
}

.new-awrds-mob {
  display: none;
}

.new-awrds-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.new-awrds-item {
  width: 110px;
  display: flex;
  align-items: center;
}

.new-awrds-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.separator {
  height: 120px;
  width: 1.5px;
  background-color: rgba(255, 255, 255, 0.5);
  /* Light-colored line */
}

/* Mobile styles - reduce spacing */
@media (max-width: 768px) {
  .hero-section {
    padding: 10px;
    margin-bottom: 1rem;
  }

  .new-awrds,
  .new-awrds-mob {
    margin: 1rem auto;
    margin-bottom: 2rem;
  }
}

@media (max-width: 500px) {
  .hero-section {
    padding: 8px;
    margin-bottom: 0.5rem;
  }

  .new-awrds {
    display: none;
  }

  .new-awrds-mob {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.5rem auto;
    margin-bottom: 1rem;
  }

  .new-awrds-mob .new-awrds-item {
    width: 120px;
  }

  .new-awrds-mob .new-awrds-wrapper {
    flex-wrap: nowrap;
    gap: 40px;
  }

  .new-awrds-mob .new-awrds-wrapper {
    animation: scrollAnimation2 var(--time) linear infinite;
    animation-delay: calc(var(--time) * -1);
  }

  .new-awrds-mob .new-awrds-wrapper:nth-child(2) {
    animation: scrollAnimation3 var(--time) linear infinite;
    animation-delay: calc(var(--time) / -1.75);
  }

  @keyframes scrollAnimation2 {
    0% {
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  @keyframes scrollAnimation3 {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-200%);
    }
  }
}

/* .mackbook {
    background-image: url('images/mackbook-frame.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 20px auto;
    width: 100%;
    height: 560px;
    position: relative;
    top: -425px;
} */

/* .mackbook .swiper {
    width: 72.8%;
    height: 88.5%;
    position: absolute;
    top: 8px;
    left: 146px;
} */

/* .mackbook .swiper {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
} */

/* .mackbook .swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.hero-contain-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 80px;
  margin: 4rem auto;
}

/* 
@media (max-width: 1460px) {
    .mackbook .swiper {
        width: 56%;
        height: 88%;
        top: 10px;
        left: 281px;
    }

} */

/* @media (max-width: 1400px) {
    .mackbook .swiper {
        width: 66%;
        height: 88%;
        top: 7px;
        left: 185px;
    }

}

@media (max-width: 1200px) {
    .mackbook .swiper {
        width: 77%;
        height: 86%;
        top: 16px;
        left: 102px;
    }

}

@media (max-width: 992px) {
    .mackbook .swiper {
        width: 77%;
        height: 65%;
        top: 80px;
        left: 76px;
    }
}

@media (max-width: 768px) {
    .mackbook .swiper {
        width: 77%;
        height: 65%;
        top: 82px;
        left: 75px;
    }
}


@media (max-width: 500px) {
    .mackbook .swiper {
        width: 77%;
        height: 31.5%;
        top: 202px;
        left: 40px;
    }
}

@media (max-width: 431px) {
    .mackbook .swiper {
        width: 77%;
        height: 34.5%;
        top: 174px;
        left: 40px;
        border-radius: 8px;
    }
}

@media (max-width: 415px) {
    .mackbook .swiper {
        width: 76.5%;
        height: 33%;
        top: 179px;
        left: 40px;
        border-radius: 8px;
    }
}

@media (max-width: 391px) {
    .mackbook .swiper {
        width: 77%;
        height: 31%;
        top: 186px;
        left: 36px;
        border-radius: 8px;
    }
}

@media (max-width: 376px) {
    .mackbook .swiper {
        width: 77%;
        height: 29.2%;
        top: 190px;
        left: 35px;
        border-radius: 8px;
    }

}

@media (max-width: 361px) {
    .mackbook .swiper {
        width: 76%;
        height: 28%;
        top: 193px;
        left: 35px;
        border-radius: 8px;
    }

} */

/* Left Content */
.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-content p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Right Side Image Grid */
.hero-gallery {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-gap: 10px;
  max-width: 500px;
}

/* Image Styling */
/* .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
} */

/* Custom Grid Placement */
.img-1 {
  grid-column: span 1;
  grid-row: span 1;
}

.img-1 img {
  margin-top: 62px;
  margin-left: 38px;
  width: 160px;
}

.img-2 {
  grid-column: span 1;
  grid-row: span 1;
}

.img-2 img {
  height: 240px;
  width: 200px;
}

.img-3 {
  grid-column: span 2;
  grid-row: span 1;
}

.img-3 img {
  width: 385px;
}

/* hero-cards */

/* .hero-card {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top right, #181C61, #2A2E87);
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
} */

.industry-section {
  margin-top: 4rem;
}
.industry-section h3 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  .hero-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 12px;
    /* background: linear-gradient(to top right, #2E33A4, #181C61, #181C61, #2A2E87, #2E33A4); */
    background: linear-gradient(to top right, #3a40d0, #4a50ff);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 4px;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
  }
}

@media (min-width: 769px) {
  /* Apply effect when selected */
  .hero-card.selected::before {
    opacity: 1;
  }

  /* Apply effect on hover for unselected cards */
  .hero-card.hover-effect::before {
    opacity: 1;
  }
}

.hero-card-container {
  max-height: 490px;
}

.hero-card-container::-webkit-scrollbar {
  display: none;
}

.hero-card {
  height: 75%;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.hero-card span {
  width: 75px;
  height: 75px;
  padding: 10px;
  /* margin-bottom: 4px; */
  /* background-color: #005DC5; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card span img {
  width: 35px;
  height: 35px;
}

.hero-card p {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

.cross-industry h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
}

.cross-industry p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

/* Hide the end-of-page form on mobile */
@media (max-width: 768px) {
  form.mobile-hide-form,
  .mobile-hide-form {
    display: none !important;
  }
}

/* .cross-industry .form-group input, 
.cross-industry .form-group textarea {
    width: 100%;
    margin: 5px 0 15px; 
    background: transparent;
    border: none;
    border-radius: 0; 
    border-bottom: 1px solid white;
    color: white;
    font-size: 16px;
    outline: none; 
}

.cross-industry .form-group label {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
} */

@media (max-width: 1024px) {
  .hero-cards span {
    font-size: 32px;
  }

  .hero-cards p {
    font-size: 18px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .hero-cards {
    column-gap: 15px;
  }
}

@media (max-width: 568px) {
  .hero-cards {
    flex-wrap: wrap;
    gap: 5px;
  }

  .hero-card p {
    font-size: 10px;
    font-weight: 600;
  }

  .hero-cards span {
    font-size: 14px;
    font-weight: 500;
  }
  .cross-industry {
    margin-top: 250px;
  }

  .industry-section {
    margin-top: -90%;
  }

  .hero-card-container {
    max-height: 750px;
  }
}

/* Media Queries for Responsiveness */

@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .new-awrds {
    top: -290px;
  }

  .navbar-section {
    height: 615px;
  }

  .mackbook {
    top: -300px;
  }
}

@media (max-width: 821px) {
  .mackbook {
    top: -360px;
  }

  .hero-contain-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-cards {
    top: -370px;
    row-gap: 10px;
  }

  .new-awrds-item {
    max-width: 100px;
    justify-content: center;
  }

  .navbar-section {
    height: 590px;
  }
}

@media (max-width: 768px) {
  .hero-contain-container {
    flex-direction: column;
    text-align: center;
  }

  .navbar-section {
    height: 590px;
  }

  .hero-cards {
    top: -390px;
  }
}

@media (max-width: 576px) {
  .navbar-section {
    height: 620px;
  }

  .mackbook {
    top: -360px;
  }

  .hero-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-contain-container {
    row-gap: 30px;
  }

  .hero-cards {
    top: -530px;
  }

  .new-awrds {
    top: -545px;
  }

  .new-awrds-wrapper {
    justify-content: center;
    gap: 20px;
  }

  .img-1 img {
    width: 130px;
    margin-top: 27px;
    margin-left: 32px;
  }

  .img-2 img {
    width: 160px;
    height: 158px;
  }

  .img-3 img {
    width: 270px;
  }
}

/* Brand-section */
.brands-section {
  width: 100%;
  height: auto;
  background-image: url("images/brands-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  padding: 60px 0;
}

.brands h2 {
  color: #171941;
  font-size: 36px;
  font-weight: 800;
}

/* why-choose-us */
.why-choose-us {
  width: 100%;
  margin: 30px auto;
}

.why-choose-us h2 {
  color: #171941;
  font-size: 32px;
  font-weight: 700;
}

.why-choose-us p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 500;
}

.verticalSwiper {
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
}

.swiper-wrapper {
  transition-timing-function: ease-in-out;
  /* Smooth transition */
}

.why-choose-us-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-choose-us-container {
  margin: 60px 0;
  width: 100%;
  height: auto;
  display: flex;
  z-index: 1;
}

.why-choose-us-left {
  flex: 0 0 50%;
  padding-right: 50px;
  height: auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  position: relative;
  text-align: start;
}

.why-choose-us-left h3 {
  color: #171941;
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}
.why-choose-us-left p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
}

.choose-left-card {
  width: 80%;
  height: 375px;
  border-radius: 6px;
  padding: 30px;
  background-image: url("images/choose-left-card-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.choose-left-card h3 {
  color: #ffffff !important;
  font-size: 32px;
  font-weight: 700;
}
.choose-left-card p {
  color: #bcbcbc !important;
  font-size: 20px;
  font-weight: 400;
}
.choose-left-img-container {
  width: 65px;
  height: 61px;
}
.choose-left-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .why-choose-us-left img {
    width: 65%;
    position: absolute;
    top: 0;
} */
.why-cose-stop {
  position: absolute; /* Stop fixing when reaching the bottom */
  top: auto;
  bottom: 0;
}

.why-choose-us-right {
  flex: 0 0 50%;
  width: 50%;
  height: auto;
  justify-content: flex-start;
}

.why-cose-fixed-img {
  position: fixed;
  width: 27%;
  top: 85px;
}

.why-choose-us-card {
  background-color: #ffffff;
  margin: 15px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 2px;
}

.why-choose-us-card:nth-child(1) {
  margin-top: 0;
}

.why-cose-fixed-img {
  position: fixed;
  width: 27%;
  top: 84px;
}

.choose-us-card-1::before {
  content: "";
  height: 30px;
  display: block;
  border: 2px solid #ffffff;
}

.choose-us-card-1:hover::before {
  border: 2px solid #6a49f2;
}

.choose-us-card-2::before {
  content: "";
  height: 30px;
  display: block;
  border: 2px solid #ffffff;
}

.choose-us-card-2:hover::before {
  border: 2px solid #ffdc22;
}

.choose-us-card-3::before {
  content: "";
  height: 30px;
  display: block;
  border: 2px solid #ffffff;
}

.choose-us-card-3:hover::before {
  border: 2px solid #5ecde1;
}
.choose-us-card-4::before {
  content: "";
  height: 30px;
  display: block;
  border: 2px solid #ffffff;
}

.choose-us-card-4:hover::before {
  border: 2px solid #0be3c1;
}
.choose-us-card-5::before {
  content: "";
  height: 30px;
  display: block;
  border: 2px solid #ffffff;
}

.choose-us-card-5:hover::before {
  border: 2px solid #ff8a74;
}
.choose-us-card-6::before {
  content: "";
  height: 30px;
  display: block;
  border: 2px solid #ffffff;
}

.choose-us-card-6:hover::before {
  border: 2px solid #ff678e;
}

.why-choose-us-card-content {
  flex: 1;
}

.why-choose-us-right span {
  color: #181c61;
  font-size: 18px;
  font-weight: 600;
}

.why-choose-us-right p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}

.explore-btn {
  margin-top: 20px;
}

/* Media Queries for Responsive Adjustments */
@media (max-width: 820px) {
  .why-choose-us-card {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .why-choose-us-container {
    flex-direction: row;
    align-items: center;
  }
  .why-choose-us-right {
    width: 100%;
    max-width: none;
  }

  .choose-left-card {
    width: 100%;
  }
  .choose-left-img-container {
    width: 60px;
    height: 60px;
  }
  .choose-left-card h3 {
    font-size: 28px;
  }
}

@media (max-width: 568px) {
  .why-choose-us-container {
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
    gap: 1rem;
  }
  .why-choose-us-left {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .why-choose-us h2 {
    font-size: 24px;
  }
  .choose-left-card {
    text-align: start;
  }

  .why-choose-us-left h3 {
    font-size: 24px;
  }
}

/* Awards section */
.awards {
  width: 100%;
  height: auto;
  margin: 40px auto;
}

.awards h2 {
  color: #171941;
  font-size: 32px;
  font-weight: 700;
}

.awards-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.img-container {
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.awards-container-text {
  padding: 16px;
  text-align: start;
  width: 35%;
}

.awards-cards-container {
  flex: 1;
  width: 60%;
  padding: 10px;
  display: flex;
  column-gap: 30px;
  align-items: center;
  justify-content: center;
}

.awards-card {
  width: 200px;
  height: 200px;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.awards-card-active {
  margin-right: 10px;
  scale: 1.2;
  order: -1;
}

.awards-card-img {
  margin-left: 16px;
  width: 75%;
  height: 75%;
}

.awards-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-card p {
  color: #171941;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  white-space: nowrap;
}

.awards-container .awards-container-text h3 {
  color: #1c2281;
  font-size: 22px;
  font-weight: 600;
  line-height: 27px;
}

.awards-container .awards-container-text p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
}

/* Media Queries for Responsive Adjustments */

@media (max-width: 1024px) {
  .awards-container {
    flex-direction: column;
  }

  .awards-container-text {
    width: 100%;
  }

  .awards-cards-container {
    width: 100%;
    justify-content: space-evenly;
  }
}

@media (max-width: 768px) {
  .img-container {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .awards h2 {
    font-size: 24px;
  }

  .awards-cards-container {
    flex-direction: row;
    gap: 10px;
  }

  .awards-card {
    width: 100px;
    height: 100px;
  }

  .img-container {
    flex: 0 0 90px;
    width: 80px;
    height: 80px;
  }

  .awards-container {
    column-gap: 10px;
  }

  .awards-card-img {
    width: 65%;
    height: 55%;
    margin-left: 12px;
  }

  .awards-card p {
    color: #171941;
    font-size: 10px;
    font-weight: 500;
    /* margin-top: 10px; */
    white-space: wrap;
  }
}

/* ours services */
.services-section {
  color: #ffffff;
  padding: 32px 0;
  background-image: url("images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.services-section h2 {
  font-size: 32px;
  font-weight: 700;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  padding: 40px 0;
  max-width: 1400px; /* Added to contain 4 cards properly */
  margin: 0 auto; /* Center the container */
}

/* Laptop & mid-desktop screens (900px - 1440px) - show two rows */
@media (min-width: 900px) and (max-width: 1440px) {
  /* ParticleJS Section Responsive Two-Column Layout */
  .particlejs-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .particlejs-left {
    width: 50%;
    padding: 12px 16px;
  }
  .particlejs-left h1 {
    font-size: 2.2rem;
    line-height: 2.5rem;
    margin-bottom: 12px;
  }
  .particlejs-left p {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .particlejs-left .button {
    font-size: 1rem;
    padding: 10px 22px;
  }
  .particlejs-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
  }
  .particlejs-right .feature-card {
    width: 100%;
    padding: 16px;
    font-size: 0.95rem;
    margin-top: -16px;
  }

  /* Our Services */
  .services-cards {
    gap: 24px 32px;
    justify-content: center;
  }
  .service-card {
    flex: 0 0 46%;
    max-width: 46%;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .service-card.service-cta {
    flex: 0 0 46%;
    max-width: 25%;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

.services-cards .service-card-link {
  display: block;
  width: 100%;
  max-width: 251px;
  text-decoration: none;
  color: inherit;
}

.service-card {
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 15px;
  flex: 0 0 22%;
  height: 290px;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top right, #181c61, #2a2e87);
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  will-change: transform, box-shadow;
  z-index: 2;
  cursor: pointer;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  /* Move the :before element behind the card content */
  background: linear-gradient(
    to top right,
    #2e33a4,
    #181c61,
    #181c61,
    #2a2e87,
    #2e33a4
  );
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.service-card:hover:before {
  opacity: 1;
  animation: rotateBorder 4s linear 1;
}

.service-card:hover {
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.6);
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.service-card:hover {
  background: #171941;
}

.service-card:hover .arrow {
  transform: rotate(45deg);
}

.service-card:hover .img-bottom {
  transform: rotate(15deg);
}

.service-card-img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}

.service-card-img .img-top {
  width: 45px;
  height: 45px;
  z-index: 20;
  object-fit: contain;
  position: absolute;
  top: 10px;
  left: 10px;
}

.service-card-img .img-bottom {
  width: 53px;
  height: 53px;
  z-index: 5;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.service-card-content {
  z-index: 10;
  /* Ensure the content is above the :before element */
}

.service-card-content h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.service-card-content p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: start;
}

.Learn-more {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.service-cta {
  background-image: url("images/services-card-bluebg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-cta:hover {
  background-image: url("images/services-card-bluebg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-cta:hover::before {
  opacity: 0;
  background: none;
}

.service-cta:hover {
  box-shadow: none;
}

/* Laptops and Desktops - Always 4 cards per row, 2 rows total */
@media (min-width: 769px) {
  .services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .service-card,
  .service-cta,
  .service-card.service-cta,
  .services-cards .service-card-link {
    width: 100% !important;
    max-width: none !important;
    flex: 1 1 0% !important;
    box-sizing: border-box;
  }
}

.service-card-content h4 {
  font-size: 24px;
}

.service-card-content p {
  font-size: 14px;
}

.Learn-more {
  font-size: 16px;
}

/* Mobile screens - All cards same width */
@media (max-width: 768px) and (min-width: 577px) {
  .service-card {
    flex: 0 0 45%;
  }
  .services-cards .service-card-link {
    max-width: 320px;
  }
  .service-card-content h4 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .services-section h2 {
    font-size: 24px;
  }

  .services-cards {
    gap: 0;
  }

  .service-card,
  .service-cta,
  .service-card.service-cta,
  .services-cards .service-card-link {
    width: 100% !important;
    max-width: 350px !important;
    margin: 8px auto 10px auto !important;
    height: 250px !important;
    box-sizing: border-box;
    flex: 0 0 100% !important;
  }

  .service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-card-content h4 {
    font-size: 20px;
  }

  .service-card-content p {
    font-size: 12px;
  }

  .Learn-more {
    font-size: 14px;
  }
}

/* project-section-animation */
.project-animation {
  padding: 45px 0;
  background-image: url("images/project-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  border-top-right-radius: 100px;
}

/* .project-animation-two {
    padding: 30px 0;
    background-image: url('images/project-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
} */

.scr_bar {
  height: 90%;
  width: 2px;
  background: rgb(27, 37, 67);
  /* background: transparent; */
  border-radius: 100px;
  position: absolute;
  right: 15px;
  top: 4%;
  padding: 1px;
}

.scr_bar .bar {
  position: absolute;
  left: -1px;
  top: 0;
  width: 4px;
  height: 140px;
  background: #ffffff;
  content: "";
  border-radius: 60px;
}

/* .animation-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
} */

.tech-icon img {
  width: 35px;
  height: 40px;
}

.tech-icon span {
  color: #181c61;
  font-size: 18px;
  font-weight: 600;
}

.animation-container {
  height: 1800px;
}

.animation-div {
  height: 500px;
}

@media (max-width: 1025px) {
  .animation-container {
    height: 475px;
  }

  .scr_bar {
    height: 20%;
  }
}

@media (max-width: 769px) {
  .animation-container {
    height: 475px;
  }

  .scr_bar {
    height: 20%;
  }
}

@media (max-width: 569px) {
  .animation-container {
    height: 2700px;
  }
  .featuremt {
    margin-top: -95% !important;
  }
  .animation-container .row {
    top: 55px !important;
  }

  .animation-div {
    height: 985px;
    margin-top: -20px;
  }

  .scr_bar {
    display: none;
  }
}

/* Project-Section */
.project-section {
  padding: 40px 0;
  background-image: url("images/project-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-left-radius: 100px;
}

.project h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
}

.project p {
  padding: 10px 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

/* Technology Icons */
.tech-icons-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  column-gap: 30px;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Headings and Text */
.animation-container .card {
  background: transparent;
}

.card-body h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.card-body h5 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

/* .card-body p {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
} */

.project-container h3 {
  color: #44488a;
  font-size: 24px;
  font-weight: 700;
}

.card-body span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.card-body p {
  padding: 10px 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

/* Media Queries */
@media (max-width: 821px) {
  .card-body h4,
  .card-body h5 {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  /* Tablet View */
  .project-container {
    flex-direction: column;
    align-items: center;
  }

  .project-left-content {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }

  .project-right-img-container {
    width: 90%;
    height: auto;
  }

  .project-container h2 {
    font-size: 30px;
  }

  .project-container span {
    font-size: 20px;
  }

  .project-container p {
    font-size: 14px;
  }

  .tech-icons-container {
    flex-direction: row;
    align-items: center;
    row-gap: 20px;
  }
}

@media (max-width: 576px) {
  /* Mobile View */
  .project-left-content {
    width: 100%;
    height: auto;
  }

  .project-right-img-container {
    width: 100%;
    height: auto;
  }

  .project-container h2 {
    font-size: 26px;
  }

  .project-container span {
    font-size: 18px;
  }

  .project-container p {
    font-size: 12px;
  }
}

/* Feater in */
.Featured h2 {
  color: #171941;
  font-size: 32px;
  font-weight: 700;
  margin-top: 20px;
}

.feature-container {
  margin: 50px auto;
  display: flex;
  overflow: hidden;
  /* Hide overflow to create smooth scrolling */
  white-space: nowrap;
  gap: 20px;
  position: relative;
}

.feature-wraper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  column-gap: 30px;
  margin: 65px auto;
}

.wraper-img-container {
  max-width: 250px;
  height: 25px;
  display: flex;
  align-items: center;
}
.wraper-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.my-scroll-wrapper {
  display: flex;
  justify-content: space-evenly;
  column-gap: 2.5rem;
  animation: scrollAnimation 15s linear infinite;
}

.feature-img-container {
  flex: 0 0 auto;
  max-width: 180px;
  height: 40px;
  margin: 10px;
}

.feature-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes scrollAnimation {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .Featured h2 {
    font-size: 28px;
  }
  .feature-wraper {
    justify-content: space-evenly;
  }
}

@media (max-width: 576px) {
  .feature-container {
    flex-direction: row;
    align-items: center;
    margin-block: 16px;
  }

  .feature-img-container {
    width: calc(45% - 10px);
    margin: 5px 0;
  }

  .Featured h2 {
    font-size: 24px;
    font-weight: 800;
  }
  .feature-wraper {
    justify-content: space-evenly;
  }

  .wraper-img-container {
    max-width: 38%;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

/* feature in */
.project-section .feature-container {
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  overflow: hidden;
  white-space: nowrap;
  gap: 10px;
  position: relative;
}

.project-section .feature-img-container {
  max-width: 180px;
  height: 50px;
}

.project-section .feature-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 576px) {
  .project-section .feature-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .project-section .feature-img-container {
    width: calc(40% - 10px);
  }

  .project-section {
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
  }
}

/* client-reviews */
.client-reviews h2 {
  color: #171941;
  font-size: 32px;
  font-weight: 700;
}

.client-reviews p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.swiper {
  width: 100%;
  padding: 50px 4px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.reviewSwiper .swiper-slide-prev {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out;
}

.reviews-card {
  width: 19.9rem !important;
  height: 21rem !important;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ffffff;
  overflow: hidden;
}

.reviews-card .client-pic {
  width: 111px;
  height: 106px;
  border-radius: 10px;
}

.reviews-card .client-name {
  margin: 5px auto;
  color: #181c61;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.reviews-card .client-degination {
  color: #787aa8;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.reviews-card .client-message {
  color: #787aa8;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}

.reviews-card .stars {
  margin: 5px auto;
  width: 95px;
  height: 15px;
}

@media (max-width: 1025px) {
  .reviews-card {
    width: 25.8rem !important;
    height: 24rem !important;
  }
}

@media (max-width: 769px) {
  .reviews-card {
    width: 21rem !important;
    height: 24rem !important;
  }
}

@media (max-width: 500px) {
  .reviews-card {
    width: 22rem !important;
    height: 24rem !important;
  }
}

@media (max-width: 431px) {
  .reviews-card {
    width: 25.5rem !important;
    height: 24rem !important;
  }
}

@media (max-width: 415px) {
  .reviews-card {
    width: 24.4rem !important;
    height: 24rem !important;
  }
}

@media (max-width: 391px) {
  .reviews-card {
    width: 23rem !important;
    height: 24rem !important;
  }
}

@media (max-width: 376px) {
  .reviews-card {
    width: 22rem !important;
    height: 24rem !important;
  }
}

/* Blogs Section */
.blog {
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* margin-bottom: -20px !important; */
}

.blog h2 {
  color: #171941;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto;
}

.blog p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

.gallery {
  width: 100%;
  height: 400px;
  display: flex;
  margin: 5% auto 0;
}

.gallery-pannel {
  margin: 0 1%;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  flex-basis: 0;
  transition: 0.5s;
  position: relative;
}

.gallery-pannel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-pannel:hover {
  flex-basis: 30%;
}

.gallery-pannel:hover .gallery-content {
  transform: rotate(0);
}

.active-pannel {
  flex-basis: 30%;
}

.active-pannel > .gallery-content {
  transform: rotate(0);
}

.gallery:hover .active-pannel {
  flex-basis: 0;
}

.gallery:hover .active-pannel > .gallery-content {
  transform: rotate(-90deg);
}

.active-pannel:nth-child(1):hover {
  flex-basis: 30%;
}

.active-pannel:nth-child(1):hover .gallery-content {
  transform: rotate(0);
}

.gallery-content {
  position: absolute;
  left: 70px;
  bottom: 20px;
  text-align: left;
  padding: 10px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  transition: transform 0.5s ease;
}

.gallery-content p {
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.gallery-content h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: -2px 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .blog h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .blog p {
    font-size: 14px;
  }

  .gallery-content h3 {
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    margin-bottom: 0;
  }

  .gallery-content p {
    font-size: 8px;
    font-weight: 400;
    margin-top: 2px;
    display: none;
  }

  .gallery-content {
    left: 23px;
  }

  .active-pannel > .gallery-content {
    left: 23px;
  }
}

/* Partnerships */
.partnerships h2 {
  color: #171941;
  font-size: 32px;
  font-weight: 700;
}
.partnerships-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.partnerships-img-container {
  height: 75px;
}
.partnerships-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 576px) {
  .partnerships-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
  }
  .partnerships-img-container {
    width: 45%;
  }
  .partnerships h2 {
    color: #171941;
    font-size: 24px;
    font-weight: 700;
  }
}

/* subscribe-card */
.subscribe-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscribe-card {
  background-image: url("images/subscribe-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  width: 90%;
  height: auto;
  position: relative;
  top: 150px;
}

.subscribe-content {
  width: 35%;
}
.subscribe-card #subscribeForm {
  width: 60%;
}

.subscribe-content h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.subscribe-content p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#subscribe-form {
  display: flex;
  align-items: center;
  gap: 32px;
}

#subscribe-form input {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  width: 445px;
  outline: none;
  font-size: 14px;
}

#subscribe-form button {
  background-color: #ff7f7f;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

#subscribeForm .form-floating > label {
  color: #ffffff;
  left: -12px;
  font-size: 14px;
  font-weight: 400;
}
#subscribeForm .form-floating .form-control:focus + label {
  top: -8px;
}

#subscribeForm .form-floating .form-control:focus + label[for="message"] {
  font-size: 14px;
  top: -12px;
}

/* Respnive subscription card */
/* 1200px and below */
@media (max-width: 1200px) {
  .subscribe-card {
    max-width: 900px;
    padding: 25px;
  }

  .subscribe-content h2 {
    font-size: 32px;
  }

  .subscribe-content p {
    font-size: 14px;
  }

  #subscribe-form input {
    width: 380px;
    padding: 10px 20px;
  }

  #subscribe-form button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* 992px and below (Tablet View) */
@media (max-width: 992px) {
  .subscribe-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    max-width: 700px;
    padding: 16px;
  }

  #subscribe-form {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  #subscribe-form input {
    width: 100%;
    padding: 10px 18px;
    font-size: 14px;
  }

  #subscribe-form button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
  .subscribe-content {
    width: 100%;
  }
  .subscribe-card #subscribeForm {
    width: 100%;
  }
}

/* 768px and below */
@media (max-width: 768px) {
  .subscribe-card {
    max-width: 600px;
  }

  .subscribe-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .subscribe-content p {
    font-size: 14px;
  }

  #subscribe-form input {
    padding: 10px 16px;
    font-size: 13px;
  }

  #subscribe-form button {
    padding: 10px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .subscribe-card {
    width: 100% !important;
    max-width: none !important;
    margin-left: -15px !important; /* Match the parent's horizontal padding */
    margin-right: -15px !important;
    padding-left: 15px !important; /* Restore internal spacing */
    padding-right: 15px !important;
    border-radius: 15px !important;
    box-sizing: border-box !important;
  }

  .subscribe-content {
    width: 100% !important;
  }

  .subscribe-card #subscribeForm {
    width: 100% !important;
  }

  .subscribe-content h2 {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .subscribe-content p {
    font-size: 12px !important;
  }

  #subscribe-form input {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  #subscribe-form button {
    padding: 10px !important;
    font-size: 12px !important;
  }
}

/* web-developement-page */
.web-hero-section {
  background-image: url("images/web-dev-hero-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
}

.web-hero-right .web-page-shadow {
  width: 500px;
  height: 500px;
  position: absolute;
  top: -145px;
  right: -195px;
}

.web-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.web-hero-right {
  width: 50%;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.web-hero-right .bubble-2 {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
}

.web-hero-right .bubble-3 {
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: 0;
  right: -10px;
}

.web-hero-left {
  width: 50%;
  padding: 16px;
  position: relative;
}

.web-hero-left .bubble-1 {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

.web-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 20;
}

.web-hero-content h1 {
  color: #181c61;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}

.web-hero-content p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .web-hero-content {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .web-hero-left,
  .web-hero-right {
    width: 100%;
  }
}

@media (max-width: 568px) {
  .web-hero-content h1 {
    color: #181c61;
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
  }
}

/* <!-- web-brands-section --> */
.web-brands {
  background-image: url("images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
}

/* web-brands-cards */
.web-brands-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  column-gap: 20px;
  margin: 40px 0;
}

.web-brands-card {
  width: 275px;
  height: 175px;
  padding: 16px;
  border-radius: 15px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top right, #181c61, #2a2e87);
  transition: transform 0.5sease-in-out;
  will-change: transform;
}

.web-brands-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 15px;
  background: linear-gradient(
    to top right,
    #2e33a4,
    #181c61,
    #181c61,
    #2a2e87,
    #2e33a4
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 4px;
}

.web-brands-card:hover .web-brands-card::before {
  background: linear-gradient(
    to top right,
    #5d64dd,
    #181c61,
    #181c61,
    #2a2e87,
    #5d64dd
  );
  padding: 6px;
}

.web-brands-card:hover {
  background: #171941;
}

.web-brands-cards span {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  padding-left: 16px;
}

.web-brands-cards p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding-left: 16px;
}

.web-brands h2 {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .web-brands-cards span {
    font-size: 35px;
    font-weight: 600;
  }

  .web-brands-cards p {
    font-size: 24px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .web-brands-cards {
    column-gap: 15px;
  }
}

@media (max-width: 568px) {
  .web-brands-cards {
    flex-wrap: wrap;
    gap: 5px;
  }

  .web-brands-card {
    width: calc(50% - 10px);
  }

  .web-brands-cards span {
    font-size: 30px;
    font-weight: 500;
  }

  .web-brands-cards p {
    font-size: 21px;
    font-weight: 500;
  }
}

/* <!-- how we work --> */
.how-we-work-section {
  /* background-image: url('images/web-dev-hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  padding: 40px 0;
}

.how-we-work-section h2 {
  color: #181c61;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  margin-bottom: 20px;
}

.how-we-work {
  max-width: 1126px;
  max-height: 550px;
  padding: 30px 0;
}

.how-we-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* service page our projects */
.ours-projects {
  margin: 90px 0;
}

.our-project-cards {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.our-project-card {
  width: 100%;
  max-width: 320px;
  max-height: 425px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.our-project-card .project-demo-container {
  width: 100%;
  max-width: 320px;
  max-height: 425px;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.our-project-card:hover .project-demo-container {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project-demo-container .project-demo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-project-card .proj-btn {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.our-project-card:hover .proj-btn {
  opacity: 1;
  visibility: visible;
}

.project-demo-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.our-project-card:hover .project-demo-container::before {
  opacity: 1;
}

@media (max-width: 568px) {
  .ours-projects {
    margin: 40px 0;
  }

  .our-project-cards {
    flex-direction: column;
    row-gap: 20px;
  }
}

/* <!-- our-core-values --> */
.core-values-section {
  background-image: url("images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}

.core-values-section h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
}

.core-values-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.core-values-card {
  max-width: calc(33.33% - 10px);
  border-radius: 15px;
  background: linear-gradient(to right, #15195c 100%, #1c2281 100%);
  text-align: center;
  padding: 15px 10px;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.core-values-card h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  padding: 15px;
}

.core-values-card p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 15px;
}

/* Responsive Design */

/* Tablets & Small Laptops (2 columns) */
@media (max-width: 992px) {
  .core-values-card {
    max-width: calc(50% - 10px);
  }
}

/* Mobile Screens (1 column) */
@media (max-width: 568px) {
  .core-values-section h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .core-values-card {
    max-width: calc(100% - 10px);
  }

  .core-values-card h4 {
    font-size: 18px;
  }

  .core-values-card p {
    font-size: 14px;
  }
}

/* Technoloy-we-on */
.technoloy-we-on {
  background-image: url("images/web-dev-hero-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  padding: 60px 0;
}

.how-we-work-map {
  margin-bottom: 90px;
}

@media (max-width: 568px) {
  .how-we-work-map {
    margin-bottom: 50px;
  }
}

/* <!-- News --> */
.news h2 {
  color: #181c61;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.news-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.news-card {
  width: calc(33.33% - 10px);
  background-color: #f9fbff;
  border-radius: 15px;
  padding: 16px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.news-card h3 {
  color: #181c61;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: start;
}

.news-card p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: start;
}

.news-card p span {
  color: #069fcb;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.news-img-container {
  padding: 10px;
}

.news-img-container img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .news-card p {
    font-size: 13px;
    font-weight: 500;
  }

  .news-card p span {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .news-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 568px) {
  .news-card {
    width: calc(100% - 10px);
  }

  .news h2 {
    font-size: 24px;
    list-style: 30px;
  }
  .technologysmall {
    margin-top: -95% !important;
    z-index: 99;
    position: relative;
  }
}

/* Other Services */
.other-services {
  margin: 40px 0;
}

.other-services h2 {
  color: #181c61;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.other-services .other-services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.other-services .other-services-card {
  width: calc(20% - 10px);
  max-width: 223px;
  max-height: 221px;
  background-color: #f9fbff;
  border-radius: 15px;
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.other-services .other-services-card h4 {
  color: #181c61;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.other-services-img-container {
  max-width: 100px;
  min-height: 100px;
  padding: 10px;
}

.other-services-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 820px) {
  .other-services .other-services-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .other-services .other-services-card {
    width: calc(50% - 10px);
  }

  .other-services h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

/* <!-- Our Packages --> */
.our-packages {
  margin: 40px 0;
}

.our-packages h2 {
  color: #181c61;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.our-packages-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.our-packages-card {
  width: calc(33.33% - 10px);
  background-color: #f9fbff;
  border-radius: 15px;
  padding: 16px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.our-packages-icon {
  width: 141px;
  height: 141px;
}

.our-packages-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.our-packages-card-Content h3 {
  color: #181c61;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}

.our-packages-card-Content .price {
  color: #6a49f2;
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
}

.our-packages-card-Content .desc {
  color: #787aa8;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.correct-tick {
  display: flex;
  align-items: center;
  gap: 8px;
}

.our-packages-card-Content .call-now-button {
  width: 160px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}

.our-packages-card-Content .correct-tick-content {
  color: #787aa8;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.correct-tick-img img {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 992px) {
  .our-packages-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 568px) {
  .our-packages-card {
    width: calc(100% - 10px);
  }

  .our-packages h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .our-packages-icon {
    width: 120px;
    height: 120px;
  }

  .our-packages-card-Content .price {
    font-size: 28px;
    line-height: 30px;
  }
}

/* tech-we-work */
.tech-we-work h2 {
  color: #181c61;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
}

.tech-we-work-img-container {
  width: 100%;
  height: 312px;
}

.tech-we-work-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 568px) {
  .tech-we-work h2 {
    color: #181c61;
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
  }

  .tech-we-work-img-container {
    height: 150px;
  }
}

/* Ecommerce page */
.ecomm-about-us,
.ecomm-choose-us {
  padding: 10px 20px;
}

.ecomm-about-us h2,
.ecomm-choose-us h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
}

.ecomm-about-us p,
.ecomm-choose-us p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 568px) {
  .ecomm-about-us h2,
  .ecomm-choose-us h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

/* SaaS page */
.web-hero-right .sass-hero-bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.web-hero-right .sass-hero {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ERP & CRM page */
.web-hero-right .crm-hero-bg {
  position: relative;
  z-index: 1;
  width: 80%;
  height: auto;
  object-fit: cover;
}

/* Contact-us page */
.contact-us-hero {
  text-align: center;
}

.contact-us-hero h4 {
  color: #6a49f2;
  margin: 10px auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 3.5%;
}

.contact-us-hero h3 {
  color: #181c61;
  margin: 15px auto;
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 3.5%;
}

.contact-us-hero p {
  color: #787aa8;
  margin: 25px auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 3.5%;
}

.contact-us-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-us-card {
  width: 300px;
  min-height: 320px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.contact-us-card .contact-us-card-icon {
  width: 106px;
  height: 106px;
}

.contact-us-card .contact-us-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-us-card-title {
  color: #181c61;
  margin: 10px auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 3.5%;
}

.contact-us-card-subtitle {
  color: #787aa8;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 3.5%;
}

.contact-us-card-address {
  color: #6a49f2;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 3.5%;
}

.contact-us-card-phone,
.contact-us-card-email {
  color: #3b82f6;
  font-size: 14px;
  line-height: 27px;
  font-weight: 600;
  text-decoration: none;
}

/* Map and Form Section */
.map-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 50px;
  margin-top: 30px;
}

/* Map Container */
.map-container {
  width: 50%;
  max-width: 600px;
  /* Prevent excessive stretching */
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
}

/* Form Container */
.form-container {
  width: 50%;
  max-width: 600px;
  /* Prevent excessive stretching */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.form-container h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.form-group {
  position: relative;
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #161616;
  font-size: 14px;
}

.map-form .form-group label {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.map-form .form-group input,
.map-form .form-group textarea {
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  background: none;
  outline: none;
}

.form-group textarea {
  resize: none;
}

/* .form-group input:focus,
.form-group textarea:focus {
    outline: none;
    padding: 10px;
} */

/* Submit Button */
.submit-btn {
  padding: 8px 30px;
  background: #ff8c72;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #ff755b;
}

.submit-btn:hover .arrow {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .map-form {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .map-container,
  .form-container {
    width: 100%;
    max-width: 100%;
  }

  .form-container {
    margin: 15px auto;
  }
}

/* About us hero section */
.About-hero-section {
  background-image: url("images/web-dev-hero-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 800px;
  padding: 30px 0;
}

.about-hero-left h2 {
  color: #6a49f2;
  font-size: 32px;
  font-weight: 700;
  line-height: 49px;
}

.about-hero-left p {
  color: #181c61;
  font-size: 60px;
  font-weight: 600;
  line-height: 79px;
}

.about-hero-content {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

.about-hero-left {
  padding: 15px;
  width: 65%;
}

.about-hero-right {
  padding: 5px;
  text-align: start;
  overflow: hidden;
}

.hero-contain-container .about-us-hero-section {
  padding: 18px;
  background-image: url("images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 1120px;
}
.about-us-hero-section .hero-contain-container {
  margin-top: -480px;
}

@media (max-width: 1200px) {
  .About-hero-section {
    height: 890px;
  }

  .about-us-hero-section {
    height: 1000px;
  }
}

@media (max-width: 1024px) {
  .about-hero-left h1 {
    color: #6a49f2;
    font-size: 40px;
    font-weight: 800;
    line-height: 49px;
  }

  .about-hero-left p {
    color: #181c61;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
  }

  .About-hero-section {
    height: 720px;
  }

  .about-us-hero-section {
    height: 1080px;
  }
}

@media (max-width: 820px) {
  .About-hero-section {
    height: 760px;
  }

  .about-us-hero-section {
    height: 980px;
  }
}

@media (max-width: 768px) {
  .About-hero-section {
    height: 720px;
  }

  .about-us-hero-section {
    height: 1360px;
  }
}

@media (max-width: 576px) {
  .about-hero-content {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .about-hero-left h1 {
    color: #6a49f2;
    font-size: 32px;
    font-weight: 600;
    line-height: 30px;
  }

  .about-hero-left p {
    color: #181c61;
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
  }

  .about-hero-left {
    width: 100%;
  }

  .about-hero-right {
    width: 100%;
    text-align: start;
  }

  .About-hero-section {
    height: 640px;
  }

  .about-us-hero-section {
    height: 1360px;
  }
}

/* founder section */
.about-founder h2 {
  color: #181c61;
  font-size: 36px;
  font-weight: 800;
  line-height: 44px;
  text-align: center;
}

.profile-card {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0 30px;
  padding: 20px;
  border-radius: 10px;
}

.profile-img {
  width: 346px;
  height: 402px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.social-icons img {
  width: 25px;
  height: 25px;
  margin-right: 12px;
}

.profile-info {
  flex: 1;
  width: 55%;
  padding: 20px;
}

.profile-info h3 {
  color: #6a49f2;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.profile-info p {
  color: #787aa8;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

@media (max-width: 1024px) {
  .profile-info {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .profile-info {
    width: 100%;
  }
}

/* <!-- our journey --> */
.journey-card-info h3 {
  color: #6a49f2;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.journey-card-info p {
  color: #787aa8;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.box-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
  padding: 25px;
  margin: 0;
}

.journey-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.journey-card {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card-1 .text_color {
  color: #ff8b73;
}

.card-1 .bg_color {
  background-color: #ffece8;
}

.card-2 .text_color {
  color: #ff678e;
}

.card-2 .bg_color {
  background-color: #ffecf1;
}

.card-3 .text_color {
  color: #0be3c1;
}

.card-3 .bg_color {
  background-color: #d2fff3;
}

.card-4 .text_color {
  color: #f96ee4;
}

.card-4 .bg_color {
  background-color: #ffdbfa;
}

.card-5 .text_color {
  color: #ff678e;
}

.card-5 .bg_color {
  background-color: #ffecf1;
}

.card-6 .text_color {
  color: #ff678e;
}

.card-6 .bg_color {
  background-color: #ffecf1;
}

@media (max-width: 576px) {
  .journey-card {
    width: 100%;
  }
}

/* our-mission */
.mission,
.vision {
  margin-top: 20px 0;
}

.mission_left {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.mission_right {
  padding: 16px;
}

.mission_left img {
  width: 50%;
  border-radius: 15px;
}

.mission_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  row-gap: 10px;
}

.mission_left {
  padding: 10px;
  width: calc(55% - 10px);
}

.mission_right {
  width: calc(45% - 10px);
}

.vision .mission_container {
  flex-direction: row-reverse;
}

.vision .mission_left {
  flex-wrap: nowrap;
}

@media (max-width: 576px) {
  .mission_left {
    width: calc(100%);
  }

  .mission_right {
    width: calc(100%);
  }

  .mission_container,
  .vision .mission_container {
    flex-direction: column;
  }

  .mission_left {
    flex-direction: column;
  }

  .mission_left img {
    width: 100%;
  }
}

/* All blogs Section */
.blog-main-section {
  background-image: url("images/web-dev-hero-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
}

.blog-hero h5 {
  color: #6a49f2;
  font-size: 24px;
  font-weight: 700;
}

.blog-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-hero-content p {
  font-family: sans-serif;
  color: #212121;
  font-size: 32px;
  font-weight: 400;
  line-height: 60px;
}

.blog-hero-content p span {
  color: #a0a0a0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  margin-bottom: 20px;
  padding: 10px;
  cursor: pointer;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card-content p {
  font-weight: 500;
  font-size: 18px;
  color: #212121;
}

.blog-card-content p span {
  color: #ffae00;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 576px) {
  .blog-hero-content p {
    font-size: 22px;
    line-height: 25px;
  }
}

/* Join us page */
.career-hero {
  background-image: url("images/join-us-hero.svg");
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.career-hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.career-hero-content h2 {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
}

.career-hero-content p {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.join-us-btn,
.contact-btn {
  padding: 12px 12px;
  color: white;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  text-decoration: none;
}

.Benefits-card {
  width: 48%;
}

.Benefits-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #001833;
}

.Benefits-card p {
  font-size: 14px;
  font-weight: 300;
  color: #001833;
}

.Career-Openings-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.Career-Openings-container p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.Career-Openings-container h5 {
  font-size: 18px;
  font-weight: 500;
  color: #001833;
}

.Career-Openings-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #001833;
}

.job-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.job-card span {
  font-size: 12px;
  color: gray;
}

.job-department {
  text-align: left;
}

.job-department p {
  margin: 10px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #001833;
}

.job-department p.active {
  color: #ff8a74;
}

.job-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.job-card p {
  font-size: 14px;
  font-weight: 500;
  color: #001833;
  text-align: left;
  white-space: nowrap;
}

.job-card span {
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 500;
}

.job-card .job-tech {
  width: 120px;
}

@media (max-width: 576px) {
  .job-card {
    padding: 10px;
  }

  .job-card p {
    font-size: 12px;
    white-space: wrap;
  }

  .job-card span {
    font-size: 14px;
  }

  .Benefits-card {
    width: 100%;
  }
}

/* Portfolio section */
.Portfolio-hero-section {
  /* background-image: url("images/web-dev-hero-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  width: 100%;
  height: auto;
  padding: 30px 0;
}

.our-projects-section {
  padding: 40px 0;
  background-image: url("images/project-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.our-projects-section .mb-5{
  margin-bottom: 10rem !important;
}

.our-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  row-gap: 10px;
}

.our-projects > :nth-child(odd) {
  flex-direction: row;
}

.our-projects > :nth-child(even) {
  flex-direction: row-reverse;
}

.our-project-left {
  width: calc(65% - 10px);
  padding: 10px;
}

.our-project-right {
  width: calc(65% - 10px);
}

.our-project-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-project-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #181c61;
}

.our-project-left .poj-des {
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  line-height: 21px;
  color: #787aa8;
}

.our-project-left .monolog {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #181c61;
}

@media (max-width: 576px) {
  .our-project-left {
    width: 100%;
  }

  .our-project-right {
    width: 100%;
  }

  .our-projects > :nth-child(odd) {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .our-projects > :nth-child(even) {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

/* ai-section */

.ai-section-2 {
  width: 100%;
  min-height: 365px;
  background-image: url("images/ai-section-img2.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ai-content-2 {
  height: 200px;
  padding-top: 85px;
}

.ai-section-2 h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 2rem;
}

.ai-section-2 p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.ai-section {
  width: 100%;
  height: 450px;
  border-radius: 6px;
  position: relative;
}

.ai-img-container {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ai-img-container img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.ai-content {
  position: absolute;
  top: 75px;
  left: 10px;
  z-index: 5;
  margin: 20px 30px;
  padding: 20px;
}

.ai-section h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  max-width: 300px;
  margin-bottom: 2rem;
}

.ai-section p {
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  max-width: 350px;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .ai-section-2 {
    background-attachment: local;
    background-size: cover;
    background-position: calc(62% - 40px) center;
    background-repeat: no-repeat;
    margin-top: -65px;
  }

  .ai-content-2 {
    padding-top: 35px;
  }
  .ai-section-2 h2 {
    margin-bottom: 1rem;
  }
  .ai-section-2 p {
    margin-bottom: 1rem;
  }
}

/* faq */

.faq {
  margin: 50px auto;
  margin-bottom: -80px;
}

.faq h2 {
  color: #171941;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto;
}

.faq-main-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  column-gap: 10px;
}

.faq-container {
  width: 48%;
}

.faq-item {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 6px;
  padding: 22px;
  margin-top: 10px;
  margin-bottom: 25px;
  cursor: pointer;
}

.faq-item strong {
  color: #181c61;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.faq-answer {
  display: none;
  font-size: 12px;
  margin-top: 10px;
  color: #6d6e70;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.faq-item .faq-icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item .faq-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 769px) {
  .faq-item {
    width: 100%;
  }
  .faq-item strong {
    font-size: 12px;
    font-weight: 500;
  }
}
@media (max-width: 568px) {
  .faq-container {
    gap: 0;
  }
  .faq-item {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .faq-main-container {
    flex-direction: column;
  }

  .faq-container {
    width: 100%;
  }
}

/* location */
.footer-logo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.location {
  display: block;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-evenly;
  padding:0 180px;
}
.location-heading {
  font-size: 18px;    /* smaller than default h4 */
  font-weight: 600;
  margin-bottom: 16px;
  text-align: left;   /* aligns with cards */
  color: #fff;        /* adjust to your footer color scheme */
}
.location-cards {
  display: flex;
  flex-wrap: wrap;            /* allows wrapping on smaller screens */
  justify-content: space-between;  /* or center, or space-around */
  gap: 20px;                  /* spacing between cards */
}
.location-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.location-card-line {
  width: 80%;
  height: 1px;
  border: 1px solid #ffffff;
}
.loaction-img {
  width: 75px;
  height: 100px;
}
.loaction-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loc-adress {
  padding: 10px;
  text-align: center;
  padding-top: 0;
}
.location h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.location p {
  font-size: 12px;
  font-weight: 700;
  max-width: 200px;
  margin-bottom: 10px;
}
@media (max-width: 769px) {
  .location-card {
    width: 45%;
  }
}
@media (max-width: 568px) {
  .location {
    padding: 0;
  }
  .location h5 {
    font-size: 14px;
    font-weight: 500;
  }
  .location p {
    font-size: 10px;
    font-weight: 500;
  }
  .footer-logo-container {
    position: absolute;
    right: 40px;
  }
}
