* {
  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;
  overflow-x: hidden;
  width: 100%;
}

html.nav-active,
body.nav-active {
  overflow: hidden !important;
  height: 100% !important;
}

.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;
  overflow-x: hidden;
  position: relative;
}



.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: nowrap;
  gap: 20px;
  z-index: 999;
  color: #000 !important;
  width: auto !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  /* Let margins decide width */
}

header.scrolled {
  top: 0;
  margin: 0 !important;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  width: 100% !important;
  max-width: none !important;
  padding: 10px 30px;
  min-height: 80px;
}

.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;
  overflow: visible !important;
}

.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;
}

/* Arrow only for Insights */
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url("../images/drop.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  margin-left: 6px;
}

.navbar a:hover {
  color: #7143fe;
}

.navbar a:hover::after {
  transform: rotate(180deg);
}

.navbar a.active {
  color: #7143fe !important;
}

.dropdown-toggle.active {
  color: #7143fe !important;
}

/* Intermediate screen responsive rules for header & navbar */
@media screen and (max-width: 1280px) and (min-width: 769px) {
  header {
    padding: 12px 20px;
    margin: 0 20px;
    min-height: 80px;
    gap: 12px;
  }
  .logo-img img {
    height: 35px;
  }
  .navbar {
    gap: 6px;
  }
  .navbar a {
    padding: 8px 10px;
    font-size: 13px;
  }
  .contact-btn {
    width: 115px !important;
    height: 38px !important;
    font-size: 13px;
  }
}

@media screen and (max-width: 992px) and (min-width: 769px) {
  header {
    padding: 10px 15px;
    margin: 0 15px;
    min-height: 75px;
    gap: 8px;
  }
  .logo-img img {
    height: 32px;
  }
  .navbar {
    gap: 4px;
  }
  .navbar a {
    padding: 6px 8px;
    font-size: 12px;
  }
  .contact-btn {
    width: 100px !important;
    height: 35px !important;
    font-size: 12px;
  }
  .submenu-panel.mega-panel {
    width: 700px;
  }
  .mega-menu-sidebar {
    width: 35%;
  }
  .mega-menu-content {
    width: 65%;
    padding: 15px;
  }
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff5622;
  border: none;
  padding: 0;
  height: 42px !important;
  width: 130px !important;
  flex: none !important;
  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;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: white !important;
  font-weight: bold;
  font-size: 14px;
}

/* Force white color and no underline for ALL states and selectors */
.contact-btn,
.navbar .contact-btn,
div.container header a.contact-btn {
  text-decoration: none !important;
  color: white !important;
}

.contact-btn:hover,
.contact-btn:active,
.contact-btn:visited,
.contact-btn:focus,
.contact-btn:link {
  text-decoration: none !important;
  color: white !important;
}

.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;
  text-decoration: none !important;
  color: white !important;
}

.contact-btn:active {
  transform: translateY(0) scale(0.995);
  box-shadow: 0 6px 18px rgba(255, 86, 34, 0.18);
  text-decoration: none !important;
  color: white !important;
}

.mobile-contact-btn {
  display: none !important;
}

/* ===== Dropdown Base & Arrow Override ===== */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle::after {
  display: none !important; /* Hide old drop.webp arrow */
}

.dropdown-toggle .toggle-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: #666;
}

.dropdown:hover .dropdown-toggle .toggle-icon {
  transform: rotate(180deg);
  color: #7143fe;
}

/* ===== Submenu Panels (Desktop) ===== */
@media (min-width: 769px) {
  .submenu-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    min-width: 260px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    padding: 10px 0;
  }

  .dropdown:hover .submenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .panel-header {
    display: none; /* Only for mobile */
  }

  .submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .submenu-list li {
    list-style: none;
  }

  .submenu-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .submenu-list li a i {
    font-size: 14px;
    color: #7143fe;
    transition: transform 0.25s ease;
  }

  .submenu-list li a:hover {
    background: rgba(113, 67, 254, 0.08);
    color: #7143fe;
    padding-left: 28px;
  }

  .submenu-list li a:hover i {
    transform: scale(1.15);
  }

  /* ===== Desktop Split-Pane Mega Menu (Technology) ===== */
  .submenu-panel.mega-panel {
    width: 800px;
    padding: 0;
    overflow: hidden;
    display: block;
  }

  .mega-menu-container {
    display: flex;
    min-height: 400px;
  }

  .mega-menu-sidebar {
    width: 32%;
    background: #f8f9fa;
    border-right: 1.5px solid rgba(0, 0, 0, 0.05);
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .sidebar-item i {
    font-size: 15px;
    width: 20px;
    color: #ff5622;
  }

  .sidebar-item span {
    flex: 1;
    margin-left: 10px;
  }

  .sidebar-item .arrow-icon {
    font-size: 11px;
    color: #ccc;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.25s ease;
  }

  .sidebar-item:hover,
  .sidebar-item.active {
    background: rgba(113, 67, 254, 0.08);
    color: #7143fe;
  }

  .sidebar-item:hover i,
  .sidebar-item.active i {
    color: #7143fe;
  }

  .sidebar-item:hover .arrow-icon,
  .sidebar-item.active .arrow-icon {
    opacity: 1;
    transform: translateX(0);
    color: #7143fe;
  }

  .mega-menu-content {
    width: 68%;
    background: #ffffff;
    padding: 20px 25px;
    position: relative;
    overflow-y: auto;
    max-height: 450px;
  }

  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .pane-category-title {
    font-size: 16px;
    font-weight: 700;
    color: #ff5622;
    margin-bottom: 15px;
    border-bottom: 1.5px solid rgba(255, 86, 34, 0.1);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pane-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pane-item {
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
    background: #fafafa;
  }

  .pane-item .item-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    transition: color 0.2s ease;
  }

  .pane-item .item-desc {
    font-size: 11.5px;
    color: #666;
    line-height: 1.35;
  }

  .pane-item:hover {
    background: rgba(113, 67, 254, 0.04);
    border-color: rgba(113, 67, 254, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(113, 67, 254, 0.05);
  }

  .pane-item:hover .item-title {
    color: #7143fe;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  /* ── Header ── */
  header {
    width: calc(100% - 20px) !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);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  header.scrolled {
    top: 10px;
    margin: 0 10px !important;
    border-radius: 18px;
    width: calc(100% - 20px) !important;
    background: rgba(255, 255, 255, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(113, 67, 254, 0.1), 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: fixed !important;
    top: 85px !important;
    left: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px) !important;
    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;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 1000;
  }

  /* Custom thin scrollbar for mobile navbar panel */
  .navbar::-webkit-scrollbar {
    width: 4px;
  }
  .navbar::-webkit-scrollbar-track {
    background: transparent;
  }
  .navbar::-webkit-scrollbar-thumb {
    background: rgba(113, 67, 254, 0.3);
    border-radius: 10px;
  }


  .navbar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    margin-top: 0 !important;
    border-radius: 20px !important;
    background: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 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% - 32px) !important;
    margin: 15px auto !important;
    height: 32px !important;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff5622 0%, #ff7043 100%) !important;
    color: white !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    box-shadow: 0 8px 24px rgba(255, 86, 34, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .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: static !important;
    width: 100%;
  }

  .dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-toggle .toggle-icon {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s;
  }

  .dropdown.active > .dropdown-toggle .toggle-icon {
    transform: rotate(-90deg); /* points to the panel direction */
    color: #7143fe;
  }

  .submenu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #ffffff;
    z-index: 1005;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .submenu-panel.slide-in {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .panel-header {
    display: flex;
    align-items: center;
   justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.05);
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
  }

  .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    font-size: 14.5px;
    font-weight: 700;
    color: #ff5622;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
  }

  .back-btn:hover {
    background-color: rgba(255, 86, 34, 0.08);
  }

  .panel-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* List & Links inside Mobile Slide panel */
  .submenu-list {
    list-style: none;
    padding: 15px !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
  }

  .submenu-list li {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
  }

  .submenu-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    flex-direction: row-reverse !important;
    gap: 12px;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    transform: none !important;
  }

  .submenu-list li a:hover,
  .submenu-list li a:active {
    background: rgba(113, 67, 254, 0.06) !important;
    color: #7143fe !important;
    border-color: rgba(113, 67, 254, 0.1);
  }

  .submenu-list li a i {
    font-size: 15px;
    color: #7143fe;
  }

  /* ===== Mobile Split-Pane Mega Menu Flattening ===== */
  .submenu-panel.mega-panel {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
  }

  .mega-menu-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
  }

  .mega-menu-sidebar {
    display: none !important; /* Hide category tabs on mobile */
  }

  .mega-menu-content {
    padding: 15px !important;
    width: 100% !important;
    max-height: none !important;
  }

  .tab-pane {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 25px;
  }

  .tab-pane:last-child {
    margin-bottom: 0;
  }

  .pane-category-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #ff5622;
    margin-bottom: 12px;
    border-bottom: 1.5px solid rgba(255, 86, 34, 0.1);
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pane-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .pane-item {
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .pane-item:hover,
  .pane-item:active {
    background: rgba(113, 67, 254, 0.06);
    border-color: rgba(113, 67, 254, 0.1);
  }

  .pane-item .item-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
  }

  .pane-item .item-desc {
    font-size: 11.5px;
    color: #666;
    line-height: 1.3;
  }


}

/* ========== 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 10px;
}

.counting-item:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 80px;
  background: #fff;
  opacity: 0.4;
  margin-left: 40px;
}

.counting-item h1 {
  font-size: 52px;
  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: 18px;
}

/* ========== 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.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.section-title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  color: #8c8c8c;

}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.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;
  margin-top: 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("../images/schedule.webp") 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: 90%;
  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: 100px;
  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);
} */


.industry-section-wrapper {
  width: 100%;
  padding: 100px 0;
  background: #f6f6f8;
}

.industry-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.industry-header {
  text-align: center;
  margin-bottom: 60px;
}

.industry-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
}

.industry-highlight {
  color: #ff7a00;
}

.industry-subtext {
  max-width: 650px;
  margin: auto;
  margin-top: 15px;
  color: #666;
  font-size: 16px;
}

/* SLIDER CONTAINER */
.industry-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* FLEX LAYOUT FOR AUTO-SCROLL */
.industry-grid {
  display: flex;
  padding: 40px 0;
  gap: 30px;
  width: max-content;
  animation: scrollIndustry 35s linear infinite;
}

.industry-grid:hover {
  animation-play-state: paused;
}

@keyframes scrollIndustry {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 15px));
  }
}

/* CARD */
.industry-card {
  position: relative;
  width: 320px;
  flex-shrink: 0;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: #000;
}

.industry-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(255, 86, 34, 0.25);
  /* Orange shadow for Alphabit brand */
  border-bottom: 4px solid #ff5622;
}

/* IMAGE FIX */
.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}

.industry-card:hover .industry-img {
  transform: scale(1.1);
  opacity: 0.6;
}

/* OVERLAY */
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.5s ease;
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(255, 86, 34, 0.6) 50%, rgba(123, 47, 247, 0.4) 100%);
}

/* CONTENT */
.industry-content {
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 0;
  width: 100%;
  padding: 20px 20px;
  color: white;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(calc(100% - 90px));
  /* Only show heading by default */
  box-sizing: border-box;
}

.industry-card:hover .industry-content {
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  /* Glassmorphism effect on hover */
}

.industry-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  color: #fff;
}

.industry-card:hover .industry-content h3 {
  color: #ff5622;
}

.industry-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ff5622;
  transition: width 0.4s ease;
}

.industry-card:hover .industry-content h3::after {
  width: 40px;
}

.industry-content p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  transition-delay: 0.1s;
  color: #e0e0e0;
  margin: 0;
}

.industry-card:hover .industry-content p {
  opacity: 1;
  transform: translateY(0);
}


/* =====================
   RESPONSIVE
===================== */

/* 1024px */
@media (max-width:1024px) {

  .industry-grid {
    gap: 20px;
  }

  .industry-card {
    height: 280px;
  }

}


/* TABLET */
@media (max-width:768px) {

  .industry-title {
    font-size: 30px;
  }

  .industry-grid {
    padding: 20px 0;
    gap: 20px;
  }

  .industry-card {
    width: 280px;
  }

  .industry-card {
    height: 280px;
  }

}


/* MOBILE */
@media (max-width:480px) {

  .industry-title {
    font-size: 24px;
  }

  .industry-grid {
    gap: 15px;
  }

  .industry-card {
    height: 280px;
  }

}

.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;
  background: #000;
  color: #fff;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: inherit;
}

.expertise-cards {
  width: 100%;
  max-width: 1300px;
  display: flex;
  gap: 30px;
  position: relative;
  margin-top: 50px;
}

.expertise-card {
  flex: 1;
  padding: 40px 35px;
  text-align: left;
  position: relative;
  background: #111;
  border-radius: 24px;
  border: 1px solid #222;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #1a1a1a;
}

.expertise-card:after {
  display: none;
}

.expertise-card:first-child:before {
  display: none;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.icon-box img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.expertise-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.2;
}

.expertise-card p {
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
  line-height: 1.6;
}

/* ========== Target Industries Section ========== */
.target-industries-section {
  padding: 40px 0;
  margin: 40px 0;
  position: relative;
  width: 100%;
  background-image: url("../images/bglines2.webp");
  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 {
  padding: 60px 0;
  width: 100%;
}

.blog-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 40px;
}

.blog-card {
  width: 370px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: #f98c55;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.blog-image {
  width: 100%;
  height: 210px;
  background: #f0f0f0;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-author span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f98c55;
  font-weight: 600;
}

.blog-title {
  font-size: 19px;
  line-height: 1.4;
  color: #222;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.blog-more {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.blog-card:hover .blog-more {
  color: #f98c55;
}

@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: 800px;
  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: 106px;
  }

  .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 20px;
    height: auto;
    min-height: 140px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .counting-item {
    padding: 10px;
  }

  .counting-item:not(:last-child)::after {
    display: none;
  }

  .counting-item h1 {
    font-size: 48px;
  }

  .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;
    flex-direction: column;
    align-items: center;
  }

  .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: 10px;
    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;
    margin-top: 0px;
  }

  .text-stack {
    padding: 0;
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10%;
  }

  .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;
  }

  .delivering-excellence .section-title {
    line-height: 1.6;
  }

  .delivering-excellence .orange-bg {
    display: inline-block;
  }

  /* 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 {
    width: 90%;
  }

  /* 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-cards {
    flex-direction: column;
    gap: 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: 40px 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: 370px;
  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: -16px !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;
    gap: 20px;
  }

  .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: -5px;
  }

  .service-box--secondary {
    width: 255px;
    height: 162px;
    left: -5px;
  }
}


/**************************** section 2 *******************************/
.premium-offerings-wrapper {

  top: 10;
  background-color: #f5f5f5;
  padding: 60px 40px;
  border-radius: 8px;

}

.offerings-header-container {
  display: flex;
  justify-content: space-between;
  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;
}

/* ===============================
   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: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../images/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ===============================
   VERTICAL DIVIDER LINE
================================ */

.offering-item-box::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -15px;
  width: 1px;
  height: 80%;
  background-color: #ddd;
}

/* 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: 30px 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: 150px;
}

.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: auto;
  }

  /* 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);
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.wait-box {
  padding: 40px 15px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wait-box::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 0;
  width: 2px;
  height: 30%;
  background-color: #eee;
}

.wait-box:last-child::after {
  display: none;
}

.wait-box p {
  margin: 0;
}

.wait-box strong {
  color: #111;
  font-weight: 700;
  display: block;
}

/* 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-bottom: 1px solid #DCDCDC;
  }

  .wait-box::after {
    display: none;
  }

  .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: 80px 5%;
  overflow: hidden;
  width: 100%;
}

/* 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.webp");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

/* CONTAINER */
.nx-contact-container {
  max-width: 100%;
  width: 100%;
  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 {
  width: 100%;
  padding: 0;
  margin: 0;
}

.nx-map-section iframe {
  width: 100%;
  height: 500px;
  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: "Sora", 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: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), #e9e9e9;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.primary-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.primary-title {
  font-size: 32px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 700;
}

.primary-label {
  font-size: 14px;
  color: hsl(0, 4%, 85%);
}

.primary-date {
  font-size: 12px;
  color: hsl(0, 4%, 85%);
}

.primary-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 26px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.primary-arrow::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff5622;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
  border-radius: 50%;
}

.primary-arrow:hover {
  transform: translate(8px, -8px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(255, 86, 34, 0.4);
}

.primary-arrow:hover::before {
  top: 0;
  border-radius: 0;
}

.primary-arrow:hover span {
  animation: arrow-ping 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes arrow-ping {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4) translate(2px, -2px);
  }

  100% {
    transform: scale(1.2);
  }
}

/* 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-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: 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 Cards & Arrows Upgrade */
.feed-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  height: 100%;
}

.feed-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(113, 67, 254, 0.1);
}

.feed-thumb {
  width: 100%;
  height: 262px;
  background: #e5e5e5;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feed-card:hover .feed-thumb {
  transform: scale(0.98);
}

.feed-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(113, 67, 254, 0.2), transparent);
  opacity: 0;
  transition: 0.5s;
}

.feed-card:hover .feed-thumb::after {
  opacity: 1;
}

.feed-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px 12px;
}

.feed-card-footer p {
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.4;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.feed-card:hover .feed-card-footer p {
  color: #7143fe;
}

.feed-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fdfdfd;
  color: #333;
  font-size: 22px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex-shrink: 0;
}

.feed-arrow::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7143fe;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
  border-radius: 50%;
}

.feed-card:hover .feed-arrow {
  border-color: transparent;
  color: #fff;
  transform: scale(1.1) rotate(45deg);
  box-shadow: 0 10px 20px rgba(113, 67, 254, 0.3);
}

.feed-card:hover .feed-arrow::before {
  top: 0;
  border-radius: 0;
}

/* Pagination */
.feed-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.page-num,
.page-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-num:hover,
.page-nav:hover:not(:disabled) {
  background: #7143fe;
  color: #fff !important;
  border-color: #7143fe;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(113, 67, 254, 0.2);
}

.page-num.active {
  background: #7143fe !important;
  color: #fff !important;
  border-color: #7143fe !important;
}

/* Responsive adjustments for Blog Page */
@media (max-width: 1024px) {
  .feed-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feed-intro {
    max-width: 100%;
  }

  .feed-description {
    max-width: 100%;
  }

  .feed-heading {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .insights-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .feed-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feed-pagination {
    justify-content: center;
    margin-top: 40px;
  }

  .insights-heading {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .insights-heading {
    font-size: 32px;
  }

  .insights-section {
    margin: 100px auto 40px auto;
    padding: 0 16px;
  }

  .insight-feed {
    padding: 0 16px;
  }

  .feed-heading {
    font-size: 32px;
  }

  .primary-article {
    height: 320px;
    padding: 24px;
  }

  .primary-title {
    font-size: 22px;
  }

  .primary-arrow {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .feed-card {
    border-radius: 24px;
    padding: 8px;
  }

  .feed-thumb {
    height: 200px;
    border-radius: 18px;
  }
}




/************************** blogdetails page ****************************** */
:root {
  --uxdon-accent: #7143fe; /* aligned with global theme brand color */
  --uxdon-accent-hover: #5a30d9;
  --uxdon-text-main: #1a1a1a;
  --uxdon-text-soft: #666666;
  --uxdon-divider: rgba(0, 0, 0, 0.08);
  --uxdon-bg-lite: #f9f9fb;
  --uxdon-card-bg: #ffffff;
  --uxdon-radius: 20px;
  --uxdon-max: 1200px;
}

/* ================= READING PROGRESS BAR ================= */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
}

.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--uxdon-accent), #00bcd4);
  border-radius: 0 2px 2px 0;
  transition: width 0.1s ease-out;
}

/* CONTAINER */
.uxdon-shell {
  max-width: var(--uxdon-max);
  margin: auto;
  padding: 0 24px;
  width: 100%;
}

/* ================= HERO ================= */
.uxdon-hero-wrap {
  margin-top: 140px;
  padding: 40px 0 20px;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--uxdon-text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  background: var(--uxdon-card-bg);
  border: 1px solid var(--uxdon-divider);
  border-radius: 100px;
}

.blog-back-link i {
  transition: transform 0.3s ease;
}

.blog-back-link:hover {
  color: var(--uxdon-accent);
  border-color: var(--uxdon-accent);
  box-shadow: 0 4px 12px rgba(113, 67, 254, 0.15);
}

.blog-back-link:hover i {
  transform: translateX(-4px);
}

.uxdon-hero-heading {
  font-size: 44px;
  font-weight: 700;
  color: var(--uxdon-text-main);
  line-height: 1.25;
  margin-bottom: 24px;
  font-family: "Sora", sans-serif;
}

.uxdon-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* Metric Pills */
.uxdon-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--uxdon-card-bg);
  border: 1px solid var(--uxdon-divider);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--uxdon-text-soft);
  transition: all 0.3s ease;
}

.uxdon-metric-pill i {
  color: var(--uxdon-accent);
}

.uxdon-metric-pill:hover {
  border-color: rgba(113, 67, 254, 0.4);
  background: rgba(113, 67, 254, 0.02);
  transform: translateY(-1px);
}

.uxdon-metric-pill .uxdon-metric-count {
  font-weight: 700;
  color: var(--uxdon-text-main);
}

.uxdon-metric-pill .uxdon-metric-label {
  color: var(--uxdon-text-soft);
}

/* ================= SHOWCASE ================= */
.uxdon-showcase-wrap {
  padding: 20px 0 40px;
}

.uxdon-showcase-frame {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 560px;
  background: var(--uxdon-bg-lite);
  border-radius: var(--uxdon-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--uxdon-divider);
  position: relative;
}

.uxdon-showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.uxdon-showcase-frame:hover img {
  transform: scale(1.03);
}

/* ================= ARTICLE GRID LAYOUT ================= */
.uxdon-article-wrap {
  padding-bottom: 80px;
}

.uxdon-article-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* STICKY SIDEBAR */
.uxdon-article-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--uxdon-card-bg);
  border: 1px solid var(--uxdon-divider);
  border-radius: var(--uxdon-radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* Author Widget */
.author-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(113, 67, 254, 0.1);
  background: var(--uxdon-bg-lite);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--uxdon-text-main);
  margin-bottom: 2px;
}

.author-title {
  font-size: 12px;
  color: var(--uxdon-text-soft);
}

/* Engagement Widget */
.metrics-widget {
  display: flex;
  justify-content: space-around;
  padding: 16px 20px;
}

.uxdon-article-metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.uxdon-article-metric i {
  font-size: 20px;
  color: var(--uxdon-accent);
}

.metric-meta {
  display: flex;
  flex-direction: column;
}

.uxdon-article-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--uxdon-text-main);
  line-height: 1.2;
}

.uxdon-article-label {
  font-size: 11px;
  color: var(--uxdon-text-soft);
}

/* Share Widget */
.share-widget .widget-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--uxdon-text-main);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--uxdon-divider);
  background: var(--uxdon-card-bg);
  color: var(--uxdon-text-soft);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: transparent;
}

.linkedin-btn:hover {
  background: #0077b5;
  box-shadow: 0 8px 16px rgba(0, 119, 181, 0.3);
}

.twitter-btn:hover {
  background: #0f1419;
  box-shadow: 0 8px 16px rgba(15, 20, 25, 0.3);
}

.facebook-btn:hover {
  background: #1877f2;
  box-shadow: 0 8px 16px rgba(24, 119, 242, 0.3);
}

.copy-btn:hover {
  background: var(--uxdon-accent);
  box-shadow: 0 8px 16px rgba(113, 67, 254, 0.3);
}

/* Tooltip */
.share-btn .tooltip {
  visibility: hidden;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color: var(--uxdon-text-main);
  color: #fff;
  text-align: center;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-btn .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--uxdon-text-main) transparent transparent transparent;
}

.share-btn:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Tooltip Copied State */
.share-btn .tooltip.copied {
  background-color: #2e7d32;
}
.share-btn .tooltip.copied::after {
  border-color: #2e7d32 transparent transparent transparent;
}

/* ================= ARTICLE CONTENT FLOW ================= */
.uxdon-article-flow {
  overflow-wrap: break-word;
}

#blog-content {
  font-size: 16px;
  line-height: 1.8;
  color: #374151; /* accessible Slate color */
}

/* Typography styles for dynamically generated rich text */
#blog-content p {
  margin-bottom: 24px;
}

#blog-content h2, 
#blog-content h3, 
#blog-content h4 {
  font-family: "Sora", sans-serif;
  color: var(--uxdon-text-main);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

#blog-content h2 {
  font-size: 28px;
  border-bottom: 1px solid var(--uxdon-divider);
  padding-bottom: 8px;
}

#blog-content h3 {
  font-size: 22px;
}

#blog-content h4 {
  font-size: 18px;
}

#blog-content ul, 
#blog-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

#blog-content li {
  margin-bottom: 8px;
}

#blog-content ul li {
  list-style-type: disc;
}

#blog-content ol li {
  list-style-type: decimal;
}

#blog-content blockquote {
  background: var(--uxdon-bg-lite);
  border-left: 4px solid var(--uxdon-accent);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 var(--uxdon-radius) var(--uxdon-radius) 0;
  font-style: italic;
  color: var(--uxdon-text-soft);
  font-size: 17px;
}

#blog-content blockquote p {
  margin-bottom: 0;
}

#blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 32px auto;
  border-radius: var(--uxdon-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--uxdon-divider);
}

#blog-content pre {
  background: #1e1e2e;
  color: #cdd6f4;
  padding: 20px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 32px 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
}

#blog-content code {
  background: rgba(113, 67, 254, 0.08);
  color: var(--uxdon-accent);
  padding: 3px 6px;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 600;
}

#blog-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-weight: normal;
}

#blog-content a {
  color: var(--uxdon-accent);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

#blog-content a:hover {
  color: var(--uxdon-accent-hover);
}

/* ================= FLOATING BACK TO TOP ================= */
.back-to-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--uxdon-accent);
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(113, 67, 254, 0.3);
  z-index: 999;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--uxdon-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(113, 67, 254, 0.4);
}

.back-to-top-btn:active {
  transform: translateY(-1px);
}

/* =========================================================
   TABLET VIEW (max-width: 1024px)
========================================================= */
@media (max-width: 1024px) {
  .uxdon-hero-wrap {
    margin-top: 110px;
  }

  .uxdon-hero-heading {
    font-size: 36px;
  }

  .uxdon-showcase-frame {
    aspect-ratio: 16 / 8;
    height: auto;
  }

  .uxdon-article-grid {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }

  .sidebar-widget {
    padding: 16px;
  }
}

/* =========================================================
   MOBILE VIEW (max-width: 768px)
========================================================= */
@media (max-width: 768px) {
  .uxdon-hero-wrap {
    margin-top: 100px;
  }

  .uxdon-shell {
    padding: 0 20px;
  }

  .uxdon-hero-heading {
    font-size: 28px;
    line-height: 1.35;
  }

  .uxdon-showcase-frame {
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 16px;
  }

  .uxdon-article-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .uxdon-article-sidebar {
    position: static;
    order: 2; /* Move sidebar below content on mobile */
  }

  .back-to-top-btn {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
  }
}

/* ***********************************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:32px;
  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: 16px;
  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: 380px;
  }

  .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;
  width: 100%;
}

.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: 16px;
  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.webp");
  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-section {
    padding: 60px 20px;
  }

  .tech-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tech-feature-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {

  .tech-feature-section {
    padding: 30px 20px;
  }

  .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: 30px;
    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;
  width: 100%;
}

/* 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;
}

/* ======== MINIMAL PRELOADER ======== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.minimal-loader {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 200px;
}

.minimal-loader .loader-logo {
  width: 100px;
  animation: logo-in 0.8s ease forwards;
}

.loader-progress-bar {
  width: 0%;
  height: 2px;
  background: #f7941d;
  margin: 20px auto 10px;
  transition: width 0.4s ease;
  border-radius: 2px;
}

.loader-text {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 15px;
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   Products Section Styles
   ========================================================================== */
.products-section {
  padding: 80px 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.products-header {
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px 35px;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(113, 67, 254, 0.12);
  border-color: rgba(113, 67, 254, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f9f9ff 100%);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7143fe, #ff7a00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-icon {
  width: 80px;
  height: 80px;
  background: #f8f9fb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.product-card:hover .product-icon {
  background: #7143fe;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(113, 67, 254, 0.2);
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.product-card:hover .product-icon img {
  filter: brightness(1.1);
}

.product-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.product-description {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #7143fe;
  text-decoration: none;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card:hover .product-link {
  gap: 15px;
  color: #ff7a00;
}

.product-link::after {
  content: "→";
  font-size: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-link::after {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .products-section {
    padding: 60px 20px;
  }
}

/* ==========================================================================
   Individual Product Page Styles
   ========================================================================== */
.product-page-wrapper {
  padding-top: 100px;
  background-color: #fff;
  width: 100%;
}


.product-hero {
  padding: 120px 40px 80px;
  background:
    radial-gradient(circle at 0% 0%, rgba(113, 67, 254, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(255, 122, 0, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(113, 67, 254, 0.02) 0%, transparent 50%),
    #ffffff;
  position: relative;
  overflow: hidden;
}

.product-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.product-hero-content {
  flex: 1;
}

.product-hero-image {
  flex: 1;
  text-align: right;
}

.product-hero-image img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-hero-image img:hover {
  transform: scale(1.02);
}

.product-category {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(113, 67, 254, 0.08);
  color: #7143fe;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(113, 67, 254, 0.1);
}

.product-hero-content h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1;
  letter-spacing: -2px;
}

.product-tagline {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.product-details-section {
  padding: 120px 40px;
  background: #ffffff;
}

.details-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: flex-start;
}

.details-text {
  background: #f9f9fc;
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details-text h2,
.details-features h2,
.benefits-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 35px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.details-text h2::after,
.details-features h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: #7143fe;
  border-radius: 2px;
}

.details-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-top: 15px;
}

.details-features ul {
  list-style: none;
  padding: 0;
}

.details-features {
  padding: 60px;
  background: #fff;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
}

.details-features li {
  padding: 18px 0 18px 45px;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.details-features li:hover {
  transform: translateX(10px);
  color: #7143fe;
}

.details-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: rgba(113, 67, 254, 0.1);
  color: #7143fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.product-benefits {
  padding: 120px 40px;
  background-color: #fbfcff;
  text-align: center;
  position: relative;
}

.product-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113, 67, 254, 0.1), transparent);
}

.benefits-header {
  margin-bottom: 60px;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefit-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(113, 67, 254, 0.1);
  border-color: rgba(113, 67, 254, 0.1);
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsive adjustments for Product Pages */
@media (max-width: 1200px) {
  .product-hero-inner {
    padding: 0 20px;
    gap: 40px;
  }

  .product-hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .product-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .product-hero-image {
    text-align: center;
    order: -1;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {

  .products-grid,
  .benefits-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    gap: 20px;
    padding: 20px 0 40px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .products-grid::-webkit-scrollbar,
  .benefits-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card,
  .benefit-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 30px 20px;
    margin-bottom: 0;
  }

  .product-hero {
    padding: 40px 20px;
  }

  .product-details-section {
    padding: 40px 20px;
  }

  .product-benefits {
    padding: 60px 20px;
  }

  .products-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .product-hero-content h1 {
    font-size: 32px;
  }

  .product-benefits {
    padding: 40px 20px;
  }

  .benefits-header {
    margin-bottom: 20px;
  }

  .details-text {
    padding: 40px;
  }

  .details-text p {
    font-size: 14px;
  }

  .product-tagline {
    font-size: 16px;
  }

  .details-features {
    padding: 40px;
  }

  .details-text h2,
  .details-features h2,
  .benefits-header h2 {
    font-size: 28px;
  }
}

/* ==========================================================================
   Premium Animations & Micro-interactions
   ========================================================================== */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  pointer-events: none;
  opacity: 0;
}

.product-card:hover::after {
  opacity: 1;
  left: 100%;
  top: 100%;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-hero-content h1,
.product-hero-content p,
.product-hero-btns {
  animation: slideUp 0.8s ease out both;
}

.product-hero-content h1 {
  animation-delay: 0.1s;
}

.product-tagline {
  animation-delay: 0.2s;
}

.product-hero-btns {
  animation-delay: 0.3s;
}

.product-hero-image img {
  animation: slideUp 1s ease out both;
  animation-delay: 0.4s;
}

/* Smooth Scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

.brand-carousel {
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
  position: relative;
  /* margin-top: 100px;
  margin-bottom: 100px; */
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.logo {
  flex: 0 0 auto;
  /* 🔥 IMPORTANT (missing tha) */
  width: 100px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  filter: grayscale(100%);
  transition: 0.3s;
}

.logo img:hover {
  filter: grayscale(0%);
}

/* 🔥 PERFECT LOOP */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== Premium Services Section ========== */
.premium-services-section {
  position: relative;
  width: 100%;
  background-color: transparent;
  overflow: hidden;
  color: #333;
}

.premium-services-section .container-box {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}





.section-description-premium {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.premium-service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 25px;
  transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(113, 67, 254, 0.2);
}

.card-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.purple-bg {
  background: #7143fe;
}

.blue-bg {
  background: #3b82f6;
}

.green-bg {
  background: #10b981;
}

.orange-bg-service {
  background: #ff5622;
}

.card-image-placeholder {
  width: 100%;
  height: 160px;
  margin-bottom: 25px;
  border-radius: 16px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-mockup {
  width: 85%;
  height: 85%;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.image-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.premium-service-card:hover .image-mockup {
  transform: scale(1.05);
}

.mockup-purple {
  background: linear-gradient(135deg, rgba(113, 67, 254, 0.1) 0%, rgba(113, 67, 254, 0.3) 100%);
}

.mockup-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.3) 100%);
}

.mockup-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.3) 100%);
}

.mockup-orange {
  background: linear-gradient(135deg, rgba(255, 86, 34, 0.1) 0%, rgba(255, 86, 34, 0.3) 100%);
}

.premium-service-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.premium-service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.explore-link {
  font-size: 14px;
  font-weight: 700;
  color: #7143fe;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.explore-link:hover {
  gap: 12px;
}

.blue-text {
  color: #3b82f6;
}

.green-text {
  color: #10b981;
}

.orange-text {
  color: #ff5622;
}

  
/* Responsive adjustments */
@media (max-width: 1200px) {
  .premium-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0;
    margin: 0 0 60px 0;
  }

  .premium-service-card {
    width: 100%;
    flex: none;
    scroll-snap-align: none;
  }

  .section-title-premium {
    font-size: 32px;
  }
}

/* ========== Scroll Animation Classes ========== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.scroll-animate {
  transition-delay: 0.1s;
}

.benefit-card.scroll-animate {
  transition-delay: 0.1s;
}

.premium-service-card.scroll-animate {
  transition-delay: 0.1s;
}

/* Staggered animation for grid items */
.products-grid .product-card:nth-child(2) {
  transition-delay: 0.2s;
}

.products-grid .product-card:nth-child(3) {
  transition-delay: 0.3s;
}

.benefits-grid .benefit-card:nth-child(2) {
  transition-delay: 0.2s;
}

.benefits-grid .benefit-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Mobile Interactivity Enhancements */
@media (max-width: 480px) {

  .product-card:active,
  .benefit-card:active {
    transform: scale(0.98);
    background: #f9f9ff;
  }
}

.product-card.scroll-animate {
  transition-delay: 0.1s;
}

.benefit-card.scroll-animate {
  transition-delay: 0.1s;
}

/* Staggered animation for grid items */
.products-grid .product-card:nth-child(2) {
  transition-delay: 0.2s;
}

.products-grid .product-card:nth-child(3) {
  transition-delay: 0.3s;
}

.benefits-grid .benefit-card:nth-child(2) {
  transition-delay: 0.2s;
}

.benefits-grid .benefit-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Mobile Interactivity Enhancements */
@media (max-width: 480px) {

  .product-card:active,
  .benefit-card:active {
    transform: scale(0.98);
    background: #f9f9ff;
  }
}

/* ========== Global Utility Classes (Added for Sync) ========== */
.container-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 80px 0;
  width: 100%;
}

@media (max-width: 768px) {
  .container-box {
    padding: 0 20px;
  }

  .section-padding {
    padding: 60px 0;
  }
}


/* about page new add section css */
         .custom-expertise-grid {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
          gap: 60px 40px;
          padding: 0 20px;
        }
        .custom-expertise-item {
          background: transparent;
          padding: 0 0 0 25px;
          text-align: left;
          position: relative;
          border-left: 3px solid rgba(255, 87, 34, 0.2);
          transition: all 0.3s ease;
        }
        .custom-expertise-item:hover {
          transform: translateX(10px);
          border-left-color: #ff5722;
        }
        .custom-expertise-title {
          font-size: 22px;
          font-weight: 700;
          color: #1a1a1a;
          margin-bottom: 12px;
          margin-top: 0;
        }
        .custom-expertise-text {
          font-size: 16px;
          line-height: 1.6;
          color: #6b6b6b;
          margin: 0;
        }

        .custom-process-grid {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 60px 40px;
          padding: 0 20px;
          counter-reset: process-counter;
        }
        .custom-process-item {
          position: relative;
          padding-left: 60px;
        }
        .custom-process-item::before {
          counter-increment: process-counter;
          content: "0" counter(process-counter);
          position: absolute;
          left: 0;
          top: -5px;
          font-size: 3rem;
          font-weight: 800;
          color: #ff5722;
          opacity: 0.2;
          line-height: 1;
        }

        /* Base styles moved from inline */
        .aboutpage-expertise {
          margin-top: 80px;
          padding: 0 40px;
        }
        .aboutpage-process {
          margin-top: 100px;
          margin-bottom: 100px;
          padding: 0 40px;
        }
        .section-desc {
          text-align: center;
          max-width: 800px;
          margin: 20px auto 60px;
          color: #666;
          font-size: 1.1rem;
          line-height: 1.6;
        }

        /* Tablet View */
        @media (max-width: 991px) {
          .aboutpage-expertise {
            margin-top: 60px;
            padding: 0 20px;
          }
          .aboutpage-process {
            margin-top: 60px;
            margin-bottom: 60px;
            padding: 0 20px;
          }
          .section-desc {
            margin: 20px auto 40px;
            font-size: 1rem;
          }
          .custom-expertise-grid,
          .custom-process-grid {
            gap: 40px 30px;
            padding: 0 10px;
          }
        }

        /* Mobile View */
        @media (max-width: 767px) {
          .aboutpage-expertise {
            margin-top: 40px;
            padding: 0 15px;
          }
          .aboutpage-process {
            margin-top: 40px;
            margin-bottom: 40px;
            padding: 0 15px;
          }
          .section-desc {
            margin: 15px auto 30px;
            font-size: 0.95rem;
          }
          .custom-expertise-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 0;
          }
          .custom-process-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 0;
          }
          .custom-expertise-item {
            padding: 0 0 0 20px;
          }
          .custom-process-item {
            padding-left: 50px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
          }
          .custom-process-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
          }
          .custom-process-item::before {
            font-size: 2.5rem;
            top: -2px;
          }
        }