@import url('./fonts/Inter.ttf');
@import url('./fonts/Inter-Italic.ttf');

:root {
  --width-fluid-container: 1170px;
  --background-color-main: #F5F7FB;
  --main-color: #279EFF;
  --primary-color-0: #0C356A;
  --primary-color-1: #FCB03C;
  --primary-color-2: #40F8FF;
  --primary-gradient-1: linear-gradient(90deg, rgba(92, 89, 228, 1) 0%, rgba(39, 158, 255, 1) 44%);
  --primary-gradient-01: linear-gradient(90deg, rgba(161, 159, 243, 1) 0%, rgba(113, 189, 252, 1) 44%);

}


body {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Inter", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}


.page-with-bg {
  background-color: var(--background-color-main);
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navbar Container */
.navbar {
  position: fixed;
  width: 100%;
  height: 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Logo */
.navbar .logo img {
  width: 10em;
}

/* Navigation Links */
.navbar .nav-links {
  display: block;
  margin-top: 10px;
}

.navbar .nav-links .text-nav {
  text-decoration: none;
  color: var(--main-color);
  font-size: 1.1em;
  font-weight: 400;
  margin: 0 20px;
  transition: color 0.3s;
  display: inline-block;
}

.navbar .nav-links .text-nav:hover {
  color: var(--primary-color-1);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;

}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 229%;
  left: 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1;
  transition: opacity 0.3s ease 0.1s, visibility 0.3s ease 0.1s;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}


.dropdown-content a {
  color: #000;
  padding: 15px;
  display: block;
  text-decoration: none;
  font-size: 1em;
  border-bottom: #CDCDCD solid 1px;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #CDCDCD;

}

.navbar .nav-extra {
  margin-left: 120px;
  display: inline-block;
  vertical-align: middle;
}

.navbar .language-icon {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
  cursor: pointer;
}

.navbar .language-icon img {
  width: 24px;
  height: 24px;
}

.navbar .language-menu {
  display: none;
  position: absolute;
  top: 25px;
  right: 0;
  margin-top: 14px;
  background-color: #fff;
  border: 1px solid #939393;
  padding: 5px 10px;
  z-index: 1000;
}

.navbar .language-menu img {
  width: 24px;
  height: 24px;
  margin: 5px;
  cursor: pointer;
  border: 1px solid #7e7e7e;
  border-radius: 100px;
}

.navbar .language-menu img:hover {
  transform: scale(1.2);
}

.card-container-au {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0px;
  box-sizing: border-box;
}

.card-au {
  width: 100%;         /* ✅ bỏ 31%, để Grid lo */
  height: 400px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-au:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card-icon-au img {
  width: 150px;
  height: 150px;
  margin-bottom: 40px;
}

.card-title-au {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 30px;
}

.card-description-au {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
}


.navbar .sign-in {
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  background: var(--primary-gradient-1);
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.3s;
}

.navbar .sign-in:hover {
  background: var(--primary-gradient-01);
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: none;
}

.navbar .close-menu {
  display: none;
}

/* Banner */
.bg-color {
  background-image: url(./img/bg-01.svg);
  background-position: center center;
  
}

.container-img-1 {
  width: 100%;
  background-image: url('./img/bg1.svg');
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-content {
  max-width: 500px;
}

.banner-title {
  margin-top: 80px;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 36px;
  line-height: 1.4; 
}

.banner-description {
  color: var(--primary-color-0);
  font-size: 20px;
  margin-bottom: 36px;
}

.cta-button {
  background: var(--primary-gradient-1);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--primary-gradient-01);
}

.banner-illustration {
  
  margin-top: 60px;
  width: 520px;
  height: 500px;
  display: inline-flex;

}

.illustration-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* sile show */
.slideshow-container {
  margin: 20px 0;
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

/* Hide all slides initially */
.slideshow-container .slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slideshow-container .slide[style*="display: block"] {
  display: block;
  opacity: 1;
}

/* Show images */
.slideshow-container .slide img {
  width: 100%;
  height: 400px;
  object-fit: cover; 
}

/* Navigation buttons */
.slideshow-container .prev,
.slideshow-container .next {
  user-select: none;
  position: absolute;
  top: 50%;
  padding: 11px 16px;
  color: white;
  font-size: 24px;
  background-color: rgba(120, 120, 120, 0.5);
  border: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 10px;
  border-radius: 100%;
  z-index: 10;
}

.slideshow-container .prev {
  left: 0;
}

.slideshow-container .next {
  right: 0;
}

.slideshow-container .prev:hover,
.next:hover {
  background-color: var(--main-color);
}

/* Dots (Navigation) */
.slideshow-container .dots-container {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.slideshow-container .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.slideshow-container .dot:hover {
  background-color: var(--main-color);
}

.slideshow-container .active {
  background-color: var(--main-color);
}

/* cart */
.container-img-2 {
  width: 100%;
  height: 100%;
  max-width: 1170px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.card-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.card-container-m {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}


.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 570px;
  height: 360px;
}

.card:hover {
  transform: translateY(-12px);
  transition: 0.5s all;
}

.card-icon img {
  width: 115px;
  height: 115px;
}

.card-title {
  color: var(--primary-color-0);
  font-size: 25px;
  margin: 20px 0;
  font-weight: bold;
}

.card-description {
  width: 480px;
  color: #747474;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.card-button {
  background: var(--primary-gradient-1);
  color: white;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 22px;
}

.card-button:hover {
  background: var(--primary-gradient-01);
}

.see-more-container {
  display: flex;
  justify-content: center;
}

.see-more-button {
  background-color: #ffffff;
  color: var(--primary-color-0);
  border: 2px solid var(--primary-color-0);
  padding: 8px 16px;
  font-size: 18px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.see-more-button:hover {
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 18px;
  border: 2px solid var(--main-color);
  border-radius: 5px;
}


/* Cột bên trái */
.left-column {
  width: 570px;
  background-color: #fff;
  padding: 0 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.left-column h2 {
  margin-top: 12px;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.left-column p {
  color: var(--primary-color-0);
  margin: 20px 0;
  font-size: 16px;
  font-weight: 400;
}

.left-column img {
  width: 559px;
  height: 250px;
  margin: 2px 0;
  overflow: hidden;
  border: 1px solid #000000;
}

.world-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Cột bên phải */
.right-column {
  padding: 0 20px;
  border-radius: 10px;

}

.right-column h2 {
  margin-top: 12px;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 26px;
  font-weight: 500;
}

.right-column p {
  color: var(--primary-color-0);
  margin: 20px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.right-column .human-img {
  width: 100%;
  height: 666px;
  margin: 20px 0;
}


.bg-color-2 {
  background-image: url('./img/bg-con.svg');
  background-position: center center;
}

.container-img-3 {
  width: 100%;
  background-image: url('./img/bg-03.svg');
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Consults now */
.left-column-consult-now {
  width: 570px;
  background-color: var(--primary-color-0);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;

}

.left-column-consult-now h2 {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 18px;
}

.left-column-consult-now p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

.box-name-phone {
  display: flex;
}

.full-name p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
}

.full-name .input-name {
  width: 248px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: none;
  margin-bottom: 25px;
  margin-right: 10px;
}

.number-phone p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;

}

.number-phone .input-phone {
  width: 248px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: none;
  margin-right: 10px;
  margin-bottom: 25px;
}

.email-ip p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
}

.email-ip .input-ew {
  width: 526px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: none;
  margin-bottom: 25px;

}

.input-messgage {
  width: 526px;
  height: 80px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-bottom: 25px;
  font-family: 'Inter', sans-serif;
  resize: none;
}

.submit-cw {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  width: 545px;
  height: 50px;
  background: var(--primary-gradient-1);
  border-radius: 10px;
  border: none;
}

.submit-cw:hover {
  background: var(--primary-gradient-01);
}

.right-column-our-solutions {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.right-column-our-solutions h2 {
  margin-top: 12px;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.right-column-our-solutions p {
  color: var(--primary-color-0);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.right-column-our-solutions img {
  width: 78px;
  height: 78px;
  margin-bottom: 15px;
}

.right-column-our-solutions .content-text {
  color: #000;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px;
}

.right-column-our-solutions h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.right-column-our-solutions .company-text {
  color: #000;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 55px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dots {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: var(--primary-gradient-1);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.name-text-color {
  margin-top: 32px;
  margin-bottom: 10px;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.name-text-color-tegu {
  margin-top: 32px;
  margin-bottom: 10px;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
 text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.container-about .paragraph_au{
  color: #6b6b6b;
  font-size: 22px;
  text-align: center;
}

.card-wu {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 236px;
  height: auto;
  text-align: center;
  border: #f0f0f0 solid 1px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card-wu:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-icon-wu img {
  width: 116px;
  height: 116px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.card-title-wu {
  color: #000;
  font-size: 20px;
  margin: 25px 0;
  font-weight: bold;
}

.card-description-wu {
  margin-top: 30px;
  color: #606060;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}


.card-gc {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  width: 172px;
  height: 60px;
  border: var(--main-color) solid 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #f0f0f0 solid 1px;
}


.card-gc:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.card-icon-gc img {
 max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* humman */
.card_hms {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin: 0px 10px 0px 0px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card_hms:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-icon_hms img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.card-title_hms {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-description_hms {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
/* Section layout */
.section_au {
  width: 100%;
  display: table;
  table-layout: fixed;
  padding: 40px 0;
}

.block_au {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  padding: 0 10px;
}

/* Text styles */
.text-block_au {
  text-align: left;
}

.heading_au {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
   background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  border-left: 5px solid #6e46ff;
  padding-left: 10px;
}

.paragraph_au {
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Image styles */
.image-block_au {
  text-align: center;
}

.image_au {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}


.footer {
  padding: 40px 0;
  background-color: #ffffff;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.171);
  color: #333;
  font-size: 14px;
}

.footer-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.footer-logo-desc {
  flex: 2;
}

.footer-logo-desc p {
  width: 450px;
  font-size: 14px;
  color: var(--primary-color-0);
  line-height: 1.6;
}

.footer-logo {
  max-width: 300px;
  margin-bottom: 10px;
}

.footer-menu,
.footer-social {
  flex: 1;
}

.footer-menu h4,
.footer-social h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color-0);
}

.footer-menu ul {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--primary-color-0);
  text-decoration: none;
}

.footer-menu a:hover {
  color: var(--primary-color-1);
}

.footer-social a img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.footer-bottom {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.footer-bottom p {
  color: #747474;
  text-decoration: none;
}

.footer-links a {
  margin-left: 16px;
  color: #747474;
  text-decoration: none;
}

.nav-links .text-nav-hover {

  text-decoration: none;
  color: var(--primary-color-1);
  font-size: 1.1em;
  font-weight: 400;
  margin: 0 20px;
  transition: color 0.3s;
  display: inline-block;
}

/* about */

.banner-content .banner-title-about {
  margin-top: 80px;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 36px;
  width: 621px;
  line-height: 1.4;
}

.banner-content .banner-description-about {
  color: var(--primary-color-0);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 36px;
}

.container-img-about {
  width: 100%;
  background-image: url('./img/bg-11.svg');
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-about {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.about-content {
  color: var(--primary-color-0);
  font-size: 18px;
  margin-top: 18px;
  margin-bottom: 50px;
}

/* History Timeline */
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 400px;

}

.history-section {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
}


.history-year {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}


.history-year::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 168px;
  width: 16px;
  height: 16px;
  background: var(--main-color);
  border-radius: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.history-icon {
  width: 100px;
  height: 100px;
  border: #BBCFFD solid 8px;
  background: var(--primary-gradient-1);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.history-icon span {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;

}

.history-icon img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.history-content {
  border-left: 2px dashed var(--main-color);
  margin-top: 15px;
  padding-left: 60px;
}

.history-item {
  margin-bottom: 20px;
}

.history-item:last-child {
  margin-bottom: 0;
}

.month {
  width: 50px;
  display: inline-block;
  border: var(--main-color) solid 2px;
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 28px;
  margin-bottom: 5px;
}

.month:hover {
  background: var(--primary-gradient-1);
  color: #fff;
}

.history-item p {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary-color-0);
}

/* login */

/* .container {
  display: flex;
  width: 800px;
  height: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */
.container-login {
  display: flex;
  width: 100%;
  height: 100vh;
}

.left-panel {
  flex: 1;
  background-image: linear-gradient(to right, #6a11cb, #2575fc);
  ;
  background-size: cover;
  background-position: center;
  flex-direction: column;
  color: white;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
}

.left-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg_galaxy.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: galaxy-move 10s linear infinite;
}

@keyframes galaxy-move {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, -20px);
  }

  100% {
    transform: translate(0, 0);
  }
}


.left-panel .logo {
  margin-top: 150px;
  margin-bottom: 40px;
}

.left-panel .logo img {
  width: 291px;
  height: 76px;
  clip-path: inset(0 100% 0 0);
  animation: typing 4s cubic-bezier(0.65, 0, 0.35, 2.5) infinite forwards;
}


@keyframes typing {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

.left-panel h1 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 40px;
}

.left-panel p {
  width: 500px;
  font-size: 22px;
  line-height: 1.5;
}

.right-panel {
  flex: 1;
  background-color: white;
  padding: 50px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 100px;
  box-sizing: border-box;
  overflow-y: auto;
  height: 100vh;
}

.no-su-si {
  margin-left: 62%;
  color: var(--primary-color-0);
  font-size: 16px;
  font-weight: 400;
}

.no-su-si a {
  color: var(--primary-color-0);
}

.red-text {
  color: red;
}

.text-i {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: var(--primary-color-0);
}

.remember-me {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 14px;
}

.remember-me .custom-checkbox {
  margin-top: -5px;
  margin-right: 10px;
}

.sign-in-button {
  width: 40%;
  height: 45px;
  padding: 10px;
  background: var(--primary-gradient-1);
  color: white;
  border: none;
  margin-top: 20px;
  border-radius: 100px;
  font-size: 20px;
  cursor: pointer;
}

.sign-in-button:hover {
  background: var(--primary-gradient-01);
}

.sign-in-button a {
  text-decoration: none;
  color: #fff;
}

.forgot-password {
  display: block;
  margin-top: 22px;
  color: var(--primary-color-0);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 120px;
}

.forgot-password:hover {
  text-decoration: underline;
}

.submit-email {
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0;
  color: var(--primary-color-0);
}

.submit-email-1 {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0;
  color: var(--primary-color-0);
}

/* at SnA Solution */
/* Profile Section */
.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.avatar img {
  margin-left: 50px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
}

.info {
  display: flex;
  text-align: center;
}

.info .name {
  margin-left: 80px;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: bold;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  margin-top: 20px;
}

.info .title {
  margin-left: 20px;
  margin-top: 28px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color-0);
}

/* Speech Bubble */
.at-SnA {
  position: relative;
  margin-left: 20px;
  margin-bottom: 100px;
}

.speech-bubble {
  max-width: 493px;
  background: var(--primary-gradient-1);
  border-radius: 40px;
  padding: 20px;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  color: #fff;
  text-align: center;
}

.bubble-triangle {
  position: absolute;
  bottom: -5px;
  left: -22px;
  width: 50px;
  height: auto;
}



/* Highlighted Text */
.highlight-orange {
  color: var(--primary-color-1);
}


/* Team Section */
.team {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.member {
  margin-top: 40px;
  flex: 1 1 calc(25% - 20px);
  text-align: center;
}

.member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.member h3 {
  margin-top: 10px;
  font-size: 26px;
  background-image: var(--primary-gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}

.member p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color-0);
}

/*carees  */
.container-search {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.container-search .search {
  position: relative;
  margin: 20px 0;
  width: 60%;
  height: 40px;
  border: var(--primary-color-0) solid 2px;
  border-radius: 10px;
  padding: 0 40px;
  margin-right: 10px;
}

.container-search img {
  width: 18px;
  height: 18px;
  position: absolute;
  margin-left: 10px;
  margin-top: 30px;
  z-index: 1;
}

.container-search button {
  padding: 0 20px;
  height: 40px;
  border: none;
  background: var(--primary-gradient-1);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
}

.container-search button:hover {
  background: var(--primary-gradient-01);
}

.text-search {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color-0);
  margin-bottom: 40px;
}

.box-job {
  max-width: 100%;
  height: 150px;
  border: #D9D9D9 solid 1px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
.box-job:hover{
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.box-job .name-map-job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.name-map-job h1 {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color-0);
}

.right-map-job {
  display: flex;
}

.right-map-job img {
  height: 22px;
  width: 27px;
  margin-right: 15px;
}

.right-map-job p {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color-0);

}

.content-btn-job {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-btn-job p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  width: 760px;
  color: var(--primary-color-0);
}

.content-btn-job button {
  background: var(--primary-gradient-1);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 200px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
}

.content-btn-job button:hover {
  background: var(--primary-gradient-01);
}

.job-comlun {
  width: 1170px;
  flex-direction: column;
}

.number-dots {
  height: 15px;
  width: 15px;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: var(--primary-gradient-1);
  display: inline-block;
  transition: background-color 0.6s ease;
  margin: 30px 10px;
  border-radius: 5px;
}

.number-dot {
  height: 12px;
  width: 12px;
  font-size: 18px;
  margin: 0 10px;
  display: inline-block;
  color: var(--primary-color-0);
  transition: background-color 0.6s ease;
}

.number-img {
  width: 28px;
  height: 28px;
  top: 6px;
  position: relative;
}

.container-job {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.container-job h1 {
  font-size: 30px;
  color: var(--primary-color-0);
  font-weight: 500;
  padding-top: 100px;
  margin-bottom: 30px;
}
.container-job .job-title-1{
  padding-top: 40px;
}
.f-job {
  display: flex;
  gap: 15px;
}

.f-job p {
  padding: 8px 10px;
  color: #fff;
  background-color: var(--main-color);
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}

.f-job-adress {
  display: flex;
  margin-top: 10px;
}

.f-job-adress img {
  height: 25px;
  width: 18px;
}

.f-job-adress p {
  color: var(--primary-color-0);
  font-size: 20px;
  margin-top: 3px;
  font-weight: 500;
  margin-left: 10px;
}

.f-job-salary p {
  margin-top: 15px;
  margin-left: 80px;
}

.f-job-salary span {
  font-size: 18px;
  font-weight: 400;
}

.container-job h3 {
  font-size: 24px;
  color: var(--primary-color-0);
  font-weight: 500;
  margin: 24px 0;
}

/*  dcbhjds*/
.grid_container_aus {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0px;
  box-sizing: border-box;
  width: 100%;
}


.card_aus {
  background: white;
  border-radius: 8px;
  padding: 20px 20px 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card_aus:hover {
 transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card_aus img {
  width: 100%;
 height: 200px; 
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 30px;
  display: block;
}

.container-job .title_aus {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 22px;
}

.desc_aus {
  font-size: 0.90rem;
  color: #3e3e3e;
  line-height: 1.6;
}


.container-job .content-job {
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
  color: #535353;
  margin-bottom: 30px;
}

.conternain-btn-r {
  margin: 40px 0;
}

.conternain-btn-r button {
  background: var(--primary-gradient-1);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 200px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
}

.conternain-btn-r button :hover {
  background: var(--primary-gradient-01);
}

.box-job-carees {
  margin: 40px 0;
  padding: 10px 15px;
  width: 45%;
  height: 520px;
  border-radius: 10px;
  border: #A3A2A2 solid 1px;
}

.apply-now-job p {
  font-size: 18px;
  font-weight: 400;
  margin: 15px 0;
  color: var(--primary-color-0);
}

.apply-now-job span {
  color: #ff0000;
}

.apply-now-job .input-j {
  width: 96%;
  height: 35px;
  padding: 0 10px;
  border-radius: 10px;
  border: #A3A2A2 solid 1px;
}

.btn-apply {
  margin-top: 5px;
  padding: 5px 10px;
  background-color: #e7e7e7;
  border-radius: 100px;
  border: #A3A2A2 solid 0.5px;
}

.text-file-j {
  margin-top: 20px;
  color: #424242;
  font-size: 14px;
}

.btn-applynow {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  height: 40px;
  margin-top: 20px;
  background: var(--primary-gradient-1);
  border-radius: 10px;
  border: none;
}

.f-job-require {
  display: flex;
}

.f-right-box {
  padding-top: 55px;
  padding-left: 40px;
}

.f-right-box .box-supoort {
  display: flex;
}

.box-supoort img {
  width: 54px;
  height: 54px;
  margin-right: 60px;
  margin-bottom: 30px;
}


.text-support h4 {
  color: var(--primary-color-0);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.text-support p {
  color: var(--primary-color-0);
  font-size: 18px;
  font-weight: 400;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.popup-content {
  background: #dfeefe;
  padding: 20px;
  border-radius: 10px;
  width: 800px;
  height: 360px;
  max-width: 90%;
  position: relative;
}

.popup-header {
  margin-bottom: 10px;
}

.popup-logo {
  height: 40px;
}

.close-popup {
  background: transparent;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #000;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close-popup:hover {
  color: #ff4444;
}

.popup-body p {
  position: relative;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.popup-actions {
  position: absolute;
  margin-top: 12px;
  z-index: 2;
  position: absolute;
}

.popup-button {
  margin-right: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  background-color: var(--main-color);
  color: white;
}

.popup-button:hover {
  background-color: #023f80;
}

.popup-image {
  position: absolute;
  top: 40px;
  right: 20px;
}

.popup-image img {
  max-width: 700px;
  max-height: 500px;
  border-radius: 10px;
}



/* submit */
.popup-submit {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content-submit {
  background-color: white;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.popup-submit h2 {
  font-size: 24px;
  color: var(--main-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.popup-submit p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  margin-bottom: 20px;
}


.popup-submit button {
  padding: 10px 20px;
  background-color: var(--main-color);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.popup-submit button:hover {
  background-color: #153ab4;
}

.card_nums {
  display: inline-block;
  width: 22%;
  margin: 30px 0px 0px 0px;
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_nums:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.number_nums {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.label_nums {
  font-size: 14px;
  color: #555;
}

/* Mobile */
@media screen and (max-width: 767px) {
 .card_nums {
    display: block;
    width: 100%;
    margin: 10px 10px;
  }
   .card_hms {
    display: block;
    width: 90%;
    margin: 0px auto;
  }
.name-text-color-tegu {
    font-size: 28px;
    line-height: 1.3;
    padding: 0 16px; 
  }

  .container-about .paragraph_au {
    font-size: 16px; 
    padding: 0 16px;
  }
  .grid_container_aus {
    grid-template-columns: 1fr;
    padding: 20px 16px;
     max-width: 100%;
  }

  .card_aus {
    width: 100%;
    padding: 16px 16px 24px 16px;
  }

  .card_aus img {
    height: 180px; 
    margin-bottom: 20px;
  }

  .container-job .title_aus {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .desc_aus {
    font-size: 0.88rem;
    line-height: 1.5;
  }
   .section_au {
    display: block;
    padding: 30px 0;
  }

  .block_au {
    display: block;
    width: 100%;
    padding: 10px 20px;
  }

  .image-block_au {
    text-align: center;
  }

  .image_au {
    max-width: 100%;
    height: auto;
  }
  .card-au {
    float: none;
    width: 100%;
    margin: 0px 0 0px 20px; 
  }
  .bl_full-image {
    width: 80%;
  }

  .page-with-bg {
    background-color: var(--background-color-main);
  }

  /* Hamburger Button */
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.8em;
    gap: 4px;
  }

  .navbar .close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 11;
  }

  /* Navbar Container */
  .navbar {
    position: sticky; 
    top: 0;
    left: 0;
    width: 100%; 
    padding: 0 20px;
    background-color: #fff; 
    z-index: 10; 
    text-align: center;
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
    padding: 0;
    z-index: 10;
    box-shadow: none;
    background-color: transparent;
  }


  .dropdown:hover .dropdown-content.show {
    display: block;
    text-align: start;
  }

  .container {
    display: block;
    width: 100%;
    position: relative;
  }

  .navbar .logo img {
    width: 8em;
  }

  .navbar .nav-links {
    margin: 0;
    display: none;
    flex-direction: column;
    width: 30%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 5;
    transition: transform 0.3s ease;
    padding: 60px 20px;
    align-items: flex-start;
  }

  .dropdown {
    display: block;
  }

  .navbar .nav-links.active {
    display: inline-flex;
  }

  .slideshow-container .dots-container {
    bottom: 10px;
    width: 95%;
  }

  .navbar .nav-links .text-nav {
    display: block;
    text-align: left;
    margin: 10px 0;
    padding: 10px 0;
    font-size: 1.1em;
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid #eaeaea;
  }

  .navbar .nav-links .text-nav-hover {
    display: block;
    text-align: left;
    margin: 10px 0;
    padding: 10px 0;
    font-size: 1.1em;
    color: var(--primary-color-1);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid #eaeaea;
  }


  .navbar .nav-links.active {
    display: block;
  }

  .bl_image {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  .navbar .nav-links.active+.close-menu {
    display: block;
  }

  /* Language Icon and Sign-in Button */
  .navbar .language-menu {
    right: auto;
    background-color: var(--background-color-main);
    border: 1px solid #ccc;
  }

  .navbar .nav-extra {
    margin-top: 10px;
    margin-left: 0;
    float: left;
    display: inline-flex;
  }

  .language-icon {
    margin-top: 5px;
  }

  .nav-extra .sign-in {
    margin-left: 0;
    display: block;
    padding: 10px 15px;
    color: #fff;
    background: var(--primary-gradient-1);
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
  }

  .nav-extra .sign-in:hover {
    background: var(--primary-gradient-01);
  }

  /* banner */

  .bg-color {
    background-image: none;
    background-color: #3fa9ff61;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px ;
  }

  .container-img-1 {
    display: block;
    padding-bottom: 30px;
  }

  .banner-title {
    width: 100%;
    line-height: 1.2;
    margin-top: 0;
    padding: 30px 0;
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .banner-content {
    max-width: 700px;
  }

  .banner-description {
    width: 100%;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  /* CTA Button */
  .cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .banner-illustration {
    margin-top: 0;
    width: 92%; 
    max-width: 100%; 
    height: auto; 
    margin-left: auto;
    margin-right: auto; 
    overflow: hidden;
    
  }

  .illustration-image {
    width: 100%;
    max-width: 400px;
    height: 350px;
    object-fit: cover; 
  }

  .slideshow-container {
    overflow: hidden;
    height: auto;
    padding: 0 20px;
  }
  
  .slideshow-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .slideshow-container .prev,
  .slideshow-container .next {
    margin: 0px 30px;
    padding: 8px 12px;
    font-size: 18px;
  }

  .slideshow-container .dot {
    height: 8px;
    width: 8px;
  }

  .card-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding:   20px;
    flex-direction: column;
    background-color: #F5F7FB;
    overflow: hidden; 
    transition: all 0.3s ease; 
  }

  .card-container-m {
    width: 100%;
    max-width: 100%;
    margin: 30px auto;
    padding: 0 20px;
    flex-direction: column;
    background-color: #F5F7FB;
    display: grid;
    overflow: hidden; 
    grid-template-columns: repeat(2, 1fr);
  }

  .left-column {
    border-radius: 0;
    background-color: var(--background-color-main);
    width: 100%;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .left-column img {
    width: 100%;
    max-width: 750px;
    border: #6b6b6b solid 1px;
    margin: 2px 0;
  }

  .right-column {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .right-column .human-img {
    width: 100%;
    max-width: 650px;
    height: auto;
  }

  /* Adjust the layout for mobile */
  .container-img-3 {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Left Column */
  .left-column-consult-now {
    margin-top: 50px;
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    box-sizing: border-box; 
  }

  .box-name-phone {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .full-name .input-name,
  .number-phone .input-phone,
  .email-ip .input-ew,
  .input-messgage {
    width: 95%;
  }

  textarea {
    width: 95%;
  }

  .submit-cw {
    width: 98%;
  }

  /* Right Column */
  .right-column-our-solutions {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    box-sizing: border-box; 
  }

  /* Testimonial Section */
  .right-column-our-solutions h2 {
    font-size: 24px;
  }

  .right-column-our-solutions p {
    font-size: 16px;
  }

  .right-column-our-solutions .content-text {
    font-size: 16px;
  }

  .right-column-our-solutions h3 {
    font-size: 22px;
  }

  .right-column-our-solutions .company-text {
    font-size: 18px;
  }

  .dots,
  .dot {
    height: 10px;
    width: 10px;
  }

  .name-text-color {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .card-wu {
    box-sizing: border-box;
    width: 100%;
    height:100%;
    margin-bottom: 20px;
  }

  .card-title-wu {
    font-size: 18px;
  }

  .card-description-wu {
    font-size: 14px;
  }

  .card-gc {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 60px;
    border: #d4d4d4 solid 1px;
    box-sizing: border-box;
  }

  .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .card-icon-gc img {
 width: 80%;
  height: auto;
  box-sizing: border-box;
  display: block;
  margin-left: auto;
  margin-right: auto;
  }

  .popup-image {
    top: 160px;
  }

  .popup-image img {

    max-width: 600px;
    max-height: 200px;
    border-radius: 10px;
  }

  .footer {
    width: 100%;
    height: 100%;
    max-width: 100%;

    padding: 0 20px;
  }

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

  .footer-logo-desc p {
    width: 100%;

  }

  .footer-logo {
    margin-top: 20px;
  }

  .footer-logo-desc {
    margin-right: 0;
    width: 100%;
  }

  .footer-menu,
  .footer-social {
    width: 100%;
  }

  .footer-menu h4,
  .footer-social h4 {
    margin: 20px 0;
  }

  .footer-bottom {
    padding-bottom: 40px;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-links {
    margin-top: 10px;
  }

  .banner-content .banner-title-about {
    margin-top: 0;
    width: 100%;
    line-height: 1.2;
    margin-top: 0;
    padding: 30px 0;
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .banner-description-about {
    width: 90%;
  }

  .about-content {
    padding: 0 20px;
  }

  .history-timeline {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    width: 80%;
    display: block;
  }

  .speech-bubble {
    max-width: 100%;
    padding: 15px;
    font-size: 14px;
    margin-right: 20px;
  }

  .bubble-triangle {
    width: 40px;
    left: -15px;
  }

  .at-SnA {
    margin-left: 10px;
    margin-bottom: 160px;
  }

  .container-search {
    padding: 0 20px;
  }

  .job-comlun {
    width: 100%;
    padding: 0 20px;
  }

  .content-btn-job p {
    width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

  }

  .left-panel {
    display: none;
  }

  .right-panel {
    width: 100%;
    padding: 20px;
  }


  .sign-in-button {
    width: 98%;
  }

  .no-su-si {
    margin-left: 48%;
  }

  .label-and-toggle {
    width: 95%;
  }

  .submit-email-1 {
    line-height: 1.3;
  }

  .container-job h1 {
    padding-top: 20px;
    padding-left: 20px;

  }

  .container-job h3,
  .container-job .content-job {
    padding: 0 20px;
  }

  .f-job-adress {
    padding: 0 10px;
  }

  .f-job {
    padding: 0 20px;
  }

  .conternain-btn-r {
    padding: 0 20px;
  }

  .avatar img {
    width: 220px;
    height: 220px;
  }
  .at-SnA{
    display: none;
  }
  .team {
    margin: 20px 0;
  }
}

@media screen and (min-width: 767px) {
  .navbar .nav-links {
    display: inline-block;
    position: static;
    height: auto;
    background-color: transparent;
    padding: 0;
    gap: 30px;
  }

  .navbar .menu-toggle {
    display: none;
  }

  .navbar .close-menu {
    display: none;
  }


}

/* table */
@media screen and (min-width: 770px) and (max-width: 991px) {}



.hidden-left,
.hidden-right {
  opacity: 0;
  transform: translateX(0);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.show-left {
  animation: slideInLeft 1s ease-in-out forwards;
}

.show-right {
  animation: slideInRight 1s ease-in-out forwards;
}

.left-column,
.right-column {
  transform: scale(1.2);
  opacity: 0;
  transition: transform 2s ease, opacity 2s ease;
}

.left-column.show,
.right-column.show {
  transform: scale(1);
  opacity: 1;
}


.banner-illustration {
  overflow: hidden; 
  transform: scale(1.2);
  opacity: 0;
  transition: transform 2s ease, opacity 2s ease;
}

.banner-illustration.show-banner {
  transform: scale(1);
  opacity: 1;
}

#confirmation h2 {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--main-color);
}

#confirmation p {
  font-size: 1.3rem;
  line-height: 1.6;
  width: 500px;
}


.bl_title {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 20px;
  color: #333;
}

.bl_card {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bl_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.bl_image {
  height: 150px;
  object-fit: cover;
}

.bl_content {
  padding: 15px;
}

.bl_heading {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #222;
}

.bl_excerpt {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.bl_read-more {
  font-size: 1rem;
  color: var(--main-color);
  text-decoration: none;
}

.bl_read-more:hover {
  text-decoration: underline;
}

/* Full Blog Post */
.bl_full-post {
  width: 100%;
  margin-bottom: 10px;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
}

.bl_full-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.bl_full-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.bl_full-content {
  margin: 20px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.bl_blog-section {
  width: 100%;
  max-width: 1170px;
  margin: 20px auto;
}

.bl_like-button {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--main-color);
  padding: 5px 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--main-color);
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.bl_like-button:hover {
  background-color: var(--main-color);
  color: #fff;
}

.bl_like-icon {
  margin-right: 5px;
}

.bl_like-button:focus {
  outline: none;
}