@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* @font-face {
    font-family: 'Aeonik';
    src: url('./assets/fonts/AeonikTRIAL-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('./assets/fonts/AeonikTRIAL-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('./assets/fonts/AeonikTRIAL-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('./assets/fonts/AeonikTRIAL-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('./assets/fonts/AeonikTRIAL-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
} */
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--bg-dark);
  overflow-x: hidden;
  min-height: 100vh;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--white);
}

:root {
  /* ========== PRIMARY COLORS ========== */
  --primary: #D1D1D1;
  --secondary: #040404;
  --bg-dark: #000;
  --white: #FFFFFF;
  --black: #000000;
  /* ========== TEXT COLORS ========== */
  --text-color: #8B8B8B;
  --text-color-2: var(--secondary);
  --text-white: #ffffff;
  --text-light: #ecf0f1;
  --text-gray: #cccccc;
  --text-muted: #888;
  --text-dark-gray: #666;
  --text-slate: #cbd5e1;
  --text-slate-dark: #64748b;
  --text-secondary: #94a3b8;
  /* ========== ACCENT COLORS ========== */
  --accent-color: #222;
  --accent-color-2: #FFFFFF;
  --accent-color-3: #1F1F1F;
  --accent-color-4: #0E0E0E;
  --accent-color-5: #0404047D;
  --accent-color-6: #22285;
  --accent-transparent: #00000000;
  --accent-transparent-2: #00000073;
  --accent-pink: #1a1a1a;
  --accent-purple-light: #222;
  --accent-purple-dark: #111;
  --accent-purple-medium: #1a1a1a;
  /* ========== SPECIAL COLORS ========== */
  --purple-gradient-light: #333;
  --purple-gradient-dark: #1a1a1a;
  --cyan: #222;
  --gold: #333;
  --gold-light: #33326;
  --blue: #222;
  --blue-light: #1a1a1a;
  --yellow: #333;
  /* ========== GRADIENT COLORS ========== */
  --gradient-purple-pink: #111;
  --gradient-purple-medium: #111;
  /* ========== BOX SHADOWS ========== */
  --box-shadow-top-left: -3px -3px 7px 0px rgba(255, 255, 255, 0.05);
  --box-shadow-bottom-right: 3px 3px 7px 0px rgba(255, 255, 255, 0.05);
  --box-shadow-top-left-wide: -3px -3px 10px 0px rgba(255, 255, 255, 0.05);
  --box-shadow-bottom-right-wide: 3px 3px 10px 0px rgba(255, 255, 255, 0.05);
  /* ========== FONT FAMILIES ========== */
  /* --font-primary: 'Aeonik', sans-serif; */
  --font-family: 'Roboto', sans-serif;
  --font-global: "Plus Jakarta Sans", sans-serif;
  --font-serif: Georgia, serif;
  /* ========== FONT SIZES ========== */
  --fs-xs: 0.75rem;
  --fs-sm: 0.85rem;
  --fs-base: 1rem;
  --fs-md: 1.1rem;
  --fs-lg: 1.2rem;
  --fs-xl: 1.3rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.6rem;
  --fs-4xl: 1.8rem;
  --fs-5xl: 2rem;
  --fs-6xl: 2.5rem;
  --fs-7xl: 2.8rem;
  --fs-8xl: 3.5rem;
  --fs-display: clamp(2.2rem, 6vw, 4rem);
  --fs-display-sm: clamp(2rem, 5vw, 3.5rem);
  --fs-title: 58px;
  --fs-subtitle: 26px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-26: 26px;
  --fs-56: 56px;
  /* ========== BORDER RADIUS ========== */
  --global-border-radius: 25px 25px 25px 25px;
  --br-sm: 8px;
  --br-md: 12px;
  --br-lg: 15px;
  --br-xl: 20px;
  --br-round: 50%;
  --br-full: 50px;
  /* ========== ANIMATIONS ========== */
  --animation-normal: 1.25s;
  /* ========== OTHER VARIABLES ========== */
  --light: #fff;
  --muted: #666;
}

/* ========== UTILITY CLASSES ========== */
.fs-22 {
  font-size: var(--fs-22);
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.fs-20 {
  font-size: var(--fs-20);
  font-weight: 600;
}

.fs-26 {
  font-size: var(--fs-26) !important;
  font-weight: 500;
}

h3 {
  font-size: var(--fs-22);
  font-weight: 600;
}

/* ========== TYPOGRAPHY ========== */
.title {
  font-size: var(--fs-title);
  font-weight: 700;
  color: var(--white);
}

s .sub-title {
  font-size: var(--fs-subtitle);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}

ul li {
  font-size: 18px;
}

a {
  color: var(--white);
  text-decoration: none;
}

p {
  font-size: 18px;
  font-weight: 300;
  /* color:#ffffffde; */
}

a:hover {
  color: var(--white);
  text-decoration: none;
}

.py-70 {
  padding: 70px 0;
}

/* Prevent the SVG icon from being affected by the blend mode */
.logo svg {
  mix-blend-mode: normal;
}

/* swiper slider start */
.swiper {
  width: 100%;
  height: 100%;
}

div#offcanvasRight {
  background: #000;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #444; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
}

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

.hero-video {
  width: 100%;
}

/* Enhanced background colors - Purple/Pink/Green palette */
.neural-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #000;
}

@keyframes backgroundPulse {

  0%,
  100% {
    filter: brightness(0.9) saturate(1.4) hue-rotate(0deg);
  }

  33% {
    filter: brightness(1.1) saturate(1.7) hue-rotate(15deg);
  }

  66% {
    filter: brightness(1) saturate(1.5) hue-rotate(-10deg);
  }
}

/* Floating geometric shapes */
.geometric-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: floatShape 20s linear infinite;
}

.shape:nth-child(1) {
  width: 100px;
  height: 100px;
  left: 10%;
  animation-delay: 0s;
  border-color: rgba(255, 255, 255, 0.05);
}

.shape:nth-child(2) {
  width: 60px;
  height: 60px;
  left: 70%;
  animation-delay: -5s;
  border-radius: 50%;
  border-color: rgba(147, 112, 219, 0.4);
}

.shape:nth-child(3) {
  width: 80px;
  height: 80px;
  left: 30%;
  animation-delay: -10s;
  transform: rotate(45deg);
  border-color: rgba(255, 255, 255, 0.05);
}

.shape:nth-child(4) {
  width: 120px;
  height: 120px;
  left: 50%;
  animation-delay: -15s;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #111111;
}

@keyframes floatShape {
  from {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10%,
  90% {
    opacity: 1;
  }

  to {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Glassmorphism styles */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid #333333;
  /* border-radius: 20px; */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Enhanced Header */
header {
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px 20px;
  background: #000;
}

header.scrolled {
  background: #00000052;
  backdrop-filter: blur(30px);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.logo {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 12px; */
  /* font-size: 24px; */
  /* font-weight: bold; */
  /* text-decoration: none; */
  animation: logoGlow 3s ease-in-out infinite;
  transition: all 0.3s ease;
  z-index: 2;
  color: var(--white);
}

.logo a {
  color: var(--white);
  text-decoration: none;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px var(--purple-gradient-light));
}

@keyframes logoGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 10px var(--purple-gradient-light));
  }

  50% {
    filter: drop-shadow(0 0 20px var(--accent-pink));
  }
}

/* Auth-info */
.expert-card {
  color: #ffffff;
  border-radius: 32px;
  padding: 30px 15px;
  box-shadow: 0 20px 35px -8px rgba(0, 32, 64, 0.12), 0 8px 18px rgba(0, 20, 40, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3607843137);
  margin: 0 auto;
  transition: all 0.2s;
}

.expert-card .auth-img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  overflow: hidden;
  margin: 0 16px 0 0;
}

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

.name-title h2 {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.name-title .sub {
  font-weight: 500;
  font-size: 1.2rem;
  color: #ffffff;
  border-bottom: 3px solid #dbe6f3;
  padding-bottom: 0.75rem;
  display: inline-block;
}

.expert-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.expert-text p {
  font-size: 18px;
}

.expert-text strong {
  color: #ffffff;
  font-weight: 600;
}

.discovery-tag {
  background: #ecf3fd;
  border-radius: 60px;
  padding: 0.3rem 1.4rem;
  font-weight: 600;
  color: #1d4b7c;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid #cddff5;
  margin: 1rem 0 0.8rem 0;
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: #ecf3fd;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e4480;
  font-size: 1.8rem;
}

.attribution-note {
  font-size: 0.9rem;
  color: #ffffff;
  text-align: center;
  margin-top: 1.8rem;
}

@media (max-width: 700px) {
  .expert-card {
    margin-bottom: 16px;
  }
}

.grad-text {
  /* background: #111111; */
  background-size: 200% auto;
  /* color: transparent; */
  background-clip: initial;
  -webkit-background-clip: initial;
  animation: moveGradient 3s linear infinite;
}

@keyframes moveGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Video wrapper for bottom blending gradient */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: #111111;
  pointer-events: none;
  z-index: 3;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Overlay positioned over hero */
.overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.4);
  /* background: #111111; */
  mix-blend-mode: normal;
  top: 0;
  left: 0;
  width: 100%;
  height: 99vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.overlay-content {
  text-align: center;
  color: var(--white);
  max-width: 940px;
  padding: 20px;
  pointer-events: auto;
}

.overlay-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  /* background: #111111; */
  /* -webkit-background-clip: initial; */
  /* background-clip: initial; */
  /* -webkit-text-fill-color: initial; */
  /* text-shadow: 0 0 20px rgba(255, 255, 255, 0.05); */
}

.overlay-content p {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8705882353);
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: 0 0 0 0rem rgba(255, 255, 255, 0.25);
}

.contact-btn {
  background: #111111;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 16px 40px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.05), inset 1px 1px 0 #1a1a1a;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: all 0.3s;
  z-index: -1;
}

.contact-btn:hover {
  transform: translateY(-4px) scale(1.05);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.3); */
  color: #000;
}

.contact-btn:hover::before {
  width: 100%;
}

.read-more-btn {
  background: #111111;
  backdrop-filter: blur(20px);
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 12px 30px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.05), inset 1px 1px 0 #1a1a1a;
  position: relative;
  overflow: hidden;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #111111;
  transition: left 0.5s ease;
}

.read-more-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.read-more-btn:hover::before {
  left: 100%;
}

.nav-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 10px;
  margin-top: 40px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 12px 20px;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: 100%;
  text-align: left;
}

.nav-links a.active {
  color: #333;
  background: #111111;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #111111;
  background-size: 400% 400%;
  border-radius: 17px;
  z-index: -2;
  animation: borderGlow 3s ease infinite;
}

.nav-links a.external-link::after {
  content: " ↗";
  font-size: 0.8em;
  vertical-align: super;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333333;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* Mobile menu active state */
.mobile-nav a.active {
  background: #111111;
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #111111;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: none;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mobile-nav.active {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333333;
  text-align: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #333;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Section 1: Modern Redesigned Hero */
.hero {
  position: relative;
  overflow: hidden;
}

@keyframes heroGlow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
    opacity: 1;
  }
}

.hero-content {
  animation: heroAppear 2.5s ease-out;
  position: relative;
  background: none;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  height: 99vh;
}

@keyframes heroAppear {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes linePulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes modernGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: buttonSlideUp 1.2s ease 1.5s forwards;
}

@keyframes buttonSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #111111;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.cta-button.secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.05);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.05);
}

/* Tech Stack */
.intro-tech {
  text-align: center;
}

.tech-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  text-align: center;
}

.tech-marquee {
  overflow: hidden;
  position: relative;
  padding: 50px 36px 20px;
}

.tech-track {
  display: flex;
  gap: 40px;
}

/* Section 2: Diagonal Features */
.features {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: #111111;
  animation: rotate 20s linear infinite;
  z-index: -1;
}

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

  to {
    transform: rotate(360deg);
  }
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 80px;
  color: #ffffff;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.features-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.diagonal-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  padding: 50px;
  transform: skew(-5deg);
  transition: all 0.4s ease;
}

.feature-content:hover {
  transform: skew(-5deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}

.feature-visual {
  flex: 1;
  height: 300px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
}

.feature-visual:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(224, 163, 255, 0.3);
}

.feature-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111111;
  z-index: 1;
  backdrop-filter: blur(1px);
  transition: all 0.4s ease;
}

.feature-visual:hover::before {
  background: #111111;
}

.feature-row:nth-child(1) .feature-visual {
  background-image: url("images/templatemo-neural-01.jpg");
}

.feature-row:nth-child(2) .feature-visual {
  background-image: url("images/templatemo-neural-02.jpg");
}

.feature-row:nth-child(3) .feature-visual {
  background-image: url("images/templatemo-neural-03.jpg");
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  background: #111111;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}

.feature-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.feature-content p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
}

/* Section 3: Enhanced Hexagonal Showcase */
.showcase {
  padding: 50px 0 130px;
  position: relative;
}

.hexagon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hexagon {
  width: 220px;
  height: 290px;
  position: relative;
  /* margin: 20px; */
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Flip Card Styles */
.flip-card {
  background-color: transparent;
  width: 220px;
  height: 220px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  /* transition: transform 0.6s; */
  /* transform-style: preserve-3d; */
}

/* .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
} */
.flip-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  padding: 25px;
}

.flip-card-front {
  background: #111111;
  border: 1px solid #333;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.05), inset 1px 1px 0 #1a1a1a; */
  color: var(--white);
}

.flip-card:nth-child(even) .flip-card-front {
  background: #111111;
  border: 1px solid #333;
}

/* .flip-card-back {
    background: #1a1a1a29;
    border: 1px solid #1a1a1a;
    color: #ffffff;
    transform: rotateY(180deg);
}

.flip-card:nth-child(even) .flip-card-back {
    background:#1a1a1a29;
    border: 1px solid 1px solid #1a1a1a;
} */
.flip-card-front .hexagon-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  /* filter: drop-shadow(0 0 10px currentColor); */
  background: rgba(255, 255, 255, 0.168627451);
  border-radius: 50px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-dark-gray);
}

.flip-card-front h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 400;
  /* text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); */
}

/* .flip-card-back p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    max-width: 140px;
    word-wrap: break-word;
    hyphens: auto;
}

.hexagon:hover {
    transform: scale(1.1);
} */
/*============== section 4 : portfolio section =============  */
.portfolio img {
  width: 100%;
  border-radius: var(--br-xl);
}

.portfoio-wrap {
  position: relative;
}

.portfolio-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.portfolio.first {
  position: sticky;
  top: 0;
  height: 100%;
}

.portfolio.second {
  position: sticky;
  top: 10px;
  height: 100%;
}

.portfolio.third {
  position: sticky;
  top: 20px;
  height: 100%;
}

.portfolio-content .portfolio-title {
  font-size: 48px;
  color: var(--white);
  font-weight: 700;
  max-width: 55%;
  width: 100%;
  line-height: 65px;
  padding-bottom: 25px;
}

/* ========== ABOUT US SECTION ========== */
.about-us {
  position: relative;
}

.about-left-slider {
  position: sticky;
  top: 100px;
  /* height: 600px; */
  border-radius: var(--br-xl);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  /* overflow: hidden; */
  /* box-shadow: 0 20px 40px rgba(224, 163, 255, 0.3); */
  display: flex;
  flex-direction: column;
}

.aboutSwiper {
  width: 100%;
  height: 100%;
  flex: 1;
}

.about-bottom-sec {
  background: #111111;
  color: var(--white);
  padding: 20px;
  text-align: left;
  border-bottom-left-radius: var(--br-xl);
  border-bottom-right-radius: var(--br-xl);
}

.about-bottom-sec .d-flex {
  gap: 15px;
  margin-bottom: 10px;
}

.about-bottom-sec .about-title {
  margin: 0;
  font-size: var(--fs-20);
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
}

.about-bottom-sec .about-para {
  margin: 0;
  color: #ffffff;
}

.aboutSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.aboutSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-right-content {
  color: #fff;
}

.about-us .about-right-content .content-block .about-rating {
  background: #111111;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.about-media-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  flex-wrap: nowrap;
}

.media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-icon img {
  max-height: 40px;
  width: auto;
  height: 25px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.media-icon img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.content-block {
  padding: 20px;
  color: #e2e2e2;
  font-weight: 100;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.content-block .runing-awards {
  background: var(--gold-light);
  padding: 12px 20px;
  border-radius: var(--br-full);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.about-slide-content {
  position: relative;
}

.about-slide-content img {
  border-radius: 0 0 20px 20px;
}

.about-bottom-sec {
  position: absolute;
  bottom: 0;
  width: 100%
}

.about-slide-content {
  width: 100%;
}

.awardss {
  display: flex;
  gap: 15px;
  flex-flow: wrap;
}

.content-block:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.content-block h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.content-block .about-rating .rating {
  font-size: 24px;
  line-height: 1.7;
  color: var(--white);
  font-weight: 500;
}

.content-block .about-rating .rating-text {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}

@media (max-width: 1299px) {
  .about-media-icon {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .about-split-layout {
    flex-direction: column;
    gap: 40px;
  }

  .about-left-slider {
    position: relative;
    width: 100%;
    top: 0;
  }

  .about-right-content {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .about-media-icon {
    gap: 20px;
  }

  .media-icon img {
    max-height: 28px;
  }
}

/*================ section: 6 tools and technology section ================== */
.tools-tech-sec {
  margin: 100px 0;
}

.container-section {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.container-section::before,
.container-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 350px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.container-section::before {
  left: 0;
  background: #111111;
}

.container-section::after {
  right: 0;
  background: #111111;
}

.marquee {
  overflow: hidden;
  user-select: none;
  display: flex;
  /* transform: rotate(-3deg); */
  width: 100%;
  padding: 20px 0;
}

.marquee ul {
  list-style: none;
  flex-shrink: 0;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: marquee 20s linear infinite;
}

.marquee span {
  color: var(--white);
  font-size: 30px;
  margin: 0 45px;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-100% - 4rem));
  }
}

.container-section-rl {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.container-section-rl::before,
.container-section-rl::after {
  content: "";
  position: absolute;
  top: 0;
  width: 350px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.container-section-rl::before {
  left: 0;
  background: #111111;
}

.container-section-rl::after {
  right: 0;
  background: #111111;
}

.marquee-rl {
  display: flex;
  width: max-content;
  animation: marqueeRL 20s linear infinite;
}

.marquee-rl ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 30px;
}

.marquee-rl li {
  margin: 0 40px;
}

.marquee-rl img {
  height: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Animation */
@keyframes marqueeRL {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

/*================ section: 6 tools and technology section ================== */
/* ========== TESTIMONIAL SECTION ========== */
.testimonial-sec {
  color: var(--white);
  margin: 50px 0;
  position: relative;
}

/* Fixed wrapper section */
.testimonial-wrapper {
  height: 70vh;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.testimonial-container {
  display: grid;
  height: 100%;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* Left side - Content */
.testimonial-content {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.content-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(60px);
  /* Start further down for slower effect */
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  /* Slower, smoother transition */
  pointer-events: none;
  will-change: transform, opacity;
}

.content-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  transition-delay: 0.2s;
  /* Slight delay for staggered effect */
}

.content-slide.exiting {
  opacity: 0;
  transform: translateY(-60px);
  /* Move up when exiting */
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Right side - Images */
.testimonial-images {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-slide {
  position: absolute;
  width: 100%;
  height: 75%;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-100px);
  /* Start further up for slower effect */
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  /* Slower, smoother transition */
  will-change: transform, opacity;
}

.image-slide.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
  /* Slight delay for staggered effect */
}

.image-slide.exiting {
  opacity: 0;
  transform: translateY(180px);
  /* Move down when exiting */
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Testimonial card styling */
.testimonial-card {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px 15px 20px 25px;
  border-left: 8px solid #fff;
}

.testimonial-text {
  font-size: 20px;
  color: #e2e8f0;
  margin-bottom: 40px;
  line-height: 1.8;
  position: relative;
}

.quote-icon {
  position: absolute;
  left: -15px;
  top: -25px;
  font-size: 5rem;
  color: #d962fe;
  opacity: 0.4;
  font-family: Georgia, serif;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 25px;
  border: 4px solid rgba(59, 130, 246, 0.3);
}

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

.client-details h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.client-details p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.rating {
  color: #333;
  font-size: 1.2rem;
}

/* Navigation */
.slide-counter {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  background: rgba(30, 41, 59, 0.9);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  color: #cbd5e1;
}

.counter-current {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0 8px;
}

.counter-total {
  color: #64748b;
  margin: 0 8px;
}

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

  .testimonial-wrapper {
    height: auto;
    min-height: 100vh;
  }

  .testimonial-content {
    padding: 60px 40px;
    height: 50%;
  }

  .testimonial-images {
    height: 50%;
  }
}

/* ============ FAQ Section Styles ============== */
/* FAQ Container */
.faq-container {
  max-width: 980px;
  margin: 0 auto 80px;
  padding: 20px;
}

/* Title */
.faq-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #ffffff;
}

/* Glass Card */
.faq-item {
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #444444;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: 0.4s ease;
}

/* Question */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8705882353);
  letter-spacing: 0.3px;
}

/* Icon */
.faq-icon {
  font-size: 22px;
  transition: transform 0.4s ease;
  color: #fff;
}

/* Answer */
.faq-answer {
  /* max-height: 0; */
  overflow: hidden;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 16px;
  transition: all 0.45s ease;
}

/* Active State */
.faq-item.active .faq-answer {
  /* max-height: 300px; */
  padding: 0 24px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #fff;
}

/* ============ FAQ Section Styles ============== */
/* ========== CONTACT US SECTION ========== */
.left-panel {
  color: var(--white);
  padding: 18px 35px;
  border: 1px solid rgba(255, 255, 255, 0.3098039216);
  border-radius: 10px;
}

.left-panel .person-info {
  border-radius: 12px 12px 0 0;
}

.logo-section {
  margin-bottom: 30px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo-icon {
  background: white;
  color: #222;
  padding: 10px;
  border-radius: 8px;
  margin-right: 12px;
}

.person-info h1 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: white;
}

.person-info h2 {
  font-size: 18px;
  font-weight: 500;
  color: #D5CFE5;
}

.description {
  font-size: 18px;
  color: #ecf0f1;
  text-align: justify;
}

.highlight {
  color: #00ef8e;
  font-weight: 600;
}

.service-tags {
  margin-top: 20px;
}

.service-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details {
  margin-top: 30px;
  font-size: 0.95rem;
}

section.contact-us {
  padding: 50px 0;
}

.contact-details i {
  margin-right: 10px;
  color: #222;
}

.right-panel {
  padding: 30px 35px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3607843137);
  border-radius: 20px;
}

.form-control,
.form-select {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #565656;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.0588235294);
  color: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: #222;
  box-shadow: none;
  background: none;
  color: #fff;
}

.form-label {
  color: #ffffff;
  margin-bottom: 3px;
  font-size: 18px;
}

.form-check-label {
  color: #ffffff;
}

.form-check-input {
  background: #2a2929;
  border: 1px solid #666464;
}

.form-check-input:checked {
  background-color: #2a2929;
}

.captcha-container {
  /* padding: 15px 15px 15px 0; */
  border-radius: 8px;
  margin-bottom: 35px;
}

.captcha-code {
  /* font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 5px;
  color: #fff;
  padding: 0px 14px;
  border-radius: 5px;
  border: 1px dashed #ccc;
  text-align: center; */
}

div#captchaDisplay img {
  height: 100%;
  border-radius: 8px;
}

img[alt=Captcha] {
  cursor: pointer;
}

.captcha-refresh {
  background: none;
  border: none;
  color: #222;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #f0f0f0;
}


.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-radius: 8px;
  border-left: 5px solid #28a745;
  display: none;
}

.alert-success i {
  color: #28a745;
  margin-right: 10px;
}

.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

@media (max-width: 768px) {
  .main-container {
    margin: 15px;
  }

  .left-panel,
  .right-panel {
    padding: 30px 25px;
  }

  .person-info h1 {
    font-size: 1.6rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .captcha-code {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
}

/* ============ Steps process Slider ================= */
.process-container {
  position: relative;
  width: 100%;
  height: 400px;
}

section#process-section h2 {
  margin-bottom: 13%;
}

.center-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.0901960784);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid #fff;
  /* glass border */
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 8px 30px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.11);
}

.center-circle h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}

.center-circle p {
  color: var(--light);
  font-size: 1rem;
}

.step {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.0901960784);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  border: 2px solid gray;
  z-index: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.6;
  filter: grayscale(80%) blur(1px);
  transition: all 0.5s ease;
}

.step-count {
  background: #000;
  position: absolute;
  bottom: -15px;
  border: 1px solid #fff;
  padding: 2px 15px;
  border-radius: 20px;
}

.step-count p {
  margin: 0;
  font-size: 14px;
}

/* Initial muted state */
.step.muted {
  opacity: 0.5;
  filter: grayscale(100%) blur(0.5px);
  border-color: var(--muted);
}

.step.muted .step-icon {
  color: var(--muted);
}

.step.muted .step-title {
  color: var(--muted);
}

/* Active colored state */
.step.active {
  opacity: 1;
  filter: grayscale(0%) blur(0);
  border-color: #fff;
  /* box-shadow:0 0 6px #ffffff; */
}

.step.active .step-icon {
  color: var(--primary);
}

.step.active .step-title {
  color: white;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  transition: color 0.5s ease;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.5s ease;
}

/* Step positions - Half circle from left bottom to right bottom */
#step1 {
  bottom: 50px;
  left: 20%;
}

#step2 {
  bottom: 240px;
  left: 25%;
}

#step3 {
  bottom: 386px;
  left: 37%;
}

#step4 {
  bottom: 386px;
  right: 37%;
}

#step5 {
  bottom: 240px;
  right: 25%;
}

#step6 {
  bottom: 50px;
  right: 20%;
}

.scroll-indicator {
  text-align: center;
  margin-top: 100px;
  color: var(--light);
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--primary);
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

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

  60% {
    transform: translateY(-5px);
  }
}

.instructions {
  text-align: center;
  color: var(--light);
  margin: 30px auto;
  max-width: 800px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .process-container {
    height: 500px;
  }

  #step1 {
    bottom: 50px;
    left: 5%;
  }

  #step2 {
    bottom: 100px;
    left: 20%;
  }

  #step3 {
    bottom: 180px;
    left: 35%;
  }

  #step4 {
    bottom: 180px;
    right: 35%;
  }

  #step5 {
    bottom: 100px;
    right: 20%;
  }

  #step6 {
    bottom: 50px;
    right: 5%;
  }

  .step {
    width: 120px;
    height: 120px;
    padding: 15px;
  }

  .step-icon {
    font-size: 1.8rem;
  }

  .step-title {
    font-size: 0.8rem;
  }
}

.trigger {
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  height: 1px;
}

.left-side .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.left-side .logo img {
  width: 50px;
}

.left-side .side_bar {
  margin: auto;
}

.left-side .follow-us {
  width: 100px;
  /* font-family: "Fjalla One", sans-serif; */
  color: #fff;
  text-align: center;
  transform: rotate(-90deg);
  margin: auto;
  cursor: pointer;
}

.left-side .equalizer {
  margin: auto;
  margin-bottom: 0;
}

aside .social-icon .text {
  font-size: 19px;
  transform: rotate(-90deg);
  font-weight: 800;
  margin-top: 14px;
  /* font-family: 'Fjalla One'; */
  text-transform: uppercase;
  cursor: pointer;
  color: white;
}

aside .social-icon {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
}

aside .social-icon ul li {
  margin-bottom: 15px;
  /* margin-left: 55%; */
}

aside .social-icon ul {
  list-style-type: none;
  padding-left: 1.3rem;
  margin-right: 19%;
}

/* EQUALIZER */
.equalizer {
  width: 26px;
  height: 30px;
  cursor: pointer;
  position: relative;
}

.equalizer span {
  background: #fff;
  width: 2px;
  height: 0px;
  bottom: 0;
  left: 0%;
  display: block;
  position: absolute;
  transition: height 0.2s linear;
}

.equalizer span:nth-child(1) {
  margin-left: 8px;
}

.equalizer span:nth-child(2) {
  margin-left: 16px;
}

.equalizer span:nth-child(4) {
  margin-left: 24px;
}

.equalizer.paused span {
  height: 3px !important;
}


/* services pages css start */

.solution-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(180deg, #797979 0%, #2a1d30 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 700;
}

.our-services-box {
  background: rgba(115, 64, 254, .02);
  border: 1px solid #535353;
  border-radius: 12px;
  padding: 25px;
  min-height: 376px;
  margin-bottom: 20px;
}

/* services pages css end  */

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .feature-row {
    flex-direction: column;
    gap: 40px;
    min-height: 720px;
  }

  .feature-row:nth-child(even) {
    flex-direction: column;
  }

  .feature-content {
    flex: 0;
  }

  .feature-visual {
    height: 250px;
    /* Adjust the height for mobile view */
    width: 100%;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline-line {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-dot {
    left: 30px;
  }

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

@media (max-width: 1000px) {
  header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    padding: 18px 35px;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    margin-top: 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .hero-description p {
    font-size: 1.1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px auto 35px;
  }

  .hero-stat {
    padding: 15px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-subtitle::before,
  .hero-subtitle::after {
    width: 25px;
  }

  .hero-subtitle::before {
    left: -35px;
  }

  .hero-subtitle::after {
    right: -35px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Update the existing hexagon styles for mobile */
  .hexagon {
    width: 280px;
    /* Increased from 180px */
    height: 320px;
    /* Increased from 200px */
    margin: 30px auto;
    /* Center and add more spacing */
  }

  .hexagon-inner {
    padding: 60px 35px;
    /* More padding for larger content area */
  }

  .hexagon-icon {
    font-size: 3.5rem;
    /* Larger icon */
    margin-bottom: 25px;
  }

  .hexagon h4 {
    font-size: 1.6rem;
    /* Larger heading */
    margin-bottom: 20px;
  }

  .hexagon p {
    font-size: 1.1rem;
    /* Larger text */
    max-width: 200px;
    /* More width for text */
    line-height: 1.6;
  }

  .hexagon-container {
    gap: 20px;
    /* Reduce gap since boxes are larger */
  }

  .section-title {
    margin-bottom: 60px;
  }

  .features,
  .showcase,
  .timeline,
  .contact {
    padding: 80px 0;
  }

  .timeline {
    padding: 60px 0;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb:hover {
  background: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* ========================================
   3D VIDEO BUTTON & FULLSCREEN MODAL
   ======================================== */
.request-loader {
  position: relative;
  width: 80px;
  height: 80px;
  border: none;
  background: #111111;
  color: white;
  font-size: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(200, 42, 238, 0.4), -5px -5px 15px rgba(200, 42, 238, 0.3), 5px 5px 15px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(0, 0, 0, 0.3), inset 2px 2px 5px rgba(255, 255, 255, 0.1);
  transform: translateZ(0);
  perspective: 1000px;
}

.request-loader::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: #111111;
  border-radius: 50%;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.6;
}

.request-loader:hover {
  transform: translateY(-5px) scale(1.1) rotateX(10deg) rotateY(-10deg);
  box-shadow: 0 20px 50px rgba(200, 42, 238, 0.6), -8px -8px 20px rgba(200, 42, 238, 0.4), 8px 8px 20px rgba(0, 0, 0, 0.6), inset -2px -2px 8px rgba(0, 0, 0, 0.4), inset 2px 2px 8px rgba(255, 255, 255, 0.15);
}

.request-loader:active {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(200, 42, 238, 0.5), -5px -5px 12px rgba(200, 42, 238, 0.3), 5px 5px 12px rgba(0, 0, 0, 0.4), inset -1px -1px 3px rgba(0, 0, 0, 0.2), inset 1px 1px 3px rgba(255, 255, 255, 0.1);
}

.request-loader i {
  position: relative;
  z-index: 1;
}

/* FULLSCREEN VIDEO MODAL */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(5px);
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  animation: slideUp 0.4s ease;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: 3px solid #222;
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(200, 42, 238, 0.4);
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid #222;
  color: white;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: #222;
  transform: rotate(90deg) scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .request-loader {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -40px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ========== RESPONSIVE DESIGN FOR ALL SECTIONS ========== */
/* TABLET RESPONSIVE (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Showcase Section */
  .showcase {
    padding: 40px 0;
  }

  .hexagon-container {
    gap: 30px;
    padding: 0 15px;
  }

  .hexagon,
  .flip-card {
    width: 180px;
    height: 240px;
  }

  /* Portfolio Section */
  .portfolio-sec {
    padding: 0 20px;
    margin-bottom: 60px;
  }

  .portfolio-sec .portfolio-title {
    font-size: 36px;
    max-width: 70%;
    line-height: 50px;
    padding-bottom: 20px;
  }

  .portfolio-sec .portfolio-content {
    padding: 0 40px;
  }

  .image-pin-sec,
  .image-pin-wrap {
    height: 80vh;
  }

  /* About Us Section */
  .about-us {
    padding: 60px 0;
  }

  .about-left-slider {
    height: 100%;
    margin-bottom: 40px;
  }

  .about-us .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-right-content .content-block {
    padding: 30px;
  }

  /* Tools Tech Section */
  .tools-tech-sec {
    margin: 60px 0;
  }

  .marquee span {
    font-size: 24px;
    margin: 0 30px;
  }

  .container-section::before,
  .container-section::after {
    width: 250px;
  }

  /* Process Section */
  .process-container {
    height: 450px;
    margin: 150px auto 100px;
  }

  .center-circle {
    width: 250px;
    height: 250px;
  }

  .center-circle h2 {
    font-size: 42px;
  }

  .step {
    width: 130px;
    height: 130px;
  }

  #step1 {
    bottom: 40px;
    left: 10%;
  }

  #step2 {
    bottom: 120px;
    left: 20%;
  }

  #step3 {
    bottom: 200px;
    left: 30%;
  }

  #step4 {
    bottom: 200px;
    right: 30%;
  }

  #step5 {
    bottom: 120px;
    right: 20%;
  }

  #step6 {
    bottom: 40px;
    right: 10%;
  }

  /* Testimonial Section */
  .testimonial-wrapper {
    height: auto;
    max-height: none;
  }

  .testimonial-container {
    flex-direction: column;
  }

  .testimonial-content {
    padding: 50px 40px;
    flex: 0 0 auto;
  }

  .testimonial-images {
    flex: 0 0 350px;
  }

  /* Success Stories Section */
  .success-stories-slider-section .container-gallery {
    gap: 2rem;
    flex-direction: column;
  }

  .success-stories-slider-section .benefit-container {
    width: 100%;
  }
}

/* MOBILE RESPONSIVE (Below 768px) */
@media (max-width: 767px) {

  /* Showcase Section */
  .showcase {
    padding: 30px 0;
  }

  .hexagon-container {
    gap: 15px;
    padding: 0 10px;
    flex-direction: column;
  }

  .hexagon,
  .flip-card {
    width: 160px;
    height: 220px;
    margin: 10px auto;
  }

  /* Portfolio Section */
  .portfolio-sec {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .portfolio-sec .portfolio-title {
    font-size: 24px;
    max-width: 100%;
    line-height: 35px;
    padding-bottom: 15px;
  }

  .portfolio-sec .portfolio-content {
    padding: 0 20px;
  }

  .image-pin-sec,
  .image-pin-wrap {
    height: 60vh;
    min-height: 400px;
  }

  .contact-btn {
    padding: 12px 25px;
    font-size: 0.85rem;
  }

  /* About Us Section */
  .about-us {
    padding: 40px 0;
  }

  .about-left-slider {
    position: relative;
    top: auto;
    margin-bottom: 30px;
  }

  .about-us .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-right-content .content-block {
    padding: 20px;
    margin-bottom: 30px;
  }

  .about-media-icon {
    gap: 20px;
  }

  .media-icon img {
    max-height: 30px;
  }

  /* Tools Tech Section */
  .tools-tech-sec {
    margin: 40px 0;
  }

  .marquee span {
    font-size: 18px;
    margin: 0 20px;
  }

  .container-section::before,
  .container-section::after {
    width: 10%;
  }

  .container-section-rl::before,
  .container-section-rl::after {
    width: 10%;
  }

  /* Process Section */
  .process-container {
    height: 600px;
    margin: 100px auto 60px;
  }

  .center-circle {
    width: 200px;
    height: 200px;
  }

  .center-circle h2 {
    font-size: 32px;
  }

  .center-circle p {
    font-size: 0.85rem;
  }

  .step {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .step-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .step-title {
    font-size: 0.75rem;
  }

  #step1 {
    bottom: 30px;
    left: 5%;
  }

  #step2 {
    bottom: 80px;
    left: 15%;
  }

  #step3 {
    bottom: 160px;
    left: 25%;
  }

  #step4 {
    bottom: 160px;
    right: 25%;
  }

  #step5 {
    bottom: 80px;
    right: 15%;
  }

  #step6 {
    bottom: 30px;
    right: 5%;
  }

  /* Testimonial Section */
  .testimonial-sec {
    margin: 40px 0;
  }

  .testimonial-wrapper {
    height: auto;
    max-height: none;
    border-radius: 16px;
  }

  .testimonial-container {
    flex-direction: column;
  }

  .testimonial-content {
    padding: 30px 20px;
    flex: 0 0 auto;
  }

  .testimonial-images {
    flex: 0 0 300px;
  }

  .image-slide {
    width: 100%;
  }

  /* Success Stories Section */
  .success-stories-slider-section {
    margin: 60px 0 0;
  }

  .success-stories-slider-section .container-gallery {
    gap: 1rem;
    flex-direction: column;
    padding: 0 15px;
  }

  .success-stories-slider-section .benefits-gallery {
    max-width: 100%;
    height: 300px;
  }

  .success-stories-slider-section .swiper-benefits-thumb {
    height: 60%;
  }

  .success-stories-slider-section .benefit-container {
    width: 100%;
    max-width: 100%;
  }

  .success-stories-slider-section .slide-controls .slide-control-button {
    padding: 0px 5px;
    font-size: 18px;
  }
}

/* ========== CTA SECTION ========== */
.cta-sec {
  position: relative;
  background: #19191991;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .cta-sec .container-section {
    width: 100%;
    display: flex;
    justify-content: center;
} */
.cta-content {
  text-align: center;
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}

.cta-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.cta-para {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
}

/* Letter-by-letter animation with fade effect */
.cta-title,
.cta-para,
.cta-content .contact-btn {
  opacity: 0;
  animation: letterReveal 1.2s ease-out forwards;
}

.cta-title {
  animation-delay: 0.2s;
}

.cta-para {
  animation-delay: 0.8s;
}

.cta-content .contact-btn {
  animation-delay: 1.4s;
  display: inline-block;
}

@keyframes letterReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }

  50% {
    opacity: 0.5;
    filter: blur(5px);
  }

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

/* AOS triggered animation for scroll reveal */
.cta-sec[data-aos=fade-up].aos-animate .cta-title,
.cta-sec[data-aos=fade-up].aos-animate .cta-para,
.cta-sec[data-aos=fade-up].aos-animate .contact-btn {
  animation: letterReveal 1.2s ease-out forwards !important;
}

.cta-sec[data-aos=fade-up].aos-animate .cta-title {
  animation-delay: 0.2s !important;
}

.cta-sec[data-aos=fade-up].aos-animate .cta-para {
  animation-delay: 0.8s !important;
}

.cta-sec[data-aos=fade-up].aos-animate .contact-btn {
  animation-delay: 1.4s !important;
}

/* Responsive CTA Section */
@media (max-width: 768px) {
  .cta-sec {
    padding: 60px 0;
    min-height: 400px;
  }

  .cta-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .cta-para {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-content {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .cta-sec {
    padding: 40px 0;
    min-height: 300px;
  }

  .cta-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .cta-para {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

/* Service Accordian */
.service-title {
  display: flex;
  align-items: center;
  position: relative;
}

.service-title .serv-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border-image-source: none;
  object-fit: cover;
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  border: 1px solid #333333;
  margin-right: 10px;
}

/* .service-box:hover .service-title .serv-icon {
    width: 75px !important;
    background: #222222;
    margin-right: 10px;
} */
.service-box {
  padding: 10px 0;
  transition: all 0.5s;
  cursor: pointer;
  margin-bottom: 10px;
  background: #000000;
  border: 1px solid #222222;
  padding: 15px;
  border-radius: 10px;
}

.service-box .service-title h3 {
  font-size: var(--fs-26);
  color: #ffffffb3;
}

/* .service-box:hover {
    height: 150px;
} */
.service-btn {
  position: absolute;
  right: 0;
  border: 1px solid #ffffff;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.serv-icon img {
  height: 40px;
}

.service-btn a img {
  filter: brightness(0) invert(1);
}

.service-box:hover .service-btn a img {
  filter: brightness(0.1);
}

.service-btn a img {
  height: 15px;
}

.service-box:hover .service-btn {
  background: #fff;
}

.service-des p {
  margin: 0;
  /* font-size: 16px; */
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8705882353);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.col-md-6.right-pd {
  padding: 0 25px 0 0;
}

/* Footer */
footer {
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, #000000 0%, #2b2b2b 100%);
}

.footer-contact.first {
  padding-left: 10%;
}

.footer-logo p {
  font-weight: 500;
}

.footer-logo img {
  margin-bottom: 20px;
}

.footer-logo p {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8705882353);
}

.footer-logo img {
  margin-bottom: 20px;
}

.footer-btn a {
  color: rgba(255, 255, 255, 0.8705882353);
  /* background: rgba(237, 228, 255, 0.1215686275); */
  padding: 10px 10px;
  border-radius: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.footer-btn a i {
  background: rgba(255, 255, 255, 0.1294117647);
  padding: 5px;
  height: 35px;
  width: 35px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-btn {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  width: 100%;
}

.footer-contact h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-contact h4 i {
  margin-right: 8px;
}

.footer-contact.first {
  position: relative;
}

.footer-menu {
  border-top: 1px solid #ffffff0d;
  margin-top: 35px;
  padding: 30px 0;
}

ul.footer-menu-list li {
  list-style: none;
  margin-bottom: 8px;
}

ul.footer-menu-list {
  padding: 0;
}

.footer-menu-item h4 {
  color: rgba(255, 255, 255, 0.8705882353);
  font-size: 26px;
  font-weight: 600;
}

ul.footer-menu-list li a {
  color: rgba(255, 255, 255, 0.8705882353);
  font-weight: 500;
  font-size: 18px;
}

.container-fluid.gap-side {
  padding: 0 50px;
}

.footer-review {
  padding: 10px 0;
  border-top: 1px solid #ffffff0d;
}

.footer-review .left-content p {
  margin: 0;
}

.footer-review .left-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.right-review img {
  height: 45px;
}

.right-review {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: end;
}

.footer-social ul li a i {
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  color: #fff;
}

.footer-bottom .footer-menu-list {
  display: flex;
  gap: 6%;
  margin: 0;
  justify-content: end;
}

.footer-social ul li {
  list-style: none;
}

.footer-social ul {
  display: flex;
  gap: 5%;
  justify-content: end;
  padding: 0;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12%;
  align-items: center;
}

.copyright {
  display: flex;
  gap: 6%;
}

.copyright p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.footer-bottom .footer-menu-list li {
  margin: 0;
}

.footer-social p {
  margin: 0;
}

.footer-bottom {
  padding: 10px 0;
  /* background: #2727277a; */
}

.footer-social ul li a {
  font-size: 25px;
  display: flex;
  align-items: center;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8705882353);
}

.footer-menu-list li {
  display: block;
}

.footer-menu-list li.hidden-item {
  display: none;
}

/* Header */
/* Mobile Menu */
.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu li a:hover {
  color: #6F41D2;
}

/* Dropdown Parent */
.has-dropdown {
  position: relative;
}

/* Submenu (IMPORTANT PART) */
.submenu {
  list-style: none;
  padding-left: 15px;
  margin: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* Submenu Links */
.submenu li a {
  font-size: 20px;
  padding: 10px 0;
  color: #ddd;
  transition: 0.3s;
}

.submenu li a:hover {
  color: #9B6BFF;
}

/* Open Dropdown (Hover + Click Support) */
.has-dropdown:hover .submenu,
.has-dropdown.active .submenu {
  height: 200px;
  /* adjust if needed */
  overflow: auto;
  opacity: 1;
  transform: translateY(0);
}

/* Plus Minus Icon */
.icon {
  font-size: 20px;
  transition: 0.3s;
}

.icon::before {
  content: "+";
}

/* Change to Minus */
.has-dropdown:hover .icon::before,
.has-dropdown.active .icon::before {
  content: "-";
}

/* Rotate Icon Smoothly */
.has-dropdown:hover .icon,
.has-dropdown.active .icon {
  transform: rotate(180deg);
}

/* Contact Button */
.external-link {
  background: #111111;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 12px;
  display: inline-block;
  text-align: center;
  color: #fff !important;
  font-weight: 600;
}

.captcha-box {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 14px;
}

.person-info .auth {
  background: rgba(255, 255, 255, 0.0588235294);
  padding: 30px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3098039216);
  border-radius: 10px;
}

.person-info .auth .auth-img {
  height: 130px;
  width: 130px;
  margin: auto;
  margin-bottom: 12px;
}

.person-info .auth .auth-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #000;
}

.process-content {
  position: absolute;
  width: 26%;
  height: 300px;
  overflow: hidden;
  top: 12%;
  right: 37%;
  background: #111111;
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 80px 0 80px 0;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  opacity: 0;
}

/* Show content on step hover */
#step1:hover~.process-content.one,
#step2:hover~.process-content.two,
#step3:hover~.process-content.three,
#step4:hover~.process-content.four,
#step5:hover~.process-content.five,
#step6:hover~.process-content.six {
  /* display: block; */
  opacity: 1;
}

.step-icon img {
  height: 45px;
}

.process-content p {
  font-size: 18px;
  text-align: center;
  margin: 0;
}

.tech-marquee {
  overflow: hidden;
  width: 100%;
}

.tech-track {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
  width: fit-content;
}

.tech-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.tech-item img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.tech-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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

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

/* Pause on hover */
.tech-marquee:hover .tech-track {
  animation-play-state: paused;
}

.offcanvas {
  height: 100vh;
}

/* Value */
.value-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.value-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.value-item {
  position: relative;
  overflow: hidden;
}

.value-content {
  position: absolute;
  content: "";
  bottom: 0;
  background: rgb(44 7 57 / 89%);
  height: 100%;
  width: 100%;
  padding: 60px 40px;
  transition: all 0.5s;
}

.value-content h3 {
  margin-bottom: 25px;
}

/* .value-item:hover .value-content {
    bottom: 0;
    padding: 60px 40px;
} */
.value-points ul li {
  list-style: none;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 300;
}

.value-content.one {
  background: rgb(0 0 0 / 87%);
}

.value-content.three {
  background: rgb(0 0 0 / 84%);
}

.work-content h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* New Header */
.header-menu nav ul {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.header-menu nav ul li {
  list-style: none;
}

.header-menu nav ul li a {
  display: inline-block;
  font-size: 18px;
  padding: 5px 10px;
  font-weight: 600;
}

.header-menu {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 40px;
}

.about-us .swiper-pagination {
  display: none;
}

.users-img img {
  height: 55px;
}

.users-img {
  text-align: center;
  margin-bottom: 8px;
}

/* header for mobile  */
.offcanvas {
  background: #000;
  color: white;
}

.offcanvas .offcanvas-body .header-menu-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
  margin-top: 20px;
  border-top: 1px solid white;
  padding-top: 20px;
}

.offcanvas .offcanvas-body .header-menu-mobile ul li {
  list-style: none;
}

.offcanvas .offcanvas-body .header-menu-mobile ul li a {
  display: inline-block;
  font-size: 18px;
  padding: 5px 10px;
  font-weight: 600;
}

.offcanvas .offcanvas-body .header-menu-mobile {
  display: flex;
  flex-direction: column;
  justify-content: start;
  /* align-items: center; */
}

/* Contact Page */
section.contact-wrap {
  padding: 130px 0 30px;
  position: relative;
}

img.bg-layer1 {
  position: absolute;
  top: 10%;
  right: 0;
  height: 50%;
  z-index: 0;
}

img.bg-layer2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

img.bg-layer3 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 2;
}

.contact-form {
  position: relative;
  z-index: 9;
  background: #000;
  width: 100%;
  padding: 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.4196078431);
  border-radius: 15px;
}

.contact-detail {
  position: relative;
  z-index: 9;
  background: rgba(255, 255, 255, 0.0509803922);
  padding: 48px 25px;
  border: 1px solid rgba(255, 255, 255, 0.4196078431);
  border-radius: 15px;
}

.full-wrap {
  background: #000;
  position: relative;
}

.contact-form h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-input input {
  background: rgba(246, 243, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.2901960784);
  padding: 10px 15px;
  border-radius: 15px;
  width: 100%;
  color: #fff;
}

.contact-input {
  margin-bottom: 20px;
}

.contact-input textarea {
  background: rgba(246, 243, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.2901960784);
  padding: 10px 15px;
  border-radius: 15px;
  width: 100%;
  color: #fff;
}

/* .contact-input input::placeholder {
    color: #ffffffc2;
}

.contact-input textarea::placeholder {
    color: #ffffffc2;
} */
.group-img img {
  height: 90px;
}

.group-img {
  margin-bottom: 10%;
}

.contact-title h4 {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-title p {
  color: #D5CFE5;
}

.contact-title {
  margin-bottom: 12%;
}

.cap-input {
  width: 200px;
}

.captcha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

button.contact-btn.w-full {
  width: 100%;
}

@media (max-width: 567px) {
  .captcha {
    display: flow;
  }
}

/* Breadcurmb */
.service-info-img img {
  width: 100%;
}

.service-info-img {
  background: #111111;
  padding: 25px;
  border-radius: 20px;
}

section.service-info {
  padding: 60px 0;
}

.info-title h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.service-info-content p {
  color: #E8E8E8;
}

.info-title {
  margin-bottom: 25px;
}

.service-icon img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  padding: 5px;
}

.service-icon {
  background: #111111;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.service-btn-icon img {
  height: 35px;
  filter: brightness(0) invert(1);
  transition: all 0.5s;
}

.service-items:hover .service-btn-icon img {
  filter: none;
}

.service-items-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.service-items-content .service-title {
  font-weight: 600;
  border-bottom: 1px solid rgba(232, 232, 232, 0.2509803922);
  padding: 10px 0;
}

.service-items-content p {
  color: #E8E8E8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .service-items {
  background: #111111;
  padding: 20px;
  border-radius: 20px;
} */

.service-items {
  position: relative;
  overflow: hidden;
  background: #1f1f1f;
  padding: 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* BASE HOVER BG */
.service-items:hover {
  background: linear-gradient(135deg,
      rgba(137, 52, 90, 0.35) 0%,
      rgba(80, 0, 255, 0.18) 40%,
      rgba(0, 0, 0, 1) 100%);

  transform: translateY(-5px);
}

/* TOP RIGHT SHINING GLOW */
.service-items::before {
  content: "";

  position: absolute;
  top: -80px;
  right: -80px;

  width: 180px;
  height: 180px;

  background: radial-gradient(circle,
      rgba(255, 0, 140, 0.5) 0%,
      rgba(137, 52, 90, 0.25) 35%,
      transparent 70%);

  opacity: 0;

  transition: all 0.5s ease;

  filter: blur(25px);

  pointer-events: none;
}

/* BOTTOM LEFT GLOW */
.service-items::after {
  content: "";

  position: absolute;
  bottom: -80px;
  left: -80px;

  width: 180px;
  height: 180px;

  background: radial-gradient(circle,
      rgba(0, 198, 255, 0.45) 0%,
      rgba(0, 198, 255, 0.12) 40%,
      transparent 70%);

  opacity: 0;

  transition: all 0.5s ease;

  filter: blur(30px);

  pointer-events: none;
}

/* SHOW GLOWS ON HOVER */
.service-items:hover::before,
.service-items:hover::after {
  opacity: 1;
}

/* EXTRA SHINE ANIMATION */
.service-items:hover::before {
  animation: shineMove 3s ease-in-out infinite;
}

/* ANIMATION */
@keyframes shineMove {

  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15) translate(-10px, 10px);
    opacity: 1;
  }

  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.7;
  }
}

.service-section {
  padding: 60px 0;
}

/* Feature Blog */
.featured-blogs {
  margin: 0 auto;
}

.featured-blogs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
}

.featured-blog-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.featured-blog-thumbnail {
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.featured-blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-blog-card:hover .featured-blog-thumbnail img {
  transform: scale(1.1);
}

.featured-blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.featured-blog-category {
  background: #111111;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.featured-blog-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.featured-blog-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.81);
  font-size: 14px;
  width: 232px;
}

.featured-blog-meta:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.4588235294);
  left: 47%;
}

.featured-blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-blog-meta i {
  font-size: 12px;
}

.featured-blog-card.b-b {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}

.featured-blog-card.b-r {
  border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
}

/* Responsive */
@media (max-width: 991px) {
  .featured-blogs-grid {
    grid-template-columns: 1fr;
  }

  .featured-blog-card.b-r {
    border-right: none;
  }

  .featured-blog-card.b-r {
    border-right: none;
  }

  .featured-blog-card.b-b {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .featured-blog-card {
    flex-direction: column;
  }

  .featured-blog-thumbnail {
    width: 100%;
    height: 200px;
  }

  .featured-blogs-title {
    font-size: 24px;
  }

  .featured-blog-heading {
    font-size: 16px;
  }

  .category-img img {
    height: 100% !important;
  }
}

@media (max-width: 585px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .featured-blog-thumbnail {
    height: 100%;
  }
}

/* 
blog-category */
.tabs-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid #333333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.tab-btn.active {
  background: #111111;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(171, 62, 182, 0.3);
}

/* Content Area */
.category-img img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  border-radius: 10px;
}

.content-card {
  opacity: 0;
  transform: translateY(0) scale(0.95);
  display: none;
}

.content-card.show {
  display: block;
}

.content-card.visible {
  opacity: 1;
}

.content-card.hide {
  opacity: 0;
}

.card-category {
  display: inline-block;
  background: #111111;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 10px 0;
}

.card-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin: 10px 0;
  padding: 0 15px;
}

.card-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.blog-more-btn a {
  border: 1px solid rgba(255, 255, 255, 0.3215686275);
  display: inline-block;
  width: 100%;
  background: rgba(255, 255, 255, 0.1215686275);
  padding: 10px;
  font-size: 18px;
  border-radius: 5px;
}

.blog-more-btn {
  text-align: center;
  margin: 15px 0;
}

section.blog-categories {
  padding: 60px 0;
}

/* New Blog */
.new-blog-img img {
  width: 100%;
  border-radius: 10px;
}

.new-blog-content .blog-bottom {
  padding: 0;
}

.new-top {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: dashed;
  border-color: rgba(255, 255, 255, 0.5803921569);
}

.new-top p {
  margin: 0;
  background: rgba(62, 56, 73, 0.7294117647);
  border-radius: 6px;
  padding: 3px 22px;
}

.new-blog-content {
  background: #19191991;
  margin-top: 10px;
  padding: 15px;
  border-radius: 10px;
}

.cover-blog {
  background: rgba(0, 0, 0, 0.2117647059);
  padding: 0 0 15px 0;
  border-radius: 10px;
}

.cover-blog p {
  padding: 0 5px 0 15px;
  color: #E8E8E8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.blog-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.cover-blog:hover .service-btn-icon img {
  filter: none;
}

.new-bottom h4 {
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-bottom p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-blog-content p {
  color: #E8E8E8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
}

.blog-btn {
  display: flex;
  margin-bottom: 20px;
}

/* Recognised */
.recognised-box {
  padding: 20px 15px;
  background: rgba(0, 0, 0, 0.4392156863);
  border-radius: 10px;
}

.recognised-content p {
  margin: 0;
  font-size: 20px;
}

.recognised-logo img {
  height: 55px;
}

.recognised-logo {
  text-align: center;
  margin-bottom: 10px;
}

.recognised-content {
  text-align: center;
}

.recognised-box.middle {
  min-height: 145px;
  display: flex;
  width: 100%;
  align-items: center;
}

.recognised-logo.mid img {
  max-width: 100%;
}

.recognised-content.cent {
  border-left: dashed;
  border-color: rgba(255, 255, 255, 0.3294117647);
  padding-left: 16px;
  text-align: left;
  width: 65%;
}

.recognised-content.cent img {
  height: 20px;
  margin-bottom: 10px;
}

.recognised-logo.mid {
  width: 35%;
  padding-right: 10px;
}

/* Mission-Vision */
.vision-item {
  background: url(../../assets/images/bg/vision-bg.png);
  background-size: cover;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
}

.mission-item {
  padding: 25px;
  background: rgba(0, 0, 0, 0.4784313725);
  border-radius: 10px;
}

.vision-item h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
}

.mission-item h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
}

.mission-item .mission-list li {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px;
}

ul.mission-list {
  margin-bottom: 35px;
}

.vision-point h6 img {
  height: 30px;
}

.vision-point h6 {
  font-size: 18px;
  font-weight: 600;
}

/* Breadcurmb */
section.breadcrumb {
  position: relative;
  padding: 135px 0 50px;
  overflow: hidden;
  background: url(../../assets/images/bg/bread-bg.png);
  background-size: cover;
  background-repeat: no-repeat
}

img.bread-layer1 {
  left: 0;
  position: absolute;
  bottom: 0;
}

img.bread-layer2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* img.bread-layer3 {
    position: absolute;
    bottom: 0;
    top: 16%;
    width: 100%;
} */
.breadcrumb-content {
  position: relative;
  z-index: 9;
  text-align: center;
}

.breadcrumb-content h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.breadcrumb-content p {
  color: #D5CFE5;
}

.trusted img {
  height: 40px;
}

.trusted {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.trusted p {
  margin: 0;
}

.trusted {
  margin-top: 25px;
}

.breadcrumb-content button {
  margin-top: 20px;
}

/* ===== New Testimonial slider ===== */
.new-testi-slid-section {
  padding: 80px 0;
  position: relative;
}

.new-testi-slid-carousel .owl-stage-outer {
  overflow: visible;
}

.new-testi-slid-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.new-testi-slid-carousel .owl-item {
  transition: 0.5s ease;
  height: 381px;
  flex: 0 0 600px !important;
}

.new-testi-slid-card {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.5s ease;
  background: #111111;
  border: 4px solid rgb(238, 238, 238);
}

.new-testi-slid-image {
  flex: 0 0 280px;
}

.new-testi-slid-image img {
  width: 260px;
  height: 470px;
  object-fit: cover;
  /* border-radius: 25px; */
  display: block;
}

.new-testi-slid-content {
  /* flex: 0 0 0; */
  overflow: hidden;
  background: #111111;
  color: #fff;
  padding: 0;
  /* opacity: 0; */
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  flex: 0 0 280px;
  padding: 15px;
}

.new-testi-slid-content h4 {
  margin-bottom: 10px;
}

.new-testi-slid-role {
  font-size: 16px;
  /* padding-bottom: 15px; */
  opacity: 0.8;
  border-bottom: 1px solid #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  word-break: break-word;
}

.word-wrap {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  word-break: break-word;
}

.new-testi-slid-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.new-testi-slid-carousel .owl-item:hover {
  /* flex: 0 0 600px !important; */
  /* z-index: 9; */
}

.new-testi-slid-carousel .owl-item:hover .new-testi-slid-image {
  flex: 0 0 280px;
}

.new-testi-slid-carousel .owl-item:hover .new-testi-slid-content {
  /* flex: 0 0 280px; */
  /* padding: 16px; */
  /* opacity: 1; */
}

.new-testi-slid-carousel .owl-item:hover .new-testi-slid-image img {
  border-radius: 25px 0 0 25px;
}

.new-testi-slid-item {
  height: 100%;
}

.testi-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111111;
  color: #fff;
  padding: 10px;
  border-radius: 0 0 25px 25px;
}

.testi-overlay h4 {
  margin: 0;
  font-size: 16px;
}

.testi-overlay p {
  margin: 0;
  font-size: 14px;
}

.mobile-testi-slid-carousel {
  display: none !important;
}

.mob-process-sec {
  display: none;
}

.new-testi-slid-carousel .owl-stage {
  transition-timing-function: linear !important;
}

.new-testi-slid-image {
  width: 280px !important;
}

section {
  overflow: hidden;
}

.header-btn button {
  font-size: 14px;
  padding: 10px 20px;
  background: linear-gradient(88.38deg, #ee3232 0%, #f2bb11 189.84%);
}


/* Why-Choose Us */
.why-icon {
  height: 70px;
  width: 70px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

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

.why-item {
  background: #181818a3;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
}

.why-item.first .why-icon {
  background: #13B7FD;
}

.why-item.first p {
  border-bottom: 1px solid #13B7FD;
}

.why-item.first ul li i {
  color: #13B7FD;
}

.why-item.second .why-icon {
  background: #00DCBF;
}

.why-item.second p {
  border-bottom: 1px solid #00DCBF;
}

.why-item.second ul li i {
  color: #00DCBF;
}

.why-item.third .why-icon {
  background: #b34646;
}

.why-item.third p {
  border-bottom: 1px solid #b34646;
}

.why-item.third ul li i {
  color: #b34646;
}

.why-item p {
  margin: 0;
  font-size: 16px;
  padding-bottom: 10px;
  padding-top: 10px;
}

ul.why-list {
  padding: 0;
  margin-top: 20px;
}

ul.why-list li {
  list-style: none;
  margin-bottom: 12px;
}

section.choose-us h2 {
  margin-bottom: 35px;
}


.tool-img {
  padding: 10px;
  background: #75757536;
  border-radius: 10px;
  text-align: center;
}

.tool-img img {
  filter: brightness(0.7);
  height: 45px;
  object-fit: contain;
  width: 100%;
}

.col-row8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width: 50%;
}

.col-row1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width: 90%;
}

.col-row2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.col-row3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width: 80%;
}

.col-row4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width: 85%;
}

.col-row5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 70%;
  gap: 10px;
}

.col-row6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width: 75%;
}

.col-row7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width: 65%;
}


/* team-work */

.work-item {
  background: #00000026;
  padding: 15px;
  border: 0.6px solid #ffffff2e;
  border-radius: 15px;
  margin-bottom: 25px;
  min-height: 395px;
}

.team-icon {
  background: #222;
  height: 60px;
  width: 60px;
  margin: auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-icon img {
  height: 30px;
}

.team-count {
  background: #ffffff1f;
  border: 1px solid #fff;
  position: absolute;
  top: -6px;
  right: -15px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-work-text {
  text-align: center;
  min-height: 220px;
}

.team-work-text p {
  font-size: 18px;
}

.team-work-text h3 {
  margin: 15px 0;
  font-weight: 600;
  font-size: 20px;
}

.work-item.line {
  position: relative;
}

.work-item.line:before {
  position: absolute;
  content: "";
  height: 4px;
  width: 24px;
  background: #222;
  right: -25px;
  top: 14%;
}




@media (max-width: 1024px) {
  section.breadcrumb {
    padding: 115px 0 40px;
  }

  .breadcrumb-content h1 {
    font-size: 32px;
  }

  .breadcrumb-content p {
    max-width: 720px;
    margin: 0 auto;
  }

  .breadcrumb-content button {
    padding: 0.8rem 1.3rem;
    font-size: 16px;
  }
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
  section.breadcrumb {
    padding: 100px 0 35px;
  }

  .breadcrumb-content h1 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .breadcrumb-content p {
    line-height: 1.5;
  }

  .breadcrumb-content button {
    width: 100%;
    max-width: 320px;
  }

  footer {
    padding: 40px 0 0;
  }

  .container-fluid.gap-side {
    padding: 0 20px;
  }

  .footer-contact.first {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-logo img {
    margin-bottom: 15px;
  }

  .footer-btn {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .footer-btn a {
    /* justify-content: center; */
    font-size: 14px;
    padding: 8px 12px;
  }

  .footer-btn a i {
    height: 35px;
    width: 35px;
    font-size: 14px;
  }

  .footer-contact h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-menu {
    padding: 20px 0;
    margin-top: 25px;
  }

  .footer-menu-item {
    margin-bottom: 30px;
  }

  .footer-menu-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  ul.footer-menu-list li a {
    font-size: 16px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-social {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-social ul {
    justify-content: center;
  }

  .footer-bottom .footer-menu-list {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .right-review {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .new-testi-slid-item:hover .testi-overlay {
    display: none !important;
  }
}

@media (max-width: 480px) {
  section.breadcrumb {
    padding: 90px 0 30px;
  }

  .breadcrumb-content h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .breadcrumb-content p {
    max-width: 100%;
  }

  .breadcrumb-content button {
    font-size: 15px;
    padding: 10px 14px;
  }

  .container-fluid.gap-side {
    padding: 0 15px;
  }

  .footer-logo p {
    font-size: 14px;
  }

  .footer-contact h4 {
    font-size: 18px;
  }

  .footer-contact p {
    font-size: 14px;
  }

  .footer-menu-item h4 {
    font-size: 20px;
  }

  ul.footer-menu-list li a {
    font-size: 14px;
  }

  .footer-btn a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .footer-btn a i {
    height: 30px;
    width: 30px;
    font-size: 12px;
  }
}

/* Home */
@media (max-width: 1400px) {
  .hero-content {
    height: 100%;
  }

  .overlay {
    height: 100%;
  }

  .service-items {
    min-height: 350px;
  }

  .cover-blog {
    min-height: 455px;
  }

  .contact-detail {
    padding: 36px 25px;
  }

  .work-item {
    min-height: 420px;
  }

}

@media (max-width: 1227px) {
  .header-menu {
    gap: 17px;
  }

}

@media (max-width: 1200px) {
  .value-content {
    padding: 30px 15px;
  }

  .footer-contact.first {
    padding-left: 0;
  }

  .footer-btn {
    width: 215px;
  }

  .cover-blog {
    min-height: 100%;
  }

  .contact-detail {
    padding: 45px 25px;
  }

  .offcanvas-header {
    justify-content: end;
  }

  .tool-img img {
    height: 38px;
  }

  .work-item {
    min-height: 476px;
  }


  .col-row8 {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }

  .col-row1 {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }

  .col-row2 {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }

  .col-row3 {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }

  .col-row4 {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }

  .col-row5 {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }

  .col-row6 {
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  }

  .col-row7 {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  }
}

@media (max-width: 1100px) {
  .process-container {
    display: none;
  }

  .mob-process-sec {
    display: block;
  }

  section#process-section h2 {
    margin-bottom: 5%;
  }

  .mob-process-img img {
    height: 30px;
  }

  .mob-process-item {
    background: #191919;
    padding: 15px 10px;
    margin-bottom: 15px;
    border-radius: 15px;
    position: relative;
    min-width: 136px;
    min-height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.368627451);
  }

  .mob-process-title h4 {
    font-size: 18px;
  }

  .mob-step {
    position: absolute;
    top: 7px;
    right: 5px;
  }

  .mob-step p {
    margin: 0;
    font-size: 12px;
    background: #000;
    border: 1px solid #fff;
    padding: 2px 10px;
    border-radius: 10px;
  }

  .mob-process-img {
    margin-bottom: 15px;
    height: 50px;
    width: 50px;
    background: rgba(255, 255, 255, 0.168627451);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 5px;
  }

  .mob-process-item:hover {
    background: #111111;
  }

  .mob-process-item:hover .mob-step p {
    background: none;
  }
}

@media (max-width: 1024px) {
  div#testimonialWrapper {
    display: none;
  }

  .mobile-testi-slid-carousel {
    display: block !important;
  }

  .mb-work-image img {
    border-radius: 20px;
  }

  .mb-work-content {
    background: rgba(0, 0, 0, 0.3215686275);
    padding: 15px;
    margin-top: 6px;
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .value-content {
    padding: 15px;
  }

  .value-points ul li {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .overlay-content {
    margin-top: 50px;
  }

  section {
    overflow: hidden;
  }

  .blog-bottom {
    display: block;
  }

  .featured-blog-meta {
    width: 100%;
    justify-content: space-between;
  }

  .featured-blog-meta:before {
    display: none;
  }

  .new-blog-btn {
    margin-top: 10px;
  }

  .new-blog-content {
    min-height: 238px;
  }

  .col-row7 {
    width: 80%;
  }

  .col-row1 {

    width: 100%;
  }

  .col-row3 {
    width: 90%;
  }

  .work-item.line:before {
    display: none;
  }

  .work-item {
    min-height: 420px;
  }

  .col-row1 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .col-row3 {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  }

  .col-row2 {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .col-row4 {
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  }

  .col-row5 {
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  }

  .col-row6 {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  }

  .col-row8 {
    width: 75%;
  }

  .col-row5 {
    width: 85%;
  }

  .col-row6 {
    width: 90%;
  }

  .col-row4 {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .service-items {
    min-height: 100%;
  }

  .new-blog-content {
    min-height: 100%;
  }

  .py-70 {
    padding: 40px 0;
  }

  p {
    font-size: 16px;
  }

  section.service-info,
  .service-section {
    padding: 40px 0;
  }

  .info-title h2 {
    font-size: 28px;
  }

  .portfolio-content .portfolio-title {
    font-size: 20px;
    max-width: 60%;
    line-height: 34px;
  }

  .portfolio.first {
    top: 100px;
    margin-bottom: 10px;
  }

  .portfolio.second {
    top: 110px;
    margin-bottom: 10px;
  }

  .about-us {
    overflow: hidden;
  }

  .value-items {
    grid-template-columns: 1fr;
  }

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

  .value-points ul li {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .value-img img {
    height: 340px;
  }

  .service-title {
    width: 88%;
  }

  .service-btn {
    right: -14%;
  }

  .new-testi-slid-carousel .owl-item {
    height: auto !important;
  }

  .new-testi-slid-card,
  .new-testi-slid-item {
    flex-direction: column;
    height: auto;
  }

  .new-testi-slid-image {
    width: 100% !important;
  }

  .new-testi-slid-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 25px 25px 0 0 !important;
  }

  .new-testi-slid-content {
    width: 100%;
    flex: 0 0 auto;
    max-height: 0;
    opacity: 0;
    padding: 0 16px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    align-items: flex-start;
  }

  .new-testi-slid-item:hover .new-testi-slid-content,
  .new-testi-slid-card:hover .new-testi-slid-content {
    max-height: 900px;
    opacity: 1;
    padding: 16px;
    flex: 0 0 auto !important;
  }

  .new-testi-slid-carousel .owl-item:hover {
    flex: 0 0 auto !important;
    z-index: auto;
  }

  header {
    padding: 8px 20px;
    border-radius: 0;
  }

  .hero {
    margin-top: 65px !important;
  }

  .overlay-content h1 {
    font-size: 28px;
    font-weight: 700;
  }

  .overlay-content p {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 15px;
  }

  .overlay-content {
    padding: 0 20px;
    margin: 0;
  }

  .tech-marquee {
    padding: 20px 36px 10px;
  }

  .section-title {
    margin-bottom: 40px;
  }

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

  .serv-icon img {
    height: 30px;
  }

  .service-title .serv-icon {
    width: 45px;
    height: 45px;
  }

  .service-title h4 {
    font-size: 18px;
  }

  .service-des p {
    font-size: 16px;
  }

  .new-testi-slid-section {
    padding: 40px 0;
  }

  .portfolio-wrap {
    padding: 40px 0;
  }

  .showcase {
    padding: 40px 0;
  }

  .about-right-content .content-block {
    margin-bottom: 0;
  }

  .our-value {
    padding: 40px 0;
  }

  .cta-sec {
    min-height: 100%;
  }

  #process-section {
    padding: 40px 0;
  }

  section.new-blog {
    padding: 40px 0;
    margin: 0 !important;
  }

  section.contact-us {
    padding: 40px 0;
    margin: 0 !important;
  }

  .name-title h2 {
    font-size: 20px;
  }

  .name-title .sub {
    font-size: 14px;
  }

  .faq-container {
    margin: 0 auto 0 !important;
    padding: 40px 15px;
  }

  .faq-question {
    padding: 10px 15px;
    font-size: 18px;
  }

  .faq-item.active .faq-answer {
    max-height: 100%;
    padding: 0 15px 20px;
  }

  .tool-img {
    padding: 6px;
  }

  .work-item {
    min-height: 280px;
  }

  .team-work-text {
    height: 100%
  }

  .team-work-text {
    min-height: 100%
  }

  .col-row8 {
    gap: 6px;
  }

  .col-row7 {
    gap: 6px;
  }

  .col-row6 {
    gap: 6px;
  }

  .col-row1 {
    gap: 6px;
  }

  .col-row2 {
    gap: 6px;
  }

  .col-row3 {
    gap: 6px;
  }

  .col-row4 {
    gap: 6px;
  }

  .col-row5 {
    gap: 6px;
  }

  .col-row7 {
    width: 90%;
  }

  .col-row3 {
    width: 95%;
  }

  .col-row6 {
    width: 100%;
  }

  .col-row8 {
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  }

  .col-row7 {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .col-row1 {
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
  }

  .col-row3 {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .col-row2 {
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
  }

  .col-row4 {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .col-row5 {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

  .col-row6 {
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  }
}

@media (max-width: 480px) {
  .overlay-content h1 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .overlay-content p {
    font-size: 12px !important;
    line-height: 16px;
  }

  header {
    padding: 5px 8px;
    border-radius: 0;
  }

  .hero {
    margin-top: 57px !important;
  }

  .contact-btn {
    padding: 8px 25px;
    font-size: 12px;
  }

  .portfolio-content .portfolio-title {
    font-size: 16px;
    max-width: 70%;
    line-height: 26px;
    padding-bottom: 5px;
  }

  .new-testi-slid-image img {
    height: 300px !important;
    object-fit: contain;
  }

  .tool-img {
    padding: 2px;
  }

  .col-row2 {
    grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
  }

  .col-row4 {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  }

  .col-row5 {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .col-row6 {
    grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
  }

  .col-row8 {
    grid-template-columns: repeat(auto-fit, minmax(144px, 1fr));
  }

  .col-row7 {
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  }

  .col-row1 {
    grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  }

  .col-row3 {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  }
}

@media (max-width:425px) {

  .col-row4 {
    width: 100%;
  }

  .col-row5 {
    width: 95%;
  }

  .col-row8 {
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  }

  .col-row2 {
    grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  }

  .col-row4 {
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  }

  .col-row5 {
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  }

  .col-row6 {
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  }

  .col-row7 {
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  }

  .col-row1 {
    grid-template-columns: repeat(auto-fit, minmax(69px, 1fr));
  }

  .col-row3 {
    grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
  }
}