@font-face {
  font-family: 'gsb_font';
  src: url('fonts/SF-Pro-Display-Thin.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'gsb_font';
  src: url('fonts/SF-Pro-Display-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'gsb_font';
  src: url('fonts/SFPRODISPLAYREGULAR.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'gsb_font';
  src: url('fonts/SFPRODISPLAYMEDIUM.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'gsb_font';
  src: url('fonts/SFPRODISPLAYBOLD.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'gsb_font';
  src: url('fonts/SF-Pro-Display-Heavy.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

:root {
  --font-primary: 'gsb_font', sans-serif;
  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 800;
  --text-dark: #323030;
}

body, a, button, p {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
}

h1, h2, h3 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
}

h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
}



body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.blue_button {
  padding: 12px 24px;
  background: linear-gradient(#0F68ED, #093DB4);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  line-height: normal;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-primary);
  text-decoration: none;
}

.blue_button_border {
  position: relative;
  padding: 10px 20px 11px;
  background: #ffffff;
  color: #093DB4;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  line-height: normal;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-primary);
  text-decoration: none;
  z-index: 1;
}

.blue_button_border::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(#0F68ED, #093DB4);
  z-index: -1;
  border-radius: 30px;
}

.blue_button_border::after {
  content: "";
  position: absolute;
  top: 1px; left: 1px; right: 1px; bottom: 1px;
  background: #fff;
  z-index: -1;
  border-radius: 30px;
}

.blue_button_border:hover::after {
  background: linear-gradient(#0F68ED, #093DB4);
}


.blue_button_border:hover {
  color: #fff;
}

/* ===== Header ===== */
.header {
  /* position: sticky;
  top: 0; */
  z-index: 1000;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
}

.logo img {
  height: 64px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 25px;
}


/* ===== Navigation ===== */
.navbar .nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s;
  font-size: 17px;
}

/* Animated underline */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background-color: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

/* .nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
} */

.nav-links a:hover {
  color: #093DB4;
}

/* Remix icon spacing */
.nav-links a i {
  /* margin-right: 6px; */
  vertical-align: middle;
}
.dropdown-icon {
  margin-left: 4px;
}

/* Dropdown - hidden by default */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

/* When hovering over the dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  white-space: nowrap;
  transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
}

/* ===== Hamburger (mobile) ===== */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.vertical_hamburger i {
  font-size: 32px;
  cursor: pointer;
}

.vertical_hamburger i:hover {
    color: #093DB4;
}

.flyoutnav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: -15px;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 999;
  padding-top: 80px;
  border-left: 4px solid #093DB4;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .3);
  box-sizing: border-box;
}

.flyoutnav .closebtn {
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 38px;
  margin-left: 50px;
  border-bottom: none;
}

.flyoutnav a {
  padding: 13px 8px 16px 35px;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  color: #101010;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-height: 450px) {
  .flyoutnav a {
      font-size: 18px;
  }
}

.verticals-menu-heading {
  background: linear-gradient(#0F68ED, #093DB4);
  color: #fff;
  padding: 13px 8px 13px 22px;
  text-decoration: none;
  font-size: 19px;
  letter-spacing: 1px;
  margin: 0 0 10px;
}

.circle_hero {
  margin: 0;
  padding: 60px 40px;
  background: #080823;
  color: white;
  /* height: 100vh; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.orbit-wrapper {
  position: relative;
  width: 160vmin;
  height: 60vmin;
  /* max-width: 100vw;
  max-height: 100vh; */
}

/* Glowing Rings */
.ring {
  position: absolute;
  border: 2px solid rgb(254 224 200 / 60%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgb(251 91 30 / 45%), inset 0 0 60px rgb(251 91 30 / 40%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 {
  width: 160vmin;
  height: 160vmin;
}

.ring2 {
  width: 130vmin;
  height: 130vmin;
}

.ring3 {
  width: 100vmin;
  height: 100vmin;
}
/* Orbit Container */
.orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  z-index: 1;
}

.orbit-icon {
  position: absolute;
  width: 47px;  /* Icon size */
  height: 47px; /* Icon size */
  object-fit: contain;
  transform-origin: center center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

/* Orbit1 - Positioning icons evenly along the circle */
.orbit img:nth-child(1) {
  transform: rotate(0deg);
  top: -30px;
}
.orbit img:nth-child(2) {
  transform: rotate(72deg);
  left: auto;
  right: 0;
  top: 32%;
}
.orbit img:nth-child(3) {
  transform: rotate(144deg);
  top: auto;
  bottom: 12%;
  left: auto;
  right: 13%;
}
.orbit img:nth-child(4) {
  transform: rotate(216deg);
  top: auto;
  bottom: 7%;
  left: 19%;
}
.orbit img:nth-child(5) {
  transform: rotate(288deg);
  left: 1.5%;
  top: 28%;
}

/* Orbit2 - Different scale */
.orbit2 {
  transform: scale(0.86);
}

.orbit2 .orbit-icon {
  width: 45px;
  height: 45px;
}

/* Orbit1 - Positioning icons evenly along the circle */
.orbit2 img:nth-child(1) {
  transform: rotate(0deg);
  top: -3px;
}
.orbit2 img:nth-child(2) {
  transform: rotate(72deg);
  left: auto;
  right: 27px;
  top: 33%;
}
.orbit2 img:nth-child(3) {
  transform: rotate(144deg);
  top: auto;
  bottom: 15%;
  left: auto;
  right: 14%;
}
.orbit2 img:nth-child(4) {
  transform: rotate(216deg);
  top: auto;
  bottom: 9%;
  left: 20%;
}
.orbit2 img:nth-child(5) {
  transform: rotate(288deg);
  left: 4.5%;
  top: 29%;
}

/* Orbit3 - Different scale */
.orbit3 {
  transform: scale(0.69);
}

.orbit3 .orbit-icon {
  width: 55px;
  height: 55px;
}

/* Orbit1 - Positioning icons evenly along the circle */
.orbit3 img:nth-child(1) {
  transform: rotate(0deg);
  top: 12px;
}
.orbit3 img:nth-child(2) {
  transform: rotate(72deg);
  left: auto;
  right: 40px;
  top: 33%;
}
.orbit3 img:nth-child(3) {
  transform: rotate(144deg);
  top: auto;
  bottom: 15%;
  left: auto;
  right: 14%;
}
.orbit3 img:nth-child(4) {
  transform: rotate(216deg);
  top: auto;
  bottom: 10%;
  left: 20%;
}
.orbit3 img:nth-child(5) {
  transform: rotate(288deg);
  left: 5.5%;
  top: 29%;
}

/* Center box */
.center-box {
  position: absolute;
  width: 100px;
  height: 100px;
  /* padding: 10px; */
  background: black;
  border-radius: 20px;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #070126;
  box-shadow: 0 2px 8px #ffb347;
  border:1px solid #d48806;
  transition: all 0.3s ease-in-out;
}

.center_box_animate {
  width: 100%;
  height: 100%;
  text-align: center;
  /* margin: 15px auto 0; */
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.floating-icon {
  width: 85%;
  /* height: 100%; */
  object-fit: contain;
  /* animation: moveUp 2s ease-in-out forwards; */
  /* animation-delay: 0.5s; */
  opacity: 0;
  position: absolute;
  /* bottom: -40px; */
  left: 8px;
  z-index: 9;
  margin-top: 12px;
  /* transform: translateX(-50px); */
}


@keyframes moveUp {
  0% {
    transform: translateY(100px) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(0.6);
    opacity: 1;
  }
}

.center_box_shadow {
  width: 130px;
  height: 100px;
  background: #875d39;
  display: block;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(20px);
  animation: opacityUp 2s ease-in-out forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

@keyframes opacityUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}

/* Center text */
.center-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.center-text h2 {
  font-size: 5vw;
  margin-bottom: 30px;
  margin-top: 0;
}

.center-text a {
    text-decoration: none;
  padding: 12px 24px;
  background: linear-gradient(#0F68ED, #093DB4);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  line-height: normal;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: var(--font-weight-medium);
}

.hero_portfolio {
  margin-top: -80px;
  z-index: 9;
}

.hero_portfolio div {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero_portfolio div img {
  width: 22%;
}


.technologies-section {
  padding: 100px 40px 60px;
  background-color: #080823;
}

.technologies-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.left-content {
  flex: 0 0 60%;
  position: relative;
}

.left-inner {
  position: sticky;
  top: 0;
}

.left-inner h2 {
  font-size: 38px;
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  margin-top: 0;
  color: #eeeeee;
}

.left-inner p {
  font-size: 20px;
  color: #eeeeee;
  margin-bottom: 10px;
  font-family: var(--font-primary);
  max-width: 450px;
}

.left-inner img {
  width: 100%;
  margin-top: 0px;
  margin-left: -20px;
}

.right-content-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.right-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.tech-card {
  background: linear-gradient(135deg, #0575e6, #021b79);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: #fff;
  min-height: 220px;
  width: 100%;
  box-sizing: border-box;
}

.tech-card img {
  width: 50px;
  margin-bottom: 0px;
  display: inline-block;
}

.tech-card h3 {
  font-size: 28px;
  line-height: normal;
  margin-bottom: 0;
  margin-top: 20px;
}

.tech-card p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 10px;
}


.top_sec {
  width: 100%;
  height: 500px;
  display: block;
  background: #111;
}

.home_projects {
  background-color: #080823;
  padding-top: 30px;
  overflow-x: hidden;
}

.home_projects h2 {
  text-align: center;
  color: #eeeeee;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.slider {
  background-color: #080823;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px 50px 90px;
  max-width: 77%;
}

.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.slide  {
  margin-right: 80px;
}

.slider-wrapper div {
  position: relative;
}
/* .slider-wrapper {
  margin-top: 5vw;
  margin-left: 11vw;
} */
.slide-image {
  /* height: 24vw; */
  width: 42vw;
  padding: 20px 40px 20px 0;
}
.slide-image img {
  width: 100%;
  cursor: pointer;
}
.slide-content {
  width: 25vw;
  color: #fff;
  padding: 3vw 2vw 3vw 4vw;
}
.slide-date {
  color: #0a8acb;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1vw;
  padding-bottom: 1vw;
}
.slide-title {
  font-size: 2.5vw;
  font-weight: 400;
  letter-spacing: 0.1vw;
  line-height: 2.55vw;
  padding-bottom: 1vw;
  font-weight: var(--font-weight-bold);
}
.slide-text {
  font-size: 15px;
  line-height: 1.4;
  padding-bottom: 2vw;
  font-weight: var(--font-weight-normal);
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.slide-more {
  display: inline-block;
}
.slide-bullet {
  width: 0.5vw;
  height: 0.5vw;
  background-color: #0b8bcc;
  border-radius: 200%;
  position: relative;
  margin-left: 1.2vw;
}
.slide-nav {
  margin-left: 64vw;
  margin-top: -5.5vw;
}

/* div.overlay-blue {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: 0.5s ease all;
}
div.overlay-blue:hover {
  background-color: rgba(13, 27, 43, 0.5);
} */

.arrows {
  width: 97%;
  position: absolute;
  top: 40%;
  left: 16px;
  z-index: 9;
  height: 72px;
}
.arrow {
  display: inline-block;
  position: absolute;
  /* width: 1.2vw;
  height: 1.2vw;
  background: transparent;
  text-indent: -9999px;
  border-top: 0.15vw solid #fff;
  border-left: 0.15vw solid #fff;
  transition: all 0.1s ease-in-out; */
  text-decoration: none;
  color: #fff;
  font-size: 60px;
  transition: all ease-in-out 0.3s;
}
.arrow.prev:hover {
  transform: translateX(-10px);
}
.arrow.next:hover {
  transform: translateX(10px);
}
/* .arrow:before {
  display: block;
  height: 200%;
  width: 200%;
  margin-left: -50%;
  margin-top: -50%;
  content: "";
  transform: rotate(45deg);
} */
.arrow.prev {
  /* transform: rotate(-45deg); */
  left: 0;
}
.arrow.next {
  /* transform: rotate(135deg); */
  right: 0;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.08); /* semi-transparent white */
  border-radius: 20px;
  backdrop-filter: blur(12px); /* blur background */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  align-items: center;
}


.recognize {
  background-color: #080823;
  padding: 50px 40px;
  background-image: url(assets/CLUTCH.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.recognize .flex {
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.reco_left_content {
  max-width: 400px;
}

.blue_divider {
  max-width: 140px;
  height: 4px;
  margin: 0;
  background-color: #0575e6;
  border: none;
}

.white_divider {
  max-width: 100%;
  height: 1px;
  margin: 0;
  background-color: #ffffff;
  border: none;
}

.reco_left_content h3 {
  font-size: 2rem;
  color: #eeeeee;
  margin: 0 0 15px;
  letter-spacing: 0.5px;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.reco_left_content p {
  font-size: 16px;
  opacity: 0.9;
  letter-spacing: 0.5px;
  color: #eeeeee;
  line-height: 1.5;
  margin-bottom: 0;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.reco_right_content {
  display: flex;
  gap: 40px;
}

.reco_right_content img {
  width: 150px;
}

.home_contact {
  background-color: #080823;
  padding: 50px 40px;
}

.home_contact .contact_container {
  max-width: 1200px;
  margin: 0 auto;
  background-image: url(assets/PATTERN.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-blend-mode: soft-light;
  background-position: center;
  background-color: #080823;
  padding: 60px 0;
  position: relative;
}

.home_contact .contact_container::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #080823;
  opacity: 0.2;
}

.form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #1A4CBC;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 30px;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

.form-container p {
  color: #eeeeee;
  text-align: center;
  max-width: 300px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.4;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container form input,
.form-container form textarea {
  background-color: #ffffff;
  padding: 10px;
  border: none;
  border-radius: 8px;
  color: #111;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  font-size: 16px;
}

.form-container form textarea {
  height: 100px;
}

.form-container form input::placeholder,
.form-container form textarea::placeholder {
  font-size: 14px;
  color: #111;
}

.home_review {
  background-color: #080823;
  text-align: center;
  padding: 10px 0 60px 0;
}

.home_review h2 {
  color: #eeeeee;
  margin: 0 auto 15px;
  font-size: 2.5rem;
}

.home_review p {
  color: #eeeeee;
  margin: 0 auto 15px;
  letter-spacing: 1px;
  opacity: 0.9;
  font-size: 20px;
  font-weight: var(--font-weight-light);
}

.home_benefit {
  background-color: #080823;
  padding: 60px 40px;
}

.benefit_container {
  background: #0C0414;
  padding: 70px 60px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.benefit_container::after {
  content: '';
  width: 50%;
  height: 100%;
  border-radius: 50%;
  background-color: #D3672D;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  opacity: 0.6;
  filter: blur(100px);
}

.benefit_card {
  position: relative;
  z-index: 2;
  /* background-color: white; */
  color: #000;
  padding: 40px 30px;
  border-radius: 25px;
  background-image: url(assets/Rectangle_5324.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 270px;
  max-width: 270px;
  box-sizing: border-box;
}

.card_border {
  background-image: url(assets/Rectangle_53.svg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: #fff;
}

.benefit_container h2 {
  color: #eeeeee;
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin: 0 0 60px;
  line-height: 1;
}

.benefit_card h6 {
  font-weight: var(--font-weight-medium);
  font-size: 26px;
  margin: 0;
  margin-top: 20px;
  line-height: 1.4;
}

.card_border h3 {
  color: #ffffff;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: var(--font-weight-medium);
  margin: 0;
  margin-bottom: 20px;
}

.benefit_card.card_border h6 {
  font-weight: var(--font-weight-light);
  line-height: 1.3;
}

.benefit_card.card_border p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.5;
  font-weight: var(--font-weight-light);
  margin-bottom: 0;
}

.benefit_card.card_border .white_divider {
  opacity: 0.5;
}

.mtYeu {
  justify-content: space-between;
  align-items: flex-start;
}

.home_logos_carousal {
  background: #080823;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.carousel {
  width: 100%;
  overflow: hidden;
  /* padding: 20px 0; */
}

.carousel-track {
  display: flex;
  animation: logo_scroll 20s linear infinite;
}

.reverse_track {
  display: flex;
  animation: logo_scroll_reverse 20s linear infinite;
}

.carousel .logo {
  flex: 0 0 auto;
  /* width: 160px;
  height: 80px; */
  margin: 0 10px;
  /* background: #1c1c2e; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 40px;
}

.carousel .reverse_track .logo {
  margin-bottom: 0;
}

.carousel .logo img {
  /* max-width: 100px; */
  height: 70px;
}

@keyframes logo_scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-80%);
  }
}

@keyframes logo_scroll_reverse {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0);
  }
}



.footer {
  background: #080823;
  padding: 30px 30px 50px 30px;
}

.uppar_footer, .center_footer,
.bottom_footer, .copyright {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.center_footer {
  align-items: flex-start;
  margin-top: 40px;
}

.uppar_left {
  width: 60%;
}

.uppar_right {
  width: 40%;
  text-align: right;
}

.uppar_footer h3 {
  font-size: 4.3rem;
  margin: 0;
  font-weight: var(--font-weight-medium);
  background: rgb(255,255,255);
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(15,104,237,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.uppar_footer p {
  color: #ffffff;
  font-weight: var(--font-weight-light);
  line-height: 1.7;
  letter-spacing: 1px;
  font-size: 17px;
}

.uppar_right .blue_button {
  width: 170px;
  display: inline-block;
  text-align: center;
  padding: 16px 24px;
}

.center_one {
  width: 50%;
}

.center_two {
  width: 25%;
}

.center_three {
  width: 25%;
}

.center_footer h4 {
  color: #ffffff;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 1px;
}

.center_footer a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: var(--font-weight-light);
}

.center_footer a:hover {
  color: #0575e6;
}

.center_footer a i {
  font-weight: var(--font-weight-light);
  font-size: 24px;
}

.center_footer ul {
  padding: 0;
  letter-spacing: 1px;
  font-weight: var(--font-weight-light);
  list-style: none;
  color: #ffffff;
  line-height: 2;
}

.center_footer ul li {
  margin-bottom: 10px;
}

.center_three a {
  line-height: 2;
  display: flex;
}

.center_three a i {
  font-size: 18px;
}

.footer_social {
  margin-top: 40px;
  background: #14143c;
  padding: 16px 30px;
  border-radius: 10px;
  display: inline-block;
}

.bottom_footer {
  justify-content: space-between;
  margin-top: 60px;
}

.footer_address {
  width: 31%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer_address h3 {
  color: #383858;
  font-size: 4rem;
  margin: 0;
  font-weight: var(--font-weight-black);
}

.footer_address p {
  color: #ffffff;
  font-weight: var(--font-weight-light);
  font-size: 15px;
  line-height: 1.5;
}

.footer_address p a {
  color: #ffffff;
  text-decoration: none;
}

.copyright {
  margin-top: 60px;
  border-top: 1px solid #383858;
  padding-top: 30px;
  text-align: center;
}

.copyright p {
  color: #ffffff;
  font-weight: var(--font-weight-light);
  font-size: 14px;
  margin: 0 auto;
  letter-spacing: 1px;
}





.review_carousel-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 1000px; */
  margin: 40px auto 0;
  overflow: hidden;
  padding: 0 40px; /* For partial visibility */
  box-sizing: border-box;
}

.review_carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 2rem 0;
}

.review_card {
  flex: 0 0 70%; /* Show one full card with 10% peeking on both sides */
  margin: 0 15px;
  background: #1d3fe1;
  border-radius: 30px;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review_card .review_user {
  flex: 1;
  text-align: center;
}

.review_card .review_user img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.review_card .review_message {
  flex: 3;
  padding-left: 2rem;
  text-align: left;
}

.review_card .review_message p {
  font-size: 16px;
  line-height: 1.5;
}

.review_user p {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
}

.review_user h3 {
  margin: 10px 0 !important;
  font-size: 22px;
  color: #ffffff;
  font-weight: var(--font-weight-medium);
}

.review_nav {
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  background: rgb(255 255 255 / 20%);
  color: rgb(255 255 255 / 80%);
  border: 2px solid rgb(255 255 255 / 30%);
  border-radius: 30%;
  padding: 0.7rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.review_prev {
  left: 17%;
}

.review_next {
  right: 13.5%;
}

.review_stars i {
  font-size: 22px;
  color: #f9870d;
}

.review_dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.review_dot {
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #888;
  margin: 0 5px;
  cursor: pointer;
}

.review_dot.active {
  background: #1d3fe1;
  border-color: #1d3fe1;
}

/* Toggle class */
.dropdown.open .dropdown-menu {
  display: block;
}


.d-md-hide {
  display: none;
}

.d-sm-hide {
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar .nav-links {
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    background-color: #eeeeee;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    z-index: 99;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
    pointer-events: auto;
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .d-md-hide {
    display: block;
  }
  
  .d-sm-hide {
    display: none;
  }

  .center-box {
    top: 40px;
  }
}

@media (max-width: 640px) {
  .circle_hero {
    padding: 230px 0 40px;
    overflow: hidden;
    position: relative;
  }

  .orbit-wrapper {
    width: 140%;
    height: 160px;
    position: absolute;
    top: 30px;
  }

  /* .orbit {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
  } */

  .center-text {
    /* top: -44%; */
    width: 100%;
  }

  .center-text h2 {
    font-size: 28px;
    margin-top: 0;
  }

  .ring1 {
    width: 100%;
    height: 100%;
  }

  .ring2 {
    width: 80%;
    height: 80%;
  }

  .ring3 {
    width: 60%;
    height: 60%;
  }

  .hero_portfolio {
    /* overflow: hidden; */
    overflow-x: auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: -30px;
  }
  
  #hero_portfolio_slide {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: flex-start;
  }
  
  .hero_slide {
    width: 60vw !important;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    transition: transform 0.5s ease;
    transform: scale(0.95);
    border-radius: 10px;
  }
  
  .hero_slide.active {
    transform: scale(1.05);
    z-index: 2;
  }
  
  

  .orbit-icon {
    width: 32px;
    height: 32px
  }

  .orbit2 .orbit-icon {
    width: 35px;
    height: 35px;
  }

  .orbit3 .orbit-icon {
    width: 40px;
    height: 40px;
  }

  .technologies-inner {
    flex-direction: column;
  }

  .technologies-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-inner h2 {
    font-size: 28px;
    text-align: center;
  }

  .left-inner p {
    font-size: 16px;
    text-align: center;
  }

  .left-inner img {
    margin: 20px 0;
  }

  .right-content {
    gap: 20px;
  }

  .tech-card img {
    width: 40px;
  }

  .tech-card h3 {
    font-size: 20px;
  }

  .tech-card p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .home_projects h2 {
    font-size: 28px;
  }

  .slider {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    padding-top: 60px;
  }

  .slide {
    margin-right: 20px;
  }

  .slider-wrapper div {
    position: relative;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .slide-image {
    width: 72vw;
    padding: 20px;
  }

  .slide-content {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .slide-title {
    font-size: 22px;
    line-height: normal;
    margin: 10px 0;
    padding: 0;
  }

  .slide-text {
    margin-bottom: 20px;
    font-size: 14px;
    max-height: 50px;
    overflow: hidden;
  }

  .slide-more {
    font-size: 16px;
  }

  .arrows {
    width: 20%;
    left: 41%;
    top: 0;
    height: 36px;
  }

  .arrow {
    font-size: 30px;
  }

  .recognize .flex {
    flex-direction: column;
    gap: 30px;
  }

  .reco_left_content h3 {
    font-size: 28px;
  }

  .reco_right_content {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .reco_right_content img {
    width: 130px;
  }

  .home_contact .contact_container {
    background-size: cover;
  }

  .home_review h2 {
    font-size: 28px;
  }

  .home_review p {
    font-size: 16px;
    max-width: 80%;
  }

  .review_carousel-wrapper {
    padding: 0 20px;
    margin: 0;
  }

  .review_card {
    flex-direction: column-reverse;
    text-align: center;
    flex: 0 0 90%; /* Adjust for smaller screen */
    gap: 20px;
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .review_card .review_message {
    padding-left: 0;
  }

  .review_card .review_message p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }

  .review_card .review_user {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .review_card .review_user img {
    width: 70px;
    height: 70px;
  }

  .review_user h3 {
    margin-top: 0 !important;
  }

  .review_user div {
    flex: auto;
    text-align: left;
  }

  .review_stars i {
    font-size: 18px;
  }

  .review_nav {
    padding: 10px;
    line-height: 1;
  }

  .review_prev {
    left: 10px;
  }

  .review_next {
    right: 10px;
  }

  .home_benefit {
    padding: 40px 0px 20px;
  }

  .benefit_container {
    padding: 30px;
    border-radius: 0;
  }

  .benefit_container h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .mtYeu {
    flex-direction: column;
    gap: 30px;
  }

  .benefit_card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .benefit_card h6 {
    font-size: 20px;
  }

  .benefit_card.card_border h6 {
    letter-spacing: 1px;
    font-weight: var(--font-weight-medium) !important;
  }

  .benefit_card h6 br {
    display: none;
  }

  .card_border h3 {
    font-size: 28px;
  }

  .uppar_footer, .center_footer, .bottom_footer,
  .footer_address {
    flex-direction: column;
  }

  .bottom_footer {
    gap: 20px;
    margin-top: 20px;
  }

  .footer_address {
    align-items: flex-start;
    gap: 10px;
  }

  .uppar_left, .uppar_right, .center_one,
  .center_two, .center_three, .footer_address {
    width: 100%;
    text-align: left;
  }

  .uppar_footer h3 {
    font-size: 28px;
  }

  .uppar_footer p {
    font-size: 16px;
    line-height: 1.3;
  }

  .uppar_right .blue_button {
    width: auto;
    padding: 12px 20px;
  }

  .footer_address p {
    margin: 0;
    line-height: 1.5;
  }

  .footer_address h3 {
    font-size: 3rem;
    line-height: 1;
  }

  .copyright {
    margin-top: 40px;
    padding-top: 20px;
  }

  .copyright p {
    line-height: 1.5;
  }

  .footer_social.d-md-hide {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
  }

  .footer_social a i {
    font-size: 24px;
  }

  .center_three a {
    line-height: 1.3;
  }

  .center_footer h4 {
    margin-bottom: 20px;
  }

  .center_footer ul {
    line-height: 1.5;
  }

  .center_three {
    margin-top: 30px;
  }

  .home_logos_carousal {
    padding: 0;
  }

  .nav-links li, .nav-links a {
    width: 100%;
    display: inline-block;
  }

  .dropdown-menu {
    margin-top: 5px;
    display: none;
  }

  .vertical_hamburger {
    display: none;
  }
}