body {
  font-family: 'Inter', sans-serif !important;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 198, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.1);
  animation: float 15s ease-in-out infinite;
}

.element-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 15%;
  animation-delay: 3s;
  animation-duration: 12s;
}

.element-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 10%;
  animation-delay: 6s;
  animation-duration: 20s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 30px) rotate(5deg);
  }
  50% {
    transform: translate(0, 50px) rotate(0deg);
  }
  75% {
    transform: translate(-30px, 20px) rotate(-5deg);
  }
}

.title-container {
  max-width: 1200px;
  margin-top: 80px;
  padding: 0 2rem;
}

.main-title-index {
  font-size: clamp(3rem, 8vw, 5.5rem); /* Responsive font sizing */
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  text-align: left;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  font-family: 'Inter', sans-serif !important;
  background: linear-gradient(90deg, #111 0%, #444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.sub-title-index {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: #666;
  text-align: left;
  line-height: 1.4;
  margin: 0.5rem 0 0 0;
  font-family: 'Inter', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
  animation: fadeIn 1.2s ease-out;
}

.sub-title-index::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #00ccff);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .title-container {
    padding: 0 1.5rem;
  }

  .main-title-index {
    line-height: 1.1;
  }

  .sub-title-index::after {
    width: 40px;
    bottom: -8px;
  }
}

/* Image Wrapper */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  top: 100px;
}

.image-wrapper-ocu {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  margin-top: -5rem;
}

.image-wrapper-mt-top {
  margin-top: -15rem !important;
}

/* Image Base Styles */
.image-wrapper img {
  width: 100%;
  height: 900px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.5s ease;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper-ocu img {
  width: 100%;
  height: 690px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.5s ease;
  /* border-radius: 12px; */
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
  transform: scale(0.8);
  margin-top: -50px;
}

/* Zoom out effect */
.image-wrapper-ocu img:hover {
  transform: scale(1); /* 90% of original size */
}

/* Offset the second image */
.offset-image {
  position: relative;
  top: 130px; /* Adjust this value to control the offset amount */
}

.offset-image-ocu {
  position: relative;
  top: 35rem; /* Adjust this value to control the offset amount */
}

/* Hover Effects */
.hover-zoom:hover img {
  transform: scale(1.05);
}

/* Image Overlay Effect */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.hover-zoom:hover .image-overlay {
  opacity: 0.2;
}

/* Shadow and Border Enhancements */
.image-wrapper {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* .image-wrapper-ocu {
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
/* border: 1px solid rgba(255, 255, 255, 0.18); */
/* } */

.hover-zoom:hover img {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .image-wrapper {
    border-radius: 12px;
    align-items: center;
  }

  .image-wrapper-ocu {
    border-radius: 12px;
  }

  .image-wrapper img {
    height: 500px !important;
    aspect-ratio: 1/1;
    align-items: center;
    /* margin-left: 25px; */
  }

  .image-wrapper-ocu img {
    width: 100%; /* keep responsive */
    height: auto; /* maintain ratio */
    max-width: 400px; /* limit image size */
    margin: 0 auto; /* center it */
    display: block;
  }

  .image-wrapper-mt-top {
    margin-top: 20px !important;
  }
  .row {
    --bs-gutter-x: 1.5rem;
  }
  .offset-image {
    top: 0;
    margin-top: 20px; /* Smaller offset for mobile */
  }
}

/* ===== Always Visible Value Content ===== */
.value-content {
  position: relative;
  margin-top: 7.5rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.95);
  /* border-radius: 12px; */
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); */
  /* border: 1px solid rgba(0, 0, 0, 0.03); */
  transition: all 0.3s ease;
}

.value-content p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: left;
  position: relative;
}

.value-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  /* background: linear-gradient(to bottom, #00c6ff, #0072ff); */
  border-radius: 4px 0 0 4px;
}

/* Hover Enhancement */
.value-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 114, 255, 0.12);
}

/* Offset Column Adjustment */
.offset-image .value-content {
  margin-top: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .value-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .value-content {
    margin-top: 1.2rem;
    padding: 1.2rem 1.5rem;
  }

  .offset-image .value-content {
    margin-top: 1.5rem;
  }

  .value-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 198, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.1);
  animation: float 15s ease-in-out infinite;
}

.element-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 15%;
  animation-delay: 3s;
  animation-duration: 12s;
}

.element-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 10%;
  animation-delay: 6s;
  animation-duration: 20s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 30px) rotate(5deg);
  }
  50% {
    transform: translate(0, 50px) rotate(0deg);
  }
  75% {
    transform: translate(-30px, 20px) rotate(-5deg);
  }
}

/* ===== Welcome Section ===== */
.welcome-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  top: 21rem;
  isolation: isolate;
  /* min-height: 100vh; */
}

.welcome-container {
  position: relative;
  z-index: 2;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  /* border-radius: 0 20px 20px 0; */
  /* box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05); */
  margin-right: -15%;
  max-width: 800px;
}

.welcome-container-left {
  position: relative;
  z-index: 2;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  /* border-radius: 0 20px 20px 0; */
  /* box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05); */
  margin-right: -15%;
  max-width: 800px;
  margin-top: -8rem;
}

.welcome-container h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}

.welcome-container-left h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 750;
  color: #111;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}

.welcome-container-right h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 750;
  color: #111;
  margin-bottom: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  /* text-align: right; */
  margin-right: 25px;
  top: 150px;
}

.welcome-container h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  /* background: linear-gradient(90deg, #0066ff, #00ccff); */
  margin-top: 1rem;
  border-radius: 2px;
}

.welcome-container-right h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  /* background: linear-gradient(90deg, #0066ff, #00ccff); */
  margin-top: 1rem;
  border-radius: 2px;
}

.welcome-container p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: #000;
  max-width: 500px;
  margin: 2rem 0 0 0;
  text-align: justify;
}

.welcome-container-left p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: #5b5c5d;
  max-width: 500px;
  margin: 2rem 0 0 0;
  text-align: left;
}

.welcome-container-right p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: #000;
  max-width: 555px;
  margin: 9rem 0 0 1rem;
  text-align: left;
}

.welcome-container-right .text-right {
  text-align: right;
  margin-left: 59rem;
}

/* Video Container */
.video-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Animation Styles */
.animate__fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate__delay-1s {
  animation-delay: 1s;
}

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

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .welcome-container {
    margin-right: -10%;
  }
}

@media (max-width: 992px) {
  .welcome-section {
    padding: 6rem 0;
  }

  .welcome-container {
    margin-top: -100px !important;
    margin-right: 0;
    max-width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
  }

  .video-container {
    position: relative;
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .welcome-section {
    padding: 4rem 0;
  }

  .welcome-container {
    padding: 2rem;
  }

  .video-container {
    height: 500px;
  }

  .welcome-container-right h2 {
    text-align: left !important;
    margin-left: 2.4rem;
    margin-top: -4rem;
  }

  .welcome-container-right p {
    margin-left: 2rem;
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .welcome-container-left h2 {
    text-align: left !important;
    margin-left: -0.5rem;
    margin-top: -1rem;
  }

  /* .welcome-container-left p {
    /* margin-left: 2rem; */
  /* margin-top: 10rem; */
  /* } */

  .row-bcgrnd {
    border: 10px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
  }
}

.geometric-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Large half sphere */
.half-sphere {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 400px;
  border-bottom-left-radius: 100%;
  background: #666;
  opacity: 0.1;
  transform-origin: center;
  animation: rotateScale 60s linear infinite, scaleAnim 8s ease-in-out infinite;
}
@keyframes rotateScale {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleAnim {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Purple sphere */
.purple-sphere {
  position: absolute;
  top: 4rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #9f7aea, #ed64a6);
  opacity: 0.8;
  animation: floatY 4s ease-in-out infinite, rotateSphere 12s linear infinite,
    scaleSphere 3s ease-in-out infinite;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes rotateSphere {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleSphere {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Orange orbital sphere */
.orange-orbit {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  width: 4rem;
  height: 4rem;
  transform-origin: center center;
  animation: rotateOrbit 15s linear infinite;
}
.orange-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f6ad55, #f56565);
  opacity: 0.7;
  animation: scaleRotate 2.5s ease-in-out infinite,
    rotateSphere2 8s linear infinite;
}
@keyframes rotateOrbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleRotate {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes rotateSphere2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* Blue figure-8 sphere */
.blue-sphere {
  position: absolute;
  bottom: 5rem;
  right: 8rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #63b3ed, #4299e1);
  opacity: 0.5;
  animation: figure8 10s ease-in-out infinite, rotate360 10s linear infinite;
}
@keyframes figure8 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, -15px);
  }
  50% {
    transform: translate(0, 0);
  }
  75% {
    transform: translate(-30px, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Green floating sphere */
.green-sphere {
  position: absolute;
  top: 33%;
  left: 4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #81e6d9, #38b2ac);
  opacity: 0.4;
  animation: greenY 6s ease-in-out infinite, greenX 8s ease-in-out infinite,
    greenScale 4s ease-in-out infinite, greenRotate 20s linear infinite;
}
@keyframes greenY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}
@keyframes greenX {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
}
@keyframes greenScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@keyframes greenRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Pink particle */
.pink-particle {
  position: absolute;
  top: 25%;
  right: 33%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #fbb6ce, #9f7aea);
  opacity: 0.3;
  animation: pinkXY 7s ease-in-out infinite, pinkOpacity 7s ease-in-out infinite;
}
@keyframes pinkXY {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -30px);
  }
}
@keyframes pinkOpacity {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Yellow particle */
.yellow-particle {
  position: absolute;
  bottom: 33%;
  left: 25%;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #fefcbf, #f6ad55);
  opacity: 0.25;
  animation: yellowXY 9s ease-in-out infinite,
    yellowScale 9s ease-in-out infinite;
}
@keyframes yellowXY {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, 20px);
  }
}
@keyframes yellowScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* OUR SERVICES */

/* ===== Our Section ===== */
.our-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  isolation: isolate;
  /* min-height: 100vh; */
  top: 15rem;
  bottom: 10rem !important;
}

/* ===== Floating Elements ===== */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 198, 255, 0.15);
  animation: float 18s ease-in-out infinite;
  filter: blur(1px);
  opacity: 0.8;
}

.element-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.element-2 {
  width: 120px;
  height: 120px;
  top: 65%;
  left: 10%;
  animation-delay: 3s;
}

.element-3 {
  width: 160px;
  height: 160px;
  top: 40%;
  right: 8%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, 20px) rotate(5deg);
  }
  50% {
    transform: translate(0, 40px) rotate(0deg);
  }
  75% {
    transform: translate(-20px, 15px) rotate(-5deg);
  }
}

/* ===== Services Accordion ===== */
.services-accordion {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08); */
  margin-right: 6rem;
  width: 100%;
}

.service-item {
  margin-bottom: 1rem;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
  transition: all 0.3s ease;
}

.service-btn {
  width: 100%;
  padding: 1.2rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  color: #111;
  transition: all 0.3s ease;
  margin-bottom: -20px;
}

.service-btn:hover {
  color: #0077b6;
}

.toggle-icon {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

/* Show menu when parent link has .open */
.dropdown-link.open + .dropdown-menu {
  display: block;
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.service-item.active .service-content {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.button-learn {
  border: 2px solid #0077b6;
  border-radius: 10px;
}

.button-learn:hover {
  background-color: #464748;
  color: white !important;
}

/* ===== Trusted Brands Section ===== */
.trusted-brands-container {
  /* padding: 8rem 2rem; */
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  top: 12rem;
  margin-top: 10rem !important;
  margin-bottom: 15rem !important;
}

.trusted-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.trusted-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  /* background: linear-gradient(90deg, #0066ff, #00ccff); */
  margin: 1rem auto 0;
  /* border-radius: 2px; */
}

.trusted-brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.brand-logo {
  position: relative;
  padding: 0.1rem;
  /* background: white; */
  border-radius: 12px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.brand-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 114, 255, 0.1);
}

.brand-logo img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%) contrast(0.8);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.brand-logo:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 198, 255, 0.05) 0%,
    rgba(0, 114, 255, 0.03) 100%
  );
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-logo:hover .logo-overlay {
  opacity: 1;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
  .trusted-brands {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .trusted-brands {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .brand-logo {
    height: 120px;
    width: 120px;
    padding: 1rem;
  }

  .brand-logo img {
    max-height: 50px;
    width: 120px !important;
  }
}

@media (max-width: 768px) {
  .trusted-brands {
    grid-template-columns: repeat(2, 1fr);
  }

  .trusted-brands-container {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .trusted-brands {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .brand-logo {
    height: 80px;
  }
}

/* ===== Technical Expertise Section ===== */
.technical-expertise-section {
  background-color: #000;
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.technical-expertise-container {
  padding: 2rem;
}

.technical-expertise-container h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.technical-expertise-container p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  max-width: 500px;
}

/* Technology Logos Container */
.tech-logos-container {
  padding: 2rem;
}

/* Technology Logos Grid */
.tech-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem 0.5rem;
  /* background: rgba(255, 255, 255, 0.05); */
  /* border-radius: 12px; */
  transition: all 0.3s ease;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  text-align: center;
}

.tech-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 114, 255, 0.2);
}

.tech-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.tech-logo:hover img {
  transform: scale(1.1);
}

.tech-logo span {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .tech-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .tech-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .technical-expertise-container {
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .tech-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .technical-expertise-section {
    padding: 4rem 0;
  }

  .tech-logo {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .tech-logos-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
  .tech-logo {
    padding: 1rem 0.5rem;
  }
  .tech-logo img {
    width: 35px;
    height: 35px;
  }
}

/* ===== Footer Section ===== */
.footer-section {
  background: #f8f9fa;
  padding: 2rem 0 1rem;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

/* Floating Elements */
.footer-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-float-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 198, 255, 0.1);
  animation: float 15s ease-in-out infinite;
}

.element-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 15%;
  animation-delay: 3s;
}

.element-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, 20px) rotate(5deg);
  }
  50% {
    transform: translate(0, 40px) rotate(0deg);
  }
  75% {
    transform: translate(-20px, 15px) rotate(-5deg);
  }
}

/* Left Column Styles */
.footer-contact {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-lets-talk {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1.5rem;
  /* text-transform: ; */
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.contact-info a {
  font-size: 1.2rem;
  color: #555;
  /* margin-bottom: 1rem; */
  /* line-height: 1.6; */
  text-decoration: none;
}

.contact-email {
  font-weight: 600;
}

.social-links {
  margin-top: 26rem;
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: #000;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #0077b6;
}

/* Right Column Styles */
.footer-right-content {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  gap: 1.5rem 2rem; /* Vertical and horizontal gap */
  margin-bottom: 3rem;
  padding: 0;
  list-style: none;
  width: 100%; /* Ensure full width */
  margin-left: 33px !important;
}

/* Make each item take up 1/3 of the width */
.footer-nav ul li {
  flex: 0 0 calc(50% - 0.5rem); /* Account for gap */
  max-width: calc(50% - 1.5rem);
}

.footer-nav a {
  color: #111;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #0077b6;
}

.footer-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 2rem;
    justify-items: center; /* center logos horizontally */
    align-items: center;   /* center logos vertically */
    margin-bottom: 3rem;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px; /* all badges same height */
    padding: 0.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    overflow: hidden;
    /* margin-left: -55px; */
}

.badge-item img {
    max-width: 200px; /* same size for all logos */
    max-height: 140px;
    width: auto;
    height: auto;
}


.badge-item:hover {
    transform: translateY(-3px);
}

/* Remove unnecessary margin hack */
.teech {
    margin-left: -60px !important;
}

/* Legal Section */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
  margin-top: 90px;
}

.copyright {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #0077b6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-nav ul {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 4rem 0 2rem;
  }

  .footer-contact,
  .footer-right-content {
    padding: 0 1rem;
  }

  .footer-badges {
    grid-template-columns: 1fr;
  }
  .teech {
    margin-left: 0 !important;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .legal-links {
    justify-content: center;
  }

  .footer-nav ul {
    flex-direction: column;
  }
  .footer-nav ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .badge-item {
    align-items: center;
  }

  /* .clutch-badge div {
    padding-left: 5px !important;
  } */

  .clutch-badge{
    margin-left: -30px !important;
  }

}

.core-values-header {
  text-align: center;
  margin: 3rem 0;
  padding: 0 1rem;
}

.core-values-title {
  font-weight: 800;
  color: var(--secondary-color);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.core-values-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.core-values-subtitle {
  color: var(--light-text);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.value-section {
  padding: 0.1rem 0;
}

.value-container {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  border-radius: 12px;
  padding: 2rem 2rem;
  margin: 0.5rem 0;
  /* box-shadow: var(--box-shadow); */
  transition: transform 0.3s ease;
}

.value-container:hover {
  transform: translateY(-5px);
}

.value-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
  position: relative;
}

.value-image-zoom {
  transition: transform 0.7s ease;
  border-radius: 12px;
}

.value-image-wrapper:hover .value-image-zoom {
  transform: scale(1.08);
}

.value-image-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.03) 100%
  ); */
  pointer-events: none;
  border-radius: 12px;
}

.value-content-right,
.value-content-left {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.value-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}

.value-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.value-content-right .value-title:after {
  left: 0;
}

.value-content-left .value-title:after {
  right: 0;
  left: auto;
}

.value-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.value-cta {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  align-self: flex-start;
}

.value-content-right .value-cta {
  align-self: flex-start;
}

.value-content-left .value-cta {
  align-self: flex-end;
}

.value-cta:hover {
  background: transparent;
  color: var(--primary-color);
}

/* Decorative elements */
.decoration-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.1);
  z-index: -1;
}

.circle-1 {
  top: 10%;
  left: 5%;
}

.circle-2 {
  bottom: 15%;
  right: 5%;
  background: rgba(231, 76, 60, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .value-content-right,
  .value-content-left {
    text-align: center;
    padding: 2rem 1rem;
  }

  .value-content-right .value-title:after,
  .value-content-left .value-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .value-cta {
    align-self: center !important;
  }
}

@media (max-width: 768px) {
  .value-section {
    padding: 0.5rem 0;
  }

  .value-container {
    padding: 0.55rem 0.5rem;
  }

  .value-title {
    font-size: 1.8rem;
  }

  .core-values-title {
    font-size: 2.2rem;
  }
}
.main-title-index,
.sub-title-index {
    transition: opacity 0.5s ease-in-out;
}


.trusted-brands {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px; /* space between logos */
}

/* Force 3 per row on mobile */
@media (max-width: 576px) {
    .trusted-brands {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.brand-logo img {
    max-width: 100%; /* adjust size inside grid cell */
    height: auto;

}

.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 20px;
    text-align: center;
}

/* Force exactly 3 per row only on mobile */
@media (max-width: 576px) {
    .tech-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-logo img {
    max-width: 60px;
    height: auto;
    margin-bottom: 8px;
}
.tech-logo span {
    font-size: 14px;
    font-weight: 500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .social-links {
    order: 2;  /* move to bottom */
    margin-top: 1.5rem; /* spacing */
  }
}

@media (max-width: 576px) {
  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 10px 20px; /* row-gap, col-gap */
    padding: 0;
    margin-top: 10px ;
    list-style: none;
  }

  .footer-nav li {
    margin: 0; /* reset margins */
  }

  .footer-nav {
    margin-top: 30px; /* adjust spacing if needed */
  }
}
/* Mobile only */
@media (max-width: 768px) {
  .footer-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 15px; /* space between items */
    justify-items: center;
  }

  .footer-badges .badge-item {
    text-align: center;
  }
}

/* Remove gap between image and frame on mobile */
@media (max-width: 768px) {
  #imageWrapper .row {
    margin: 0 !important;
  }
  #imageWrapper .col-12 {
    padding: 0 !important;
  }
  #imageWrapper img {
    display: block;
    width: 100%;
    height: auto;
  }
}


/* Reduce only this DesignRush badge on mobile */
@media (max-width: 768px) {
  .badge-designrush {
    max-width: 200px; /* adjust size as needed */
    margin: 0 auto;   /* center it */
    margin-left: -30px !important;
  }

  .badge-designrush iframe,
  .badge-designrush div[data-designrush-widget] {
    max-width: 100% !important;
  }
}
