:root {
  --primary-color: #efbb3b;
  --bg-color: #0b0b0b;
  --text-color: #ffffff;
  --font-main: "Fjalla One", sans-serif;
  --font-ins: "Instrument Serif", serif;
  --font-inter: "Inter", sans-serif;
  --text-secondary: #a0a0a0;
  --bg-img-opacity: 0.07;
  --primary-bg-gradient: radial-gradient(
      ellipse at 30% 20%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 60%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, #e8b034 0%, #e8b034 50%, #e8b034 100%);
}

@font-face {
  font-family: "Inter";
  src: url("InterVariable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

html.has-scroll-smooth {
  overflow: hidden;
}

.smooth-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Fjalla One", "Fjalla One Placeholder", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  width: 100%;
}

/* Typography Scale - Professional Responsive */
h1 {
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
}

p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.text-sm-responsive {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.text-lg-responsive {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

.text-xl-responsive {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}

/* Navigation */
.navbar {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  /* background: rgba(11, 11, 11, 0.85); */
  /* backdrop-filter: blur(10px); */
  z-index: 1000;
  box-sizing: border-box;
}

.nav-logo {
  position: relative;
}

.nav-logo .badge {
  height: 22px !important;
  position: absolute;
  right: -20px;
  bottom: -10px;
  transform: rotate(-10deg);
}
/* Tablet navbar adjustments - position below announcement bar */
@media (max-width: 1024px) {
  .navbar {
    top: 50px;
    padding: 0.75rem 1.5rem;
  }
  .nav-logo .badge {
    height: 22px !important;
    position: absolute;
    right: -20px;
    bottom: -10px;
    transform: rotate(-10deg);
  }
}

/* Mobile navbar adjustments - position below announcement bar */
@media (max-width: 767px) {
  .navbar {
    top: 40px;
    padding: 0.5rem 1rem;
  }
}

.nav-logo {
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

/* Tablet logo size */
@media (max-width: 1024px) {
  .nav-logo img {
    height: 40px !important;
    width: auto !important;
  }
}

/* Mobile logo size */
@media (max-width: 767px) {
  .nav-logo img {
    height: 32px !important;
    width: auto !important;
  }
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

#search-input {
  width: 0;
  opacity: 0;
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
  border-radius: 0.5rem;
  background: #1a1a1a;
  color: white;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
}

/* Show search on desktop hover, always visible on mobile */
@media (min-width: 768px) {
  .search-container:hover #search-input {
    width: 180px;
    opacity: 1;
  }
}

/* Tablet search */
@media (max-width: 1024px) and (min-width: 768px) {
  .search-container:hover #search-input {
    width: 150px;
  }
}

@media (max-width: 767px) {
  #search-input {
    position: static;
    width: 100%;
    opacity: 1;
    margin-right: 1rem;
    font-size: 14px;
    padding: 0.4rem 0.5rem;
  }

  .search-container {
    order: 2;
    margin-left: auto;
    max-width: 150px;
  }

  .hamburger-container {
    order: 3;
  }
}

#search-icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  z-index: 2;
}

@media (max-width: 767px) {
  #search-icon {
    width: 20px;
    height: 20px;
  }
}

.hamburger-container {
  position: relative;
  margin-left: 1rem;
}

@media (max-width: 767px) {
  .hamburger-container {
    margin-left: 0.5rem;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .hamburger {
    width: 20px;
    height: 15px;
  }
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .hamburger span {
    height: 2px;
  }
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.tab-menu {
  position: absolute;
  top: 120%;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(20, 20, 20, 0.95);
  padding: 0.5rem;
  border-radius: 0.5rem;
  opacity: 0;
  pointer-events: none;
  min-width: 60px;
  align-items: center;
}

.heading-text {
  font-size: clamp(100px, 15.5vw, 162px) !important;
  font-family: var(--font-main);
  text-transform: uppercase;
  margin-top: 40px !important;
  text-align: center;
}

/* Tablet heading adjustments */
@media (max-width: 1024px) and (min-width: 768px) {
  .heading-text {
    font-size: clamp(70px, 13vw, 100px) !important;
    margin-top: 100px;
    line-height: 1.1 !important;
  }
}

@media (max-width: 900px) {
  .heading-text {
    line-height: 1.2 !important;
    font-size: clamp(62px, 12vw, 80px) !important;
    margin-top: 80px;
  }
}

.sub-paragraph {
  font-family: var(--font-ins);
  font-size: clamp(16px, 2.5vw, 18px) !important;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

/* Tablet sub-paragraph */
@media (max-width: 1024px) and (min-width: 768px) {
  .sub-paragraph {
    font-size: clamp(14px, 2.5vw, 18px) !important;
    max-width: 85%;
  }
  .heading-text {
    line-height: 1.2 !important;
    font-size: clamp(130px, 13vw, 140px) !important;
    margin-top: 80px;
  }
}

/* Mobile sub-paragraph */
@media (max-width: 767px) {
  .heading-text {
    line-height: 1.2 !important;
    font-size: clamp(100px, 11vw, 120px) !important;
    margin-top: 80px;
  }

  .sub-paragraph {
    font-size: clamp(13px, 2vw, 16px) !important;
    max-width: 98%;
    padding: 0 10px;
  }
}

.sub-paragraph span {
  font-family: var(--font-inter) !important;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 11, 11, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding-top: 80px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* Tablet mobile menu */
@media (max-width: 1024px) and (min-width: 768px) {
  .mobile-menu {
    padding-top: 100px;
  }
}

/* Mobile mobile menu */
@media (max-width: 767px) {
  .mobile-menu {
    padding-top: 70px;
  }
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-item {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 1rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: center;
  width: 100%;
  padding: 0.5rem 0;
}

/* Tablet menu items */
@media (max-width: 1024px) and (min-width: 768px) {
  .mobile-menu-item {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    margin: 0.8rem 0;
  }
}

/* Mobile menu items */
@media (max-width: 767px) {
  .mobile-menu-item {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin: 0.6rem 0;
  }
}

.mobile-menu-item:hover {
  color: var(--primary-color);
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .close-menu {
    top: 1.5rem;
    right: 1.5rem;
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 768px) {
  .tab-menu {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .tab-menu {
    display: none;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .hamburger-container {
    margin-left: auto;
  }
}

.tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: #1a1a1a;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: var(--primary-color);
  color: black;
}

.tab-tooltip {
  position: absolute;
  right: 110%;
  white-space: nowrap;
  background: var(--primary-color);
  color: black;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.tab-btn:hover .tab-tooltip {
  opacity: 1;
}

.interactive {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-hover-bg {
  transform-origin: left;
}

.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, background-color 0.2s ease;
  z-index: 9999;
}

.cursor-hover {
  transform: translate(-50%, -50%) scale(2);
  background-color: rgba(246, 201, 80, 0.2);
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

/* Background circles for hero section */
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}

.circle-1 {
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(
    circle,
    rgba(246, 201, 80, 0.3) 0%,
    rgba(246, 201, 80, 0) 70%
  );
  top: -200px;
  right: -200px;
}

.face-1-img {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 30%;
  left: 15%;
  animation: bounce 3s infinite alternate;
}
.face-2-img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 30%;
  left: 40%;
  animation: bounce 3s infinite alternate;
}
.face-3-img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 40%;
  left: 70%;
  animation: bounce 3s infinite alternate;
}

@media (max-width: 500px) {
  .face-2-img {
    width: 50px;
    height: 50px;
    top: 30% !important;
    left: 70% !important;
  }
}

@keyframes bounce {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(-10px);
  }
}

/* Tablet circles */
@media (max-width: 1024px) {
  .circle-1 {
    width: min(450px, 70vw);
    height: min(450px, 70vw);
    top: -150px;
    right: -150px;
  }
}

/* Mobile circles */
@media (max-width: 767px) {
  .circle-1 {
    width: min(300px, 60vw);
    height: min(300px, 60vw);
    top: -100px;
    right: -100px;
    filter: blur(40px);
  }
}

.circle-2 {
  width: min(400px, 60vw);
  height: min(400px, 60vw);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  bottom: -100px;
  left: -100px;
}

/* Tablet circle-2 */
@media (max-width: 1024px) {
  .circle-2 {
    width: min(300px, 50vw);
    height: min(300px, 50vw);
    bottom: -80px;
    left: -80px;
  }
}

/* Mobile circle-2 */
@media (max-width: 767px) {
  .circle-2 {
    width: min(200px, 45vw);
    height: min(200px, 45vw);
    bottom: -60px;
    left: -60px;
    filter: blur(40px);
  }
}

#hero,
.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1rem, 5vw, 6rem);
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

#process-heading {
  text-transform: uppercase !important;
  color: var(--bg-color) !important;
  font-size: clamp(5rem, 4.5vw, 5rem) !important;
}

.location-container {
  text-align: left;
  /* display: flex;
  align-items: center; */
  width: 100%;
}

.location-container p {
  text-transform: uppercase;
}

/* Tablet process heading - increased font size */
@media (max-width: 1024px) and (min-width: 768px) {
  #process-heading {
    font-size: clamp(6rem, 6vw, 5rem) !important;
  }
  .location-container {
    margin-top: 80px !important;
  }
}

/* Mobile process heading - increased font size */
@media (max-width: 767px) {
  #process-heading {
    font-size: clamp(4rem, 6vw, 6rem) !important;
  }
  #features-heading {
    text-align: center !important;
  }
}
@media (max-width: 550px) {
  #process-heading {
    font-size: clamp(2.9rem, 7vw, 3rem) !important;
    line-height: 1;
  }
}

.process-heading-sub-text {
  text-shadow: 0 0 1px rgba(0, 0, 0, 1) !important;
  font-size: clamp(1.5rem, 2.5vw, 3rem) !important;
}

/* Tablet hero */
@media (max-width: 1024px) and (min-width: 768px) {
  #hero,
  .hero-section {
    padding: 0 2rem;
    min-height: 90vh;
    height: 90vh;
  }
}

@media (max-width: 768px) {
  #hero,
  .hero-section {
    padding: 0 1.5rem;
    height: 100vh;
    min-height: 100vh;
  }
}

/* Mobile hero - smaller devices */
@media (max-width: 500px) {
  #hero,
  .hero-section {
    padding: 0 1rem;
    height: 400px !important;
    max-height: 400px !important;
  }
  .pin-spacer {
    height: 60vh !important;
  }

  .hero-section .heading-text {
    font-size: clamp(75px, 9vw, 90px) !important;
  }
  .hero-section .sub-paragraph {
    font-size: clamp(15px, 6vw, 18px) !important;
  }
}

#services {
  position: relative;
  z-index: 10;
  background: var(--bg-color);

  padding-top: 90px;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  width: 100%;
  border-radius: 40px 40px 0 0;
  opacity: 1;
}
#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/noise.png);
  opacity: var(--bg-img-opacity); /* Adjust this value (0.1 to 1) */
  border-radius: 40px 40px 0 0;
  z-index: -1;
  pointer-events: none;
}

#services .items-start {
  padding-left: 30px;
  padding-right: 30px;
}

.logo-scroll-container {
  overflow: hidden;
  width: 100%;
  background-color: transparent;
  padding: 70px 0 !important;
  pointer-events: none; /* Prevents any mouse interaction */
  position: relative;
}

.logo-scroll {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.logo-item img {
  max-width: 150px;
  height: auto;
  opacity: 1;
  filter: grayscale(100%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Tablet services */
@media (max-width: 1024px) and (min-width: 768px) {
  #services {
    padding-top: 70px !important;
    border-radius: 30px 30px 0 0;
  }

  #services .items-start {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* Mobile services */
@media (max-width: 767px) {
  #services {
    padding-top: 50px;
    border-radius: 25px 25px 0 0;
  }
  #services .items-start {
    padding-left: 20px;
    padding-right: 20px;
  }
  .logo-scroll-container {
    padding: 30px 0 !important;
  }
  .logo-scroll {
    gap: 40px;
  }
}

.feature-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 20px;
  box-sizing: border-box;
}

/* Tablet feature cards */
@media (max-width: 1024px) and (min-width: 768px) {
  .feature-card {
    padding: 15px;
  }
}

@media (max-width: 900px) {
  .feature-card {
    padding: 0px 0px;
  }
}

/* Mobile feature cards */
@media (max-width: 767px) {
  .feature-card {
    padding: 10px;
    margin-bottom: 1rem;
  }
}

.feature-icon {
  position: relative;
  border-radius: 1rem;
  background: rgba(246, 201, 80, 0.1);
  border: 1px solid rgba(246, 201, 80, 0.2);
  transition: all 0.4s ease;
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card:hover .feature-icon {
  background: rgba(246, 201, 80, 0.15);
  border-color: rgba(246, 201, 80, 0.4);
  transform: scale(1.05);
}

.feature-icon svg {
  color: var(--primary-color);
  width: clamp(1.5rem, 3vw, 2rem);
  height: clamp(1.5rem, 3vw, 2rem);
}

.feature-card h3 {
  color: white;
  position: relative;
  font-family: var(--font-main) !important;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

/* Mobile feature card heading */
@media (max-width: 767px) {
  .feature-card h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
    margin-bottom: 0.8rem;
  }
}

.feature-card p {
  color: var(--text-secondary);
  transition: color 0.3s ease;
  font-family: var(--font-inter) !important;
}

/* Mobile feature card paragraph */
@media (max-width: 767px) {
  .feature-card h3 {
    font-size: clamp(1.9rem, 4.5vw, 2.2rem) !important;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }
  .feature-card p {
    font-size: clamp(1.3rem, 2.3vw, 1.2rem) !important;
    line-height: 1.3;
  }
}

.feature-card:hover p {
  color: #d0d0d0;
}

/* Card glow effect */
.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.5rem;
  box-shadow: 0 0 0 0 rgba(246, 201, 80, 0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.blur-animate {
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.8);
}

#process {
  position: relative;
  /* background: var(--bg-color); */
  overflow: hidden;
  height: 90vh;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Tablet process */
@media (max-width: 1024px) and (min-width: 768px) {
  #process {
    height: auto;
    min-height: 80vh;
    padding: 40px 20px;
  }
}

/* Mobile process */
@media (max-width: 767px) {
  #process {
    height: auto;
    min-height: 70vh;
    padding: 30px 15px;
  }
}

.process-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  height: max-content !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.process-header {
  height: 100%;
  padding: 20px 0px !important;
}

@media (min-width: 1024px) {
  .process-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* min-width: 1700px; */
  }
}

/* Tablet process container */
@media (max-width: 1024px) and (min-width: 768px) {
  .process-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile process container */
@media (max-width: 767px) {
  .process-container {
    gap: 2rem;
  }

  .process-header {
    padding: 15px 0 !important;
  }
}

.process-header {
  padding-right: 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .process-header {
    padding-right: 2rem;
    text-align: left;
  }
}

.heading-svg {
  width: 100%;
  max-width: 400px;
  height: 80px;
  margin: 0 auto;
  top: 9%;
  position: relative;
}

@media (min-width: 1024px) {
  .heading-svg {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .heading-svg {
    display: none;
  }
}

.process-cards-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet process cards container */
@media (max-width: 1024px) and (min-width: 768px) {
  .process-cards-container {
    height: 350px;
  }
}

/* Mobile process cards container */
@media (max-width: 767px) {
  .process-cards-container {
    height: auto;
    min-height: 300px;
  }
}

.process-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.95),
    rgba(15, 15, 15, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.6s ease;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .process-card {
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 2rem;
  }
}

/* Tablet process cards */
@media (max-width: 1024px) and (min-width: 768px) {
  .process-card {
    max-width: 550px;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

/* Mobile process cards */
@media (max-width: 767px) {
  .process-card {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    max-width: 100%;
    padding: 1.2rem;
    margin: 0 auto 1.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Remove absolute positioning for mobile - cards stack naturally */
  .process-cards-container {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3) {
    position: relative;
    opacity: 1;
    transform: none;
  }
}

.process-card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 10;
}

/* Mobile process cards - keep animations working */
/* Mobile process cards - center and stack properly */
@media (max-width: 767px) {
  .process-cards-container {
    height: 500px;
    min-height: 500px;
    position: relative;
  }

  .process-card {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.5rem;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    opacity: 0;
  }

  .process-card.active {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    z-index: 10;
  }

  /* Ensure all cards are in the same position */
  .process-card#card-1,
  .process-card#card-2,
  .process-card#card-3 {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
  }
}

@media (max-width: 550px) {
  .process-cards-container {
    height: 300px;
    min-height: 300px;
  }
}

.process-card-content h3 {
  margin-bottom: 1rem;
  color: white;
  position: relative;
  display: inline-block;
}

.process-card-content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s ease;
}

.process-card:hover h3::after {
  width: 80px;
}

.process-card-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.3rem !important;
}

/* Tablet process card content */
@media (max-width: 1024px) and (min-width: 768px) {
  .process-card-content p {
    font-size: 1.1rem !important;
  }
}

/* Mobile process card content */
@media (max-width: 767px) {
  .process-card-content h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
  }

  .process-card-content p {
    font-size: 0.95rem !important;
    line-height: 1.5;
  }
}
@media (max-width: 500px) {
  .process-card {
    width: 100% !important;
  }

  .process-card-content h3 {
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
  }

  .process-card-content p {
    font-size: 1.2rem !important;
    line-height: 1.5;
  }
}

.process-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(246, 201, 80, 0.1);
  border: 1px solid rgba(246, 201, 80, 0.2);
  transition: all 0.4s ease;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0;
  }
}

/* Mobile process icon wrapper */
@media (max-width: 767px) {
  .process-icon-wrapper {
    width: 70px;
    height: 70px;
  }
}

.process-card:hover .process-icon-wrapper {
  background: rgba(246, 201, 80, 0.15);
  border-color: rgba(246, 201, 80, 0.4);
  transform: scale(1.05);
}

.process-icon {
  color: var(--primary-color);
  width: 30px;
  height: 30px;
}

@media (min-width: 768px) {
  .process-icon {
    width: 40px;
    height: 40px;
  }
}

/* Mobile process icon */
@media (max-width: 767px) {
  .process-icon {
    width: 28px;
    height: 28px;
  }
}

.step-indicator {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  box-shadow: 0 4px 10px rgba(246, 201, 80, 0.3);
}

/* Mobile step indicator */
@media (max-width: 767px) {
  .step-indicator {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
    top: -8px;
    right: -8px;
  }
}

.process-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(246, 201, 80, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(246, 201, 80, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}

/* .stagger-item {
  opacity: 0;
  transform: translateY(30px);
} */

.stagger-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.stagger-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stagger-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stagger-item:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card-icon {
  background-color: var(--primary-color) !important;
}

/* @keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

#process {
  position: relative;
  z-index: 20;
}

.process-pin-wrapper {
  position: relative;
  width: 100%;
  /* background-color: var(--primary-color); */
  background: var(--primary-bg-gradient);
}

.process-pin-spacer {
  height: 100vh;
  width: 95%;
}
/* Mobile process pin wrapper - adjust height */
@media (max-width: 767px) {
  .process-pin-wrapper {
    height: 100vh !important;
  }

  .process-pin-spacer {
    height: 100vh !important;
    min-height: 100vh !important;
    width: 100% !important;
  }
}
@media (max-width: 500px) {
  .process-pin-wrapper {
    height: 100vh !important;
  }

  .process-pin-spacer {
    height: 60vh !important;

    width: 100% !important;
  }
}

/* Tablet process pin spacer */
@media (max-width: 1024px) and (min-width: 768px) {
  .process-pin-spacer {
    height: auto;
    min-height: 80vh;
    width: 100%;
  }
}

/* Mobile process pin spacer */
@media (max-width: 767px) {
  .process-pin-spacer {
    height: auto;
    min-height: auto;
    width: 100%;
  }
}

.process-content {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 5vw, 6rem);
  box-sizing: border-box;
  width: 100%;
}

/* Tablet process content */
@media (max-width: 1024px) and (min-width: 768px) {
  .process-content {
    min-height: 80vh;
    padding: 40px 2rem;
  }
}

/* Mobile process content */
@media (max-width: 767px) {
  .process-content {
    min-height: auto;
    padding: 30px 1rem;
  }
}

.process-zoom-out {
  transform-origin: center;
}

.contact-reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* About Section */
#about {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 3rem) !important;
  box-sizing: border-box;
  width: 100%;
  background-color: #0b0b0b;
}
#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/noise.png);
  opacity: var(--bg-img-opacity); /* Adjust this value (0.1 to 1) */
  border-radius: 40px 40px 0 0;
  z-index: -1;
  pointer-events: none;
}

/* Tablet about */
@media (max-width: 1024px) and (min-width: 768px) {
  #about {
    padding: clamp(4rem, 6vw, 6rem) 2rem !important;
  }
}

/* Mobile about */
@media (max-width: 767px) {
  #about {
    padding: clamp(5rem, 5vw, 6rem) 1.5rem !important;
  }
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-top: 2rem;
}

/* Mobile about image */
@media (max-width: 767px) {
  .about-image {
    min-height: 200px;
    margin-top: 1.5rem;
  }
}

.about-text {
  font-size: clamp(40px, 8vw, 90px) !important;
  text-transform: uppercase !important;
  font-family: var(--font-main) !important;
  line-height: 1.3 !important;
}

/* Tablet about text */
@media (max-width: 1024px) and (min-width: 768px) {
  .about-text {
    font-size: clamp(36px, 6vw, 80px) !important;
    line-height: 1.35 !important;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }

  .desktop-only {
    display: inline !important;
  }

  .desktop-only.block {
    display: block !important;
  }
}

/* Mobile about text */
@media (max-width: 767px) {
  .about-text {
    font-size: clamp(28px, 6vw, 40px) !important;
    line-height: 1.4 !important;
  }

  /* Hide desktop version, show mobile version */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}
@media (max-width: 500px) {
  .about-text {
    font-size: clamp(2.7rem, 6vw, 40px) !important;
    line-height: 1.4 !important;
  }

  /* Hide desktop version, show mobile version */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

.about-image1 {
  /* height: 600px; */
  display: flex;
  align-items: flex-end;
  text-align: start;
  justify-content: flex-end;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  /* margin-bottom: 50px; */
  /* width: 600px; */
}

.about-text1 {
  font-family: var(--font-ins) !important;
  max-width: 600px;
  margin-left: auto;
  margin-top: -60px;
}

/* Tablet about-text1 */
@media (max-width: 1024px) and (min-width: 768px) {
  .about-text1 {
    max-width: 500px;
    margin-top: -40px;
    font-size: clamp(14px, 2.2vw, 18px) !important;
  }
}

.about-text1 span {
  font-family: var(--font-inter) !important;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-image1 {
    height: fit-content;
    margin-top: 0;
    width: 100%;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-text1 {
    width: 100% !important;
  }
}

/* Mobile about-text1 */
@media (max-width: 767px) {
  .about-text1 {
    margin-top: 0;
    font-size: clamp(17px, 2.5vw, 20px) !important;
    line-height: 1.5;
  }
}

/* Contact Section */
#contact {
  padding: clamp(3rem, 8vw, 8rem) clamp(1rem, 3vw, 3rem);
  box-sizing: border-box;
  width: 100%;
  background: var(--primary-bg-gradient);
}

/* Tablet contact */
@media (max-width: 1024px) and (min-width: 768px) {
  #contact {
    padding: clamp(2.5rem, 6vw, 6rem) 2rem;
  }
}

/* Mobile contact */
@media (max-width: 767px) {
  #contact {
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
  }
}

/* Footer */
#contact-footer {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 3rem);
  box-sizing: border-box;
  width: 100%;
}

/* Tablet footer */
@media (max-width: 1024px) and (min-width: 768px) {
  #contact-footer {
    padding: clamp(1.5rem, 4vw, 3rem) 2rem;
  }
}

/* Mobile footer */
@media (max-width: 767px) {
  #contact-footer {
    padding: clamp(1rem, 3vw, 2rem) 1rem;
  }
}

#contact {
  padding-bottom: 10px !important;
}

/* Button Responsive */
.btn-responsive {
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

/* Tablet button */
@media (max-width: 1024px) and (min-width: 768px) {
  .btn-responsive {
    padding: clamp(0.7rem, 1.8vw, 1.1rem) clamp(1.3rem, 2.5vw, 2rem);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  }
}

/* Mobile button */
@media (max-width: 767px) {
  .btn-responsive {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Mobile Search in Menu */
.mobile-search-container {
  width: 90%;
  max-width: 400px;
  margin-bottom: 2rem;
  display: none;
}

@media (max-width: 767px) {
  .mobile-search-container {
    display: block;
  }

  .desktop-search {
    display: none;
  }
}

/* Custom code */
.featured-text {
  font-size: clamp(2rem, 8vw, 100px) !important;
  font-family: var(--font-main);
  text-transform: uppercase;
  position: relative;
  line-height: 1.2 !important;
}
.featured-text.growth-text {
  font-size: clamp(2.5rem, 7vw, 90px) !important;
  /* font-size: clamp(2rem, 8vw, 100px) !important; */
  font-family: var(--font-main);
  text-transform: uppercase;
  position: relative;
  line-height: 1 !important;
  color: #0b0b0b;
}

/* Tablet featured text */
@media (max-width: 1024px) and (min-width: 768px) {
  .featured-text {
    font-size: clamp(1.8rem, 7vw, 80px) !important;
    line-height: 1.3 !important;
  }
  .featured-text.growth-text {
    font-size: clamp(2rem, 8vw, 90px) !important;
    line-height: 1.3 !important;
  }
}

/* Mobile featured text */
@media (max-width: 767px) {
  .featured-text {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    line-height: 1.4 !important;
  }
}
@media (max-width: 500px) {
  .featured-text {
    font-size: clamp(2.9rem, 7vw, 3.5rem) !important;
    line-height: 1 !important;
  }
}

.result-text {
  font-size: clamp(3rem, 9vw, 100px) !important;
  font-family: var(--font-main) !important;
  text-transform: uppercase !important;
  font-weight: 600;
  line-height: 1.2 !important;
}

/* Tablet result text */
@media (max-width: 1024px) and (min-width: 768px) {
  .result-text {
    font-size: clamp(3rem, 8vw, 100px) !important;
    line-height: 1.25 !important;
  }
}

/* Mobile result text */
@media (max-width: 767px) {
  .result-text {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
    line-height: 1.3 !important;
  }
}
@media (max-width: 500px) {
  .result-text {
    font-size: clamp(2.7rem, 8vw, 3.5rem) !important;
    line-height: 1.3 !important;
  }
}

.simple-para {
  font-family: var(--font-ins) !important;
  max-width: 500px !important;
  margin-left: 0;
  color: #fdfdfd;
}

.simple-para span {
  color: black !important;
  font-weight: 600;
  font-family: var(--font-inter) !important;
}

.footer {
  padding: 0px;
}

/* Tablet footer padding */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer {
    padding: 25px;
  }
}

/* Mobile footer padding */
@media (max-width: 767px) {
  .footer {
    padding: 15px;
  }
}

.footer-inner {
  /* min-height: 100vh; */
  width: 100%;
  background: transparent;
  color: white !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tablet footer inner */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-inner {
    min-height: auto;
    padding: 18px 0;
    border-radius: 18px;
  }
}

/* Mobile footer inner */
@media (max-width: 767px) {
  .footer-inner {
    min-height: auto;
    padding: 15px 0;
    border-radius: 15px;
  }
}

.footer-inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background-color: black;
  height: 80px;
  width: 100%;
  padding: 0px 20px;
}

.footer-inner-header h3 {
  font-family: var(--font-main) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: white;
}

.footer-inner-header > h3:first-child {
  display: block;
}

/* Tablet footer header */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-inner-header {
    height: 70px;
    padding: 0 18px;
    border-radius: 18px;
  }

  .footer-inner-header h3 {
    font-size: 22px !important;
  }
}

@media (max-width: 768px) {
  .footer-inner-header {
    flex-direction: row;
    height: 60px;
    padding: 0 15px;
    justify-content: space-between;
    gap: 10px;
  }

  .footer-inner-header > h3:first-child {
    display: none;
  }

  .footer-inner-header h3 {
    font-size: 18px !important;
  }
}

/* Mobile footer header - smaller devices */
@media (max-width: 480px) {
  .footer-inner-header {
    height: 50px;
    padding: 0 12px;
    border-radius: 12px;
  }

  .footer-inner-header h3 {
    font-size: 14px !important;
  }
}

.footer-icon-box {
  height: 50px;
  background-color: white;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-icon-box:hover {
  transform: scale(1.1);
}

.footer-icon-box i {
  color: black;
  font-size: 25px;
}

/* Tablet footer icon box */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-icon-box {
    height: 45px;
    width: 45px;
    border-radius: 9px;
  }

  .footer-icon-box i {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .footer-icon-box {
    height: 40px;
    width: 40px;
  }

  .footer-icon-box i {
    font-size: 20px;
  }
}

/* Mobile footer icon box - smaller devices */
@media (max-width: 480px) {
  .footer-icon-box {
    height: 35px;
    width: 35px;
    border-radius: 8px;
  }

  .footer-icon-box i {
    font-size: 18px;
  }
}

.footer-inner-header-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Tablet footer header box */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-inner-header-box {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer-inner-header-box {
    gap: 120px;
    justify-content: space-between !important;
    width: 100% !important;
  }
}

/* Mobile footer header box */
@media (max-width: 480px) {
  .footer-inner-header-box {
    gap: 10px;
  }
}

/* .footer-inner-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
  flex: 1;
} */

/* Tablet footer inner main */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-inner-main {
    /* margin-top: 50px; */
    flex-direction: column;
    gap: 40px;
  }
}

.footer-inner1 {
  text-align: start;
}

.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.get-in-touch {
  font-size: 44px;
  text-transform: uppercase;
  width: fit-content;
  color: black;
  border-top: 4px dotted black;
  font-weight: 400;
  font-family: var(--font-main);
  line-height: 1;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  transition: 0.3s;
}

/* Tablet footer inner1 h1 */
@media (max-width: 1024px) and (min-width: 768px) {
  .get-in-touch {
    font-size: 36px;
    margin-bottom: 25px;
    border-bottom-width: 3px;
  }
}

.footer-inner1 p {
  font-size: 13px !important;
  color: black;
  text-transform: capitalize !important;
  font-family: var(--font-inter);
  line-height: 1.6;
  font-weight: 400;
}

/* Tablet footer inner1 p */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-inner1 p {
    font-size: 12px !important;
  }
}

.footer-social-media-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 10px;
}

/* Tablet social media box */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-social-media-box {
    gap: 12px;
    margin-top: 18px !important;
  }
}

.footer-social-media-box i {
  font-size: 25px;
  color: black;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Tablet social media icons */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-social-media-box i {
    font-size: 26px;
  }
}

.footer-social-media-box i:hover {
  transform: scale(1.2);
}

.footer-inner2 {
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  width: 100% !important;
}

/* Tablet footer inner2 */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-inner2 {
    width: 100%;
    justify-content: flex-start;
  }
}

.footer-inner2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Tablet footer nav item */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-nav-item {
    gap: 12px;
    margin-bottom: 18px;
  }
}

.footer-nav-item i {
  font-size: 20px;
  color: black;
}

/* Tablet footer nav icon */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-nav-item i {
    font-size: 18px;
  }
}

.footer-inner2 ul li a {
  font-size: 30px;
  font-family: var(--font-main);
  color: black;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Tablet footer nav links */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-inner2 ul li a {
    font-size: 26px;
  }
}

.footer-inner2 ul li a:hover {
  opacity: 0.7;
}

.footer-contact-info {
  margin-top: 0px;
  margin-bottom: 30px;
}

/* Tablet contact info */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-contact-info {
    margin-bottom: 25px;
    margin-top: 35px;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

/* Tablet contact item */
@media (max-width: 1024px) and (min-width: 768px) {
  .contact-item {
    gap: 12px;
    margin-bottom: 12px;
  }
}

.contact-label {
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 400;
  color: black;
  min-width: 50px;
}

.contact-value {
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 400;
  color: black;
}

/* Tablet contact label & value */
@media (max-width: 1024px) and (min-width: 768px) {
  .contact-label {
    font-size: 24px;
    min-width: 35px;
  }

  .contact-value {
    font-size: 24px;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
  border-top: 2px dotted black;
  padding-top: 20px;
  margin-top: 40px;
  width: 100%;
}

/* Tablet footer bottom */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-bottom {
    padding-top: 18px;
    margin-top: 35px;
  }
}

.footer-bottom p {
  font-family: var(--font-main);
  font-size: 24px;
  color: black;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

/* Tablet footer bottom text */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-bottom p {
    font-size: 20px;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .get-in-touch {
    font-size: 40px;
  }

  .footer-inner2 {
    margin-bottom: -10px !important;
    margin-top: -30px !important;
  }

  .footer-inner2 ul li a {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .get-in-touch {
    font-size: 35px;
  }

  .footer-inner-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-inner2 {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-social-media-box {
    margin-top: 30px !important;
  }
}

@media (max-width: 768px) {
  .get-in-touch {
    font-size: 32px;
  }

  .footer-inner2 ul li a {
    font-size: 22px;
  }

  .contact-label {
    font-size: 20px;
  }

  .contact-value {
    font-size: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 18px;
  }
}

/* Mobile footer - smaller devices */
@media (max-width: 480px) {
  .footer-inner2 {
    margin-bottom: -10px !important;
    margin-top: -10px !important;
  }

  .get-in-touch {
    font-size: 30px;
    margin-bottom: 20px;
    border-bottom-width: 2px;
  }

  .footer-inner1 p {
    font-size: 10px !important;
  }

  .footer-social-media-box {
    gap: 12px;
    margin-top: 10px !important;
  }

  .footer-social-media-box i {
    font-size: 24px;
  }

  .footer-inner2 ul li a {
    font-size: 18px;
  }

  .contact-label,
  .contact-value {
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 15px;
    margin-top: 0px !important;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}

/* Image Container Responsive */
.image-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.image-container .image-text {
  position: absolute;
  top: 30%;
  right: 25%;
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: uppercase;
  text-align: center;
}

/* Tablet image container */
@media (max-width: 1024px) and (min-width: 768px) {
  .image-container {
    margin: 50px auto;
    padding: 0 18px;
  }
}

.image-zoom {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* Tablet image zoom */
@media (max-width: 1024px) and (min-width: 768px) {
  .image-zoom {
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  .image-container {
    margin: 40px auto;
    padding: 0 15px;
  }

  .image-zoom {
    border-radius: 15px;
  }
}

/* Mobile image container - smaller devices */
@media (max-width: 480px) {
  .image-container {
    margin: 30px auto;
    padding: 0 10px;
  }

  .image-zoom {
    border-radius: 12px;
  }
  .image-container .image-text {
    top: 30%;
    right: 25%;
    font-size: clamp(0.8rem, 2vw, 2rem);
  }
}

/* Grid Responsive Improvements */
@media (max-width: 1024px) and (min-width: 768px) {
  .grid.grid-cols-1.md\\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 767px) {
  .grid.grid-cols-1.md\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* Announcement Bar Responsive */
.announcement-bar {
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .announcement-bar {
    font-size: 13px;
    padding: 7px 0;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 12px;
    padding: 6px 0;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    font-size: 11px;
    padding: 5px 0;
  }
}

/* Services SVG Wrapper Responsive */
.services-svg-wrapper {
  width: 100%;
  max-width: 400px;
  height: 80px;
  position: absolute;
  bottom: -70px;
  left: 0px;
  margin: 20px 0;
  display: inline-block;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .services-svg-wrapper {
    max-width: 300px;
    height: 60px;
    bottom: -50px;
  }
}

@media (max-width: 768px) {
  .services-svg-wrapper {
    display: none;
  }
}

/* ============================================
   4K AND LARGE DISPLAY OPTIMIZATIONS (2560px+)
   ============================================ */

/* Typography scaling for large displays */
@media (min-width: 2560px) {
  h1 {
    font-size: clamp(5rem, 6vw, 6rem);
  }

  h2 {
    font-size: clamp(4.5rem, 4.5vw, 6rem);
  }

  h3 {
    font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  }

  p {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.7;
  }
}

/* Hero Section - 4K */
@media (min-width: 2560px) {
  .heading-text {
    font-size: clamp(100px, 8vw, 200px) !important;
    margin-top: 150px;
  }

  .sub-paragraph {
    font-size: clamp(24px, 1.7vw, 30px) !important;
    max-width: 80%;
    line-height: 1.8;
  }

  .circle-1 {
    width: 800px;
    height: 800px;
    top: -300px;
    right: -300px;
  }

  .circle-2 {
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: -150px;
  }
}

/* Process Section - 4K Optimization */
@media (min-width: 2560px) {
  #process {
    height: 100vh;
    min-height: 100vh;
  }

  .process-content {
    min-height: auto;
    padding: 0 8rem;
    min-width: 1600px;
    margin: 0 auto;
  }

  .process-container {
    min-width: 1700px !important;
    gap: 6rem;
  }

  #process-heading {
    font-size: clamp(6rem, 5vw, 8rem) !important;
    margin-bottom: 2rem;
  }

  .process-heading-sub-text {
    font-size: clamp(2rem, 2vw, 3.5rem) !important;
  }

  .heading-svg {
    max-width: 600px;
    height: 120px;
  }

  .process-cards-container {
    height: 600px;
  }

  .process-card {
    max-width: 900px;
    min-width: 100% !important;
    padding: 3.5rem;
    gap: 3rem;
  }

  .process-card-content h3 {
    font-size: clamp(2.8rem, 3.5vw, 4rem) !important;
    margin-bottom: 2rem;
  }

  .process-card-content p {
    font-size: 1.9rem !important;
    line-height: 1.8;
  }

  .process-icon-wrapper {
    width: 140px;
    height: 140px;
  }

  .process-icon {
    width: 60px;
    height: 60px;
  }

  .step-indicator {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    top: -15px;
    right: -15px;
  }
}

/* Services Section - 4K */
@media (min-width: 2560px) {
  #services {
    padding: 120px 60px 0px 60px;
  }

  .featured-text {
    font-size: clamp(100px, 6vw, 120px) !important;
  }

  .featured-text.growth-text {
    font-size: clamp(120px, 6vw, 150px) !important;
  }

  .feature-card {
    padding: 3rem;
  }

  .feature-card h3 {
    font-size: clamp(1.7rem, 2vw, 2.5rem) !important;
    line-height: 50px;
  }

  .feature-card p {
    font-size: clamp(1rem, 1.5vw, 1.55rem) !important;
  }

  .feature-icon {
    width: 5rem;
    height: 5rem;
  }

  .feature-icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .services-svg-wrapper {
    max-width: 600px;
    height: 120px;
    bottom: -90px;
  }
}

/* About Section - 4K */
@media (min-width: 2560px) {
  #about {
    padding: 8rem 6rem !important;
  }

  .about-text {
    font-size: clamp(80px, 7vw, 140px) !important;
  }

  .about-text1 {
    font-size: clamp(1.2rem, 1.4vw, 1.8rem) !important;
    max-width: 900px;
  }
}

/* Contact Section - 4K */
@media (min-width: 2560px) {
  #contact {
    padding: 10rem 6rem;
  }

  .result-text {
    font-size: clamp(100px, 6vw, 160px) !important;
  }

  .simple-para {
    font-size: clamp(1.5rem, 2vw, 2.5rem) !important;
    line-height: 50px;
  }
}

/* Footer - 4K */
@media (min-width: 2560px) {
  .footer {
    padding: 40px;
  }

  .footer-inner {
    border-radius: 30px;
    padding: 40px 0;
  }

  .footer-inner-header {
    height: 120px;
    padding: 0 40px;
    border-radius: 30px;
  }

  .footer-inner-header h3 {
    font-size: 36px !important;
  }

  .footer-icon-box {
    height: 70px;
    width: 70px;
    border-radius: 15px;
  }

  .footer-icon-box i {
    font-size: 35px;
  }

  .get-in-touch {
    font-size: 27px;
    margin-bottom: 40px;
    border-bottom-width: 5px;
  }

  .footer-inner1 p {
    font-size: 18px;
  }

  .footer-social-media-box {
    gap: 20px;
    margin-top: 30px;
  }

  .footer-social-media-box i {
    font-size: 40px;
  }

  .footer-inner2 ul li a {
    font-size: 40px;
  }

  .contact-label,
  .contact-value {
    font-size: 40px;
  }

  .footer-bottom p {
    font-size: 32px;
  }
}

/* Navbar - 4K */
@media (min-width: 2560px) {
  .navbar {
    padding: 1.5rem 4rem;
    top: 40px;
  }

  .nav-logo img {
    height: 60px !important;
  }

  #search-input {
    padding: 0.75rem 3rem 0.75rem 0.75rem;
    font-size: 1.125rem;
  }

  .search-container:hover #search-input {
    width: 300px;
  }

  #search-icon {
    width: 32px;
    height: 32px;
  }

  .hamburger {
    width: 32px;
    height: 24px;
  }

  .hamburger span {
    height: 4px;
  }

  .tab-btn {
    width: 56px;
    height: 56px;
  }

  .tab-tooltip {
    font-size: 1.125rem;
    padding: 0.5rem 0.75rem;
  }
}

/* Image Container - 4K */
@media (min-width: 2560px) {
  .image-container {
    max-width: 2000px;
    margin: 100px auto;
    padding: 0 40px;
  }

  .image-zoom {
    border-radius: 30px;
  }
}

/* Announcement Bar - 4K */
@media (min-width: 2560px) {
  .announcement-bar {
    font-size: 18px;
    padding: 12px 0;
  }

  .announcement-highlight {
    font-size: 17px;
  }

  .announcement-icon {
    font-size: 16px;
  }
}

/* Custom Cursor - 4K */
@media (min-width: 2560px) {
  .custom-cursor {
    width: 28px;
    height: 28px;
    border-width: 3px;
  }
}

/* Container max-width for ultra-wide displays */
@media (min-width: 3840px) {
  .process-content,
  #services,
  #about,
  #contact {
    max-width: 3200px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-container {
    max-width: 2800px;
  }

  #process-heading {
    font-size: clamp(8rem, 5vw, 10rem) !important;
  }

  .process-card {
    max-width: 1200px;
    padding: 4rem;
  }

  .process-card-content h3 {
    font-size: clamp(3rem, 3vw, 5rem) !important;
  }

  .process-card-content p {
    font-size: 2rem !important;
  }
}

/* Ensure proper spacing on all devices */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling for all devices */
html {
  scroll-behavior: smooth;
}

/* Prevent horizontal overflow on mobile */
body,
html {
  max-width: 100%;
  overflow-x: hidden;
}

/* Touch-friendly spacing for mobile */
@media (max-width: 767px) {
  button,
  a,
  .interactive {
    min-height: 44px;
    min-width: 44px;
  }
}
/* Contact modal */
/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

/* Modal Content */
.modal-content {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  border: 2px solid #efbb3b;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #efbb3b;
  color: #000;
  transform: rotate(90deg);
}

/* Modal Header */
.modal-title {
  font-size: 32px;
  font-weight: bold;
  color: #efbb3b;
  margin-bottom: 10px;
  font-family: inherit;
}

.modal-subtitle {
  color: #fff;
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #efbb3b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background: #000;
  border: 2px solid #333;
  border-radius: 10px;
  padding: 10px 15px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #efbb3b;
  background: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.modal-submit-btn {
  background: #efbb3b;
  color: #000;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-submit-btn:hover {
  background: #f6c950;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(239, 187, 59, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .modal-container {
    height: 95vh;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .modal-title {
    font-size: 24px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
  }

  .form-group textarea {
    min-height: 100px;
  }
}

/* Scrollbar for modal */
.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
  background: #efbb3b;
  border-radius: 10px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1a1a1a;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  border: 2px solid #efbb3b;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-color: #4caf50;
}

.toast.error {
  border-color: #f44336;
}
