.about-hero {
  position: relative;
  height: 65vh;
  width: 100%;
  overflow: hidden;
}
.about {
  position: relative;
  height: 75vh;
  width: 100%;
  overflow: hidden;
}

/* Background Image */
.about-hero .about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Background Image */
.about .aboutimgh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 580px;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
/* Overlay */
.about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Content */
.about-hero .content {
  position: relative;
  z-index: 2;
  color: #fff;
}
/* Content */
.about .content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-hero .content h1 {
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
}

.about-hero .content p {
  font-size: 40px;
  max-width: 900px;
  font-family: "Montserrat", sans-serif;
}
.about .content h1 {
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
}

.about .content p {
  font-size: 40px;
  max-width: 900px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 992px) {
  .about-hero {
    height: 45vh;
    text-align: center;
  }

  .about-hero .content h1 {
    font-size: 38px;
  }

  .about-hero .content p {
    font-size: 26px;
  }
  .about {
    height: 60vh;
    text-align: center;
  }

  .about .content h1 {
    font-size: 38px;
  }

  .about .content p {
    font-size: 26px;
  }

  /* Background Image */
  .about .aboutimgh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 460px;
    object-fit: cover;
    z-index: 0;
  }
}

@media (max-width: 768px) {
  .about {
    height: 60vh;
    text-align: center;
  }

  .about .content h1 {
    font-size: 38px;
  }

  .about .content p {
    font-size: 26px;
  }

  /* Background Image */
  .about .aboutimgh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 462px;
    object-fit: cover;
    z-index: 0;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 40vh;
    text-align: center;
  }

  .about-hero .content h1 {
    font-size: 28px;
  }

  .about-hero .content p {
    font-size: 18px;
  }
  .about {
    height: 38vh;
    text-align: center;
  }

  .about .content h1 {
    font-size: 28px;
  }

  .about .content p {
    font-size: 18px;
  }

  /* Background Image */
  .about .aboutimgh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    z-index: 0;
  }
}

@media (max-width: 480px) {
  .about {
    height: 28vh;
    text-align: center;
  }

  .about .content h1 {
    font-size: 28px;
  }

  .about .content p {
    font-size: 18px;
  }

  /* Background Image */
  .about .aboutimgh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    object-fit: cover;
    z-index: 0;
  }
}

.tech-marquee {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 15px 0;
}
.tech-marquee .marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.marquee-left .marquee-track {
  animation: scrollLeft 15s linear infinite;
}
.marquee-right .marquee-track {
  animation: scrollRight 15s linear infinite;
}
.tech-marquee img {
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.3s ease, filter 0.4s ease;
}
.tech-marquee img:hover {
  transform: scale(1.15);
  opacity: 1;
}
@keyframes softBlink {
  0%,
  100% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
  }
}
.tech-marquee img {
  animation: softBlink 3.5s ease-in-out infinite;
}
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.tech-marquee::before,
.tech-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.tech-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(248, 248, 248, 1),
    rgba(248, 248, 248, 0)
  );
}
.tech-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(248, 248, 248, 1),
    rgba(248, 248, 248, 0)
  );
}
@media (max-width: 992px) {
  .tech-marquee img {
    height: 60px;
  }
  .tech-marquee .marquee-track {
    gap: 60px;
  }
}
@media (max-width: 576px) {
  .tech-marquee img {
    height: 45px;
  }
  .tech-marquee .marquee-track {
    gap: 40px;
  }
}

/* Logo Marquee Base */
.logo-marquee {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  margin-bottom: 40px;
}

.logo-marquee .marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Scroll Directions */
.marquee-left .marquee-track {
  animation-name: scrollLeft;
  animation-duration: 15s;
}

.marquee-right .marquee-track {
  animation-name: scrollRight;
  animation-duration: 15s;
}

/* Logo Styling */
.logo-marquee img {
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: softBlink 3s ease-in-out infinite;
}

/* Hover Zoom */
.logo-marquee img:hover {
  transform: scale(1.15);
}

/* Scrolling Animations */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Fading Edge Effects */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .logo-marquee img {
    height: 40px;
  }
  .logo-marquee .marquee-track {
    gap: 60px;
  }
}

@media (max-width: 576px) {
  .logo-marquee img {
    height: 30px;
  }
  .logo-marquee .marquee-track {
    gap: 40px;
  }
}

.btn-outline-primary-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 15px 15px;
  font-weight: 700;
  /* border-radius: 30px; */
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-primary-custom:hover {
  background: var(--primary-color);
  color: #fff;
}

.mb-custom3 {
  margin-bottom: 100px !important;
}

/* Explore Section */
#exploresection {
  font-family: "Poppins", sans-serif;
  padding: 100px 0;
}

/* Section Title */
.exploresection-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.exploresection-title .highlight {
  color: #20bab7;
  position: relative;
}

.exploresection-subtitle {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Large Image */
.explore-image-large img {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}

.explore-image-large img:hover {
  transform: scale(1.04);
}

/* Headings & Text */
.explore-heading {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.explore-text {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.brand {
  color: #20bab7;
  font-weight: 700;
}

/* List */
.explore-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.explore-list li {
  font-size: 16.5px;
  color: #000;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.explore-list li:hover {
  color: #20bab7;
  transform: translateX(5px);
}

.explore-list i {
  color: #20bab7;
  font-size: 20px;
}

/* Footer */
.explore-footer {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.explore-link {
  color: #20bab7;
  font-weight: 600;
  text-decoration: none;
}

.explore-link:hover {
  text-decoration: underline;
}

/* Cards */
.explore-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.explore-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.explore-card:hover img {
  transform: scale(1.12);
}

.explore-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.explore-card:hover .explore-overlay {
  opacity: 1;
}

.explore-overlay h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.explore-overlay p {
  font-size: 15px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 991px) {
  #exploresection {
    padding: 80px 0;
  }

  .exploresection-title {
    font-size: 36px;
  }

  .explore-image {
    height: 260px;
  }
  .explore-image-large img {
    display: none;
  }
}

@media (max-width: 767px) {
  .exploresection-title {
    font-size: 30px;
  }

  .explore-heading {
    font-size: 22px;
  }

  .explore-text {
    font-size: 15px;
  }

  .explore-image-large img {
    margin-bottom: 30px;
  }
}

.webdev-cardtwo {
  background: #fff;
  font-family: "Montserrat", sans-serif;
  border-radius: 12px;
  border: 1px solid #20bab7;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  width: 210px;
  /* width: 260px; */
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 35px 0;
  box-sizing: border-box;
  position: relative;
}

.webdev-cardtwo:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(32, 186, 183, 0.35);
}

.webdev-cardtwo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.5s ease;
}
.webdev-cardtwo:hover img {
  transform: scale(1.15);
}

.icon-style {
  font-size: 55px;
  margin-bottom: 16px;
  color: #20bab7;
  display: inline-block;
}

.webdev-cardtwo:hover i {
  transform: scale(1.15);
}
.webdev-cardtwo i {
  transition: transform 0.5s ease;
}

@media (max-width: 2560px) {
  #arrow15 {
    top: 23%;
    left: 32.5%;
    transform: rotate(30deg);
  }
  #arrow16 {
    top: 23%;
    left: 46%;
    transform: rotate(30deg);
  }
  #arrow17 {
    top: 23%;
    left:59%;
    transform: rotate(30deg);
  }
  #arrow18 {
    top: 42.5%;
    left: 62%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 62%;
    left: 52%;
    transform: rotate(210deg);
  }
  #arrow20 {
    top: 62%;
    left: 39%;
    transform: rotate(210deg);
  }
}


@media (max-width: 1960px) {
  #arrow15 {
    top: 23%;
    left: 26.5%;
    transform: rotate(30deg);
  }
  #arrow16 {
    top: 23%;
    left: 44.5%;
    transform: rotate(30deg);
  }
  #arrow17 {
    top: 23%;
    left: 62%;
    transform: rotate(30deg);
  }
  #arrow18 {
    top: 42.5%;
    left: 66%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 62%;
    left: 53%;
    transform: rotate(210deg);
  }
  #arrow20 {
    top: 62%;
    left: 35%;
    transform: rotate(210deg);
  }
}

@media (max-width: 1632px) {
  #arrow15 {
    top: 23%;
    left: 23%;
    transform: rotate(30deg);
  }
  #arrow16 {
    top: 23%;
    left: 43.5%;
    transform: rotate(30deg);
  }
  #arrow17 {
    top: 23%;
    left: 64%;
    transform: rotate(30deg);
  }
  #arrow18 {
    top: 43%;
    left: 70%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 62%;
    left: 53.5%;
    transform: rotate(210deg);
  }
  #arrow20 {
    top: 62%;
    left: 32%;
    transform: rotate(210deg);
  }
}

@media (max-width: 1440px) {
  #arrow15 {
    top: 23%;
    left: 20%;
    transform: rotate(30deg);
  }
  #arrow16 {
    top: 23%;
    left: 43.3%;
    transform: rotate(30deg);
  }
  #arrow17 {
    top: 23%;
    left: 66%;
    transform: rotate(30deg);
  }
  #arrow18 {
    top: 44%;
    left: 72%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 61%;
    left: 55%;
    transform: rotate(210deg);
  }
  #arrow20 {
    top: 61%;
    left: 32%;
    transform: rotate(210deg);
  }
}

@media (max-width: 1400px) {
  #arrow15 {
    top: 23%;
    left: 23%;
    transform: rotate(30deg);
  }
  #arrow16 {
    top: 23%;
    left: 44.5%;
    transform: rotate(30deg);
  }
  #arrow17 {
    top: 23%;
    left: 66%;
    transform: rotate(30deg);
  }
  #arrow18 {
    top: 44%;
    left: 70%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 61%;
    left: 55%;
    transform: rotate(210deg);
  }
  #arrow20 {
    top: 61%;
    left: 33.5%;
    transform: rotate(210deg);
  }
}

@media (max-width: 1300px) {
  #arrow15 {
    top: 23%;
    left: 21.5%;
    transform: rotate(30deg);
  }
  #arrow16 {
    top: 23%;
    left: 44%;
    transform: rotate(30deg);
  }
  #arrow17 {
    top: 23%;
    left: 67%;
    transform: rotate(30deg);
  }
  #arrow18 {
    top: 44%;
    left: 72%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 61%;
    left: 55.5%;
    transform: rotate(210deg);
  }
  #arrow20 {
    top: 61%;
    left: 32.5%;
    transform: rotate(210deg);
  }
}
@media (max-width: 1200px) {
  .webdev-process2 .row.justify-content-center {
    flex-direction: column;
    align-items: center;
  }

  .webdev-process2 .col-lg-3,
  .webdev-process2 .col-md-4,
  .webdev-process2 .col-sm-6,
  .webdev-process2 .col-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .webdev-cardtwo {
    width: 300px;
    height: 240px;
    padding: 25px 15px;
    margin-bottom: 25px;
  }
}

@media (max-width: 1204px) {
  .webdev-cardtwo {
    width: 300px;
    height: 230px;
    padding: 25px 15px;
    margin: 70px auto 20px auto; /* keep cards centered */
  }

  /* 🔄 Arrows rotated for 1024px and below */
  #arrow15 {
    top: 17%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow16 {
    top: 30%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow17 {
    top: 43%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow18 {
    top: 56.5%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 69.5%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow20 {
    top: 82.5%;
    left: 49%;
    transform: rotate(120deg);
  }
}

@media (max-width: 992px) {
  #arrow15 {
    top: 17%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow16 {
    top: 30%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow17 {
    top: 43%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow18 {
    top: 56%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 69%;
    left: 49%;
    transform: rotate(120deg);
  }
  #arrow20 {
    top: 82.5%;
    left: 49%;
    transform: rotate(120deg);
  }
}

@media (max-width: 778px) {
  .webdev-cardtwo {
    width: 280px;
    height: 220px;
    padding: 20px 10px;
    margin: 70px auto 20px auto; /* keep cards centered */
  }

  #arrow15 {
    top: 17%;
    left: 47%;
    transform: rotate(120deg);
  }
  #arrow16 {
    top: 30%;
    left: 47%;
    transform: rotate(120deg);
  }
  #arrow17 {
    top: 43%;
    left: 47%;
    transform: rotate(120deg);
  }
  #arrow18 {
    top: 56%;
    left: 47%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 69%;
    left: 47%;
    transform: rotate(120deg);
  }
  #arrow20 {
    top: 82.5%;
    left: 47%;
    transform: rotate(120deg);
  }
}

/* ✅ Small mobile devices (≤576px) */
@media (max-width: 576px) {
  .webdev-cardtwo {
    width: 260px;
    height: 210px;
    padding: 18px 8px;
    margin: 70px auto 20px auto; /* keep cards centered */
  }

  .webdev-cardtwo img {
    width: 60px;
    height: 60px;
  }

  .icon-style {
    font-size: 45px;
    margin-bottom: 12px;
  }

  #arrow15 {
    top: 16.5%;
    left: 41%;
    transform: rotate(120deg);
  }
  #arrow16 {
    top: 30%;
    left: 41%;
    transform: rotate(120deg);
  }
  #arrow17 {
    top: 43%;
    left: 41%;
    transform: rotate(120deg);
  }
  #arrow18 {
    top: 56%;
    left: 41%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 69%;
    left: 41%;
    transform: rotate(120deg);
  }
  #arrow20 {
    top: 82%;
    left: 41%;
    transform: rotate(120deg);
  }
}

/* ✅ Extra small mobile (≤480px) */
@media (max-width: 480px) {
  .webdev-cardtwo {
    width: 240px;
    height: 200px;
    padding: 16px 8px;
    margin: 70px auto 20px auto; /* center */
  }

  .webdev-cardtwo img {
    width: 55px;
    height: 55px;
  }

  .icon-style {
    font-size: 42px;
  }

  #arrow15 {
    top: 17.5%;
    left: 39%;
    transform: rotate(120deg);
  }
  #arrow16 {
    top: 30.5%;
    left: 39%;
    transform: rotate(120deg);
  }
  #arrow17 {
    top: 43.5%;
    left: 39%;
    transform: rotate(120deg);
  }
  #arrow18 {
    top: 56.5%;
    left: 39%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 69%;
    left: 39%;
    transform: rotate(120deg);
  }
  #arrow20 {
    top: 82%;
    left: 39%;
    transform: rotate(120deg);
  }
}

/* ✅ Very small devices (≤360px) */
@media (max-width: 360px) {
  .webdev-cardtwo {
    width: 220px;
    height: 190px;
    padding: 14px 6px;
    margin: 70px auto 15px auto; /* center */
  }

  .webdev-cardtwo img {
    width: 50px;
    height: 50px;
  }

  .icon-style {
    font-size: 38px;
  }

  #arrow15 {
    top: 20%;
    left: 35%;
    transform: rotate(120deg);
  }
  #arrow16 {
    top: 32.5%;
    left: 35%;
    transform: rotate(120deg);
  }
  #arrow17 {
    top: 45%;
    left: 35%;
    transform: rotate(120deg);
  }
  #arrow18 {
    top: 57.5%;
    left: 35%;
    transform: rotate(120deg);
  }
  #arrow19 {
    top: 70%;
    left: 35%;
    transform: rotate(120deg);
  }
  #arrow20 {
    top: 82.5%;
    left: 35%;
    transform: rotate(120deg);
  }
}
