* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --primary-color: #ff9900; */
  --primary-color: #094065;
  --primary-bg-color: #f1f1f1;
  /* --secondary-color: #ff9900; */
  --dark-light-color: #5c5c5c;
  --text-primary: #fff;
  --text-secondary: #000;
  --dark-bg: #1a1a1a;
  --card-bg: #242424;
  --text-primary: #ffffff;
  --text-secondary: #000000;
  --card-background: #f8f8f8;
  --border-radius: 12px;
  --transition-speed: 0.3s;

  --mv-primary-color: #ff9800;
  --mv-text-primary: #333333;
  --mv-text-secondary: #555555;
  --mv-primary-bg-color: #ffffff;
  --mv-secondary-bg-color: #f5f5f5;
  --mv-border-color: #eeeeee;
}

body {
  background-image: url("../assets/images/project_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  height: 100vh;
  width: 100%;
  backdrop-filter: brightness(0.8);
}

/* Navbar Starts  */

/* Navbar Styles */



/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  background-image: url("../assets/images/nihal.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-primary);
  height: 8rem;
  border-bottom: 1px solid rgba(128, 128, 128, 0.3); /* semi-transparent grey */
  width: 100%;
  position: absolute; /* Changed to relative positioning */
  z-index: 1000;
  background-blend-mode: multiply;
}

/* Ensure body doesn't create scroll issues */

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-image {
  max-height: 120px;
  width: 140px;
  position: relative;
  top: 12px;
}

.nav-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 48px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu ul li a:hover {
  color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: var(--text-primary);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

/* Media query for responsive behavior */
@media (max-width: 768px) {
  .navbar {
    background-image: none;
    background-color: rgba(255, 255, 255, 0.9); /* semi-transparent white for mobile */
    position: relative; /* Changed to relative */
    height: 80px;
  }

  body {
    padding-top: 0; /* Removed padding completely */
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 100px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .logo-image {
    max-height: 80px;
    width: 100px;
    top: 0;
  }
}
/* Navbar Ends */



/* Navbar Ends */

/* Navbar Ends */

.project-hero {
  display: flex;
  background-color: transparent;
  background-image: linear-gradient(270deg, #ffffff00 0.02%, #1e1e1ebf 100%);
  justify-content: flex-start;
  align-items: center;
  padding-left: 160px;
  height: 70vh;
  width: 100%;
  padding-bottom: 6rem;
  color: var(--text-primary);
}

.project-hero .main-heading h1 {
  font-size: 4rem;
  font-weight: 100;
  padding-top: 6rem;
  font-family: "Manrope", sans-serif;
}

/* 
About Section starts 
*/

.about-us {
  display: flex;
  background: var(--primary-bg-color);
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  padding: 0px 160px;
  color: var(--text-secondary);
}

.main-container {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Left side styles */
.left-side {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.images-container {
  position: relative;
  width: 100%;
  height: 80%;
}

.worker-image {
  position: absolute;
  top: 24px;
  /* right: 80px; */
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}

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

/* Right side styles */
.right-side {
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.content-container {
  width: 100%;
  max-width: 500px;
}

.section-tag {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-family: "Manrope", sans-serif;
}

.section-tag img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.section-tag i {
  color: var(--primary-color);
  font-size: 18px;
  margin-right: 10px;
}
.section-tag span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.section-title {
  font-size: 42px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #333;
  font-family: "Manrope", sans-serif;
}

.highlight {
  display: block;
  font-weight: 900;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  font-family: "Lora", serif;
}

.feature-item {
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.feature-icon i {
  color: var(--primary-color);
  font-size: 18px;
}

.feature-text {
  font-size: 16px;
  font-weight: 500;
}

.rating-container {
  text-align: center;
  position: relative;
  bottom: 240px;
  left: 320px;
  height: 180px;
  width: 200px;
  border-radius: 30px;
  background-color: #dfdbdb;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  font-family: "Manrope", sans-serif;
}

.rating-stars {
  color: var(--primary-color);
  font-size: 28px;
  margin: 5px 0;
}

.rating-text {
  margin-top: 10px;
  font-size: 18px;
  color: var(--text-secondary);
  font-family: "Lora", serif;
}

/* Add to your existing styles */
.about-us {
  overflow-x: hidden;
}

.left-side,
.right-side {
  will-change: transform, opacity;
}

.images-container {
  position: relative;
}

/* Animation targets */
.robotics-image,
.worker-image,
.experience-badge,
.section-tag,
.section-title,
.description,
.features-list,
.btn,
.rating-container {
  transition: all 0.6s ease-out;
}

/* About Ends */

/* Solution started  */

.ind-services-wrapper {
  width: 100%;
  position: relative;
}

.ind-services-wrapper .ind-header-section {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  overflow: hidden;
}

.ind-services-wrapper .ind-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/solutionBanner.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.9);
}

.ind-services-wrapper .ind-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 0;
  display: flex;
  justify-content: space-between;
}

.ind-services-wrapper .ind-header-left {
  width: 55%;
}

.ind-services-wrapper .ind-header-right {
  width: 40%;
}

.ind-services-wrapper .ind-services-tag {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.ind-services-wrapper .ind-services-tag i {
  color: #e7b35f;
  margin-right: 10px;
}

.ind-services-wrapper .ind-services-tag span {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.ind-services-wrapper .ind-header-left h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}

.ind-services-wrapper .ind-header-left h1 span {
  display: block;
  margin-top: 10px;
}

.ind-services-wrapper .ind-header-right p {
  line-height: 1.6;
  /* border: 2px solid #f5a623; */
  padding-top: 40px;
  font-family: "Lora", serif;
}
/* Solution end   */

/* goal starts */

.mv-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--mv-primary-bg-color);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  overflow: hidden;
  /* border: 2px solid red; */
  position: relative;
  z-index: 10;
  bottom: 100px;
}

/* Tab Navigation */
.mv-tabs-nav {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.mv-tab-button {
  flex: 1;
  padding: 20px 15px;
  text-align: center;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--mv-text-primary);
}

.mv-tab-button.active {
  background-color: var(--primary-color);
  color: white;
}

.mv-tab-button:not(.active):hover {
  background-color: #f5f5f5;
}

.mv-tab-icon {
  font-size: 24px;
}

/* Tab Content */
.mv-tab-content {
  display: none;
  padding: 40px;
}

.mv-tab-content.active {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.mv-content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.mv-content-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mv-tabs-section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mv-text-secondary);
  margin-bottom: 20px;
}

.mv-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mv-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mv-feature-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.mv-feature-text {
  font-size: 18px;
  color: var(--mv-text-primary);
}

/* Goal Section */
.mv-goal-section {
  display: flex;
  background: var(--mv-primary-bg-color);
  justify-content: center;
  align-items: center;
  height: 104vh;
  width: 100%;
  padding: 0px 160px;
  color: var(--mv-text-secondary);
}

.mv-goal-container {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mv-tab-content.active {
    flex-direction: column;
  }

  .mv-goal-section {
    padding: 0px 20px;
  }

  .mv-tab-button {
    font-size: 16px;
    padding: 15px 10px;
  }
}

/* goal end */

/*  What we do starts */

.what-we-do {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 140vh;
  padding: 0 0 0 0px;
  background-color: var(--dark-bg);
}

.what-we-do .main-container {
  width: 100%;
  max-width: 1440px;
}

.what-we-do .content-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.what-we-do .left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.what-we-do .heading-section-2 {
  padding-top: 40px;
  margin-bottom: 20px;
  margin-left: -200px;
}

.what-we-do .tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.what-we-do .icon.gear {
  font-size: 16px;
}

.what-we-do h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 40px;
  font-weight: 100;
  font-family: "Manrope", sans-serif;
}

.what-we-do .highlight {
  display: block;
}

.what-we-do .solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.what-we-do .solution-card {
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
}

.cd-1 {
  background-color: var(--card-bg);
}

.cd-2 {
  background-color: #424242;
}

.what-we-do .solution-card:hover {
  transform: translateY(-5px);
}

.what-we-do .icon-wrapper {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.what-we-do .solution-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(60%) sepia(92%) saturate(1352%) hue-rotate(360deg)
    brightness(103%) contrast(106%);
}

.what-we-do h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.what-we-do p {
  color: #bebebe;
  font-size: 14px;
  line-height: 1.6;
}

.what-we-do .slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.what-we-do .my-right-side {
  flex: 1;
  display: flex;
}

.what-we-do .image-container-2 {
  width: 100%;
  padding-top: 40px;
  height: 100%;
  /* position: relative;
  overflow: hidden; */
  display: flex;
}

.what-we-do .main-image-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-we-do .contact-button {
  position: absolute;
  bottom: 50px;
  right: 0;
  background-color: var(--primary-orange);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: rotate(10deg);
  transition: all 0.3s ease;
}

.what-we-do .contact-button:hover {
  transform: rotate(0deg);
}

.what-we-do .button-text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.what-we-do .arrow {
  font-size: 24px;
  margin-top: 5px;
}

.tag .gear-icon i {
  color: var(--primary-color);
}

@media (max-width: 1200px) {
  .what-we-do .content-wrapper {
    flex-direction: column;
  }

  .what-we-do {
    height: auto;
    padding: 80px 40px;
  }

  .what-we-do .right-side {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .what-we-do .solutions-grid {
    grid-template-columns: 1fr;
  }

  .what-we-do h1 {
    font-size: 36px;
  }

  .what-we-do {
    padding: 60px 20px;
  }
}

/* What We Do Animation Styles */
.what-we-do {
  overflow-x: hidden;
}

.what-we-do .tag,
.what-we-do h1,
.what-we-do .solution-card,
.what-we-do .main-image-2 {
  will-change: transform, opacity;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
  .what-we-do {
    padding: 40px 15px;
    height: auto;
  }

  .what-we-do .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .what-we-do .heading-section-2 {
    margin-left: 0;
    text-align: center;
  }

  .what-we-do h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }

  .what-we-do .left-side {
    align-items: center;
    gap: 20px;
  }

  .what-we-do .tag {
    justify-content: center;
    width: 100%;
  }

  .what-we-do .solutions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .what-we-do .solution-card {
    padding: 20px;
  }

  .what-we-do .my-right-side {
    width: 100%;
  }

  .what-we-do .image-container-2 {
    height: 300px;
  }

  .what-we-do .contact-button {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: 20px auto;
    transform: rotate(0deg);
  }

  .what-we-do .button-text {
    font-size: 12px;
  }

  .what-we-do .arrow {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .what-we-do {
    padding: 30px 10px;
  }

  .what-we-do h1 {
    font-size: 28px;
  }

  .what-we-do .image-container-2 {
    height: 250px;
  }

  .what-we-do .contact-button {
    width: 80px;
    height: 80px;
  }
}

/* what we do ends */

/* our key features starts */

.our-key-features {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 128vh;
  width: 100%;
  padding-top: 6rem;
  color: var(--text-secondary);
}

.our-key-main-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.our-key-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-right: 2rem;
}

.our-key-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-top: 6.6rem; /* Aligned with the h1 element */
  padding-left: 2rem;
}

/* New styles for the feature section */
.key-feature-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.icon {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 16px;
  transition: color 0.3s ease;
}

.key-feature-label:hover .icon {
  color: #ffb84d;
}

.key-feature-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.right-side-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

.feature-card {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}



/* Button Styles */
.btn {
  margin-top: 2rem;
  height: 52px;
  border-radius: 14px;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Button */
.cta {
  position: relative;
  margin: 0;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  color: var(--text-primary);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  border-radius: 50px;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: var(--primary-color);
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  z-index: -1;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--text-primary);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: var(--primary-color);
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}


.feature-card:hover .feature-icon img {
  filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(5deg);
}

.feature-card:hover .feature-title {
  color: #f8a51b;
  transition: color 0.3s ease;
}

.feature-icon2 {
  margin-bottom: 1rem;
  width: 78px;
  height: 78px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.image-card {
  padding: 0;
  border-top: none;
  height: 100%;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* our key features ends */

/* Our proccess Starts */

.our-process {
  display: flex;
  background-color: var(--primary-bg-color);
  justify-content: center;
  align-items: center;
  padding: 60px 160px;
  width: 100%;
  color: var(--text-secondary);
  position: relative;
  height: 100vh; /* Fixed height */
  overflow: hidden; /* Prevent outer scrolling */
}

.process-main-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.process-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  padding-right: 40px;
}

.process-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  overflow-y: auto; /* Only this area scrolls */
  max-height: 100vh;
}

.heading-div {
  margin-bottom: 40px;
  font-family: "Manrope", sans-serif;
}

.process-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-heading {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 100;
}

.process-heading span {
  font-weight: 700;
}

.process-image {
  width: 100%;
  max-width: 600px;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 30px;
}

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

.process-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #666;
  max-width: 95%;
  font-family: "Lora", serif;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding-bottom: 60px; /* Add padding at bottom for scrolling */
}

.step-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: transparent;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.step-item::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: top 0.6s ease;
  z-index: -1;
}

.step-item:hover::before {
  top: 0;
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-right: 20px;
  min-width: 100px;
  text-align: center;
  transition: color 0.3s ease;
  font-family: "Manrope", sans-serif;
}

.step-item:hover .step-number {
  color: white;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-family: "Manrope", sans-serif;
}

.step-item:hover .step-title {
  color: white;
}

.step-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  transition: color 0.3s ease;
}

.step-item:hover .step-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Styling for the first step - orange background */
.step-item:first-child {
  background-color: var(--accent-color);
  color: var(--text-secondary);
}

.step-item:first-child .step-number {
  color: var(--primary-color);
}

.step-item:first-child .step-description {
  color: #666;
}

/* When first item is hovered, apply the same hover styles */
.step-item:first-child:hover .step-number,
.step-item:first-child:hover .step-title {
  color: white;
}

.step-item:first-child:hover .step-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Customize scrollbar for process-right-side */
.process-right-side::-webkit-scrollbar {
  width: 8px;
}

.process-right-side::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.process-right-side::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.process-right-side::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Our Process Animation Styles */
.process-title,
.process-heading,
.process-image,
.process-description,
.step-item,
.step-number {
  will-change: transform, opacity;
}

/* Main elements transition */
.process-title,
.process-heading,
.process-image,
.process-description,
.step-item {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Step numbers special animation */
.step-number {
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

/* Content within steps */
.step-content {
  transition: all 0.8s ease-out 0.2s;
}

@media screen and (max-width: 1200px) {
  .our-process {
    padding: 60px;
    height: auto;
    overflow: visible;
  }

  .process-main-container {
    flex-direction: column;
  }

  .process-left-side,
  .process-right-side {
    width: 100%;
    height: auto;
    position: relative;
    overflow: visible;
    padding: 0;
    max-height: none;
    align-items: center;
    text-align: center;
  }

  .process-right-side {
    margin-top: 40px;
  }

  .heading-div {
    text-align: center;
    width: 100%;
  }

  .process-steps {
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .our-process {
    padding: 40px 20px;
  }

  .process-title {
    font-size: 0.9rem;
  }

  .process-heading {
    font-size: 2.5rem;
    text-align: center;
  }

  .process-image {
    max-width: 100%;
    margin-top: 1rem;
  }

  .process-description {
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .process-steps {
    gap: 20px;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .step-number {
    font-size: 3rem;
    margin-right: 0;
    margin-bottom: 10px;
    min-width: auto;
  }

  .step-content {
    width: 100%;
  }

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

  .step-description {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .our-process {
    padding: 30px 15px;
  }

  .process-heading {
    font-size: 2rem;
  }

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

  .step-number {
    font-size: 2.5rem;
  }

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

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

/* Our proccess Ends */

/* our Clint say starts */

.our-client {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 100vh;
  width: 100%;
  color: var(--text-secondary);
}

.client-main-container {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 8rem;
}

.client-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.client-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.our-client {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 120vh;
  width: 100%;
  color: var(--text-secondary);
}

.client-main-container {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 8rem;
}

.client-text {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-family: "Manrope", sans-serif;
}

.client-text i {
  color: var(--primary-color);
  margin-right: 6px;
}

.client-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.left-img img {
  border-radius: 30px;
  width: 100%;
  height: 90%;
  object-fit: cover;
}

.client-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

/* Client image styling */
.client-image {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Right side content styling */
.client-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.client-heading {
  /* border: 2px solid red; */
  margin-top: 3rem;
  width: 100%;
  font-family: "Manrope", sans-serif;
}

.client-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  font-weight: 100;
  margin-bottom: 40px;
}

.highlight {
  display: block;
  font-weight: 800;
}

/* Testimonials styling */
.testimonials-container {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  background-color: transparent;
  border-radius: 10px;
  padding: 30px;
  font-family: "Manrope", sans-serif;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}

.rating {
  margin-bottom: 20px;
}

.star-icon {
  color: #f9a826;
  font-size: 24px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  color: #555;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  border: 2px solid #f9a826;
}

.client-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.client-position {
  font-size: 16px;
  color: #888;
  margin: 5px 0 0;
}

/* Navigation buttons */
.testimonial-navigation {
  display: flex;
  gap: 16px;
  position: relative;
  bottom: 60px;
  justify-content: flex-end;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 20%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 24px;
}

.nav-btn:hover {
  background-color: var(--dark-bg);
}

.arrow-left,
.arrow-right {
  font-size: 24px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .our-client {
    padding: 0 80px;
  }
}

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

  .client-left-side,
  .client-right-side {
    width: 100%;
  }

  .client-left-side {
    margin-bottom: 50px;
  }

  .client-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .our-client {
    padding: 0 40px;
    height: auto;
  }

  .client-title {
    font-size: 36px;
  }
}

/* Our Client Animation Styles */
.our-client {
  overflow-x: hidden;
}

.left-img img,
.client-text,
.client-title,
.testimonial-item,
.nav-btn {
  will-change: transform, opacity;
}

/* Main elements transition */
.left-img img,
.client-text,
.client-title,
.testimonial-item,
.nav-btn {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Star rating animation */
.star-icon {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

/* Testimonial navigation buttons */
.nav-btn {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Client info animation */
.client-info {
  transition: all 0.8s ease-out 0.2s;
}

/* OUR CLIENT SAY Ends */

/* faq section starts */

/* FAQ Section Styles */
.faq-section {
  display: flex;
  background-color: var(--primary-bg-color);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 148vh;
  width: 100%;
  padding-top: 1rem;
  color: var(--text-secondary);
}

.faq-main-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.faq-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: sticky;
  top: 2rem;
  padding-right: 2rem;
  max-height: 100vh;
}

.faq-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-left: 2rem;
}

/* FAQ Content Styles */
.faq-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--text-secondary);
}

.faq-image-wrapper {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}

.faq-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* FAQ Items */
.faq-container {
  width: 100%;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: var(--primary-bg-color);
  transition: all 0.3s ease;
}

.faq-item.active {
  background-color: var(--primary-color);
  color: #fff;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-item.active .faq-question {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-item.active .faq-answer p {
  color: #fff;
}

/* Toggle Icon */
.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 1rem;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: #333;
  transition: all 0.3s ease;
}

.faq-toggle::before {
  width: 2px;
  height: 16px;
  left: 9px;
  top: 2px;
}

.faq-toggle::after {
  width: 16px;
  height: 2px;
  left: 2px;
  top: 9px;
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
  background-color: #fff;
}

.faq-item.active .faq-toggle::before {
  transform: rotate(90deg);
}

/* faq section ends */

/* Footer Starts  */

.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--dark-bg);
  justify-content: flex-start;
  padding: 0px 160px;
  height: 100vh;
  width: 100%;
  color: var(--text-primary);
  background-image: linear-gradient(
      rgba(26, 26, 26, 0.85),
      rgba(26, 26, 26, 0.85)
    ),
    url("https://via.placeholder.com/1920x1080");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-button {
  position: absolute;
  top: 100px;
  right: 100px;
  background-color: var(--primary-color);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: visible;
}

.rotating-container {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circular-text {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
}

.circular-text text {
  fill: white;
  font-size: 6.5px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.header-section {
  margin-top: 100px;
  margin-bottom: 50px;
}
.header-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}
.header-section p {
  font-size: 18px;
  font-family: "Lora", serif;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 20px 0;
  font-family: "Lora", serif;
}
.main-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  font-family: "Lora", serif;
}
.logo-section {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.logo-icon {
  width: 150px;
  height: 80px;
  background-color: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-icon img {
  max-width: 100%;
  height: auto;
  display: block;
}
.logo-text {
  margin-bottom: 20px;
  font-size: 16px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  font-family: "Lora", serif;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  cursor: pointer;
}
.links-section {
  display: flex;
  gap: 100px;
  flex-grow: 1;
  justify-content: center;
  font-family: "Lora", serif;
}
.link-column {
  display: flex;
  flex-direction: column;
}
.link-column h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.link-column a {
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 16px;
}
.contact-section {
  width: 25%;
}
.contact-section h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.contact-section p {
  margin-bottom: 20px;
  font-size: 16px;
}
.copyright {
  margin-top: auto;
  padding-bottom: 30px;
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid #333;
  font-family: "Manrope", sans-serif;
} /* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .footer {
    padding: 0 20px;
    height: auto;
  }
  .contact-button {
    position: static;
    margin: 30px auto;
    width: 100px;
    height: 100px;
  }
  .circular-text {
    width: 100px;
    height: 100px;
  }
  .circular-text text {
    font-size: 5.5px;
  }
  .header-section {
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
  }
  .header-section h1 {
    font-size: 32px;
  }
  .header-section p {
    font-size: 16px;
  }
  .main-content {
    flex-direction: column;
    align-items: center;
  }
  .logo-section,
  .links-section,
  .contact-section {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .links-section {
    flex-direction: column;
    gap: 30px;
  }
  .link-column {
    align-items: center;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    padding: 20px 10px;
  }
}

/* footer Ends */
