@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");

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

body {
  font-family: "Geist", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  padding: 0 16px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img-main {
  width: 96px;
  height: 36px;
}

.logo-img-sub {
  width: 125px;
  height: 36px;
}

.divider {
  width: 36px;
  border: 1px solid #e8e8e8;
  transform: rotate(90deg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav__links li a {
  color: #606060;
  font-size: 14px;
  font-weight: 400;
}

/* Active nav link */
.nav__links li.active a,
.nav__links li a.active {
  color: #0a49ed;
  font-weight: 700;
  position: relative;
}

.nav__links li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 100%;
  background: #0a49ed;
  border-radius: 2px;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  cursor: pointer;
}

/* Language selector button styling */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px; /* Increase gap slightly for better separation */
  font-weight: 500;
  cursor: pointer;
  /* border: 1px solid #e0e0e0; Subtle border */
  border-radius: 4px;
  padding: 4px; /* Padding around the buttons */
}

.lang-selector .lang-button {
  background: none;
  border: none;
  padding: 6px 10px;
  font-size: 14px;
  color: #606060;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
  font-family: "Geist", sans-serif; /* Ensure consistent font */
}

.lang-selector .lang-button:hover:not(.active-lang) {
  background-color: #f0f0f0; /* Light background on hover */
  color: #212121; /* Slightly darker text on hover */
}

.lang-selector .lang-button.active-lang {
  background-color: #0a49ed; /* Primary color for active button */
  color: #ffffff; /* White text for active button */
  font-weight: 600; /* Bolder for active */
  box-shadow: 0 2px 8px rgba(10, 73, 237, 0.2); /* Subtle shadow for active */
}

/* Style for the separator */
.lang-selector span {
  color: #e0e0e0;
}

.line {
  height: 1px;
  background: #e8e8e8;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.nav__links.mobile-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 16px;
  gap: 16px;
}

.hero {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.hero__text {
  flex: 1;
  max-width: 600px;
}

.hero h3 {
  font-size: 48px;
  line-height: 58px;
  color: #212121;
  margin-bottom: 16px;
}

.hero p {
  font-size: 14px;
  color: #777;
  margin-bottom: 32px;
}

.hero button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  background: #0a49ed;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.hero__img {
  flex: 1;
  position: relative;
}

.hero__img img {
  width: 100%;
  max-width: 560px;
  height: auto;
}

@media (max-width: 1024px) {
  .hero h3 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero__text,
  .hero__img {
    max-width: 100%;
  }

  .divider {
    display: none;
  }
}

.company {
  padding: 16px 0; /* Adjusted padding for carousel */
  background: rgba(246, 246, 246, 1);
}

/* Styles for the company logos carousel container */
#companyLogosCarousel {
  max-width: 1200px; /* Overall max width for the carousel */
  margin: 0 auto; /* Center the carousel */
}

#companyLogosCarousel .carousel-inner {
  padding: 10px 0; /* Vertical padding inside carousel */
}

.company__logos-group {
  display: flex;
  justify-content: space-around; /* Distribute logos evenly */
  align-items: center;
  gap: 20px; /* Space between logos */
  flex-wrap: wrap; /* Allow logos to wrap on smaller screens */
}

.company__logos-group img {
  cursor: pointer;
  filter: grayscale(200);
  transition: 0.3s;
  height: auto;
  max-width: 150px; /* Max width for individual logos */
  object-fit: contain; /* Ensure logos are contained within their dimensions */
  flex-shrink: 0; /* Prevent logos from shrinking too much */
}

.company__logos-group img:hover {
  filter: grayscale(0);
}

/* Responsive adjustments for company logos carousel */
@media (max-width: 1200px) {
  #companyLogosCarousel {
    max-width: 960px; /* Adjust for medium screens */
  }
  .company__logos-group {
    gap: 15px;
  }
  .company__logos-group img {
    max-width: 120px;
  }
}

@media (max-width: 992px) {
  #companyLogosCarousel {
    max-width: 720px; /* Adjust for smaller medium screens */
  }
  .company__logos-group {
    gap: 10px;
  }
  .company__logos-group img {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  #companyLogosCarousel {
    max-width: 100%;
    padding: 0 15px; /* Add horizontal padding to carousel itself */
  }
  .company__logos-group {
    justify-content: center; /* Center logos on small screens */
    gap: 10px;
  }
  .company__logos-group img {
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .company {
    padding: 10px 0;
  }
  #companyLogosCarousel {
    padding: 0 5px;
  }
  .company__logos-group img {
    max-width: 70px;
  }
}

.biznes {
  margin-top: 72px;
  text-align: left;
  padding: 0 16px;
  /* kichik ekranlar uchun yon padding */
}

.biznes h3 {
  max-width: 100%;
  width: 793px;
  height: auto;
  /* avtomatik balandlik */
  color: rgba(33, 33, 33, 1);
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 24px;
}

.biznes span {
  max-width: 100%;
  width: 692px;
  height: auto;
  /* avtomatik balandlik */
  color: #374151;
  font-family: Geist, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .biznes h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .biznes span {
    font-size: 15px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .biznes h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .biznes span {
    font-size: 14px;
    line-height: 20px;
  }

  .biznes br {
    display: none;
  }
}

@media (max-width: 480px) {
  .biznes h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .biznes span {
    font-size: 13px;
    line-height: 18px;
  }
}

.stats__container {
  display: flex;
  margin-top: 56px;
}

.stat__item {
  flex: 1;
  padding: 0 30px;
  border-left: 1px solid #e0e0e0;
}

.stat__item:first-child {
  border-left: none;
  padding-left: 0;
}

.number {
  color: #2563eb;
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 15px 0;
}

.description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .stats__container {
    flex-direction: column;
  }

  .stat__item {
    border-left: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
  }

  .stat__item:last-child {
    border-bottom: none;
  }
}

.services {
  width: 100%;
  min-height: 900px;
  background: radial-gradient(circle at center, #2c2c2c 0%, #000000 100%);
  display: flex;
  justify-content: center;
  padding-top: 72px;
  margin-top: 72px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.services-content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.services-content h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
}

.description {
  margin-top: 24px;
  font-size: 16px;
  line-height: 22px;
  color: #bbb;
}

/* Enhanced Video Carousel Styles */
.video-carousel-container {
  margin-top: auto;
  position: relative;
  width: 100%;
  height: 700px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-indicators {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 15;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.indicator span {
  font-size: 0;
  color: transparent;
}

.indicator.active {
  background: linear-gradient(135deg, #5d87ff 0%, #4a69dd 100%);
  border-color: #5d87ff;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(93, 135, 255, 0.6);
}

.indicator:hover {
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.1);
}

.main-card-container {
  margin-top: auto;
  position: relative;
  width: 100%;
  height: 640px;
}

.main-card {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 1050px;
  height: 580px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-card img,
.main-video,
.main-video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay,
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  padding: 50px 40px;
}

.video-info {
  text-align: center;
  color: white;
  margin-top: auto;
}

.video-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.5px;
}

.video-info p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
}

.video-controls {
  position: absolute;
  bottom: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 10;
}

.play-pause-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5d87ff 0%, #4a69dd 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(93, 135, 255, 0.4);
}

.mute-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.play-pause-btn:hover {
  background: linear-gradient(135deg, #6b9aff 0%, #5a7ef0 100%);
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(93, 135, 255, 0.6);
}

.mute-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.play-pause-btn i {
  font-size: 22px;
  color: #fff;
  margin-left: 2px;
}

.mute-btn i {
  font-size: 18px;
  color: #fff;
}

.overlay h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 60px;
  text-align: center;
}

.play-button {
  position: absolute;
  bottom: 40px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #5d87ff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(93, 135, 255, 0.6);
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button i {
  font-size: 24px;
  color: #fff;
  margin-left: 4px;
}

.side-card {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%) translateX(560px);
  width: 420px;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.4;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-card:hover {
  opacity: 0.7;
  transform: translateX(-50%) translateX(540px) scale(1.02);
}

.side-card img,
.side-video,
.side-video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  color: white;
}

.side-card-overlay h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
  color: #ffffff;
}

.side-card-overlay p {
  font-size: 15px;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  line-height: 1.5;
}

/* Enhanced Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 12;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-nav:hover {
  background: rgba(93, 135, 255, 0.2);
  border-color: rgba(93, 135, 255, 0.5);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(93, 135, 255, 0.4);
}

.carousel-nav.prev-btn {
  left: 30px;
}

.carousel-nav.next-btn {
  right: 30px;
}

.carousel-nav i {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

/* Enhanced Mobile Responsive */
@media (max-width: 1200px) {
  .main-card {
    width: 850px;
    height: 500px;
  }

  .side-card {
    width: 350px;
    height: 450px;
    transform: translateX(-50%) translateX(460px);
  }
}

@media (max-width: 860px) {
  .video-carousel-container {
    height: 600px;
    border-radius: 15px;
  }

  .main-card {
    width: 90%;
    height: 400px;
    max-width: 600px;
    transform: translateX(-50%);
    bottom: 30px;
  }

  .side-card {
    display: none;
  }

  .carousel-nav.prev-btn,
  .carousel-nav.next-btn {
    display: none;
  }

  .video-indicators {
    top: 20px;
    padding: 8px 15px;
    gap: 12px;
  }

  .indicator {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }

  .indicator.active {
    transform: scale(1.2);
  }

  .video-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .video-info p {
    font-size: 16px;
    max-width: 90%;
  }

  .video-controls {
    bottom: 40px;
    gap: 15px;
  }

  .play-pause-btn {
    width: 60px;
    height: 60px;
  }

  .play-pause-btn i {
    font-size: 18px;
  }

  .mute-btn {
    width: 45px;
    height: 45px;
  }

  .mute-btn i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .video-carousel-container {
    height: 500px;
  }

  .main-card {
    height: 350px;
    bottom: 20px;
  }

  .video-info h3 {
    font-size: 20px;
  }

  .video-info p {
    font-size: 14px;
  }

  .play-pause-btn {
    width: 50px;
    height: 50px;
  }

  .mute-btn {
    width: 40px;
    height: 40px;
  }

  .play-pause-btn,
  .mute-btn {
    width: 45px;
    height: 45px;
  }

  .play-pause-btn i,
  .mute-btn i {
    font-size: 16px;
  }
}

.main__services h3 {
  text-align: center;
  margin-top: 72px;
  margin-bottom: 44px;
  color: rgba(33, 33, 33, 1);
  font-family: Geist;
  font-style: Medium;
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: center;
}

.services__cards {
  /* max-width: 1200px; */
  width: 110%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  padding: 8px;
  border: 1px solid rgba(232, 232, 232, 1);
  border-radius: 4px;
  flex-wrap: wrap;
}

.services__card {
  flex: 0 0 280px;
  box-sizing: border-box;
  height: 444px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 4px;
}

.services__card img {
  margin: auto;
  width: 128px;
  height: 128px;
}

.card__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: rgba(33, 33, 33, 1);
  font-style: SemiBold;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2%;
  text-transform: uppercase;
}

.card__bottom .card__icon i {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10;
  padding: 10px;
  border-radius: 50px;
  border: none;
  background: rgba(11, 75, 241, 0.1);
  cursor: pointer;
}

.services__card:nth-child(1) {
  background: rgba(11, 75, 241, 0.1);
}

.services__card:nth-child(2) {
  background: rgba(107, 222, 60, 0.1);
}

.services__card:nth-child(3) {
  background: rgba(213, 47, 250, 0.1);
}

.services__card:nth-child(4) {
  background: rgba(190, 132, 23, 0.1);
}

.services__card:nth-child(5) {
  background: rgba(27, 169, 164, 0.1);
}

.services__card h6 {
  font-style: Medium;
  font-size: 16px;
  font-weight: 550;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
}

.card-1 h6 {
  color: rgba(8, 53, 169, 1);
}

.card-2 h6 {
  color: rgba(60, 147, 25, 1);
}

.card-3 h6 {
  color: rgba(169, 3, 207, 1);
}

.card-4 h6 {
  color: rgba(166, 109, 4, 1);
}

.card-5 h6 {
  color: rgba(4, 135, 130, 1);
}

.card__bottom h5 {
  color: rgba(33, 33, 33, 1);
  font-style: SemiBold;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2%;
  text-align: left;
  text-transform: uppercase;
}

.services__card:nth-child(5) {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 76px;
  gap: 20px;
  padding: 16px;
  border-radius: 4px;
  background: rgba(27, 169, 164, 0.1);
}

@media (max-width: 1195px) {
  .services__card {
    width: 260px;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .services__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .services__card {
    flex: 0 0 100%;
    box-sizing: border-box;
    height: auto;
    padding: 12px;
  }

  .services__card img {
    width: 100px;
    height: 100px;
  }

  .card__bottom {
    gap: 12px;
  }

  .card__bottom .card__icon i {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}

@media (max-width: 600px) {
  .services__card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 8px;
  }

  .services__card img {
    width: 80px;
    height: 80px;
  }

  .card__bottom {
    font-size: 14px;
    line-height: 18px;
    gap: 8px;
  }

  .card__bottom .card__icon i {
    width: 32px;
    height: 32px;
    padding: 6px;
  }
}

.Clients {
  padding: 80px 0;

  background: #ffffff;
}

.Clients h3 {
  margin-top: 72px;

  font-size: 32px;

  font-weight: 500;

  line-height: 38px;

  color: #212121;

  margin-bottom: 48px;

  text-align: center; /* Center the heading */
}

/* Styles for the carousel container to ensure proper sizing */

#clientTestimonialsCarousel {
  max-width: 1000px; /* Overall max width for the carousel, adjusted for 2 cards */

  margin: 0 auto; /* Center the carousel */
}

.carousel-inner {
  padding: 0 15px; /* Add horizontal padding to prevent controls from overlapping cards */
}

.carousel-item {
  padding: 20px 0; /* Add vertical padding around the cards inside the carousel item */
}

.clients__cards-group {
  display: flex;

  justify-content: center; /* Center cards if there are fewer than `cardsPerSlide` */

  gap: 24px; /* Space between cards */

  flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
}

.clients__card {
  flex: 1 1 calc(50% - 12px); /* 2 cards per row with a 24px gap */

  min-width: 280px; /* Minimum width for cards before wrapping */

  height: auto; /* Allow height to adjust based on content */

  padding: 48px;

  border-radius: 12px;

  background: #f6f6f6;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  position: relative;

  /* margin: 0 auto; Removed as it's handled by flex and gap */
}

.card__logo img {
  max-height: 40px;
}

.card__quote {
  position: absolute;

  top: 40px;

  right: 40px;
}

.card__text {
  margin-top: 24px;

  font-size: 16px;

  line-height: 1.6;

  color: #333;
}

.card__author h4 {
  font-size: 14px;

  font-weight: 700;

  color: #1e3a8a;

  text-transform: uppercase;

  margin-top: 24px;
}

.card__author p {
  font-size: 14px;

  color: #666;

  margin-top: 4px;
}

/* Responsive adjustments for the carousel and cards */

@media (max-width: 1200px) {
  #clientTestimonialsCarousel {
    max-width: 800px; /* Adjusted for 2 cards on medium screens */
  }

  .clients__cards-group {
    gap: 20px; /* Adjust gap for 2 cards */
  }

  .clients__card {
    flex: 1 1 calc(50% - 10px); /* 2 cards per row with a 20px gap */
  }
}

@media (max-width: 768px) {
  #clientTestimonialsCarousel {
    max-width: 100%;
  }

  .carousel-inner {
    padding: 0 10px;
  }

  .clients__cards-group {
    gap: 10px; /* Even smaller gap on small screens */
  }

  .clients__card {
    flex: 1 1 100%; /* 1 card per row on small screens */

    padding: 32px;

    min-width: unset; /* Remove min-width for full flexibility */
  }

  .card__logo img {
    max-height: 36px;
  }

  .card__quote {
    top: 20px;

    right: 20px;
  }

  .card__text {
    font-size: 15px;

    line-height: 1.5;
  }

  .card__author h4 {
    font-size: 13px;

    margin-top: 16px;
  }

  .card__author p {
    font-size: 12px;

    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    padding: 10px 0; /* Less vertical padding on very small screens */
  }

  .clients__card {
    padding: 24px;
  }

  .card__logo img {
    max-height: 32px;
  }

  .card__quote {
    top: 16px;

    right: 16px;
  }

  .card__text {
    font-size: 14px;

    line-height: 1.4;
  }

  .card__author h4 {
    font-size: 12px;

    margin-top: 12px;
  }

  .card__author p {
    font-size: 12px;

    margin-top: 4px;
  }
}

.consultation {
  background: #eaf0fb;
  padding: 50px 20px 20px 20px;
  /* kichik ekranlarda ham joylashadi */
  position: relative;
}

.consultation__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  /* kichik ekranlarda ustma-ust chiqmasligi uchun */
}

.consultation__text h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.consultation__form {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  /* kichik ekranlarda moslashadi */
  min-width: 280px;
}

.consultation__form input[type="text"],
.consultation__form input[type="tel"] {
  padding: 14px 16px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.form__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  /* kichik ekranlarda ustma-ust chiqmasligi uchun */
}

.form__bottom label {
  font-size: 12px;
  color: #555;
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
}

.form__bottom button {
  background: #1e4eff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

/* Footer styling */
.footer {
  background: #1c1c1c;
  border-radius: 8px;
  color: #ccc;
  width: 100%;
  max-width: 1200px;
  padding: 60px 20px 20px;
  position: relative;
  /* absolute ni olib tashladik, responsive bo‘lishi uchun */
  margin: 50px auto 0;
  /* tepada biroz bo‘sh joy */
}

.footer__wrapper {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  /* kichik ekranlarda ustma-ust chiqmasligi учун */
  justify-content: space-between;
}

.footer__col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer__col ul {
  list-style: none;
  padding: 0;
}

.footer__col ul li {
  font-size: 13px;
  margin-bottom: 8px;
  cursor: pointer;
}

.footer__col p {
  font-size: 13px;
  margin-bottom: 8px;
}

.logo {
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
}




.footer__bottom {
  text-align: center;
  font-size: 12px;
  color: #777;
  padding: 20px 0 0;
  margin-top: 40px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .consultation__wrapper {
    gap: 30px;
  }

  .footer__wrapper {
    gap: 30px;
  }

  /* International Page Responsive */
  .partnership-card,
  .recognition-card {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .consultation__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .consultation__form {
    width: 100%;
    max-width: 400px;
  }

  .form__bottom {
    flex-direction: column;
  }

  .footer__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  /* International Page Responsive */
  .international-page-header h1 {
    font-size: 2.2em;
  }

  .standards-card h2,
  .partnership-section h2,
  .recognition-section h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .consultation__text h2 {
    font-size: 24px;
    text-align: center;
  }

  .form__bottom button {
    width: 100%;
  }

  .footer {
    padding: 40px 15px 20px;
  }

  .footer__col h4,
  .footer__col ul li,
  .footer__col p {
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  /* International Page Responsive */
  .international-page-header {
    padding: 30px 0;
  }

  .international-page-header h1 {
    font-size: 1.8em;
  }

  .standards-card h2,
  .partnership-section h2,
  .recognition-section h2 {
    font-size: 1.5em;
  }

  .standards-list li,
  .ifrs-requirements li,
  .partnership-card ul li {
    font-size: 0.9em;
  }

  .partnership-card,
  .recognition-card {
    padding: 20px;
  }
}

/* New styles for the International Standards page */
.international-page-header {
  background-color: #f0f8ff;
  /* Light blue background as in the screenshot */
  padding: 50px 0;
  margin-bottom: 30px;
}

.international-page-header h1 {
  font-size: 3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.international-page-header p {
  font-size: 1.1em;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.standards-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.standards-card {
  flex: 1;
  min-width: 300px;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.standards-card h2 {
  font-size: 1.8em;
  color: #0056b3;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.standards-card h2 i {
  margin-right: 10px;
  color: #28a745;
  /* Green icon */
}

.standards-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.standards-list {
  list-style: none;
  padding: 0;
}

.standards-list li {
  background-color: #e6f7ff;
  /* Light blue background for list items */
  margin-bottom: 10px;
  padding: 12px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 0.95em;
  color: #333;
}

.standards-list li.highlighted {
  background-color: #d1ecf1;
  /* Slightly darker blue for highlighted */
  font-weight: bold;
}

.standards-list li span {
  font-weight: bold;
  margin-right: 10px;
  color: #0056b3;
}

.ifrs-requirements ul {
  list-style: none;
  padding: 0;
}

.ifrs-requirements li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1em;
  color: #333;
}

.ifrs-requirements li i {
  color: #28a745;
  /* Green checkmark */
  margin-right: 10px;
}

.official-sources ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.official-sources li {
  margin-bottom: 10px;
}

.official-sources li a {
  color: #007bff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.official-sources li a i {
  margin-right: 8px;
}

/* Styles for International Partnership section */
.partnership-section {
  background-color: #f8f9fa;
  /* Light background */
  color: #333;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 50px;
}

.partnership-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000;
}

.partnership-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.partnership-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partnership-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  width: 45%;
  /* Adjust as needed */
  min-width: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  border: 1px solid #eee;
}

.partnership-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #333;
}

.partnership-card h3 img {
  height: 30px;
  /* Adjust logo size */
  margin-right: 10px;
}

/* Ensure paragraph text is readable in light theme */
.partnership-card p {
    color: #555;
    margin-bottom: 20px;
}

.partnership-card ul {
  list-style: none;
  padding: 0;
}

.partnership-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #666;
  font-size: 0.95em;
}

.partnership-card ul li i {
  color: #28a745;
  /* Green checkmark */
  margin-right: 10px;
}

.partnership-card button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 20px;
}

/* Styles for International Recognition section */
.recognition-section {
  padding: 60px 0;
  text-align: center;
}

.recognition-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
}

.recognition-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.recognition-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  width: 45%;
  /* Adjust as needed */
  min-width: 350px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.recognition-card h3 {
  font-size: 2em;
  color: #0056b3;
  margin-bottom: 15px;
}

.recognition-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

.recognition-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

/* Specific styles for the Services page */
.services-intro {
  text-align: center;
  padding: 50px 0;
  background-color: #f8f9fa;
  margin-bottom: 40px;
}

.services-intro h1 {
  font-size: 3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.services-intro p {
  font-size: 1.1em;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.service-category {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.service-category-header h2 {
  font-size: 1.8em;
  color: #0056b3;
  display: flex;
  align-items: center;
}

.service-category-header h2 i {
  margin-right: 10px;
  color: #28a745;
}

.service-category-header span {
  font-size: 1.2em;
  font-weight: bold;
  color: #555;
}

.service-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.service-items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
}

.service-item-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #333;
  font-size: 0.95em;
}

.service-item-list li i {
  color: #28a745;
  margin-right: 10px;
  margin-top: 4px;
  /* Align icon with text */
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
  .services-intro h1 {
    font-size: 2.5em;
  }

  .service-category-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-category-header h2 {
    margin-bottom: 10px;
  }

  .service-items-container {
    flex-direction: column;
  }

  .service-item-list {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-intro h1 {
    font-size: 2em;
  }

  .service-category-header h2 {
    font-size: 1.5em;
  }

  .service-category-header span {
    font-size: 1em;
  }
}

/* Specific styles for the Services page */
.services-intro {
  text-align: center;
  padding: 50px 0;
  background-color: #f8f9fa;
  margin-bottom: 40px;
}

.services-intro h1 {
  font-size: 3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.services-intro p {
  font-size: 1.1em;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.service-category {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.service-category-header h2 {
  font-size: 1.8em;
  color: #0056b3;
  display: flex;
  align-items: center;
}

.service-category-header h2 i {
  margin-right: 10px;
  color: #28a745;
}

.service-category-header span {
  font-size: 1.2em;
  font-weight: bold;
  color: #555;
}

.service-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.service-items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
}

.service-item-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #333;
  font-size: 0.95em;
}

.service-item-list li i {
  color: #28a745;
  margin-right: 10px;
  margin-top: 4px;
  /* Align icon with text */
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
  .services-intro h1 {
    font-size: 2.5em;
  }

  .service-category-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-category-header h2 {
    margin-bottom: 10px;
  }

  .service-items-container {
    flex-direction: column;
  }

  .service-item-list {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-intro h1 {
    font-size: 2em;
  }

  .service-category-header h2 {
    font-size: 1.5em;
  }

  .service-category-header span {
    font-size: 1em;
  }
}

.conclusion-header {
  text-align: center;
  padding: 50px 0;
  background-color: #f8f9fa;
  margin-bottom: 40px;
}

.conclusion-header h1 {
  font-size: 3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.conclusion-header p {
  font-size: 1.1em;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-types-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.conclusion-card {
  flex: 1;
  min-width: 45%;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.conclusion-card h2 {
  font-size: 1.5em;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.conclusion-card h2 i {
  margin-right: 10px;
}

.conclusion-card .badge {
  background-color: #e6f7ff;
  color: #0056b3;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  margin-bottom: 15px;
  display: inline-block;
}

.conclusion-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.conclusion-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.conclusion-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9em;
  color: #333;
}

.conclusion-card ul li i {
  margin-right: 8px;
  color: #28a745;
}

.conclusion-card .info-text {
  font-style: italic;
  color: #888;
  font-size: 0.85em;
  margin-top: 20px;
}

.conclusion-samples {
  margin-top: 50px;
  margin-bottom: 50px;
}

.conclusion-samples h2 {
  text-align: center;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 30px;
}

.sample-accordion .accordion-item {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.sample-accordion .accordion-header {
  background-color: #f9f9f9;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #333;
  font-size: 1.1em;
}

.sample-accordion .accordion-content {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background-color: #ffffff;
  display: none;
  /* Hidden by default */
}

.sample-accordion .accordion-content p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555;
}

.sample-accordion .accordion-content ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.sample-accordion .accordion-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 0.9em;
  color: #333;
}

.sample-accordion .accordion-content ul li i {
  margin-right: 8px;
  color: #28a745;
}

.sample-accordion .accordion-header.active {
  background-color: #e6f7ff;
  color: #0056b3;
}

/* Icons for cards */
.positive-icon {
  color: #28a745;
}

.conditional-icon {
  color: #ffc107;
}

.negative-icon {
  color: #dc3545;
}

.abstain-icon {
  color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .conclusion-header h1 {
    font-size: 2.2em;
  }

  .conclusion-types-container {
    flex-direction: column;
  }

  .conclusion-card {
    min-width: unset;
    width: 100%;
  }

  .conclusion-samples h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .conclusion-header h1 {
    font-size: 1.8em;
  }

  .conclusion-card h2 {
    font-size: 1.2em;
  }

  .conclusion-samples h2 {
    font-size: 1.5em;
  }
}

.resources-header {
  text-align: center;
  padding: 50px 0;
  background-color: #f8f9fa;
  margin-bottom: 40px;
}

.resources-header h1 {
  font-size: 3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.resources-header p {
  font-size: 1.1em;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.regulations-section {
  margin-bottom: 50px;
}

.regulations-section h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.regulations-list {
  list-style: none;
  padding: 0;
}

.regulations-list li {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
  color: #555;
}

.regulations-list li a {
  color: #007bff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.regulations-list li a i {
  margin-left: 10px;
}

.audit-methodology-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 50px;
}

.audit-methodology-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.audit-methodology-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #ccc;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.methodology-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.methodology-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  align-items: center;
}

.methodology-card h3 span {
  font-size: 0.8em;
  background-color: #007bff;
  padding: 5px 8px;
  border-radius: 4px;
  margin-right: 10px;
}

.methodology-card ul {
  list-style: none;
  padding: 0;
}

.methodology-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 0.9em;
}

.methodology-card ul li i {
  margin-right: 8px;
  color: #28a745;
}

.client-info-section {
  margin-bottom: 50px;
}

.client-info-section h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.client-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.client-info-list li {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 20px;
  width: 45%;
  min-width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
  color: #555;
}

.client-info-list li a {
  color: #007bff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.client-info-list li a i {
  margin-left: 10px;
}

/* Responsive styles for resources page */
@media (max-width: 768px) {
  .resources-header h1,
  .audit-methodology-section h2,
  .client-info-section h2 {
    font-size: 2.2em;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .client-info-list li {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .resources-header h1,
  .audit-methodology-section h2,
  .client-info-section h2 {
    font-size: 1.8em;
  }

  .methodology-card h3 {
    font-size: 1.1em;
  }

  .methodology-card h3 span {
    padding: 3px 5px;
  }
}

.connect-header {
  background-color: #f0f8ff;
  /* Light blue background as in the screenshot */
  padding: 50px 0;
  margin-bottom: 30px;
  text-align: center;
}

.connect-header h1 {
  font-size: 3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.connect-header p {
  font-size: 1.1em;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  flex: 1;
  min-width: 350px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-card h2 {
  font-size: 2.5em;
  color: #0056b3;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 5px;
}

.contact-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.map-section {
  margin-bottom: 50px;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments for connect page */
@media (max-width: 768px) {
  .connect-header h1 {
    font-size: 2.5em;
  }

  .contact-info-section {
    flex-direction: column;
  }

  .contact-card {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .connect-header h1 {
    font-size: 2em;
  }

  .contact-card h2 {
    font-size: 2em;
  }
}

.central-container {
  padding-top: 5%;
}
/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
  margin-top: 60px;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer__col {
  flex: 1;
  min-width: 200px;
}

.footer__col h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer__col ul {
  list-style: none;
  padding: 0;
}

.footer__col ul li {
  margin-bottom: 12px;
}

.footer__col ul li a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__col ul li a:hover {
  color: #ffffff;
}

.footer__col p {
  color: #a0a0a0;
  margin-bottom: 10px;
}

.footer__col p a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__col p a:hover {
  color: #ffffff;
}

.footer__socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    font-size: 24px;
    color: #9ca3af; /* Muted grey */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon i {
    /* Ensure icon inherits color */
}

/* Resources Page Styles Refactored */
.resources-header {
  text-align: center;
  padding: 60px 0 40px;
  background-color: #f9fafb;
  margin-bottom: 40px;
}

.resources-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #111827;
  font-weight: 700;
}

.resources-header p {
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Regulations List */
.regulations-section {
  padding-bottom: 60px;
}

.regulations-section h2 {
  font-size: 1.5rem;
  color: #2563eb;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.regulations-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.regulations-list li {
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.regulations-list li:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.regulations-list li span {
  font-size: 1rem;
  color: #374151;
  line-height: 1.5;
  flex: 1;
  margin-right: 20px;
  font-weight: 500;
}

.regulations-list li a {
  color: #3b82f6;
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 6px;
  background: #eff6ff;
  transition: background 0.2s;
}

.regulations-list li a:hover {
  background: #dbeafe;
}

/* Audit Methodology Dark Section */
.audit-methodology-section {
  background-color: #111827;
  padding: 80px 0;
  color: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.audit-methodology-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.audit-methodology-section h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
}

.audit-methodology-section p {
  color: #9ca3af;
  max-width: 800px;
  margin-bottom: 50px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

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

@media (max-width: 640px) {
  .methodology-grid {
    grid-template-columns: 1fr;
  }
}

.methodology-card {
  background-color: #1f2937;
  padding: 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #374151;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.methodology-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #4b5563;
  background-color: #252f3f;
}

.methodology-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

/* Icon box styling */
.methodology-card h3 span {
  font-size: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #374151;
  color: #fff;
  font-weight: 700;
}

/* Specific colors for card icons to match bento grid style */
.methodology-card:nth-child(1) h3 span {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}
.methodology-card:nth-child(2) h3 span {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
.methodology-card:nth-child(3) h3 span {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}
.methodology-card:nth-child(4) h3 span {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}
.methodology-card:nth-child(5) h3 span {
  background: rgba(236, 72, 153, 0.2);
  color: #f472b6;
}
.methodology-card:nth-child(6) h3 span {
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
}
.methodology-card:nth-child(7) h3 span {
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
}
.methodology-card:nth-child(8) h3 span {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.methodology-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.methodology-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.5;
}

.methodology-card ul li:last-child {
  margin-bottom: 0;
}

.methodology-card ul li i {
  color: #10b981;
  margin-top: 5px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Card 3 specific red list items */
.methodology-card:nth-child(3) ul li i {
  color: #f87171;
}

/* Client Info bottom section */
.client-info-section {
  padding: 80px 0;
}

.client-info-section h2 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 40px;
  color: #111827;
  font-weight: 700;
}

.client-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.client-info-list li {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  width: calc(50% - 12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.client-info-list li:hover {
  background: #fff;
  border-color: #d1d5db;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.client-info-list li span {
  color: #374151;
  font-weight: 500;
  font-size: 1rem;
}

.client-info-list li a {
  color: #3b82f6;
  background: #eff6ff;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.client-info-list li a:hover {
  background: #dbeafe;
}

@media (max-width: 768px) {
  .client-info-list li {
    width: 100%;
  }
}

/* Futuristic Language Switcher - Seamless Pill */
.lang-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.lang-switch-wrapper {
  display: flex;
  align-items: stretch;
  background: #f1f5f9;
  border-radius: 30px; /* Parent Pill Shape */
  padding: 0; /* Buttons expand to edges */
  border: none; /* No border */
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* Clips buttons to the parent shape */
  height: 36px; /* Fixed height for consistency */
}

/* Wrapper for forms to ensure they behave */
.lang-switch-wrapper form {
  margin: 0;
  padding: 0;
  display: flex;
}

.lang-button {
  background: transparent;
  border: none;
  padding: 0 18px; /* Horizontal padding, vertical handled by flex center */
  height: 100%; /* Fill wrapper height */
  font-size: 0.75rem;
  font-weight: 800;
  color: #94a3b8;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 0.5px;
  border-radius: 0; /* Rectangular buttons, clipped by parent */
  position: relative;
}

/* Separator line between buttons (optional, but requested 'one side is line') */
.lang-switch-wrapper form:first-child .lang-button {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hover State */
.lang-button:not(.active-lang):hover {
  background: rgba(0, 0, 0, 0.03);
  color: #475569;
}

/* Active State */
.lang-button.active-lang {
  background: #0a49ed;
  color: #ffffff;
  box-shadow: none;
  z-index: 2; /* Ensure active sits on top if overlapping */
  border-right: none; /* Remove separator on active */
}
