:root {
  --all-bg-color: #ffffff;
  --navbar-bg: #A7ABB21A;
  --titles: #000000;
  --navbar-text:#002C75;
  --icon-border: #3E74FE54;
  --icon-hover: #3E74FECC;
  --about-txt: #0000009C;
  --footer-txt: #000000;
  --footer-line: #002C750D;
  --search-border: #3E74FE54;
  --footer-hover:#002C75CC; 
}

[data-theme="dark"] {
  --all-bg-color: #080F0F;
  --navbar-bg: #27272766;
  --navbar-text: #FFFFFF;
  --titles: #FFFFFF;
  --icon-border: #FFFFFF4D;
  --icon-hover: #FFFFFF;
  --about-txt: #FFFFFFB2;
  --footer-txt: #FFFFFFCC;
  --footer-line: #FFFFFF26;
  --search-border: #F0F7FF26;
  --footer-hover:#002C75CC; 
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: var(--all-bg-color);

}

.layout-wrapper {
  width: calc(100% - 160px); /* ✅ leaves 80px on each side */
  max-width: 1280px;         /* ✅ restricts max size */
  margin: 30px auto 0 auto;  /* ✅ 30px from top, centered */
  box-sizing: border-box;
}

.about-wrapper {
  width: calc(100% - 160px); /* ✅ leaves 80px on each side */
  max-width: 1280px;         /* ✅ restricts max size */
  margin: 30px auto 0 auto;  /* ✅ 30px from top, centered */
  box-sizing: border-box;
}

.navbar {
  width: 100%;
  height: 68px;
  background-color: var(--navbar-bg);
  border-radius: 50px;
 
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

.navbar-brand {
  position: absolute;
  left: 78px; /* ✅ match Figma */
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 79px;
  height: 20.87px;
}

.navbar-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  padding: 0 20px;
}

.navbar-nav .nav-item a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: var(--navbar-text);
  display: flex;
  align-items: center;
  height: 100%;
}

.right_side_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  margin-left: auto; /* Push to the right */
  padding-right: 10px;
}

.icon-button {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--icon-border);
  border-radius: 60px;
  background: none;
  cursor: pointer;
  flex-shrink: 0; /* Prevent shrinking */
}



.container_menu{
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
 
}

.language-selector {
  width: 48px;
  height: 48px;
  border: 1px solid var(--icon-border);
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  z-index: 2;
  flex-shrink: 0;
  transition: width 0.3s ease;
  overflow: hidden;
  
}

.language-selector.open {
  width: 126px;
 
  justify-content: space-around;  /* Align items to the left */
  gap: 10px;                     /* Space between language items */
  padding: 0 5px;               /* Space from left and right borders */
}


.language-selector p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  color: var(--navbar-text);
  line-height: 28px;
  transition: opacity 0.3s ease;
  pointer-events: auto; /* Make text clickable */
  cursor: pointer; /* Show pointer cursor on text */
}

.language-selector p.hidden {
  opacity: 0;
  width: 0;
  margin: 0;
  overflow: hidden;
}

.language-selector.open p.hidden {
  opacity: 1;
  width: auto;
 
}

 .language-selector p:not(.active) {
    display: none;
  }
  .language-selector.open p {
    display: block;
  }

.login-button {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 15px;
  height: 48px;
  border: 1px solid var(--icon-border);
  border-radius: 29px;
  background: none;
  color: var(--navbar-text);
  cursor: pointer;
  white-space: nowrap;
  margin-left: 10px; /* Space between language and login */
  transition: all 0.3s ease;
  flex-shrink: 0;
}


.login-button.hidden {
  opacity: 0;
  width: 0;
  padding: 0;
  margin-left: 0;
  border: none;
  pointer-events: none;
}

.icon-button:hover,
.language-selector:hover,
.login-button:hover{
  border-color: var(--icon-hover); /* Change border color on hover */
}

.hamburger-menu,
.mobile-menu,
.mobile-menu-overlay,
#mobile_toggle{
  display: none;
}

.rob_container {
  text-align: center;
  width: 100%;
  max-width: 1280px;
  margin: 100px auto;
  padding: 20px;
}

.rob_container img {
  display: inline-block;
  margin: 0 10px;
}

.rob_container .rob1 {
  left: 110px;
}

.rob_container .rob2 {
  left: 530px;
}

.rob_container .rob3 {
  left: 1000px;
}

.about-robot-animation{
    width: 380px;
    height: 379px;
    object-fit: cover;
}

.info_container {
  margin-top: 260px;
  width: 1100px;
  position: relative;
}

.info_container h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 10px;
  text-align: left;
  color: var(--titles); 

}

.info_container p{
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  text-align: left;
  color: var(--about-txt);
  width: 980px;
  margin: 0;
}

.footer_line {
  height: 1px;
  background-color: var(--footer-line);
  width: 100%;
  margin-top: 170px;
 
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 20px;
}

.footer-columns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-grow: 1;
}

.footer1{
  margin-right: 30px;
}

.footer1,
.footer2,
.footer3,
.footer4 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 100px;
  color: var(--footer-txt);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 28px;
  font-weight: 300;
}

.footer1 a:hover, 
.footer2 a:hover, 
.footer3 a:hover, 
.footer4 a:hover,
.footer a:hover{
  color: #001A47; 
}

.footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
  color: var(--footer-txt);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  line-height: 28px;
}

.iconsandtext {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}

#iconsandtext_apple{
  width: 15px;
  height: 18px;
}

#iconsandtext_playmarket{
  width: 16px;
  height: 18px;
}


.footer a {
  color: var(--footer-txt);
  font-size: 14px;
  text-decoration: none;
}

#download{
   text-decoration: underline;
}

[data-theme="light"] .fa-apple {
  color: #000000;
}

[data-theme="dark"] .fa-apple {
  color: #ffffff;
}

.icon-button i.fa-sun {
  color: #ffffff;
}

@media (max-width: 768px) {

  .about-wrapper {
    width: calc(100% - 60px); 
    margin: 20px auto 0 auto;
  }

   .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
    z-index: 1000;
    position: fixed;
    top: 10px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid white;
  }

    .navbar-nav,
    .right_side_icon {
    display: none !important;
  }

    .navbar-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    padding-right: 10px;
  }

  #mobile_toggle,
  #hamburgerBtn {
    all: unset;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid white;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 0;
  }

    .hamburger-menu i {
    font-size: 18px;
    color: #0196F5;
  }

  body.hide-header .navbar,
  body.hide-header .hamburger-menu {
    display: none !important;
  }

  .mobile-menu {
    padding: 0;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--all-bg-color);
    z-index: 1001;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.2s ease, transform 0.6s ease;
    display: block; 
    
  }

  .mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
}

  .mobile-menu-header {
    position: relative;
    height: 60px;
    width: 100%;
  }

    .mobile-logo {
    width: 49px;
    height: 24px;
    position: absolute;
    left: 76px;
    top: 50px;
    transform: translate(-50%, -50%);
  }

    .close-mobile-menu {
    position: fixed;
    right: 40px;
    top: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid white;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1006;
    cursor: pointer;
    padding: 0;
  }

  .close-mobile-menu i {
    font-size: 15px;
    color: #3d5af1;

  }

   .mobile-menu ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
  }

  .mobile-menu ul li {
    margin-bottom: 15px;
    margin-left: 40px;
  }

  .mobile-menu ul li a {
    text-decoration: none;
    color: var(--title-text-color);
    font-size: 14px;

  }

  .mobile-menu ul li:first-child {
    margin-top: 20px;
    /* adjust distance as needed */
  }

  .lightblue_line {
    margin-top: 15px;

    height: 1.5px;
    background-color: var(--footer-line);
    width: 100%;
  }

  .lang-options {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-top: 50px;
    margin-left: 40px;
    font-size: 14px;
    color: var(--title-text-color);
  }



  .rob_container {
    margin: 60px auto;
    background: none;
  }

  .about-robot-animation {
    width: 280px;
    height: 280px;
    padding-top: 40px;
    background: none;
  }

  .info_container {
    width: 100%;
    margin-top: 100px;
    padding: 0 20px;
  }

  .info_container p {
    width: 100%;
  }
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 12px;
  }

  .footer_right {
    align-items: flex-start;
    text-align: left;
  }

  .iconsandtext {
    justify-content: flex-start;
  }

  .footer_line {
    margin-top: 60px;
  }

  .layout-wrapper{
    width: calc(100% - 60px);
  }

}


