* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;

}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  padding: 0;
  -webkit-overflow-scrolling: touch;


}

.feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;

}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  height: auto;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;

}

.info-container {
  width: 100%;
  min-height: 40px;
  background-color: #7143fe;
  display: flex;
  justify-content: space-between;
  padding: 8px 40px;
  align-items: center;
  flex-wrap: wrap;
}

.info-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.info-content h6:not(:last-child) {
  margin-right: clamp(10px, 3vw, 30px);
}

.info-content h6 {
  color: #fff;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

.info-content a {
  text-decoration: none;
  color: #fff;
}

.icons {
  width: 14px;
  height: 14px;
}

/* ========== Header ========== */
header {
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  background: rgba(247, 247, 247, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: #dcdcdc 2px solid;
  min-height: 90px;
  margin: 0 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  padding: 15px 30px;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 999;
  color: #000 !important;
  width: calc(100% - 125px) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 4;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
  width: 50%;
  margin-left: auto;
}

.menu-toggle span:nth-child(2) {
  width: 100%;
}

.menu-toggle span:nth-child(3) {
  width: 50%;
  margin-right: auto;
}

.logo-img {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-img img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.navbar a {
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar h6:not(:first-child) a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url("../images/drop.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.navbar a:hover {
  color: #7143fe;
}

.navbar a:hover::after {
  transform: rotate(180deg);
}

.contact-btn {
  display: inline-block;
  background: #ff5622;
  border: none;

  padding: 7px 10px;
  height: 42px;
  width: 130px;
  border-radius: 10px;

  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease,
    background-color 0.15s ease;
  will-change: transform, box-shadow;

}

.contact-btn a {
  text-decoration: none;
  color: white;
}

.contect-btnn {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.contact-btn:hover,
.contact-btn:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 86, 34, 0.22);
  outline: none;
}

.contact-btn:active {
  transform: translateY(0) scale(0.995);
  box-shadow: 0 6px 18px rgba(255, 86, 34, 0.18);
}

.mobile-contact-btn {
  display: none !important;
}

/* ===== Dropdown Base ===== */
.dropdown {
  position: relative;
}

/* Arrow animation smooth */
.dropdown-toggle {
  cursor: pointer;
}

/* ===== Dropdown Menu ===== */
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 100%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: #f2f2f2e7;
  border-radius: 16px;
  padding: 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 999;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===== Dropdown Items ===== */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 24px;

  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;

  transition: all 0.25s ease;
  position: relative;
}

/* Hover effect */
.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 6px;
  height: 6px;
  background: #7143fe;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.25s;
}

.dropdown-menu li a:hover {
  background: rgba(113, 67, 254, 0.08);
  color: #7143fe;
  padding-left: 36px;
}

.dropdown-menu li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {

  /* ── Header ── */
  header {
    width: calc(100% ) !important;
    margin: 0 10px;
    top: 10px;
    padding: 10px 16px;
    min-height: 65px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.12),
      0 2px 8px rgba(113, 67, 254, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  /* ── Logo ── */
  .logo-img img {
    height: 32px;
  }

  /* ── Hamburger show ── */
  .menu-toggle {
    display: flex;
    width: 28px;
    height: 22px;
  }

  .menu-toggle span {
    height: 2.5px;
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Hamburger → X */
  .menu-toggle.active span:nth-child(1) {
    width: 100%;
    margin-left: 0;
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.active span:nth-child(3) {
    width: 100%;
    margin-right: 0;
    transform: translateY(-9px) rotate(-45deg);
  }

  /* ── Navbar Panel ── */
  .navbar {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.14),
      0 4px 16px rgba(113, 67, 254, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 10px 10px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transform-origin: top center;
    transition: opacity 0.35s ease,
      transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
      visibility 0.35s ease;
  }


  .navbar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    margin-top: 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(233, 232, 232, 0.8) 100%);
    visibility: visible;

  }

  /* ── Nav Links ── */
  .navbar h6 {
    width: 100%;
    margin: 0;
    font-weight: normal;
  }

  .navbar h6+h6 {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2px;
  }

  .navbar a {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  }

  .navbar a:hover {
    background: rgba(113, 67, 254, 0.09);
    color: #7143fe;
    transform: translateX(4px);
  }

  /* ── Contact Button ── */
  .contact-btn {
    width: calc(100% - 4px);
    margin: 10px 2px 0;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c0bfbf 0%, #f5f5f5 100%);
    color: #000;
  }

  .contact-btn:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(255, 86, 34, 0.3);
  }

  /* Show mobile button, hide desktop button */
  .mobile-contact-btn {
    display: inline-block !important;
    /* Override the desktop none */
  }

  .desktop-contact-btn {
    display: none !important;
  }

  /* ── Dropdown ── */
  .dropdown {
    position: relative;
    width: 100%;
  }

  .dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  /* Arrow */
  .dropdown-toggle::after {
    content: "›";
    font-size: 20px;
    color: #999;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
  }

  .dropdown.active .dropdown-toggle::after {
    transform: rotate(90deg);
    color: #7143fe;
  }

  /* Dropdown Card */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    min-width: 100%;
    margin-top: 5px;

    /* Accordion Logic */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;

    transform: none;
    /* Reset transform */

    background: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    border: none;
    border-radius: 12px;
    padding: 0;

    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    z-index: 100;
  }

  .dropdown.active .dropdown-menu {
    max-height: 500px;
    /* Sufficient height to show content */
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
    margin-bottom: 10px;
    transform: none;
  }

  .dropdown-menu li a {
    padding: 11px 20px;
    font-size: 13.5px;
    border-radius: 10px;
    margin: 0 6px;
  }

  .dropdown-menu li a:hover {
    background: rgba(113, 67, 254, 0.1);
    color: #7143fe;
    transform: translateX(4px);
  }


}

/* ========== Hero Section ========== */
.hero-section {
  width: 100%;
  padding: 0;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-top: 14vh;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: absolute;
  text-align: left;
  z-index: 3;
  top: 140px;
  left: 150px;
}

.greeting {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  display: inline-block;
}

.hand {
  display: inline-block;
  animation: wave 1.8s infinite ease-in-out;
  transform-origin: 70% 70%;
}

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

  15% {
    transform: rotate(20deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  45% {
    transform: rotate(20deg);
  }

  60% {
    transform: rotate(0deg);
  }

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

.greeting2 {
  font-size: 80px;
  font-weight: 600;
  color: #000;
  display: flex;
  gap: 20px;
}

.word {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeSlide 0.7s ease-out forwards;
}

.hero-text .word:nth-child(1) {
  animation-delay: 1.4s;
}

.hero-text2 .word:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-text2 .word:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-text3 .word:nth-child(1) {
  animation-delay: 0.8s;
}

.hero-text3 .word:nth-child(2) {
  animation-delay: 1s;
}

.hero-text4 .word:nth-child(1) {
  animation-delay: 1.2s;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text2 {
  position: absolute;
  text-align: left;
  z-index: 3;
  top: 140px;
  left: 150px;
}

.hero-text3 {
  position: absolute;
  text-align: left;
  z-index: 3;
  bottom: 170px;
  right: 120px;
}

.hero-text4 {
  position: absolute;
  bottom: 200px;
  right: 70px;
  text-align: center;
  z-index: 3;
}

.hero-text5 {
  position: absolute;
  bottom: 60px;
  right: 100px;
  text-align: center;
  z-index: 3;
}

.greeting4 {
  font-size: 100px;
  font-weight: 100;
  color: #000;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  gap: 0px;
  position: relative;
  line-height: 1.1;
}

.bracket {
  display: inline-block;
  opacity: 0;
  transform: translateX(0);
}

.left-bracket {
  animation: leftOpen 0.2s ease-out forwards;
  animation-delay: 1.6s;
}

.right-bracket {
  animation: rightOpen 0.2s ease-out forwards;
  animation-delay: 1.6s;
}

.greeting3 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  opacity: 0;
  transform: translateY(10px);
  animation: showText 0.4s ease-out forwards;
  animation-delay: 1.8s;
  line-height: 1.2;
  display: inline-block;
  vertical-align: middle;
}

@keyframes leftOpen {
  0% {
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(-10px);
  }
}

@keyframes rightOpen {
  0% {
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(10px);
  }
}

@keyframes showText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.greeting4::before,
.greeting4::after {
  content: "";
}

.orange-text {
  color: #ff5622;
  text-shadow: 1px 1px 0 white, -1px 1px 0 white, 1px -1px 0 white,
    -1px -1px 0 white;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 560px;
  margin-top: auto;
  opacity: 0;
  animation: heroFade 1s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== counting number Section ========== */

.counting-section {
  width: 100%;
  height: 140px;
  background-color: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 0 40px 0 40px;
}

.counting-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

.counting-item:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 80px;
  background: #fff;
  opacity: 0.4;
  margin-left: 40px;
}

.counting-item h1 {
  font-size: 72px;
  font-weight: 700;
  color: #1a1a1a;
  text-shadow: 1px 1px 0 white, -1px 1px 0 white, 1px -1px 0 white,
    -1px -1px 0 white;
}

.counting-item h6 {
  font-size: 24px;
  color: #8c8c8c;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  /* margin-left: 12px; */
}

/* ========== Solutions Section ========== */

.solutions-section {
  width: 100%;
  height: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  max-width: 1600px;
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg lines.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.section-title {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 700;
  color: #000;
}

.title-header {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 30px;
}

.orange-bg {
  background-color: #ff5622;
  color: #fff;
  padding: 10px 15px;
  border-radius: 100px;
}

.solutions-image-wrapper {
  position: relative;
  width: 80%;
  max-width: 400px;
  margin-top: 70px;
}

.solutions-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top,
      rgba(245, 245, 245, 1) 0%,
      rgba(245, 245, 245, 1) 25%,
      rgba(245, 245, 245, 0) 50%,
      rgba(245, 245, 245, 0) 100%);
  pointer-events: none;
}

.solutions-image {
  width: 90%;
  max-width: 700px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: 70px;
  opacity: 0;
  animation: heroFade 1s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 145px;
  line-height: 1.2;
}

.title3 {
  max-width: 225px;
}

.solution-card {
  border: #fff 2px solid;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f7f7f7;
  border-radius: 20px;
}

.solution-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.solution-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
  margin: auto;
  margin-top: 8px;
}

.card1,
.card2,
.card3 {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  transition: 1s ease-out;
  position: absolute;
  left: 50%;
  top: 50%;
}

.card4,
.card5 {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  transition: 0.8s ease-out;
  position: absolute;
  right: 40%;
  top: 50%;
}

.card1.active {
  position: absolute;
  text-align: left;
  z-index: 3;
  top: 420px;
  left: 110px;
  box-shadow: 6px 6px 20px rgba(254, 194, 48, 0.2);
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.icon1 {
  background-color: #fec230;
}

.card2.active {
  position: absolute;
  text-align: left;
  z-index: 3;
  box-shadow: 6px 6px 20px rgba(73, 227, 153, 0.2);
  opacity: 1;
  transform: translate(0, 0) scale(1);
  top: 315px;
  left: 310px;
}

.icon2 {
  background-color: #49e399;
}

.card3.active {
  position: absolute;
  text-align: left;
  z-index: 3;
  opacity: 1;
  transform: translate(0, 0) scale(1);
  top: 250px;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 6px 6px 20px rgba(189, 123, 255, 0.2);
}

.icon3 {
  background-color: #bd7bff;
}

.card4.active {
  position: absolute;
  text-align: left;
  z-index: 3;
  opacity: 1;
  transform: translate(0, 0) scale(1);
  top: 420px;
  right: 110px;
  box-shadow: 6px 6px 20px rgba(118, 184, 255, 0.2);
}

.icon4 {
  background-color: #ff6f76;
}

.card5.active {
  position: absolute;
  text-align: left;
  z-index: 3;
  opacity: 1;
  transform: translate(0, 0) scale(1);
  top: 315px;
  right: 310px;
  box-shadow: 6px 6px 20px rgba(255, 111, 118, 0.2);
}

.icon5 {
  background-color: #76b8ff;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== About Section ========== */

.about-section {
  padding: 0;
}

.about-container1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  justify-self: center;
  padding-right: 60px;
}

.text-stack {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.about-text1 {
  flex: 1;
  display: flex;
  justify-content: left;
  align-items: center;
  line-height: 0.3;
}

.about-text2 {
  font-size: 12px;
  font-weight: 700;
  color: #ff5622;
  margin: 0;
  max-width: 70px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.about-text3 {
  font-size: 52px;
  font-weight: 700;
  color: #7a7a7a;
  margin: 0;
  line-height: 1.1;
}

.text-with-border {
  color: white;
  text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black,
    -1px -1px 0 black;
}

.text-black {
  color: #000;
}

.left-margin {
  margin-left: 110px;
}

.ellipse-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
  border: #ff5622 2px solid;
}

.ellipse-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
  margin: auto;
  margin-top: 5px;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 270px;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-container2 {
  display: flex;
  gap: 300px;
  justify-content: start;
  padding: 70px 40px 40px 40px;
  position: relative;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  justify-self: center;
}

.about-container2::after {
  content: "";
  position: absolute;
  left: 400px;
  top: 40px;
  width: 1px;
  height: calc(100% + 110px);
  background-color: #dcdcdc;
  z-index: 0;
}

.profile-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image-section {
  display: flex;
}

.profile {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: white 1px solid;
  margin-left: -20px;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-text {
 
  display: flex;
  align-items: center;   /* vertical alignment fix */
  gap: 15px;             /* proper spacing */
  margin-top: 20px;
}

.profile-text1 {

  font-size: 22px;
  font-weight: 700;
  color: #7143fe;
  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: mixed;
  direction: rtl;   /* flips reading direction */
}

.client-stack {
  display: flex;
  flex-direction: column;
}

.client-stack h6 {
  font-size: 18px;
  color: #7a7a7a;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.about-description {
  width: 63%;
}

.description-text {
  max-width: 900px;
  width: 80%;
}

.about-container3 {
  align-items: center;
  padding: 20px;
  position: relative;
  height: 620px;
}

.explore-btn {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  color: #1a1a1a;
  border: 1px solid #dcdcdc;
  background-color: transparent;
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  z-index: 2;
  left: 37%;
  overflow: hidden;
}

.explore-btn:hover {
  color: white;
  cursor: pointer;
}

.explore-btn .round {
  border-radius: 50%;
  background-color: #ff5622;
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: -1;
  transform: scale(0);
  animation: scale-down 0.6s forwards;
}

.explore-btn.animate .round {
  animation: scale-up 0.5s forwards;
}

@keyframes scale-up {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(600);
  }
}

@keyframes scale-down {
  from {
    transform: scale(600);
  }

  to {
    transform: scale(0);
  }
}

.explore-card {
  height: 408px;
  width: 300px;
  position: absolute;
  border-radius: 40px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2);
  right: 40px;
  display: flex;
  flex-direction: column;
  border: white 2px solid;
  background-color: #f5f5f5;
  padding: 40px 20px;
  z-index: 2;
}

.explore-image {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 20px 0 0 20px;
}

.explore-card img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.explore-text p {
  padding: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #7a7a7a;
}

.explore-count {
  font-size: 70px;
  font-weight: 700;
  color: #7143fe;
  margin-left: 20px;
  line-height: 1;
}

.explore-count span {
  font-size: 52px;
  margin-left: -10px;
}

.explore-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding-left: 20px;
}

.image-card1 {
  position: absolute;
  right: 180px;
  margin-top: 100px;
  z-index: 1;
  background-color: #dcdcdc;
  height: 420px;
  width: 340px;
  position: absolute;
  border-radius: 40px;
}

.image-card2 {
  position: absolute;
  left: 150px;
  margin-top: 260px;
  z-index: 1;
  background-color: #dcdcdc;
  width: 400px;
  height: 218px;
  position: absolute;
  border-radius: 40px;
}

/*========== cross line section ========== */

.cross-line-section {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.cross-line {
  position: absolute;
  width: 220%;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
}

.orange-line {
  background: #dcdcdc;
  color: #000;
  transform: rotate(-5deg);
  top: 45%;
  left: -50%;
  z-index: 1;
}

.gray-line {
  background: #ff5522;
  color: white;
  transform: rotate(5deg);
  top: 55%;
  left: -50%;
  z-index: 2;
}

.marquee {
  white-space: nowrap;
  animation: scroll 65s linear infinite;
}

.marquee span {
  display: inline-block;
  padding-right: 50px;
  margin-right: -40px;
}

.marquee img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin: 0 12px;
}

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

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

/* ========== Schedule Section ========== */

.schedule-section {
  margin: 0 auto;
  display: flex;
  margin-bottom: 100px;
  align-items: flex-start;
  background-color: #1a1a1a;
  border-radius: 40px;
  height: 400px;
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 1600px;
}

.schedule-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: url("/alphabit/assets/images/schedule.png") no-repeat right center;
  background-size: contain;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  pointer-events: none;
}

.schedule-content {
  color: #fff;
  padding: 60px;
  max-width: 70%;
  z-index: 2;
}

.schedule-content p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.schedule-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  color: #7a7a7a;
}

.span-orange {
  color: #ff5622;
}

.span-white {
  color: #ffffff;
}

.span-image {
  display: inline-block;
  width: 100px;
  height: 50px;
  background: url("") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-left: 8px;
  border-radius: 100px;
  background-color: #dcdcdc;
}

.schedule-btn {
  position: absolute;
  bottom: 70px;
  right: 90px;
  padding: 14px 24px;
  background-color: #ff5622;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
}

/* ========== Delivering Excellence Section ========== */

.delivering-excellence {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.excellence-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-top: 140px;
}

.excellence-description {
  font-size: 16px;
  font-weight: 400;
  color: #7a7a7a;
  max-width: 540px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.bg-card {
  position: absolute;
  background-color: #fff;
  border-radius: 40px;
  width: 58%;
  height: 450px;
  z-index: -1;
}

.carousel {
  justify-content: center;
  gap: 40px;
  height: 380px;
  display: flex;
  margin-top: 10px;
  width: 80%;
  max-width: 1400px;
  position: relative;
  display: flex;
  align-items: end;
  text-align: center;
  z-index: 1;
}

.card {
  overflow: hidden;
  transition: all 0.6s ease;
  background-color: #dcdcdc;
  border-radius: 20px;
  border: #fff 2px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
  height: 220px;
}

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

.card.big {
  background-color: #dcdcdc;
  border-radius: 40px;
  border: #fff 2px solid;
  display: flex;
  align-items: center;
  text-align: center;
  width: 600px;
  height: 380px;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2);
}

/* ========== WORKING PROCESS Section ========== */
.working-process-section {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  margin-top: 40px;
  /* align-items: center; */
}

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  position: relative;
}

.step.left {
  flex-direction: row;
  margin-left: -80px;
  text-align: right;
}

.step.left .icon-wrapper {
  position: relative;
}

.step.left .icon-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 100px;
  height: 2px;
  background: #7e57ff;
  transform: translateY(-50%);
}

.step.left .icon-wrapper::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #7e57ff;
  transform: translateX(-50%);
}

.step.right {
  /* margin-right: -80px; */
}

.step.right .icon-wrapper {
  position: relative;
}

.step.right .icon-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100px;
  height: 2px;
  background: #7e57ff;
  transform: translateY(-50%);
}

.step.right .icon-wrapper::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #7e57ff;
  transform: translateX(-50%);
}

.step:last-child .icon-wrapper::after {
  display: none;
}

.process-card {
  background: #fff;
  width: 60%;
  padding: 30px 40px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.12);
  font-size: 18px;
  opacity: 0;
  transform: translateY(40px);
}

.process-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.process-card p {
  font-size: 18px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.2;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transform: scale(0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.purple {
  background: #7e57ff;
}

/* ========== Expertise Section ========== */

.expertise-section {
  padding: 60px 100px 100px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
}

.expertise-cards {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
}

.expertise-card {
  width: 30%;
  padding: 0 10px;
  text-align: left;
  position: relative;
}

.expertise-card:after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1.5px;
  height: 100%;
  background: #e5e5e5;
}

.expertise-card:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 1.5px;
  height: 100%;
  background: #e5e5e5;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.icon-box img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.expertise-card h3 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
  line-height: 1.2;
}

.expertise-card p {
  font-size: 20px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.6;
}

/* ========== Target Industries Section ========== */
.target-industries-section {
  padding: 40px 0;
  margin: 40px 0;
  position: relative;
  width: 100%;
  background-image: url("/alphabit/assets/images/bglines2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 800px;
}

.title-header {
  text-align: center;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 80px 0;
  line-height: 0.8;
}

.center-text p {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7a7a7a;
}

.center-text span {
  color: #1a1a1a;
}

.gray-pill {
  display: inline-block;
  width: 80px;
  height: 40px;
  background: #e5e5e5;
  border-radius: 100px;
  margin: 0 4px;
}

.icons-wrapper {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  height: 800px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.icon-1 {
  top: 32%;
  left: 15%;
  background-color: #fec230;
}

.icon-2 {
  top: 41%;
  left: 35%;
  background-color: #bd7bff;
}

.icon-3 {
  top: 34%;
  left: 50%;
  background-color: #76b8ff;
}

.icon-4 {
  top: 55%;
  right: 22%;
  background-color: #49e399;
}

.icon-5 {
  bottom: 18%;
  right: 32%;
  background-color: #ff6f76;
}

.icon-6 {
  top: 38%;
  right: 12%;
  background-color: #fec230;
}

.icon-7 {
  bottom: 25%;
  right: 6%;
  background-color: #bd7bff;
}

.icon-8 {
  bottom: 5%;
  left: 45%;
  background-color: #76b8ff;
}

.icon-9 {
  bottom: 18%;
  left: 10%;
  background-color: #49e399;
}

.icon-10 {
  bottom: 22%;
  left: 30%;
  background-color: #ff6f76;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatUpDownSmall {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.icon {
  animation: floatUpDown 4s ease-in-out infinite;
}

.icon-1 {
  animation-delay: 0s;
}

.icon-2 {
  animation-delay: 0.4s;
}

.icon-3 {
  animation-delay: 0.8s;
}

.icon-4 {
  animation-delay: 1.2s;
}

.icon-5 {
  animation-delay: 1.6s;
}

.icon-6 {
  animation-delay: 0.2s;
}

.icon-7 {
  animation-delay: 1s;
}

.icon-8 {
  animation-delay: 0.6s;
}

.icon-9 {
  animation-delay: 1.4s;
}

.icon-10 {
  animation-delay: 1.8s;
}

/* ========== My Presence Section ========== */

.Presence-section {
  margin: 40px 0;
  position: relative;
  width: 100%;
}

.Presence-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0;
}

.Presence-card {
  width: 361px;
  height: 120px;
  border-radius: 100px;
  border: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -50px;
  position: relative;
}

.Presence-card:first-child {
  margin-left: 0;
}

.Presence-card img {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

/* ========== blog Section ========== */

.Blog-section {
  margin: 0 0 40px 0;
  width: 100%;
}

.title-header {
  text-align: center;
  margin-bottom: 40px;
}

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

.orange-bg {
  background: #ff6a21;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  margin-right: 8px;
}

.blog-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-card {
  width: 360px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-image {
  width: 100%;
  height: 160px;
  background: #d9d9d9;
  border-radius: 12px;
  margin-bottom: 20px;
}

.blog-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.blog-author h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 3px;
}

.blog-author span {
  font-size: 11px;
  color: #777;
}

@media (max-width: 900px) {
  .blog-container {
    gap: 20px;
  }
}

/* ========== Footer ========== */
.Footer {
  width: 100%;
  padding: 40px 0 20px;
  position: relative;
  margin-top: 300px;
  background: transparent;
}

.footer-container {
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  color: #fff;
  display: flex;
  gap: 120px;
  margin-left: 60px;
}

.footer-greet {
  font-size: 32px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 140px;
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 20px;
  color: #fff;
  z-index: 1;
  position: relative;
}

.footer-title span {
  color: #7a7a7a;
}

.footer-email {
  font-size: 36px;
  opacity: 0.7;
  margin-top: 15px;
}

.footer-icons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
}

.footer-icons a {
  color: #fff;
  font-size: 20px;
  opacity: 0.6;
  transition: 0.3s;
}

.footer-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-icons a:hover {
  opacity: 1;
}

.footer-right {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer-right img {
  height: 900px;
  opacity: 0;
  animation: heroFade 1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 100px 60px;
  display: flex;
  align-items: center;
  color: #777;
  font-size: 14px;
  gap: 180px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bg-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.footer-bg-circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) scale(0);
  width: 800px;
  height: 800px;
  background: #111;
  border-radius: 50%;
  opacity: 1;
  animation: none;
}

.Footer.active .footer-bg-circle {
  animation: circleExpand 3s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes circleExpand {
  0% {
    transform: translateX(-50%) scale(0);
    border-radius: 50%;
  }

  20% {
    transform: translateX(-50%) scale(1.5);
    border-radius: 50%;
  }

  40% {
    transform: translateX(-50%) scale(3);
    border-radius: 10%;
  }

  100% {
    transform: translateX(-50%) scale(4);
    border-radius: 5%;
  }
}

@media (max-width: 1500px) {
  .footer-left {
    gap: 100px;
    margin-left: 70px;
  }

  .footer-greet {
    font-size: 28px;
  }

  .footer-title {
    font-size: 130px;
  }

  .footer-email {
    font-size: 30px;
  }

  .footer-right img {
    height: 800px;
  }

  .footer-bottom {
    gap: 40px;
  }
}

@media (max-width: 1300px) {
  .Footer {
    margin-top: 200px;
  }

  .footer-left {
    gap: 80px;
    margin-left: 40px;
  }

  .footer-title {
    font-size: 100px;
  }

  .footer-right img {
    height: 700px;
  }

  .footer-bottom {
    gap: 30px;
    padding: 20px 80px 60px;
  }
}

@media (max-width: 1400px) {

  /* Responsive Presence Section styles */
  .Presence-card {
    width: 300px;
    height: 100px;
  }
}

@media screen and (max-width: 1024px) {


  /* Responsive hero-section styles */
  .hero-section {
    margin-top: 12vh;
  }

  .hero-image {
    max-height: 560px;
  }

  /* Counting-number Section */
  .counting-section {
    padding: 0 80px;
  }

  .counting-item {
    padding: 0;
  }

  .counting-item h1 {
    font-size: 68px;
  }

  .counting-item h6 {
    font-size: 20px;
  }

  /* Responsive Solutions Section styles */
  .card2.active {
    left: 160px;
  }

  .card5.active {
    right: 210px;
  }

  /* Responsive About Section styles */
  .about-container1 {
    padding: 0 20px;
  }

  .about-container2::after {
    display: none;
  }

  .text-stack {
    padding: 0 10px;
  }

  .about-text2 {
    font-size: 10px;
    margin-right: 40px;
  }

  .about-text3 {
    font-size: 32px;
    font-weight: 700;
    color: #7a7a7a;
    margin: 0;
    line-height: 1.1;
  }

  .about-image img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .about-container2 {
    display: flex;
    gap: 100px;
    justify-content: start;
    padding: 30px 40px 20px 50px;
  }

  .about-description {
    width: 100%;
    margin-left: -15px;
  }

  .profile-text1 {
    font-size: 22px;
    font-weight: 600;
    color: #7143fe;
    transform: rotate(-90deg);
    /* width: 100%; */
   

  }

  .client-stack {
    display: flex;
    flex-direction: column;
    margin-left: -20px;
  }

  .client-stack h6 {
    font-size: 14px;
    color: #7a7a7a;
    font-weight: 500;
    line-height: 1.2;
    z-index: 2;
    width: 110px;
  }

  .about-container3 {
    height: 650px;
  }

  .explore-btn {
    left: 10%;
  }

  .explore-card {
    height: 350px;
    width: 250px;
    position: absolute;
    border-radius: 40px;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2);
    right: 40px;
    display: flex;
    flex-direction: column;
    border: white 2px solid;
    background-color: #f5f5f5;
    padding: 40px 20px;
    z-index: 2;
  }

  .explore-card img {
    width: 40px;
    height: auto;
    object-fit: contain;
  }

  .explore-text p {
    padding: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #7a7a7a;
  }

  .explore-count {
    font-size: 50px;
    font-weight: 700;
    color: #7143fe;
    margin-left: 20px;
    line-height: 1;
  }

  .explore-count span {
    font-size: 32px;
    margin-left: -10px;
  }

  .explore-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    padding-left: 20px;
  }

  .image-card1 {
    position: absolute;
    right: 140px;
    margin-top: 80px;
    z-index: 1;
    background-color: #dcdcdc;
    height: 380px;
    width: 300px;
    position: absolute;
    border-radius: 40px;
  }

  .image-card2 {
    position: absolute;
    left: 50px;
    margin-top: 0;
    bottom: 100px;
    z-index: 1;
    background-color: #dcdcdc;
    width: 300px;
    height: 180px;
    position: absolute;
    border-radius: 40px;
  }

  /* Responsive Schedule Section styles */
  .schedule-section {
    height: 350px;
  }

  .schedule-content {
    max-width: 80%;
  }

  .schedule-content h2 {
    font-size: 34px;
  }

  .schedule-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .span-image {
    width: 90px;
    height: 40px;
  }

  .schedule-btn {
    bottom: 80px;
    right: 70px;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 600;
  }

  /* Responsive Delivering Excellence Section styles */
  .card.big {
    width: 500px;
    height: 280px;
    font-size: 28px;
  }

  .bg-card {
    width: 50%;
    height: 300px;
  }

  .carousel {
    width: 80%;
    margin-top: 0;
    gap: 30px;
  }

  .card {
    width: 160px;
    height: 180px;
  }

  /* Responsive target industries Section styles */
  .target-industries-section {
    min-height: 700px;
  }

  .center-text {
    font-size: 30px;
  }

  .icons-wrapper {
    height: 700px;
  }

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

  .icon img {
    width: 26px;
    height: 26px;
  }

  /* Responsive Expertise Section styles */
  .expertise-section {
    padding: 40px 40px 80px 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .expertise-cards {
    gap: 40px;
  }

  .expertise-card {
    width: 80%;
  }

  .expertise-card:last-child:after {
    display: none;
  }

  .expertise-card:first-child:before {
    display: none;
  }

  .expertise-card h3 {
    font-size: 32px;
  }

  .expertise-card p {
    font-size: 16px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }

  /* Responsive Presence Section styles */
  .Presence-card {
    width: 250px;
    height: 80px;
    margin-left: -30px;
  }

  .Presence-card img {
    width: 100px;
    height: 30px;
  }

  /* Responsive Footer Section styles */

  .footer-left {
    gap: 40px;
    margin-left: 30px;
  }

  .footer-greet {
    font-size: 24px;
  }

  .footer-title {
    font-size: 80px;
  }

  .footer-email {
    font-size: 26px;
  }

  .footer-right img {
    height: 600px;
  }

  .footer-bottom {
    gap: 30px;
    padding: 20px 60px 60px;
    font-size: 10px;
  }

  .footer-icons img {
    width: 24px;
    height: 24px;
  }

  .footer-icons {
    gap: 10px;
  }
}

@media screen and (max-width: 992px) {
  .Footer {
    margin-top: 0;
  }

  .hero-section {
    min-height: 480px;
    margin-top: 10vh;
  }

  .greeting2 {
    font-size: 50px;
  }

  .greeting4 {
    font-size: 70px;
  }

  .greeting3 {
    font-size: 20px;
  }

  .hero-text {
    top: 110px;
    left: 60px;
  }

  .hero-text2 {
    top: 120px;
    left: 60px;
  }

  .hero-text3 {
    bottom: 150px;
    right: 60px;
  }

  .hero-text4 {
    bottom: 165px;
    right: 10px;
  }

  .hero-text5 {
    bottom: 70px;
    right: 10px;
  }

  .hero-image {
    max-height: 600px;
  }

  /* Responsive Solutions Section styles */
  .solutions-image {
    max-width: 600px;
  }

  .section-title {
    font-size: 20px;
  }

  .solution-title {
    font-size: 16px;
    max-width: 120px;
  }

  .orange-bg {
    padding: 8px 10px;
  }

  .title3 {
    max-width: 180px;
  }

  .title-header {
    margin-top: 20px;
  }

  .card3.active {
    top: 200px;
    left: 50%;
  }

  .card2.active {
    top: 250px;
    left: 150px;
  }

  .card5.active {
    top: 250px;
    right: 150px;
  }

  .card1.active {
    top: 350px;
    left: 80px;
  }

  .card4.active {
    top: 350px;
    right: 80px;
  }

  /* Responsive Schedule Section styles */
  .schedule-section {
    height: 280px;
  }

  .schedule-content h2 {
    font-size: 26px;
  }

  .schedule-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .span-image {
    width: 60px;
    height: 30px;
  }

  .schedule-btn {
    bottom: 50px;
    right: 50px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
  }

  /* Responsive Delivering Excellence Section styles */
  .carousel {
    width: 90%;
    gap: 20px;
  }

  .card.big {
    width: 450px;
    height: 280px;
    font-size: 24px;
  }

  .bg-card {
    width: 50%;
    height: 280px;
    margin-top: -80px;
  }

  .excellence-title {
    font-size: 20px;
    margin-top: 50px;
  }

  .excellence-description {
    font-size: 14px;
    max-width: 340px;
  }

  /* Responsive Working Process Section styles */
  .process-card h3 {
    font-size: 22px;
  }

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

  /* Responsive target industries Section styles */
  .target-industries-section {
    min-height: 600px;
  }

  .center-text {
    font-size: 22px;
  }

  .icons-wrapper {
    height: 600px;
  }

  /* Responsive Expertise Section styles */
  .expertise-card h3 {
    font-size: 28px;
  }

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

  .icon-box {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  /* Responsive Presence Section styles */
  .Presence-card {
    width: 200px;
    height: 70px;
    margin-left: -30px;
  }

  .Presence-card img {
    width: 100px;
    height: 30px;
  }

  /* Responsive Footer Section styles */

  .footer-left {
    gap: 80px;
    margin-left: 40px;
  }

  .footer-greet {
    font-size: 28px;
  }

  .footer-title {
    font-size: 100px;
  }

  .footer-email {
    font-size: 30px;
  }

  .footer-right img {
    display: none;
  }

  .footer-bottom {
    gap: 30px;
    padding: 20px 80px 60px;
  }

  .footer-bottom {
    font-size: 14px;
    gap: 120px;
  }
}

@media screen and (max-width: 768px) {

  /* Responsive adjustments for info-container */
  .info-container {
    display: none;
  }

  /* Responsive header styles */
  header {
    padding: 10px 16px;
    margin: 0 6px;
    border-radius: 14px;
    top: 12px;
    width: calc(100% - 15px) !important;
  }

  .logo-img img {
    height: 30px;
  }

  .contact-btn {
    display: none;
  }

  .navbar {
    gap: 6px;
  }

  .navbar a {
    font-size: 13px;
    padding: 6px 8px;
  }

  /* Responsive hero-section styles */
  .hero-section {
    padding-top: 60px;
    margin-top: 4vh;
    display: flex;
    flex-direction: column;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-text,
  .hero-text5 {
    position: static;
    text-align: center;
  }

  .hero-text2,
  .hero-text3,
  .hero-text4 {
    width: 100%;
    position: static;
  }

  .hero-text2 .greeting2 {
    text-align: left !important;
    margin-left: 190px;
    margin-top: 10px;
  }

  .hero-text3 .greeting2 {
    text-align: right !important;
    margin-right: 190px;
    margin-bottom: 10px;
  }

  .hero-text4 .greeting {
    text-align: right !important;
    margin-right: 140px;
    margin-top: -45px;
  }

  .greeting2 {
    font-size: 42px;
    display: block;
    gap: 0;
  }

  .greeting {
    display: block;
    gap: 0;
  }

  .greeting4 {
    font-size: 60px;
    line-height: 1.1;
  }

  .greeting3 {
    font-size: 22px;
    margin-left: 0;
    margin-right: 0;
    transform: translateY(0);
  }

  .greeting4 {
    letter-spacing: 1px;
    font-size: 40px;
  }

  .hero-image {
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-text5 .greeting4 {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-text5 .greeting3 {
    display: inline-flex;
    white-space: nowrap;
  }

  .hero-text5 .greeting3 br {
    display: none;
  }

  /* Counting-number Section */
  .counting-section {
    flex-direction: column;
    height: auto;
    text-align: center;
    padding: 30px 0;
  }

  .counting-item {
    flex-direction: column;
    padding: 20px 0;
    align-items: center !important;
    border-bottom: #dcdcdc 1px solid;
  }

  .counting-item:not(:last-child)::after {
    width: 80px;
    height: 2px;
    margin: 20px 0 0 0;
  }

  .counting-item h6 {
    margin-left: 0;
    margin-top: 8px;
    text-align: left;
    max-width: 50%;
  }

  /* Responsive Solutions Section styles */
  .solutions-image-wrapper {
    display: none;
  }

  .section-title {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1;
  }

  .solution-card {
    padding: 16px;
    gap: 12px;
  }

  .orange-bg {
    padding: 8px 10px;
  }

  .card1.active,
  .card2.active,
  .card3.active,
  .card4.active,
  .card5.active {
    position: static;
    transform: none;
    margin: 12px auto;
    width: 80%;
    max-width: 320px;
    display: flex;
    justify-content: flex-start;
  }

  .solutions-section {
    padding: 60px 0 80px;
  }

  .solution-card {
    justify-content: flex-start;
  }

  .solution-title {
    font-size: 16px;
    max-width: 460px;
  }

  .title-header {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* Responsive About Section styles */
  .about-section {
    padding: 0;
  }

  .about-container1 {
    display: block;
    text-align: left;
    padding: 20px 0;
  }

  .text-stack {
    padding: 0;
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 12%;
  }

  .left-margin {
    margin-left: -49px;
  }

  .about-text1 {
    display: flex;
    align-items: center;
  }

  .about-text2 {
    font-size: 12px;
    color: #ff5622;
    font-weight: 700;
  }

  .about-text3 {
    font-size: 26px;
    line-height: 1.3;
    color: #7a7a7a;
    max-width: fit-content;
  }

  .text3-mobile {
    margin-top: 80px;
  }

  .about-image {
    display: none;
  }

  .ellipse-icon {
    width: 20px;
    height: 20px;
  }

  .ellipse-icon img {
    margin-top: 3px;
  }

  .about-container2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: start;
    padding: 30px 40px 0 60px;
  }

  .profile-section {
    align-items: flex-start;
    margin-bottom: 60px;
  }

  .profile-text1 {
    padding: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #7143fe;
    transform: rotate(-180deg);
    margin-left: -30px;
  }

  .client-stack {
    display: flex;
    flex-direction: column;
    margin-left: -30px;
  }

  .client-stack h6 {
    font-size: 18px;
    color: #7a7a7a;
    font-weight: 500;
    line-height: 1.2;
    z-index: 2;
    width: 150px;
  }

  .about-description {
    width: 100%;
    margin-left: -15px;
    justify-content: center;
  }

  .about-description p {
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
    text-justify: inter-word;
  }

  .about-container3 {
    padding: 20px;
    height: 880px;
  }

  .explore-btn {
    height: 140px;
    width: 140px;
    font-size: 16px;
    left: 15%;
    margin-top: 10px;
  }

  .explore-card {
    height: 330px;
    width: 200px;
    right: 50px;
    top: 200px;
    padding: 20px 10px;
    z-index: 2;
    border-radius: 20px;
  }

  .explore-image {
    padding: 10px 0 0 20px;
  }

  .explore-card img {
    width: 48px;
  }

  .explore-text p {
    font-size: 12px;
    line-height: 1.4;
    color: #7a7a7a;
  }

  .explore-count {
    margin-top: 20px;
    font-size: 50px;
    line-height: 1.2;
  }

  .explore-count span {
    font-size: 32px;
    margin-left: -10px;
  }

  .explore-title {
    font-size: 14px;
  }

  .image-card1 {
    right: 140px;
    margin-top: 0;
    top: 260px;
    height: 340px;
    width: 290px;
    border-radius: 20px;
  }

  .image-card2 {
    left: 40px;
    margin-top: 0;
    bottom: 40px;
    width: 390px;
    height: 200px;
    border-radius: 20px;
  }

  /* Responsive Cross-line Section styles */
  .cross-line-section {
    height: 140px;
  }

  .cross-line {
    height: 35px;
    font-size: 14px;
  }

  .orange-line {
    transform: rotate(-8deg);
  }

  .gray-line {
    transform: rotate(10deg);
  }

  /* Responsive Schedule Section styles */
  .schedule-section {
    margin: 0;
    border-radius: 0;
    margin-bottom: 40px;
    width: 100%;
  }

  .schedule-section {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding-bottom: 40px;
  }

  .schedule-content {
    max-width: 100%;
  }

  .schedule-content h2 {
    font-size: 34px;
    word-break: break-word;
    word-wrap: break-word;
  }

  .schedule-content p {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .span-image {
    width: 80px;
    height: 40px;
  }

  .schedule-btn {
    position: static;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    margin-left: 60px;
  }

  .schedule-section::after {
    display: none;
  }

  /* Responsive Delivering Excellence Section styles */
  .carousel {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
  }

  .card.big {
    width: 70%;
    height: 280px;
    font-size: 24px;
  }

  .excellence-title {
    margin-top: 20px;
  }

  .excellence-description {
    margin-top: 30px;
    max-width: 450px;
  }

  .bg-card {
    width: 80%;
    height: 400px;
    margin-top: 0;
  }

  .card {
    display: none;
  }

  /* Responsive Working Process Section styles */
  .process-card h3 {
    font-size: 20px;
  }

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

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .process-card {
    width: 65%;
    padding: 20px;
  }

  .step.left {
    margin-left: -50px;
  }

  .step.right {
    margin-right: -50px;
  }

  .process-card p {
    display: none;
  }

  .step.right .icon-wrapper::after {
    display: none;
  }

  .step.left .icon-wrapper::after {
    display: none;
  }

  /* Responsive target industries Section styles */
  .target-industries-section {
    min-height: 700px;
    padding: 0px;
    overflow: hidden;
    position: relative;
  }

  .center-text {
    font-size: 22px;
  }

  .icons-wrapper {
    width: 100%;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.35);
    transform-origin: center;
    pointer-events: none;
  }

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

  .icon img {
    width: 26px;
    height: 26px;
  }

  /* Responsive Expertise Section styles */
  .expertise-cards {
    flex-direction: column;
    align-items: center;
  }

  .expertise-card:after {
    display: none;
  }

  .expertise-card {
    width: 90%;
    padding-bottom: 30px;
    border-bottom: #e5e5e5 1px solid;
  }

  /* Responsive Presence Section styles */

  .Presence-container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    justify-content: center;
    padding: 0 10%;
  }

  .Presence-card {
    width: 300px;
    height: 100px;
    margin-left: -40px;
    flex-shrink: 0;
  }

  .Presence-card img {
    width: 90px;
    height: 28px;
  }

  /* Responsive Footer Section styles */

  .Footer {
    margin-top: 20px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-title {
    font-size: 80px;
  }

  .footer-icons {
    flex-direction: row;
    justify-content: left;
    gap: 20px;
  }

  .footer-icons img {
    transform: rotate(90deg);
  }

  .footer-bottom {
    margin-top: 0;
    padding: 25px 80px 60px;
    font-size: 18px;
    gap: 25px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {

  /* Responsive header styles */
  header {
    padding: 8px 12px;
    margin: 0 6px;
    border-radius: 12px;
    top: 10px;
    width: calc(100% - 20px) !important;
  }

  .logo-img img {
    height: 24px;
  }

  .contact-btn {
    display: none;
  }

  .navbar {
    padding: 8px 12px;
    gap: 4px;
  }

  .navbar a {
    font-size: 12px;
    padding: 5px 6px;
  }

  /* Responsive hero-section styles */
  .hero-section {
    padding-top: 60px;
    margin-top: 8vh;
    display: flex;
    flex-direction: column;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .greeting2 {
    font-size: 40px;
  }

  .greeting4 {
    font-size: 46px;
  }

  .greeting3 {
    font-size: 22px;
  }

  .hero-text2 .greeting2 {
    text-align: left !important;
    margin-left: 50px;
    margin-top: 10px;
  }

  .hero-text3 .greeting2 {
    text-align: right !important;
    margin-right: 85px;
    margin-bottom: 10px;
  }

  .hero-text4 .greeting {
    text-align: right !important;
    margin-right: 50px;
    margin-top: -45px;
  }

  .hero-image {
    max-height: 600px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .greeting {
    font-size: 12px;
  }

  /* Counting-number Section */
  .counting-item h1 {
    font-size: 40px;
  }

  .counting-item h6 {
    font-size: 16px;
  }

  .counting-item:not(:last-child)::after {
    width: 60px;
  }

  /* Responsive Solutions Section styles */
  .solution-card {
    padding: 16px;
    gap: 12px;
  }

  .section-title {
    line-height: 1.2;
    font-size: 16px !important;
  }

  .solution-title {
    font-size: 16px;
    max-width: 200px;
  }

  .solution-icon {
    width: 32px;
    height: 32px;
  }

  /* Responsive About Section styles */
  .about-section {
    padding: 0;
  }

  .about-text3 {
    font-size: 22px;
    line-height: 1.4;
    color: #7a7a7a;
  }

  .left-margin {
    margin-left: -45px;
    max-width: fit-content;
  }

  .text-stack {
    padding: 0;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-left: 12%;
  }

  .about-container3 {
    padding: 20px;
    height: 860px;
  }

  .explore-card {
    width: 188px;
  }

  .image-card1 {
    right: 0;
    left: 40px;
    margin-top: 0;
    top: 260px;
    height: 330px;
    width: 220px;
    border-radius: 20px;
  }

  .image-card2 {
    left: 40px;
    margin-top: 0;
    bottom: 50px;
    width: 256px;
    height: 180px;
    border-radius: 20px;
  }

  .description-text {
    max-width: 900px;
    width: 100%;
  }

  /* Responsive Schedule Section styles */
  .schedule-content h2 {
    font-size: 32px;
  }

  .schedule-content {
    padding: 40px 20px 20px 40px;
  }

  .schedule-btn {
    padding: 15px 25px;
    margin-left: 40px;
  }

  /* Responsive Delivering Excellence Section styles */
  .excellence-title {
    font-size: 20px;
    margin-top: 0px;
  }

  .bg-card {
    width: 90%;
    height: 360px;
    margin-top: 0;
  }

  .card.big {
    width: 80%;
  }

  .excellence-description {
    font-size: 14px;
    max-width: 300px;
    margin-bottom: 20px;
  }

  /* Responsive Working Process Section styles */

  .working-process-section {
    padding: 20px;
  }

  .process-card h3 {
    font-size: 16px;
  }

  .process-card {
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
  }

  .step-icon {
    width: 42px;
    height: 42px;
  }

  .step.left {
    margin-left: 0px;
  }

  .step.right {
    margin-right: 0px;
  }

  .step.left .icon-wrapper::before {
    width: 40px;
  }

  .step.right .icon-wrapper::before {
    width: 40px;
  }

  .step {
    gap: 40px;
  }

  /* Responsive target industries Section styles */
  .target-industries-section {
    min-height: 700px;
  }

  .center-text {
    font-size: 22px;
  }

  .icons-wrapper {
    width: 100%;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    transform-origin: center;
    pointer-events: none;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .icon img {
    width: 24px;
    height: 24px;
  }

  /* Responsive Expertise Section styles */
  .expertise-section {
    padding: 40px 20px 80px 20px;
  }

  .expertise-card {
    width: 100%;
  }

  /* Responsive Presence Section styles */
  .Presence-card {
    width: 200px;
    height: 80px;
    margin-left: -40px;
    flex-shrink: 0;
  }

  .Presence-card img {
    width: 80px;
    height: 24px;
  }

  /* Responsive Footer Section styles */
  .footer-container {
    padding: 0 10px;
  }

  .footer-title {
    font-size: 62px;
  }

  .footer-greet {
    font-size: 14px;
  }

  .footer-email {
    font-size: 18px;
  }

  .footer-bottom {
    margin-top: 0;
    padding: 25px 50px 60px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 18px;
    gap: 25px;
  }
}

/*================= about page ====================*/

.about-page {
  width: 100%;
  margin: 0;
  padding: 0;
  height: auto;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 150px;
}

.aboutpage-container1 {
  width: 100%;
  height: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 1600px;
}

.aboutpage-container1 h1 {
  font-size: 72px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.orange-text2 {
  color: #ff5622;
}

.aboutus1 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.aboutus1 h6 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.about-horizontal-line {
  background-color: #000;
  width: 100px;
  height: 2px;
  margin-top: 12px;
}

.aboutus1 p {
  font-size: 22px;
  font-weight: 500;
  color: #7a7a7a;
  max-width: 45%;
}

/* ==================== section-2=================== */
.aboutpage-container2 {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

.aboutus2 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.about-image1 {
  height: 777px;
  width: 850px;

  border-radius: 40px;

}

.about-image2 {
  height: 777px;
  width: 703px;
  border-radius: 40px;
  display: flex;
  gap: 10px;
}

.about-image3 {
  display: flex;
  flex-direction: column;
  width: 381px;
  gap: 10px;
}

.about-card1 {
  height: 381px;
  width: 307px;
  border-radius: 40px;
  background-color: #dcdcdc;
  font-size: 60px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image4 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 307px;
}

.about-card {
  height: 381px;
  width: 381px;
  border-radius: 40px;
  
}

.text {
  background-color: #000;
  color: #fff;
  padding: 20px;
  position: relative;
}

.text p {
  position: absolute;
  top: 15%;
  left: 10%;
  max-width: 300px;
  font-size: 22px;
  font-weight: 500;
  z-index: 2;
}

.text img {
  height: 260px;
  width: 318px;
  object-fit: contain;
  margin-top: 0px!important;
  margin-left: -60px !important;
  z-index: 0;
}

.text h1 {
  position: absolute;
  bottom: -40px;
  left: 45%;
  transform: translate(-50%, 100px);
  font-size: 90px;
  z-index: 3;
  opacity: 0;

  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.light {
  background-color: #dcdcdc !important;
  color: #000 !important;
}

.text.light p {
  max-width: 250px;
}

.text.light img {
  height: 180px !important;
  width: 260px !important;
  margin-top: -160px !important;
  /* margin-left: -50px !important; */
}

/* ==================section-3================== */

.aboutpage-container3 {
  width: 100%;
  height: 100%;
  padding: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.aboutpage-container3 .about-container1 {
  display: flex;
  width: 100%;
  padding-right: 0 !important;
}

.aboutpage-container3 .about-image {
  width: 40%;
}

.aboutpage-container3 .text-stack {
  width: 60%;
  padding: 0;
}

.aboutpage-container3 .about-image img {
  height: 500px !important;
  width: 100%;
  max-width: 600px;
}

.about-page-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

/*=============section-4================*/
.aboutpage-container4 {
  width: 100%;
  height: 100%;
  padding: 40px 0 !important;
  margin-top: 40px;
  margin-bottom: 40px;
}

.aboutpage-container4 .counting-section {
  background-color: transparent;
  border: #dcdcdc 1px solid;
}

.aboutpage-container4 .counting-item h1 {
  color: #f5f5f5;
  text-shadow: 1px 1px 0 #ff5622, -1px 1px 0 #ff5622, 1px -1px 0 #ff5622,
    -1px -1px 0 #ff5622;
}

/* =============section-5================= */
.aboutpage-container5 {
  width: 100%;
  padding: 50px 0;
  position: relative;
}

.timeline {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
  
}

.timeline-item {
  width: 100%;
  max-width: 1200px;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

.timeline-item.left {
  justify-content: flex-start;
}

.timeline-item.right {
  justify-content: flex-end;
}

.year-badge {
  background: #6d42ff;
  height: 80px;
  width: 200px;
  color: #fff;
  border-radius: 20px;
  font-size: 32px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(109, 66, 255, 0.6);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item.left .year-badge {
  margin-right: -50px;
  margin-left: 0;
}

.timeline-item.right .year-badge {
  margin-left: -50px;
  margin-right: 0;
}

.timeline-item.right .timeline-card {
  text-align: end;
}

.timeline-card {
  width: 100%;
  height: 200px;
  background: #fff;
  padding: 60px 80px;
  border-radius: 40px;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 400;
  color: #7a7a7a;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.aboutpage-container5 .timeline::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 720px;
  background: #000;
  top: 11%;
  z-index: -1;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(1) {
  transition-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  transition-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  transition-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  transition-delay: 0.4s;
}

/* =============section-6================= */

.aboutpage-container6 {
  width: 100%;
  padding: 60px 0;
  position: relative;
  margin-bottom: 80px;
}

.believes-wrapper {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 80px;
  margin-top: 100px;
}

.believes-card {
  flex: 1;
  background: #fff;
  padding: 30px 35px;
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  max-width: 450px;
  text-align: left;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #eaeaea;
  border-radius: 10px;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.card-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.card-text {
  font-size: 18px;
  line-height: 1.6;
  color: #6b6b6b;
}

.believes-card:nth-child(1) {
  height: 348px;
  margin-top: 130px;
}

.believes-card:nth-child(2) {
  height: 450px;
}

.believes-card:nth-child(3) {
  height: 417px;
  margin-top: 100px;
}

/* =============section-7================= */

.aboutpage-container7 {
  width: 100%;
  padding: 50px 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.aboutpage-container7 .title-header {
  align-items: start;
  transform: translateX(70px);
  z-index: 0;
  position: absolute;
}

.logo-container {
  width: 1272px;
  height: auto;
  display: flex;
  z-index: 2;
  position: relative;
  flex-direction: column;
}

.logo-section {
  display: flex;
}

.logo-box {
  height: 212px;
  width: 212px;
  border: #dcdcdc 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-box img {
  height: 40%;
  width: 60%;
  object-fit: contain;
}

.logo-box.empty-box {
  visibility: hidden;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

@media screen and (max-width: 1590px) {

  /* ==================== section-2=================== */
  .about-image1 {
    height: 677px;
    width: 750px;
  }

  .about-image2 {
    height: 677px;
    width: 603px;
  }

  .about-image3 {
    width: 381px;
    gap: 10px;
  }

  .about-card1 {
    height: 381px;
    width: 253px;
  }

  .about-image4 {
    width: 307px;
  }

  .about-card {
    height: 381px;
    width: 331px;
  }

  .text img {
    height: 180px;
    width: 280px;
  }

  .text h1 {
    bottom: -30px;
    font-size: 70px;
  }

  .text.light img {
    height: 175px !important;
    width: 225px !important;
    margin-top: -160px !important;
    margin-left: -45px !important;
  }

  /* ==================== section-6=================== */
  .believes-wrapper {
    max-width: 1250px;
    gap: 60px;
  }

  .card-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #6b6b6b;
  }
}

@media screen and (max-width: 1400px) {
  .aboutpage-container1 h1 {
    font-size: 60px;
  }

  .aboutus1 {
    gap: 30px;
    margin-top: 40px;
  }

  .aboutus1 h6 {
    font-size: 18px;
  }

  .aboutus1 p {
    font-size: 18px;
  }

  /* ==================== section-2=================== */
  .about-image1 {
    height: 577px;
    width: 650px;
    font-size: 40px;
  }

  .about-image2 {
    height: 577px;
    width: 503px;
  }

  .about-image3 {
    width: 300px;
    gap: 10px;
  }

  .about-card1 {
    height: 300px;
    width: 203px;
    font-size: 40px;
  }

  .about-image4 {
    width: 207px;
  }

  .about-card {
    height: 300px;
    width: 301px;
    font-size: 40px;
  }

  .text img {
    height: 160px;
    width: 280px;
  }

  .text h1 {
    bottom: -28px;
    font-size: 60px;
  }

  .text p {
    max-width: 200px;
  }

  .text.light img {
    height: 130px !important;
    width: 225px !important;
    margin-top: -160px !important;
    margin-left: -45px !important;
  }

  .text.light p {
    max-width: 200px;
  }

  /* ==================== section-3=================== */
  .aboutpage-container3 .about-text3 {
    font-size: 42px !important;
  }

  /* =============section-5================= */
  .timeline-item {
    max-width: 1000px;
  }

  /* ==================== section-6=================== */
  .believes-wrapper {
    max-width: 1000px;
    gap: 40px;
  }

  .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .believes-card {
    padding: 25px 25px;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
  }

  .card-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .believes-card:nth-child(1) {
    height: 308px;
    margin-top: 120px;
  }

  .believes-card:nth-child(2) {
    height: 380px;
  }

  .believes-card:nth-child(3) {
    height: 330px;
  }

  /* =============section-7================= */

  .logo-container {
    width: 1020px;
    height: auto;
    display: flex;
    z-index: 2;
    position: relative;
    flex-direction: column;
  }

  .logo-box {
    height: 170px;
    width: 170px;
  }
}

@media screen and (max-width: 1024px) {
  .aboutpage-container1 h1 {
    font-size: 50px;
  }

  .aboutus1 h6 {
    font-size: 18px;
  }

  .about-horizontal-line {
    width: 90px;
  }

  .aboutus1 p {
    font-size: 18px;
    max-width: 53%;
  }

  /* ==================== section-2=================== */
  .aboutpage-container2 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .about-image1 {
    height: 477px;
    width: 500px;
    font-size: 40px;
    border-radius: 20px;
  }

  .about-image2 {
    height: 477px;
    width: 403px;
  }

  .about-image3 {
    width: 280px;
    height: 477px;
    gap: 10px;
  }

  .about-card1 {
    height: 233px;
    width: 160px;
    font-size: 40px;
    border-radius: 20px;
  }

  .about-image4 {
    width: 160px;
    height: 477px;
    gap: 10px;
  }

  .about-card {
    height: 233px;
    width: 230px;
    font-size: 40px;
    border-radius: 20px;
  }

  .text img {
    height: 160px;
    width: 280px;
    margin-top: -70px !important;
    margin-left: -18px !important;
  }

  .text h1 {
    bottom: -20px;
    font-size: 50px;
  }

  .text p {
    max-width: 150px;
    font-size: 16px;
  }

  .text.light img {
    height: 100px !important;
    width: 160px !important;
    margin-top: -100px !important;
    margin-left: -8px !important;
  }

  .text.light h1 {
    bottom: -16px;
    font-size: 40px;
  }

  .text.light p {
    max-width: 150px;
  }

  /* ==================== section-3=================== */
  .aboutpage-container3 .about-text3 {
    font-size: 36px !important;
  }

  /* =============section-5================= */
  .timeline-item {
    max-width: 800px;
  }

  .timeline-card {
    height: 200px;
    padding: 40px 80px;
  }

  /* ==================== section-6=================== */
  .believes-wrapper {
    max-width: 900px;
    gap: 40px;
  }

  .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .believes-card {
    padding: 25px 25px;
  }

  .card-text {
    font-size: 12px;
    line-height: 1.6;
    color: #6b6b6b;
  }

  .believes-card:nth-child(1) {
    height: 280px;
    margin-top: 120px;
  }

  .believes-card:nth-child(2) {
    height: 340px;
  }

  .believes-card:nth-child(3) {
    height: 300px;
  }

  /* =============section-7================= */

  .logo-container {
    width: 900px;
    height: auto;
    display: flex;
    z-index: 2;
    position: relative;
    flex-direction: column;
  }

  .logo-box {
    height: 150px;
    width: 150px;
  }
}

@media screen and (max-width: 992px) {
  .aboutpage-container1 {
    padding: 0 40px;
  }

  .aboutpage-container1 h1 {
    font-size: 40px;
  }

  .aboutus1 {
    gap: 4%;
    margin-top: 30px;
    padding: 0 50px;
  }

  .aboutus1 h6 {
    font-size: 14px;
    display: flex;
  }

  .aboutus1 p {
    font-size: 12px;
    max-width: 60%;
  }

  /* ==================== section-2 =================== */
  .about-image1 {
    height: 377px;
    width: 370px;
    font-size: 30px;
    border-radius: 20px;
  }

  .about-image2 {
    height: 377px;
    width: 320px;
  }

  .about-image3 {
    width: 170px;
    height: 377px;
    gap: 10px;
  }

  .about-card1 {
    height: 183px;
    width: 140px;
    font-size: 30px;
    border-radius: 20px;
  }

  .about-image4 {
    width: 140px;
    height: 377px;
    gap: 10px;
  }

  .about-card {
    height: 183px;
    width: 170px;
    font-size: 30px;
    border-radius: 20px;
  }

  .text img {
    height: 140px;
    width: 160px;
    margin-top: -40px !important;
    margin-left: -18px !important;
  }

  .text h1 {
    bottom: -16px;
    font-size: 40px;
  }

  .text p {
    max-width: 150px;
    font-size: 12px;
  }

  .text.light img {
    height: 100px !important;
    width: 120px !important;
    margin-top: -80px !important;
    margin-left: -8px !important;
  }

  .text.light h1 {
    bottom: -14px;
    font-size: 35px;
  }

  .text.light p {
    max-width: 150px;
  }

  /* ==================== section-3=================== */
  .aboutpage-container3 .about-text3 {
    font-size: 32px !important;
  }

  /* ==================== section-4=================== */
  .aboutpage-container4 {
    margin-top: 0;
    margin-bottom: 0;
  }

  /* =============section-5================= */
  .timeline-item {
    max-width: 650px;
  }

  .timeline-card {
    font-size: 20px;
    padding: 30px 60px;
    height: 180px;
  }

  .year-badge {
    font-size: 28px;
  }

  .timeline::before {
    height: 660px;
  }

  /* ==================== section-6=================== */
  .aboutpage-container6 {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .believes-wrapper {
    max-width: 750px;
    gap: 40px;
    margin-top: 40px;
  }

  .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .believes-card {
    padding: 25px 20px;
  }

  .card-text {
    font-size: 10px;
  }

  .card-icon {
    height: 35px !important;
    width: 35px !important;
  }

  .believes-card:nth-child(1) {
    height: 240px;
    margin-top: 120px;
  }

  .believes-card:nth-child(2) {
    height: 315px;
  }

  .believes-card:nth-child(3) {
    height: 260px;
  }

  /* =============section-7================= */
  .aboutpage-container7 {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .logo-container {
    width: 720px;
    height: auto;
    display: flex;
    z-index: 2;
    position: relative;
    flex-direction: column;
  }

  .logo-box {
    height: 120px;
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .aboutpage-container1 {
    justify-content: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px;
  }

  .aboutpage-container1 h1 {
    font-size: 45px;
  }

  .aboutus1 {
    gap: 20px;
    margin-top: 30px;
    align-items: flex-start;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    padding: 0;
  }

  .aboutus1 h6 {
    font-size: 14px;
    width: 30%;
  }

  .aboutus1 p {
    font-size: 14px;
    max-width: 53%;
  }

  /* ==================== section-2 =================== */
  .aboutpage-container2 {
    padding: 40px;
  }

  .aboutus2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .about-image1 {
    height: 230px;
    width: 100%;
    max-width: 720px;
    font-size: 60px;
    border-radius: 20px;
  }

  .about-image2 {
    height: 100%;
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .about-image3 {
    width: 100%;
    height: 575px;
    gap: 20px;
  }

  .about-card {
    height: 310px;
    width: 100%;
    font-size: 60px;
    border-radius: 20px;
  }

  .text {
    height: 245px !important;
  }

  .about-image4 {
    width: 100%;
    height: 390px;
    gap: 20px;
  }

  .about-card1 {
    height: 230px;
    width: 100%;
    font-size: 60px;
    border-radius: 20px;
  }

  .text img {
    height: 185px;
    width: 268px;
    margin-top: 0px !important;
    /* margin-left: -140px !important; */
  }

  .text h1 {
    bottom: -35px;
    font-size: 80px;
    left: 30%;
  }

  .text p {
    max-width: 60%;
    font-size: 24px;
    left: 12%;
  }

  .text.light img {
    height: 185px !important;
    width: 268px !important;
    margin-top: 0px !important;
    margin-left: -400px !important;
  }

  .text.light h1 {
    bottom: -34px;
    font-size: 80px;
    left: 28%;
  }

  .text.light p {
    max-width: 60%;
  }

  /* ==================== section-3=================== */
  .aboutpage-container3 .about-image {
    display: none;
  }

  .aboutpage-container3 .text-stack {
    width: 100%;
    padding: 0;
    max-width: 100%;
    margin-left: 3%;
  }

  .aboutpage-container3 .about-text3 {
    font-size: 28px !important;
  }

  /* =============section-5================= */
  .timeline-item {
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 20px;
    max-width: 450px;
  }

  .year-badge {
    margin: 0 !important;
    width: 150px;
    height: 50px;
    font-size: 20px;
    border-radius: 10px;
  }

  .timeline-item.left .year-badge,
  .timeline-item.right .year-badge {
    margin: 0 0 0 40px !important;
  }

  .timeline-card {
    width: 100%;
    height: auto;
    padding: 40px 30px;
    font-size: 18px;
    text-align: left !important;
    border-radius: 30px;
    margin-top: -50px;
  }

  .timeline::before {
    height: auto;
    display: none;
  }

  .timeline-item .year-badge {
    order: -1;
  }

  .timeline-item .timeline-card {
    order: 0;
  }

  /* ==================== section-6=================== */
  .believes-wrapper {
    max-width: 80%;
    flex-direction: column !important;
    gap: 20px;
    margin-top: 0 !important;
    padding: 0 40px;
  }

  .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .believes-card {
    padding: 25px 20px;
    width: 100%;
    max-width: 100%;
  }

  .card-text {
    font-size: 16px;
  }

  .card-icon {
    height: 52px !important;
    width: 52px !important;
  }

  .believes-card:nth-child(1) {
    height: 300px;
    margin-top: 0;
  }

  .believes-card:nth-child(2) {
    height: 420px;
  }

  .believes-card:nth-child(3) {
    height: 380px;
    margin-top: 0;
  }

  /* =============section-7================= */
  .logo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 120px;
  }

  .logo-section {
    display: contents;
  }

  .logo-box.empty-box {
    display: none;
  }

  .logo-box {
    border: none;
    width: 100%;
    height: 150px;
  }

  .aboutpage-container7 .title-header {
    transform: translateX(0);
    left: 30%;
  }
}

@media screen and (max-width: 480px) {
  .aboutus1 p {
    font-size: 14px;
    max-width: 100%;
  }

  .aboutus1 h6 {
    font-size: 14px;
    width: 35%;
  }

  /* ==================== section-2 =================== */

  .text p {
    max-width: 80%;
    font-size: 20px;
    left: 12%;
  }

  .text img {
    margin-left: -40px !important;
  }

  .text.light img {
    margin-left: -40px !important;
  }

  .text h1 {
    bottom: -35px;
    font-size: 80px;
    left: 40%;
  }

  .text.light h1 {
    bottom: -34px;
    font-size: 80px;
    left: 38%;
  }

  /* ==================== section-3=================== */
  .aboutpage-container3 .about-text3 {
    font-size: 22px !important;
  }

  .aboutpage-container3 .text-stack {
    margin-left: 0;
  }

  /* =============section-5================= */
  .timeline-item {
    max-width: 360px;
  }

  /* ==================== section-6=================== */
  .believes-wrapper {
    max-width: 100%;
  }

  /* =============section-7================= */
  .aboutpage-container7 .title-header {
    transform: translateX(0);
    left: 25%;
  }
}


/* =============services page ================= */
/* SECTION LAYOUT */
/* MAIN SECTION */
.service-hero {
  max-width: 1200px;
  margin: 0 auto;

  padding: 180px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

/* LEFT CONTENT */
.service-hero__content {
  max-width: 620px;
}

.service-hero__title {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  color: #111;
  margin-bottom: 28px;
}

.service-hero__text {
  font-size: 15px;
  line-height: 1.6;
  color: #8a8a8a;
  max-width: 420px;
}

/* RIGHT VISUAL */
.service-hero__visual {
  position: relative;
  width: 460px;
  height: 340px;
}

/* BOX COMMON */
.service-box {
  position: absolute;
  border-radius: 24px;
}

/* BIG CARD */
.service-box--primary {
  width: 380px;
  height: 220px;
  top: 0;
  right: 0;
}

/* SMALL CARD */
.service-box--secondary {
  width: 240px;
  height: 150px;
  bottom: 0;
  top: 220px;
  left: -160px;
}

/* ============================ */
/* TABLET */
/* ============================ */
@media (max-width: 992px) {
  .service-hero {
    flex-direction: column;
    gap: 64px;
    padding: 100px 24px;
  }

  .service-hero__content {
    max-width: 100%;
  }

  .service-hero__visual {
    width: 362px;
    height: 300px;
  }

  .service-box--primary {
    width: 360px;
    height: 210px;
    right: 30px;
  }

  .service-box--secondary {
    width: 280px;
    height: 140px;
    left: -24px;

  }
}

/* ============================ */
/* MOBILE (FIXED + GRAY BOXES) */
/* ============================ */
@media (max-width: 576px) {
  .service-hero {
    padding-bottom: 120px;
  }

  .service-hero__visual {
    width: 320px;
  }

  .service-hero__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .service-hero__text {
    font-size: 14px;
    max-width: 100%;
  }

  .service-box {

    position: absolute;
    border-radius: 24px;  
  }

  .service-box--primary {
    width: 292px;
    height: 210px;
    left: 10px;
  }

  .service-box--secondary {
    width: 255px;
    height: 162px;
    left: 12px;
  }
}


/**************************** section 2 *******************************/
.premium-offerings-wrapper {
  
  top: 10;
  background-color: #f5f5f5;
  padding: 60px 40px;
  border-radius: 8px;

}

.offerings-header-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 60px;
  /* padding */
  gap: 40px;
}

.offerings-main-heading {
  font-size: 52px;
  font-weight: 600;
  font-style: bold;
  color: #1a1a1a;
  line-height: 1.2;
  max-width: 400px;
  margin-left: 40px;
}

.offerings-intro-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 400px;
  margin-right: 40px;

}

/* ===============================
   OFFERINGS GRID LAYOUT
================================ */

.offerings-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===============================
   OFFERING CARD
================================ */

.offering-item-box {
  position: relative;
  padding: 30px 10px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.offering-item-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===============================
   ICON + HEADING ROW
================================ */

.offering-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.offering-icon-holder {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-icon-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offering-heading-text {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

/* ===============================
   FEATURES LIST
================================ */

.offering-features-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offering-features-menu li {
  font-size: 13px;
  color: #666;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offering-features-menu li::before {
  content: "";
  width: 36px;
  height: 36px;
  background-image: url("../images/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ===============================
   VERTICAL DIVIDER LINE
================================ */

.offering-item-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
}

/* Remove divider from last column */
.offering-item-box:nth-child(4n)::after {
  display: none;
}

/* ===============================
   TABLET VIEW (2 COLUMNS)
================================ */

@media (max-width: 1024px) {
  .offerings-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .offering-item-box::after {
    right: -12px;
  }

  /* Remove divider on 2nd column */
  .offering-item-box:nth-child(2n)::after {
    display: none;
  }
}


/* ===============================
   MOBILE VIEW FIXES
================================ */

@media (max-width: 768px) {

  /* Wrapper padding */
  .premium-offerings-wrapper {
    padding: 10px 10px;

  }

  /* Header stack vertically */
  .offerings-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  /* Heading fix */
  .offerings-main-heading {
    font-size: 32px;
    line-height: 1.3;
    max-width: 100%;
    margin-left: 0;
  }

  /* Intro text fix */
  .offerings-intro-text {
    font-size: 14px;
    max-width: 100%;
    margin-right: 0;
  }

  /* Grid → single column */
  .offerings-grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Card padding */
  .offering-item-box {
    padding: 24px 20px;
  }

  /* Remove vertical divider */
  .offering-item-box::after {
    display: none;
  }

  /* Icon + heading spacing */
  .offering-head {
    gap: 10px;
  }

  .offering-heading-text {
    font-size: 16px;
  }

  /* List items wrap properly */
  .offering-features-menu li {
    white-space: normal;
  }
}

/* image section */
.servicesec-image-container {
  width: 100%;
  padding: 24px;
}

/* MAIN BOX */
.Simage-box {
  width: 100%;
  max-width: 1600px;

  aspect-ratio: 16 / 6;
  background: #e5e5e5;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;

}

/* MOBILE FIX */
@media (max-width: 600px) {
  .image-box {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

/* *********************barnd section **********************/
/* ===========================
   BRAND TIMELINE (SCOPED)
=========================== */

/* MAIN WRAPPER */
.brand-timeline {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 20px;
}

/* TOP CONTENT */
.timeline-top-content {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

/* LEFT SIDE */
.timeline-header {
  flex: 1;
}

/* TAG */
.timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f37021;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* TAG + GROW ROW */
.tag-grow-row {
  display: flex;
  align-items: center;
  gap: 60px;

}

/* GROW TEXT */
.grow-text {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.timeline-tag::before {
  content: "↗";
  width: 20px;
  height: 20px;
  border: 1px solid #f37021;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* TITLE */
.timeline-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #9b9b9b;
}

/* BLACK BUSINESS TEXT */
.timeline-title strong {
  color: #000;
}

/* OUTLINE TEXT */
.outline-text {
  text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
  color: #f5f5f5;
}

/* RIGHT SIDE */
.header-description {
  flex: 1;
  padding-top: 45px;
}

.header-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #6d6d6d;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .timeline-top-content {
    flex-direction: column;
  }

  .timeline-title {
    font-size: 38px;
  }
}

@media (max-width: 500px) {
  .timeline-title {
    font-size: 32px;
  }
}

/* ---------- TIMELINE ---------- */
.brand-timeline .timeline-wrapper {
  position: relative;
}

.brand-timeline .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #6a5cff;
  opacity: 0.3;
  transform: translateX(-50%);
}

/* ---------- STEP ---------- */
.brand-timeline .timeline-step {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.brand-timeline .timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-timeline .timeline-step.left {
  justify-content: flex-start;
}

.brand-timeline .timeline-step.right {
  justify-content: flex-end;
}

/* ---------- DOT ---------- */
.brand-timeline .timeline-dot {
  width: 12px;
  height: 12px;
  background: #6a5cff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px #f8f8f8;
}

/* ---------- CARD ---------- */
.brand-timeline .timeline-card {
  width: 44%;
  background: #ffffff;
  padding: 15px;
  height: 222px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

.brand-timeline .step-number {
  font-size: 42px;
  font-weight: 400;
  color: #DCDCDC;

}

.brand-timeline .timeline-card h3 {
  margin: 8px 0 12px;
  font-size: 22px;
  color: #111;
}

.brand-timeline .timeline-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {

  .brand-timeline .timeline-top-content {
    flex-direction: column;
    gap: 20px;
  }

  .brand-timeline .header-description {
    padding-top: 0;
  }

  .brand-timeline .timeline-line,
  .brand-timeline .timeline-dot {
    left: 20px;
  }

  .brand-timeline .timeline-step {
    justify-content: flex-start !important;
  }

  .brand-timeline .timeline-card {
    width: calc(100% - 60px);
    margin-left: 60px;
  }

  .brand-timeline .timeline-title {
    font-size: 38px;
  }

  .brand-timeline .grow-text {
    font-size: 24px;

  }
  .brand-timeline .step-number { font-size: 32px; } .brand-timeline .timeline-card h3 { font-size: 18px; } .brand-timeline .timeline-card p { font-size: 12px; }
}

@media screen and (max-width: 500px) {
  .brand-timeline .timeline-title {
    font-size: 32px;
  }

  .brand-timeline .grow-text {
    font-size: 20px;
  }

  .brand-timeline .step-number {
    font-size: 28px;
  }

  .brand-timeline .timeline-card h3 {
    font-size: 16px;
  }

  .brand-timeline .timeline-card p {
    font-size: 10px;
  }
  
}



/* *****************************contect page start ************************************/
:root {
  --neo-dark-bg: #1a1a1a;
  --neo-dark-text: #1a1a1a;
  --neo-gray-bg: #e0e0e0;
  --neo-radius: 24px;
}



.neo-contact-section {
  margin-top: 200px;
}

.neo-contact-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
}

/* ─────────────────────────────────────────
   FLEX LAYOUT:
   [  col-left  ] [ col-mid ] [ col-right ]
   col-left  → headline (full height)
   col-mid   → robot img (top) + phone card (bottom)
   col-right → email card (top) + office img (bottom)
───────────────────────────────────────── */

.neo-contact-flex {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

/* ── COL LEFT: Headline ── */
.neo-col-left {
  flex: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 44px 40px;
}

.neo-col-left span {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.neo-col-left h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--neo-dark-text);
  letter-spacing: -1px;
}

/* ── COL MID & RIGHT: shared column style ── */
.neo-col-mid,
.neo-col-right {
  flex: 0.85;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.neo-col-right {
  flex: 1.1;
}

/* ── CARD BASE ── */
.neo-card {
  border-radius: var(--neo-radius);
  overflow: hidden;
}

/* ── Robot Image (col-mid top) ── */
.neo-img-robot {
  flex: 1;
  min-height: 240px;
  border-radius: var(--neo-radius);
  overflow: hidden;
}

.neo-img-robot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Phone Card (col-mid bottom) ── */
.neo-phone {
  background: var(--neo-dark-bg);
  color: #fff;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  border-radius: var(--neo-radius);
}

.neo-phone p {
  font-size: 14px;
  line-height: 1.8;
}

/* ── Email Card (col-right top) ── */
.neo-email {
  background: var(--neo-dark-bg);
  color: #fff;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  border-radius: var(--neo-radius);
}

.neo-email a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  display: block;
}

.neo-email a:hover { text-decoration: underline; }

/* ── Office Image (col-right bottom) ── */
.neo-img-office {
  flex: 1;
  min-height: 230px;
  border-radius: var(--neo-radius);
  overflow: hidden;
}

.neo-img-office img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Label shared ── */
.neo-label {
  color: #888;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* ── BOTTOM BANNER ── */
.neo-contact-footer-banner {
  height: 510px;
  background: var(--neo-gray-bg);
  border-radius: var(--neo-radius);
  margin-top: 28px;
  overflow: hidden;
}

.neo-contact-footer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {


  .neo-contact-section{
    margin-top: 120px;
  }
  /* Layout */
  .neo-contact-flex {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Full width headline */
  .neo-col-left {
    flex: 0 0 100%;
    padding: 28px 20px;
  }

  .neo-col-left h1 {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  /* 2 column layout below headline */
  .neo-col-mid,
  .neo-col-right {
    flex: 1 1 calc(50% - 10px);
    gap: 20px;
  }

  /* 🔥 Balanced image height */
  .neo-img-robot,
  .neo-img-office {
    height: 220px;
    min-height: 220px;
    border-radius: 20px;
  }

  /* Card adjustments */
  .neo-phone,
  .neo-email {
    padding: 22px 24px;
    min-height: auto;
    border-radius: 20px;
  }

  .neo-label {
    font-size: 12px;
  }

  /* Hide banner on tablet */
  .neo-contact-footer-banner {
    display: none;
  }
}
@media (max-width: 767px) {

  /* Section spacing */
  .neo-contact-section { 
    margin-top: 80px; 
  }

  .neo-contact-wrapper { 
    padding: 20px 16px; 
  }

  /* Stack layout */
  .neo-contact-flex {
    flex-direction: column;
    gap: 20px;
  }

  /* Left Column */
  .neo-col-left {
    padding: 10px 5px;
  }

  .neo-col-left span {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .neo-col-left h1 { 
    font-size: 1.9rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  /* Mid & Right Columns */
  .neo-col-mid,
  .neo-col-right {
    gap: 20px;
  }

  /* 🔥 IMAGE HEIGHT OPTIMIZED */
  .neo-img-robot,
  .neo-img-office {
    height: 160px;
    min-height: 160px;
    border-radius: 18px;
  }

  .neo-img-robot img,
  .neo-img-office img {
 
    height: 310px;
  }

  /* Phone Card */
  .neo-phone {
    padding: 20px;
    min-height: auto;
    border-radius: 18px;
  }

  .neo-phone p {
    font-size: 14px;
  }

  /* Email Card */
  .neo-email {
    padding: 22px;
    min-height: auto;
    border-radius: 18px;
  }

  .neo-email a {
    font-size: 14px;
  }

  /* Label */
  .neo-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  /* Hide Bottom Banner on Mobile */
  .neo-contact-footer-banner {
    display: none;
  }

}


/************************* waiting section *********************************/

.wait-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;

}

/* TOP */
.wait-top {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 60px;
}

.wait-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #111;
}

.wait-desc {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: #777;
}

/* DIVIDER */
.wait-divider {
  border: none;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
}

/* BOTTOM INFO */
.wait-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wait-box {
  padding: 20px 24px;
  font-size: 12px;
  color: #666;
  line-height: 1.2;
  border-right: 2 px solid #b0aeae;
}

.wait-box:last-child {
  border-right: none;
}

.wait-box strong {}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wait-top {
    flex-direction: column;
    gap: 20px;
  }

  .wait-title {
    font-size: 42px;
  }

  .wait-info {
    grid-template-columns: 1fr;
  }

  .wait-box {
    border-right: none;
    border-bottom: 1px solid #DCDCDC;
  }

  .wait-box:last-child {
    border-bottom: none;
  }
}


/* *********************** map  section ************************** */

/* CONTACT SECTION */

/* ==============================
   CONTACT SECTION
============================== */
.nx-contact-section {
  position: relative;
  background: radial-gradient(circle at left, #222, #000);
  padding: 70px 40px;
  overflow: hidden;
}

/* LOGO BACKGROUND */
.nx-contact-section::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 420px;
  background-image: url("../images/about-logo-white.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

/* CONTAINER */
.nx-contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT TEXT */
.nx-contact-left h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
}

/* ==============================
   FORM STYLING
============================== */
.nx-contact-form {
  width: 100%;
}

.nx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.nx-contact-form input,
.nx-contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  padding: 10px 6px;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.nx-contact-form input::placeholder,
.nx-contact-form textarea::placeholder {
  color: #777;
}

.nx-full {
  width: 100%;
  margin-bottom: 30px;
}

.nx-contact-form textarea {
  min-height: 90px;
  resize: none;
}

/* BUTTON */
.nx-contact-form button {
  background: #ff5a1f;
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.25s ease;
}

.nx-contact-form button:hover {
  background: #ff6b38;
}


.input-error {
  border: 1px solid red !important;
}

.error-text {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

/* ==============================
   MAP
============================== */
.nx-map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ==============================
   RESPONSIVE FIXES
============================== */

/* TABLET */
@media (max-width: 1200px) {
  .nx-contact-section::before {
    width: 420px;
    height: 360px;
    opacity: 0.1;
  }
}

/* MOBILE */
@media (max-width: 900px) {

  .nx-contact-section {
    padding: 60px 20px;
  }

  .nx-contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nx-contact-left h2 {
    font-size: 28px;
    text-align: center;
  }

  /* CENTER LOGO ON MOBILE */
  .nx-contact-section::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 260px;
    opacity: 1;
  }

  /* FORM FIX */
  .nx-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 22px;
  }

  .nx-contact-form input,
  .nx-contact-form textarea {
    font-size: 15px;
    padding: 12px 8px;
  }

  .nx-full {
    margin-bottom: 24px;
  }

  .nx-contact-form textarea {
    min-height: 110px;
  }

  .nx-contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .nx-contact-left h2 {
    font-size: 24px;
  }

  .nx-contact-section::before {
    width: 240px;
    height: 220px;
  }
}




/* ***************************blog page start******************************* */

.insights-section {
  max-width: 1200px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 160px auto;
  padding: 0 24px;
}

.insights-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.insights-heading {
  font-family: "Sora", sans-serif;
  font-size: 62px;
  font-weight: 600;
  line-height: 1.15;
}

.insights-summary {
  max-width: 360px;
}


.insights-text {
  font-size: 18px;
  color: #777;
  margin-bottom: 24px;
}

/* Metrics */
.insights-metrics {
  display: flex;
  gap: 40px;
}

.metric-value {
  font: "sora", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #6c63ff;
}

.metric-title {
  font-size: 14px;
  color: #444;
}

/* Grid */
.insights-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* Primary Card */
.primary-article {
  height: 560px;
  background: #e9e9e9;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: flex-end;
}

.primary-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.primary-title {
  font-size: 20px;
  margin-bottom: 6px;
}

.primary-label {
  font-size: 14px;
  color: #555;
}

.primary-date {
  font-size: 12px;
  color: #777;
}

.primary-arrow {
  font-size: 18px;
  font-weight: 600;
}

/* Side Cards */
.auxiliary-articles {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aux-card {
  height: 268px;
  background: #e9e9e9;
  border-radius: 24px;
}

/* tablet view */
@media (max-width: 1024px) {
  .insights-heading {
    font-size: 48px;
  }

  .insights-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .primary-article {
    height: 480px;
  }

  .aux-card {
    height: 230px;
  }
}

/* mobile view */
@media (max-width: 768px) {
  .insights-top {
    flex-direction: column;
    gap: 32px;
  }

  .insights-heading {
    font-size: 36px;
    line-height: 1.2;
  }

  .insights-summary {
    max-width: 100%;
  }

  .insights-metrics {
    gap: 24px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .primary-article {
    height: 360px;
  }

  .aux-card {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .insights-heading {
    font-size: 30px;
  }
 .insights-section{
 margin: 160px auto 0 auto;
  }
  .metric-value {
    font-size: 22px;
  }

  .primary-article {
    padding: 20px;
  }
  .primary-title {
    font-size: 18px;
  }
}

/* section 2 */

.insight-feed {
  max-width: 1200px;
  margin: 140px auto;
  padding: 0 24px;
}

/* Layout */
.feed-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

/* Left Section */
.feed-heading {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feed-description {
  font-size: 18px;
  color: #777;
  max-width: 220px;
}

/* Grid */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Cards */
.feed-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-thumb {
  width: 100%;
  height: 262px;
  background: #e5e5e5;
  border-radius: 24px;
}

.feed-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.feed-arrow {
  font-size: 16px;
}

/* Pagination */
.feed-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.page-num,
.page-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #DCDCDC;
  background: #f5f5f5;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 900px) {
  .feed-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feed-heading {
    font-size: 40px;
  }

  .feed-description {
    max-width: 100%;
  }

  .feed-pagination {
    justify-content: center;
    ;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .feed-grid {
    grid-template-columns: 1fr;
  }

  .feed-heading {
    font-size: 32px;
  }

  .feed-description {
    font-size: 16px;
  }

  .feed-thumb {
    height: 200px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .insight-feed {
    margin: 80px auto;
    padding: 0 16px;
  }

  .feed-heading {
    font-size: 26px;
  }

  .feed-thumb {
    height: 180px;
    border-radius: 20px;
  }

  .page-num,
  .page-nav {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}


/************************** blogdetails page ****************************** */
:root {
  --uxdon-accent: #6c63ff;
  --uxdon-text-main: #1d1d1f;
  --uxdon-text-soft: #7a7a7a;
  --uxdon-divider: #e5e5e5;
  --uxdon-bg-lite: #dedede;
  --uxdon-radius: 18px;
  --uxdon-max: 1100px;
}


/* CONTAINER */
.uxdon-shell {
  max-width: var(--uxdon-max);
  margin: auto;
  margin-top: 140px;
  padding: 0 24px;
}

/* ================= HERO ================= */

.uxdon-hero-heading {
  font-size: 42px;
  font-weight: 700;
  max-width: 720px;
  margin-bottom: 32px;
}

.uxdon-hero-metrics {
  display: flex;
  align-items: center;
}

.uxdon-metric-card {
  padding: 0 32px;
  position: relative;
}

.uxdon-metric-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: var(--uxdon-divider);
}

.uxdon-metric-count {
  font-size: 32px;
  font-weight: 700;
  color: var(--uxdon-accent);
  line-height: 1.2;
}

.uxdon-metric-label {
  font-size: 16px;
}

/* ================= SHOWCASE ================= */

.uxdon-showcase-frame {
  height: 560px;
  background: var(--uxdon-bg-lite);
  border-radius: var(--uxdon-radius);
}

/* ================= ARTICLE CONTINUOUS ================= */
.uxdon-article-wrap {
  padding-bottom: 80px;
}

.uxdon-article-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 220px;
}


.uxdon-article-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Horizontal divider between metrics */
.uxdon-article-metric:not(:last-child)::after {
  content: "";
  width: 32px;
  /* line length */
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  margin: 10px 0;
}

.uxdon-article-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--uxdon-accent);
}

.uxdon-article-label {
  font-size: 14px;
  color: var(--uxdon-text-soft);
}


.uxdon-article-flow {
  max-width: 720px;
  overflow-wrap: break-word;
}

.uxdon-article-paragraph {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

/* IMAGE */
.uxdon-article-image {
  width: 100%;
  height: auto;
  background: var(--uxdon-bg-lite);
  border-radius: var(--uxdon-radius);

}

.uxdon-article-image-sm {
  height: 170px;
}

/* BLOCKS */
.uxdon-article-block {
  margin-bottom: 32px;
}

.uxdon-article-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.uxdon-article-block p {
  font-size: 14px;
  color: #666;
}

/* TAGS */
.uxdon-article-tags {
  font-size: 13px;
  color: #444;
}

/* =========================
   TABLET VIEW (max-width: 1024px)
========================= */
@media (max-width: 1024px) {

  .uxdon-hero-heading {
    font-size: 34px;
    max-width: 100%;
  }

  .uxdon-showcase-frame {
    height: 420px;
  }

  .uxdon-article-grid {
    grid-template-columns: 90px 1fr;
    gap: 20px;
  }

  .uxdon-metric-card {
    padding: 0 20px;
  }

}


/* =========================
   MOBILE VIEW (max-width: 768px)
========================= */
@media (max-width: 768px) {

  .uxdon-shell {
    margin-top: 80px;
    padding: 0 16px;
  }

  /* Hero Section */
  .uxdon-hero-heading {
    font-size: 26px;
    line-height: 1.3;
  }

  .uxdon-hero-metrics {
    flex-direction: column;
    align-items: flex-start;
  }

  .uxdon-metric-card {
    padding: 16px 0;
  }

  .uxdon-metric-card:not(:last-child)::after {
    display: none;
    /* remove vertical divider */
  }

  .uxdon-metric-count {
    font-size: 24px;
  }

  /* Showcase */
  .uxdon-showcase-frame {
    height: 300px;
  }

  /* Article Layout */
  .uxdon-article-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .uxdon-article-metric {
    flex-direction: row;

  }

  .uxdon-article-metric:not(:last-child)::after {
    display: none;
  }

  .uxdon-article-flow {
    max-width: 100%;
  }

  .uxdon-article-paragraph,
  .uxdon-article-block p {
    font-size: 15px;
  }

}


/* ================= COMMENT SECTION ================= */

.uxdon-comment-wrap {
  padding: 72px 0;
}

.uxdon-comment-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 36px;
}

/* FORM WIDTH */
.uxdon-comment-form {
  max-width: 820px;
}

/* GRID */
.uxdon-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 28px;
  margin-bottom: 28px;
}

/* FIELD */
.uxdon-form-field {
  display: flex;
  flex-direction: column;
}

.uxdon-form-field label {
  font-size: 16px;
  color: #8a8a8a;
  margin-bottom: 4px;
  font-weight: 500;
}

/* INPUT STYLE */
.uxdon-form-field input,
.uxdon-form-field textarea {
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 4px 0;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: transparent;
}

.uxdon-form-field textarea {
  resize: none;
}

/* FULL WIDTH FIELDS */
.uxdon-full {
  margin-bottom: 28px;
}

/* ================= LABEL BASE ================= */
.uxdon-form-field label {
  font-size: 12px;
  color: #9a9a9a;
  margin-bottom: 8px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

/* ================= INPUT BASE ================= */
.uxdon-form-field input,
.uxdon-form-field textarea {
  color: #999;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

/* ================= FOCUS / TYPING ================= */
.uxdon-form-field:focus-within label {
  color: #000;
  transform: translateY(-2px);
}

.uxdon-form-field input:focus,
.uxdon-form-field textarea:focus {
  color: #000;
  border-bottom-color: #000;
}

/* ================= UNDERLINE ANIMATION ================= */
.uxdon-form-field {
  position: relative;
}

.uxdon-form-field::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.uxdon-form-field:focus-within::after {
  transform: scaleX(1);
}

/* BUTTON */
.uxdon-submit-btn {
  background: #ff5a1f;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .uxdon-comment-wrap {
    padding: 40px 0;
  }

  .uxdon-form-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .uxdon-comment-title {
    font-size: 18px;
  }
}



/* ================= RELATED ARTICLES ================= */


.uxdon-related-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* GRID */
.uxdon-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.uxdon-related-card {
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.uxdon-related-image {
  width: 100%;
  height: 180px;
  background: #e6e6e6;
  border-radius: 18px;
  margin-bottom: 16px;
}

/* FOOTER */
.uxdon-related-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TITLE */
.uxdon-related-heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* ARROW */
.uxdon-related-arrow {
  width: 16px;
  height: 16px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.uxdon-related-arrow:hover {
  transform: translateX(4px);
}

/* DIVIDER */
.uxdon-related-divider {
  height: 1px;
  background: #e5e5e5;
  margin-top: 16px;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .uxdon-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .uxdon-related-wrap {
    padding: 48px 0;
  }

  .uxdon-related-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .uxdon-related-title {
    font-size: 18px;
  }
}

/* ***********************************career page  startring **************** */
/* PAGE */
/* ================= CAREERS PAGE ================= */

.ab-careers-page {
  display: flex;
  justify-content: center;
  width: 100%;
  background: #f5f5f5;
  padding-top: 160px;
}

/* CONTAINER */
.ab-careers-container {
  max-width: 1440px;
  padding: 0 24px;
  width: 100%;
}

/* TITLE */
.ab-careers-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* INLINE */
.ab-careers-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* PROFILES */
.ab-careers-profiles {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
}

.ab-careers-profiles img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}

.ab-careers-profiles img:first-child {
  margin-left: 0;
}

/* HIGHLIGHT */
.ab-careers-title-highlight {
  color: #ff5722;
}

/* INTRO ROW */
.ab-careers-intro {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin: 28px auto 0;
  max-width: 760px;
}

/* LABEL */
.ab-careers-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
  margin-top: 2px;
}

/* DIVIDER */
.ab-careers-divider {
  width: 40px;
  height: 1px;
  background: #111;
  margin-top: 8px;
}

/* DESCRIPTION */
.ab-careers-description {
  font-size: 17px;
  line-height: 1.6;
  color: #7a7a7a;
  max-width: 520px;
  text-align: left;
}

/* IMAGE BOX */
.ab-careers-image-box-img {
  width: 100%;
  height: 100%;
  margin: 20px;
  object-fit: cover;
  border-radius: 20px;
}


/* ================= DESKTOP / LAPTOP ================= */

@media (min-width: 1024px) {

  .ab-careers-title {
    max-width: 1000px;
    font-size: 44px;
  }

  .ab-careers-intro {
    max-width: 900px;
  }

  .ab-careers-description {
    max-width: 560px;
    margin-bottom: 20px;
  }

  .ab-careers-image-box {
    height: 420px;
    border-radius: 32px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .ab-careers-page {
    padding-top: 100px;
  }

  .ab-careers-title {
    font-size: 25px;
    line-height: 1.3;
    text-align: left;
  }

  .ab-careers-inline {
    display: inline;
  }

  .ab-careers-profiles {
    margin: 6px 6px 0 0;
  }

  .ab-careers-profiles img {
    width: 30px;
    height: 30px;
    margin-left: -8px;
  }

  .ab-careers-intro {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .ab-careers-divider {
    width: 32px;
  }

  .ab-careers-image-box {
    height: 200px;
    margin-top: 32px;
    border-radius: 20px;
  }
}


/* ================= VALUES SECTION ================= */

.ab-values-section {
  width: 100%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.ab-values-container {
  max-width: 1280px;
  width: 100%;
  padding: 60px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ================= TEXT ================= */

.ab-values-content {
  max-width: 520px;
  margin-bottom: 72px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  align-items: flex-start;
  text-align: left;
}

.ab-values-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.ab-arrow {
  width: 14px;
  height: 14px;
  stroke: #6c4cff;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: -1px;
}

.ab-values-description {
  font-size: 12px;
  line-height: 1.7;
  color: #7a7a7a;
  max-width: 460px;
}

/* ================= GRID (DESKTOP) ================= */

.ab-values-grid {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* BASE CARD */
.ab-grid-item {

  border-radius: 24px;
}

/* LEFT */
.ab-grid-item.left {
  width: 200px;
  height: 300px;
  border-radius: 26px;
}

/* CENTER (MAIN) */
.ab-grid-item.center {
  width: 340px;
  height: 490px;
  border-radius: 32px;
  margin-bottom: 40px;
}

/* RIGHT STACK */
.ab-grid-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ab-grid-item.small {
  width: 200px;
  height: 150px;
  border-radius: 20px;
}

.ab-grid-item.medium {
  width: 320px;
  height: 260px;
  border-radius: 26px;
}

@media (min-width: 1024px) {
  .ab-values-container {
    align-items: center;
    /* GRID CENTER */
  }
}


/* ================= MOBILE (PIXEL PERFECT) ================= */

@media (max-width: 768px) {

  .ab-values-container {
    padding: 28px 20px 0;
    align-items: flex-start;
  }

  /* TEXT */
  .ab-values-content {
    max-width: 100%;
    margin-bottom: 28px;
    gap: 12px;
    margin-top: 20px;
  }

  .ab-values-title {
    font-size: 15px;
  }

  .ab-values-description {
    font-size: 12px;
    margin-top: 4px;
  }

  /* GRID */
  .ab-values-grid {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
  }

  /* TOP SMALL CARD */
  .ab-grid-item.left {
    width: 80%;
    height: 320px;
    border-radius: 18px;
  }

  /* BOTTOM BIG CARD */
  .ab-grid-item.center {
    width: 100%;
    height: 420px;
    border-radius: 22px;
    margin-bottom: 0;
  }

  /* HIDE EXTRA */
  .ab-grid-right {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .ab-values-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .ab-grid-item.left {
    width: 100%;
    height: 280px;
  }
  .ab-grid-item.center {
    width: 100%;
    height: 360px;
  }
  .ab-careers-image-box-img {
    height: 180px;
    margin: 20px 0;
  }
}

/* hiring section  */

/* ================= HIRING SECTION ================= */

.ab-hiring-section {
  background: radial-gradient(circle at top left,
      #1a1a1a,
      #0f0f0f 70%);
  padding: 120px 0;
  color: #fff;
}

.ab-hiring-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= TITLE ================= */

.ab-hiring-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 60px;
}

/* ================= LIST ================= */

.ab-hiring-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ================= ITEM ================= */

.ab-hiring-item {
  display: grid;
  grid-template-columns: 60px 1fr auto 40px;
  align-items: center;

  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  text-decoration: none;
  color: #b5b5b5;

  transition: color 0.3s ease;
}

/* INDEX */
.ab-hiring-index {
  font-size: 14px;
  opacity: 0.6;
}

/* ROLE */
.ab-hiring-role {
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
}

/* COUNT */
.ab-hiring-count {
  font-size: 14px;
  opacity: 0.6;
  margin-right: 24px;
  white-space: nowrap;
}

/* ARROW */
.ab-hiring-arrow {
  font-size: 16px;
  opacity: 0.5;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ================= HOVER ================= */

.ab-hiring-item:hover {
  color: #ff6a2b;
}

.ab-hiring-item:hover .ab-hiring-role,
.ab-hiring-item:hover .ab-hiring-arrow {
  color: #ff6a2b;
}

.ab-hiring-item:hover .ab-hiring-arrow {
  transform: translate(4px, -4px);
  opacity: 1;
}

/* ================= ACTIVE STATE ================= */

.ab-hiring-item.active .ab-hiring-role,
.ab-hiring-item.active .ab-hiring-arrow {
  color: #ff6a2b;
}

.ab-hiring-item.active .ab-hiring-count {
  color: rgba(255, 255, 255, 0.7);
}

/* ================= TABLET ================= */

@media (max-width: 1023px) and (min-width: 769px) {

  .ab-hiring-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .ab-hiring-item {
    grid-template-columns: 48px 1fr auto 32px;
    padding: 20px 0;
  }

  .ab-hiring-role {
    font-size: 15px;
  }

  .ab-hiring-count {
    font-size: 13px;
    margin-right: 16px;
  }

  .ab-hiring-arrow {
    font-size: 14px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .ab-hiring-section {
    padding: 72px 0;
  }

  .ab-hiring-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 32px;
  }

  .ab-hiring-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;

    padding: 18px 0;
  }

  .ab-hiring-index {
    grid-row: 1 / span 2;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
  }

  .ab-hiring-role {
    font-size: 15px;
    color: #e6e6e6;
  }

  .ab-hiring-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
  }

  .ab-hiring-arrow {
    display: none;
  }

  .ab-hiring-item.active .ab-hiring-role {
    color: #ff6a2b;
  }
}


/* WHY SECTION */
.ab-why-section {
  background-color: #f5f5f5;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
}

.ab-why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.ab-why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.ab-why-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #111;
  margin: 0;
  max-width: 520px;
}

.ab-why-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 380px;
  line-height: 1.6;
  margin-top: 10px;
}

/* GRID */
.ab-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ab-why-item {
  padding: 60px 40px;
  position: relative;
}

/* Vertical line with gap (NOT joined) */
.ab-why-item:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  right: 0;
  width: 1px;
  background-color: #e5e5e5;
}


/* ICON + HEADING */
.ab-why-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.ab-why-icon img {
  width: 42px;
  height: 42px;
  display: block;
}

.ab-why-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #111;
}

/* TEXT */
.ab-why-item p {
  font-size: 15px;
  color: #6a6a6a;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

/* TABLET */
@media (max-width: 1024px) {
  .ab-why-title {
    font-size: 40px;
  }

  .ab-why-item {
    padding: 40px 30px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .ab-why-header {
    flex-direction: column;
  }

  .ab-why-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .ab-why-grid {
    grid-template-columns: 1fr;
  }

  .ab-why-item {
    border-right: none;
    padding: 40px 0;
  }
}

@media (max-width: 768px) {

  .ab-why-grid {
    grid-template-columns: 1fr;
  }

  .ab-why-item {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .ab-why-item:last-child {
    border-bottom: none;
  }

  .ab-why-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
  }
}



/* ****************career details page  *************************************/


.ab-job-section {
  margin-top: 100px;
  padding: 120px 0;
  background: #f5f5f5;
}

.ab-job-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* IMAGE */
.ab-job-image {
  background: #e3e3e3;
  border-radius: 32px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
  color: #111;
}

/* JOB CARD */
.ab-job-card {
  position: absolute;
  right: 24px;
  bottom: -40px;
  width: 340px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* LIST */
.ab-job-list {
  list-style: none;
  margin: 0;
  padding: 28px;
}

.ab-job-list li {
  margin-bottom: 18px;
}

.ab-job-list span {
  display: block;
  font-size: 12px;
  color: #7a7a7a;
  margin-bottom: 4px;
}

.ab-job-list strong {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* BUTTON */
.ab-job-btn {
  display: block;
  text-align: center;
  padding: 16px;
  background: #ff6a2b;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ab-job-btn:hover {
  background: #e85b20;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .ab-job-section {
    padding: 72px 0;
  }

  .ab-job-image {
    height: 240px;
    border-radius: 22px;
  }

  .ab-job-card {
    position: static;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .ab-job-list {
    padding: 22px;
  }
}


/* requirement section  */
/* ================= JOB PAGE ================= */

.ab-job-page {
  background: #f5f5f5;
  padding: 120px 0;
  font-family: Inter, sans-serif;
}

.ab-job-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.ab-job-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111;
}

.ab-job-meta {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.ab-job-meta span {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 4px;
}

.ab-job-meta strong {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.ab-divider {
  margin: 32px 0;
  border: none;
  border-top: 1px solid #eee;
}

/* INTRO */
.ab-job-intro {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 48px;
}

/* SECTIONS */
.ab-job-section-block {
  margin-bottom: 48px;
}

.ab-job-section-block h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111;
}

.ab-job-section-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ab-job-section-block li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 10px;
}

.ab-job-section-block li img {
  width: 14px;
  height: 14px;
  margin-top: 5px;
}

/* FOOTER */
.ab-job-footer {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .ab-job-page {
    padding: 72px 0;
  }

  .ab-job-title {
    font-size: 24px;
  }

  .ab-job-meta {
    gap: 24px;
  }

  .ab-job-intro {
    font-size: 13px;
  }

  .ab-job-section-block h2 {
    font-size: 16px;
  }

  .ab-job-section-block li {
    font-size: 13px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {

  .ab-job-container {
    max-width: 880px;
  }

  .ab-job-title {
    font-size: 28px;
  }

  .ab-job-meta {
    gap: 32px;
  }

  .ab-job-intro {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {

  .ab-job-container {
    padding: 0 20px;
  }

  .ab-job-meta {
    flex-direction: column;
    gap: 16px;
  }

  .ab-divider {
    margin: 24px 0;
  }

  .ab-job-section-block {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {

  .ab-job-title {
    font-size: 22px;
  }

  .ab-job-intro {
    font-size: 12.5px;
  }

  .ab-job-section-block h2 {
    font-size: 15px;
  }

  .ab-job-section-block li {
    font-size: 12.5px;
    gap: 10px;
  }

  .ab-job-section-block li img {
    width: 12px;
    height: 12px;
    margin-top: 4px;
  }
}


/* *******************************Technology page start****************************************** */

/* ===== WRAPPER ===== */
.techpage-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}

/* ===== HERO SECTION ===== */
.techpage-hero-image {
  margin-top: 200px;
  height: 360px;
  border-radius: 24px;
  background-image: url("../images/Technology/hero.jpg");
  background-size: cover;     
  background-position: center; 
  background-repeat: no-repeat;
}


.techpage-hero-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 30px 0 50px;
}

.techpage-hero-title {
  font-size: 36px;
  font-weight: 700;
  max-width: 520px;
}

.techpage-hero-text {
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* ===== STATS BAR ===== */
.techpage-stats {
  display: flex;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

/* ===== STAT ITEM ===== */
.techpage-stat-card {
  flex: 1;
  padding: 28px 12px;
  display: flex;
  justify-content: center;
  position: relative;
}

/* vertical divider */
.techpage-stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #ededed;
}

/* ===== INNER ===== */
.techpage-stat-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===== NUMBER + PLUS WRAPPER ===== */
.techpage-stat-value {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

/* main number */
.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #ff6a3d;
  line-height: 1;
  white-space: nowrap;
}

.stat-plus {
  font-size: 42px;
  line-height: 1;
  margin-top: px;
  text-shadow: 1px 1px 0 #ff5622, -1px 1px 0 #ff5622, 1px -1px 0 #ff5622, -1px -1px 0 #ff5622;
  color: #f5f5f5;
}

@media (max-width: 1024px) {

  /* HERO TEXT STACK */
  .techpage-hero-image {
    margin-top: 100px;
  }

  .techpage-hero-content {
    flex-direction: column;
    gap: 20px;
  }

  .techpage-hero-title,
  .techpage-hero-text {
    max-width: 100%;
  }

  /* STATS STACK */
  .techpage-stats {
    flex-direction: column;
    border-top: none;
    border-bottom: none;
  }

  .techpage-stat-card {
    padding: 24px 12px;
  }

  /* REMOVE vertical divider */
  .techpage-stat-card::after {
    display: none;
  }

  /* ADD horizontal divider under each stat */
  .techpage-stat-card:not(:last-child) {
    border-bottom: 1px solid #ededed;
  }
}



/* texh section -2  */

/* Section */
.tech-wireframe-section {
  background: #f5f5f5;
  padding: 20px 20px;
}

/* Container */
.tech-wireframe-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading (full left) */
.tech-wireframe-title {
  max-width: 520px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  margin-left: 120px;
  margin-bottom: 30px;
}

/* Right block starts AFTER center line */
.tech-wireframe-right {
  margin-left: 280px;
}

/* Grey box */
.tech-wireframe-media {
  width: 100%;
  max-width: 720px;
  height: 360px;
  background: #e2e2e2;
  border-radius: 22px;
  margin-bottom: 20px;
}

/* Bottom text */
.tech-wireframe-content {
  max-width: 720px;
  display: flex;
  gap: 30px;
}

.tech-wireframe-text {
  flex: 1;
  font-size: 13px;
  text-align: left;
  line-height: 1.7;
  color: #777;
}

@media (max-width: 1024px) and (min-width: 601px) {

  /* Center everything */
  .tech-wireframe-title {
    margin-left: 100px;
   
  }

  .tech-wireframe-right {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tech-wireframe-content {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {


  .techpage-hero-image {
    height: 180px;
  }
  .tech-wireframe-media{
    height: 180px;
  }
  .tech-wireframe-title {
    margin-left: 0;
    text-align: left;
  }

  .tech-wireframe-right {
    margin-left: 0;
    align-items: flex-start;
  }

  .tech-wireframe-content {
    flex-direction: column;
    gap: 16px;
  }

}






/* tech service-3 */

/* Section */
.tech-feature-section {
  background: #f6f6f6;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Card */
.tech-feature-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left Grey Box */
.tech-feature-media {
  width: 320px;
  height: 180px;
  background: #e1e1e1;
  border-radius: 18px;
  flex-shrink: 0;
}

/* Content */
.tech-feature-content {
  max-width: 620px;
}

.tech-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.tech-feature-text {
  font-size: 21px;
  line-height: 1.7;
  color: #777;
}

@media (max-width: 1024px) {
  .tech-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tech-feature-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .tech-feature-media {
    width: 100%;
    height: 160px;
  }

  .tech-feature-text {
    font-size: 15px;
  }

  .tech-feature-title {
    font-size: 18px;
    text-align: left;
  }

  .tech-feature-content {
    text-align: left;
  }
}



/* blck banner section */
/* BLACK BANNER */
.tech-black-banner {
  width: 100%;
  background: #0f0f0f;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OUTLINE TEXT */
.tech-black-banner__text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #f5f5f5, -1px 1px 0 #f5f5f5, 1px -1px 0 #f5f5f5, -1px -1px 0 #f5f5f5;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .tech-black-banner__text {
    font-size: 24px;
    letter-spacing: 1.5px;
    text-align: left;
  }
}

/* Main Section */
.tech-stack-section {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 40px;
  margin: 110px auto;
}

/* Left Grey Box */
.tech-visual-card {
  width: 420px;
  height: 500px;
  
  border-radius: 30px;
}

/* Right Content */
.tech-stack-content {
  max-width: 600px;
}

/* Heading */
.tech-stack-heading {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #666;
}

/* FULL STACK */
.tech-highlight-grey {
  color: #666;
  display: inline-block;
}

/* DEVELOPMENT */
.tech-highlight-outline {
  color: #f5f5f5;
  text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
  font-weight: 900;
  margin-left: 6px;
}

/* FROM EXPERTS */
.tech-highlight-dark {
  color: black;
}

/* Text */
.tech-stack-text {
  font-size: 15px;
  line-height: 1.7;
  color: #777;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .tech-stack-section {
    gap: 30px;
    margin: 80px 40px;
  }

  .tech-visual-card {
    width: 360px;
    height: 440px;
  }

  .tech-stack-heading {
    font-size: 32px;
  }

  .tech-stack-content {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .tech-stack-section {
    flex-direction: column;
    text-align: left;
    margin: 60px 20px;
    gap: 25px;
  }

  .tech-visual-card {
    width: 100%;
    height: 380px;
    margin: 0 auto;
  }

  .tech-stack-content {
    max-width: 100%;
  }

  .tech-stack-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .tech-highlight-outline {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .tech-stack-heading {
    font-size: 24px;
  }

  .tech-stack-text {
    font-size: 10px;
  }

  .tech-visual-card {
    height: 220px;
  }

   .tech-stack-section {
    flex-direction: column;
    text-align: left;
    margin: 30px 20px;
    gap: 35px;
  }
}





/* Section 5 */
.tech-services-section {
  background: black;
  padding: 80px 60px;
  color: #ffffff;
}

/* Header */
.tech-services-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
  margin-bottom: 50px;
}

.tech-services-title {
  font-size: 38px;
  font-weight: 700;
}

.tech-services-description {
  max-width: 520px;
  font-size: 11px;
  line-height: 1.7;
  color: #9a9a9a;
}

/* Grid */
.tech-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card */
.tech-service-card {
  background: #000;
  border: 2px solid rgba(224, 221, 221, 0.92);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Card Hover */
.tech-service-card:hover {
  background: #111;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

/* Arrow */
.tech-service-arrow {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Text */
.tech-service-card span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

/* ================== Responsive ================== */

@media (max-width: 1024px) {
  .tech-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-services-header {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .tech-services-section {
    padding: 60px 20px;
  }

  .tech-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-services-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .tech-services-grid {
    grid-template-columns: 1fr;
  }
}

/* section 6 */


/* Section */
.tech-benefits-section {
  background: #fafafa;
  padding: 90px 60px;
}

/* Header */
.tech-benefits-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

.tech-benefits-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.tech-benefits-description {
  max-width: 480px;
  font-size: 21px;
  line-height: 1.7;
  color: #777;
}

/* Grid */
.tech-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.tech-benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.tech-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Card Heading */
.tech-benefit-heading {
  font-size: 18px;
  font-weight: 700;
  color: #4f46e5;
  text-align: center;
  margin-bottom: 12px;
}

/* Card Text */
.tech-benefit-text {
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
  color: #777;
}

@media (max-width: 1024px) {
  .tech-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-benefits-header {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .tech-benefits-section {
    padding: 60px 20px;
  }

  .tech-benefits-title {
    font-size: 21 px;
  }
}

.tech-benefits-description {
  font-size: 15px;
}

@media (max-width: 480px) {
  .tech-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Application Modal ========== */
.ab-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.ab-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 30px;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ab-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.ab-modal-close:hover,
.ab-modal-close:focus {
  color: #000;
  text-decoration: none;
}

.ab-modal-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.ab-form-group {
  margin-bottom: 15px;
}

.ab-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #555;
}

.ab-form-group input[type='text'],
.ab-form-group input[type='email'],
.ab-form-group input[type='tel'],
.ab-form-group textarea,
.ab-form-group input[type='file'] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.ab-form-group input:focus,
.ab-form-group textarea:focus {
  border-color: #7143fe;
  /* Using your theme color */
  outline: none;
}

.ab-submit-btn {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

/* ========== Scroll Animation Classes (Re-Added) ========== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  /* Smoother transition */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional Stagger: Add .stagger-1 for children if needed */
.scroll-animate.stagger-1 {
  transition-delay: 0.1s;
}

.scroll-animate.stagger-2 {
  transition-delay: 0.2s;
}

.scroll-animate.stagger-3 {
  transition-delay: 0.3s;
}