/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
   overflow-x: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.blur-image {
  width: 100%;
  max-width: 600px;
  filter: blur(20px);
  transition: filter 6s ease, clip-path 6s ease;
  clip-path: inset(0 0 100% 0);
}

.loader {
  margin-top: 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Base Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  line-height: 1.2;
}

p {
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Base Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Base Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-nav-btn {
  display: none;
}

/* Language Selector for Mobile */
.language-selector-mobile {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav-btns-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 18px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    gap: 10px;
  }

  .mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background-color: #003366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    transition: background 0.2s;
    margin: 0;
  }

  .mobile-nav-btn i {
    font-size: 14px;
    margin: 0;
  }
  .language-selector-mobile {
    display: flex;
    position: fixed;
    left: 15px;
    bottom: 20px;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
  }

  .language-selector-mobile .language-link {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
  }

  .language-selector-mobile .flag-icon {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
  }

  /* Adjust floating buttons to not overlap */
  .floating-buttons {
    right: 15px;
  }
}
  

