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

:root {
  /* --primary-color: #094065; */
  --primary-color: #1e2941;
  --primary-bg-color: #f1f1f1;
  --secondary-color: #104866;
  --dark-light-color: #5c5c5c;
  --text-primary: #fff;
  --text-secondary: #000;
  --dark-bg: #1a1a1a;
  --card-bg: #242424;
}

body {
  height: 100vh;
  width: 100%;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

/* Responsive 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 */
body {
  padding-top: 0; /* Remove padding-top completely */
  height: 100vh;
  width: 100%;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  margin: 0;
}

.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 */

/* Hero Slider Section (Merged Slider and Content) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(30, 30, 30, 0.8) 100%
  );
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 160px;
  transform: translateY(-50%);
  max-width: 60%;
  color: var(--text-primary);
  z-index: 5;
}

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

.slide-content h2 {
  font-size: 4.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.1rem;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem;
  max-width: 80%;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #fff;
}

/* 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);
}

/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
  .navbar {
    padding: 1rem;
  }

  .menu ul {
    gap: 24px;
  }

  .slide-content h2 {
    font-size: 3.8rem;
  }

  .slide-content {
    left: 80px;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(30, 30, 30, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .menu.active {
    left: 0;
  }

  .menu ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .menu ul li a {
    font-size: 1.5rem;
  }

  /* Menu Toggle Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .slide-content {
    left: 20px;
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 3rem;
  }

  .slide-content p {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .slide-content h2 {
    font-size: 2.5rem;
  }

  .slide-content .text,
  .slide-content p {
    font-size: 0.9rem;
  }

  .btn {
    width: 220px;
  }
}

/* HOme Ends Here */

/* About 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 */

/* Mobile Responsiveness for About Us Section */
@media screen and (max-width: 768px) {
  .about-us {
    padding: 20px 15px;
    height: auto;
    min-height: 100vh;
  }

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

  .left-side,
  .right-side {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .images-container {
    height: 300px;
    margin-bottom: 30px;
  }

  .robotics-image {
    width: 100%;
    height: 200px;
    position: relative;
    top: 0;
    left: 0;
    clip-path: none;
  }

  .worker-image {
    position: relative;
    width: 100%;
    height: 250px;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }

  .experience-badge {
    position: relative;
    left: 0;
    top: 0;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .experience-badge .number {
    font-size: 36px;
    margin-left: 0;
  }

  .experience-badge .text {
    position: static;
    left: 0;
    bottom: 0;
    font-size: 16px;
  }

  .experience-badge .exp {
    left: 0;
  }

  .right-side {
    padding-left: 0;
  }

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

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

  .rating-container {
    position: static;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    bottom: 0;
    left: 0;
  }

  /* Ensure text readability */
  .description,
  .feature-text {
    font-size: 15px;
  }
}

/* Additional mobile-specific tweaks for smaller screens */
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .experience-badge .number {
    font-size: 32px;
  }

  .experience-badge .text {
    font-size: 14px;
  }
}

/* services Starts */

.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;
}

.ind-services-wrapper .ind-services-section {
  background-color: white;
  padding: 0px 160px;
  margin-top: -50px;
  position: relative;
  /* border: 2px solid red; */
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.ind-services-wrapper .ind-services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  position: relative;
  bottom: 100px;
  justify-content: space-between;
  padding: 0 20px;
  /* border: 2px solid #f5a623; */
}

.ind-services-wrapper .ind-service-card {
  background-color: white;
  width: 22%;
  padding: 30px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ind-services-wrapper .ind-service-card:hover {
  transform: translateY(-10px);
}

.ind-services-wrapper .ind-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.ind-services-wrapper .ind-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ind-services-wrapper .ind-service-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 40px;
  font-family: "Lora", serif;
  color: #333;
}

.ind-services-wrapper .ind-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e5e5e5;
  text-decoration: none;
  color: var(--dark-bg);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.ind-services-wrapper .ind-service-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.ind-services-wrapper .ind-action-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ind-services-wrapper .ind-action-button {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ind-services-wrapper .ind-action-button:hover {
  background-color: #f5f5f5;
}

.ind-services-wrapper .ind-action-button i {
  color: inherit;
  font-size: inherit;
}

@media (max-width: 1024px) {
  .ind-services-wrapper .ind-header-content {
    flex-direction: column;
  }

  .ind-services-wrapper .ind-header-left,
  .ind-services-wrapper .ind-header-right {
    width: 100%;
  }

  .ind-services-wrapper .ind-header-right {
    margin-top: 30px;
  }

  .ind-services-wrapper .ind-services-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ind-services-wrapper .ind-service-card {
    width: 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .ind-services-wrapper .ind-header-left h1 {
    font-size: 2.5rem;
  }

  .ind-services-wrapper .ind-service-card {
    width: 100%;
  }
}

/* Smooth transitions for all animated elements */
.ind-header-left,
.ind-header-right,
.ind-bg-image,
.ind-service-card {
  will-change: transform, opacity;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Prevent horizontal scroll during animation */
.ind-services-wrapper {
  overflow-x: hidden;
}

/* Individual card transitions */
.ind-service-card {
  transition-delay: 0s; /* Will be overridden by JS */
}

/* Background image transition */
.ind-bg-image {
  transition-property: opacity;
}

/* services END */

/* Our Story Starts */

.our-story {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-bg-color, #f9f9f9);
  color: var(--text-secondary, #333);
  width: 100%;
  min-height: 106vh;
  padding: 0 160px;
}

/* Main Container */
.main-container {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.our-story .left-side h2 {
  padding-right: 454px;
  font-size: 18px;
}

.our-story .left-side i {
  color: var(--primary-color);
}

/* Left Side (Heading + Image) */
.left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Manrope", sans-serif;
}

.main-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 88px;
  font-weight: 200;
  font-family: "Manrope", sans-serif;
  color: var(--text-secondary);
}

/* Main Image Below Title */
.main-image {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  object-fit: cover;
  position: relative;
  bottom: 48px;
  
}

/* Right Side (All Other Content) */
.right-side {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

/* Description */
.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 500px;
  font-family: "Lora", serif;
}

/* Stats */
.stats-container {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
}

.stat-item h3 {
  font-size: 2rem;
  margin: 0;
  color: var(--primary-color);
  font-family: "Manrope", sans-serif;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-secondary, #555);
  margin-top: 4px;
  font-family: "Lora", serif;
}

/* Intro Row (Avatars + Button) */
.intro-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Avatars */
.avatar-group {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: -10px;
  border: 2px solid #fff;
}

/* Watch Intro Button */
.watch-intro {
  border: 5px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 12px;
  font-size: 1rem;
  margin-left: 24px;
  cursor: pointer;
  border-radius: 50%;
}

.watch-intro:hover {
  border-color: var(--text-secondary-color);
  color: var(--text-secondary);
}
.watch-intro-2 {
  font-size: 22px;
}

.watch-intro i {
  font-size: 1.5rem;
}

/* Right Side Images */
.our-story .right-side .images-container {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  height: 40%;
  gap: 20px;
  /* Ensures paragraph stays below */
}

.our-story .images-container img {
  width: 50%; /* Adjust image width */
  height: 240px;
  border-radius: 30px;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Our Story Animation Styles */
.our-story {
  overflow-x: hidden;
}

.our-story .left-side > *,
.our-story .right-side > * {
  will-change: transform, opacity;
}

/* Specific transitions for elements */
.our-story .sub-title,
.our-story .main-heading,
.our-story .main-image,
.our-story .right-side img,
.our-story .description,
.our-story .stat-item,
.our-story .avatar,
.our-story .watch-intro,
.our-story .watch-intro-2 {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Detailed Mobile Responsiveness for Our Story Section */
@media screen and (max-width: 768px) {
  .our-story {
    padding: 20px 15px;
    min-height: auto;
  }

  .main-container {
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
  }

  .left-side,
  .right-side {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .our-story .left-side h2 {
    padding-right: 0;
    text-align: center;
    width: 100%;
  }

  .main-heading {
    font-size: 2rem;
    text-align: center;
  }

  .main-image {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

  .description {
    max-width: 100%;
    text-align: center;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .stat-item {
    text-align: center;
  }

  .intro-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .avatar-group {
    justify-content: center;
  }

  .watch-intro {
    margin-left: 0;
  }

  .our-story .right-side .images-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .our-story .images-container img {
    width: 100%;
    height: 250px;
  }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .stat-item h3 {
    font-size: 1.7rem;
  }

  .our-story .images-container img {
    height: 200px;
  }
}

/* Our Story 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 {
  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%;
  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 Work Starts */

/* Enhanced CSS with hover effects and animations */
.our-work {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 166vh;
  width: 100%;
  padding-top: 10rem;
  color: var(--text-secondary);
}

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

.work-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-right: 2rem;
  /* border: 2px solid red ; */
}

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

.right-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.our-work-header {
  margin-top: -4rem;
  padding-bottom: 2rem;
  font-family: "Manrope", sans-serif;
}

.our-work-icon {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.our-work-icon i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.our-work-header h1 {
  font-size: 3rem;
  font-weight: 100;
  line-height: 1.2;
}

.filter-tabs {
  margin-bottom: 3rem;
  position: relative;
  /* border: 2px solid red; */
  left: 340px;
}

.filter-tabs ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.filter-tabs li {
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 1rem;
}

.filter-tabs li.active {
  color: var(--primary-color);
  font-weight: 500;
}

.work-right-side p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 100%;
  color: #fff;
  position: relative;
  bottom: 3rem;
  margin-bottom: 3rem;
  font-family: "Lora", serif;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  width: 100%;
}

.project-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative; /* Added to position child elements */
}

.pc-2 {
  position: relative;
  top: 14px;
}

.project-card:hover {
  transform: translateY(-5px);
}

.card-image {
  position: relative;
  height: 0;
  border-radius: 30px;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.project-card:hover .card-image::before {
  opacity: 0.9;
}

.card-line {
  position: absolute;
  top: 80px; /* Moved to top area */
  left: 20px;
  width: 10px;
  height: 40px;
  background-color: var(--primary-color); /* Added color */
  z-index: 2; /* Ensure it appears above the image */
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.project-card:hover .card-line {
  transform: translateX(0);
  opacity: 1;
}

.card-title {
  position: absolute; /* Changed to absolute positioning */
  top: 20px; /* Position at top of card */
  left: 0;
  padding: 10px 20px 10px 40px; /* Adjusted padding */
  font-size: 28px; /* Increased size */
  font-weight: 700; /* Made bolder */
  color: white; /* Changed text color for visibility */
  font-family: "Manrope", sans-serif;
  z-index: 2; /* Ensure it appears above the image */
  width: 100%; /* Full width */
  transform: translateX(-100%); /* Start off-screen */
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Added text shadow */
}

.project-card:hover .card-title {
  transform: translateX(0); /* Slide in from left */
  opacity: 1;
}

.card-details {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.project-card:hover .card-details {
  opacity: 1;
  transform: translateY(0);
}

.card-details p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.card-details .read-more {
  display: inline-block;
  margin-top: 10px;
  color: #ba9d61;
  font-weight: 600;
  text-decoration: none;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.05); /* Subtle zoom on hover */
}

/* Our Work Animation Styles */
.our-work {
  overflow-x: hidden;
}

.our-work .our-work-icon,
.our-work h1,
.our-work .filter-tabs,
.our-work .project-card,
.our-work .right-p {
  will-change: transform, opacity;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card lines animation */
.card-line {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left center;
}

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

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

  .work-left-side,
  .work-right-side {
    width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .filter-tabs {
    left: 0;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .filter-tabs ul {
    justify-content: center;
  }

  .work-right-side p {
    bottom: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .our-work {
    padding: 0 20px;
    height: auto;
    padding-top: 5rem;
  }

  .our-work-header h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .our-work-icon {
    justify-content: center;
    width: 100%;
  }

  .filter-tabs ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .project-cards {
    grid-template-columns: 1fr;
  }

  .pc-2 {
    top: 0;
  }

  .card-title {
    font-size: 24px; /* Smaller on mobile */
  }

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

@media screen and (max-width: 480px) {
  .our-work {
    padding: 0 10px;
    padding-top: 3rem;
  }

  .our-work-header h1 {
    font-size: 2rem;
  }

  .filter-tabs ul {
    gap: 0.5rem;
  }

  .filter-tabs li {
    font-size: 0.9rem;
  }

  .card-title {
    font-size: 20px;
  }
}
/* our work 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 process ends */

/* OUR CLIENT SAY Starts */

.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-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 */

/* Latest blog Starts */

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

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

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

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

.blog-label {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: "Manrope", sans-serif;
}

.blog-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: var(--accent-color);
}

.blog-label span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.blog-title-container {
  margin-bottom: 3rem;
  font-family: "Manrope", sans-serif;
}

.blog-main-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.blog-sub-title {
  font-size: 3rem;
  font-weight: 700;
}

.blog-description {
  width: 100%;
  margin-top: 3.8rem;
  margin-bottom: 3rem;
  padding-bottom: 3.4rem;
  font-family: "Lora", serif;
}

.blog-description p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
}

.blog-card {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.blog-pagination {
  display: flex;
  margin-top: 2rem;
  align-self: flex-end;
}

.pagination-indicator {
  width: 50px;
  height: 4px;
  background-color: var(--border-color);
  margin-right: 10px;
  border-radius: 2px;
}

.pagination-indicator.active {
  background-color: var(--accent-color);
}

.blog-post-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
}

.blog-post-title h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  max-width: 80%;
  font-family: "Manrope", sans-serif;
}

.read-more {
  text-decoration: none;
}

.blog-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.arrow-icon {
  color: white;
  font-size: 2.2rem;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.read-more:hover .arrow-icon i {
  transform: rotate(45deg);
}

.read-more:hover .arrow-icon {
  background-color: var(--dark-bg);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .latest-blog {
    padding: 0 20px;
    height: auto;
  }

  .blog-main-container {
    flex-direction: column;
    padding-top: 2rem;
  }

  .blog-left-side,
  .blog-right-side {
    width: 100%;
    padding: 0;
  }

  .blog-main-title,
  .blog-sub-title {
    font-size: 2rem;
  }

  .blog-description p {
    font-size: 1rem;
  }

  .blog-card {
    height: 250px;
  }

  .blog-post-title h3 {
    font-size: 1.2rem;
  }
}

/* Latest blog Ends */

/* Latest blog Ends */

/* custom cursor starts */

.cursor {
  width: 14px;
  height: 14px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 9999;
  position: absolute;
  pointer-events: none; /* Prevents interaction */
  transform: translate(-50%, -50%); /* Centers the cursor */
  transition: transform 0.1s ease; /* Makes size transitions smooth */
}

/* custom cursor 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 */
/* footer Ends */
