@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("https://domain.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://domain.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}


/* 1 */
.alert-section {
  background: linear-gradient(90deg, #1e2a44 0%, #3a5a98 100%);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  margin: 5px auto;
  max-width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.alert-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.alert-section:hover::before {
  opacity: 1;
}

.alert-section:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.alert-content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  animation: slideIn 1s ease-out forwards;
}

.alert-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff1a;
  border-radius: 50%;
  color: #ffffff;
  animation: pulse 2s infinite ease-in-out;
}

.alert-content {
  color: #ffffff;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

.alert-content strong {
  color: #ffd700;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.alert-content strong::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: #ffd700;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.alert-content strong:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.alert-content a {
  color: #00b7eb;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.alert-content a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.alert-content a:hover::before {
  transform: scaleX(1);
}

.alert-content a:hover {
  color: #00d4ff;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .alert-section {
    padding: 20px 0;
    margin: 15px auto;
  }

  .alert-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
  }

  .alert-content {
    font-size: clamp(14px, 1.8vw, 16px);
  }

  .alert-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .alert-content {
    font-size: clamp(13px, 1.6vw, 15px);
  }
}

/* header */

.nav-section {
  background: linear-gradient(90deg, #0a1a3a 0%, #1e3a8a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0.6;
  z-index: 0;
}

.nav-section:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 30px);
  position: relative;
  z-index: 1;
  animation: slideDown 0.8s ease-out forwards;
}

.nav-logo {
  max-width: 60px;
  width: 100%;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.nav-logo__img {
  width: 100%;
  height: auto;
}

.nav-menu__list {
  display: none;
  align-items: center;
  gap: clamp(25px, 4vw, 35px);
}

@media screen and (min-width: 1200px) {
  .nav-menu__list {
    display: flex;
  }
}

.nav-menu__link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-menu__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  transition: width 0.3s ease;
}

.nav-menu__link:hover::before {
  width: 100%;
}

.nav-menu__link:hover {
  color: #00d4ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 30px);
}

.nav-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 17px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.5s ease;
}

.nav-btn:hover::before {
  left: 100%;
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 183, 235, 0.4);
}

.burger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.burger span,
.burger::before,
.burger::after {
  width: 100%;
  height: 3px;
  background: #ffffff;
  transition: all 0.4s ease;
}

.burger::before,
.burger::after {
  content: '';
}

.burger.is-open::before {
  transform: translateY(10px) rotate(45deg);
}

.burger.is-open::after {
  transform: translateY(-10px) rotate(-45deg);
}

.burger.is-open span {
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100vh !important;
background-color: #363636;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: slideInMobile 0.5s ease-out forwards;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.mobile-menu__item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: calc(0.1s * var(--index));
}

.mobile-menu__link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.mobile-menu__link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: width 0.3s ease;
}

.mobile-menu__link:hover::before {
  width: 100%;
}

.mobile-menu__link:hover {
  color: #00d4ff;
}

.mobile-menu__btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(18px, 3vw, 20px);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 183, 235, 0.4);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInMobile {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-content {
    gap: 15px;
  }
  .nav-btn {
    padding: 10px 20px;
    font-size: clamp(14px, 1.6vw, 16px);
  }
  .nav-logo {
    max-width: 50px;
  }
}

@media (max-width: 480px) {
  .nav-btn {
    padding: 8px 16px;
    font-size: clamp(13px, 1.5vw, 15px);
  }
  .mobile-menu__link {
    font-size: clamp(18px, 3.5vw, 22px);
  }
}

/* --------------------hero---------------------- */

.welcome-section {
  padding: clamp(100px, 18vh, 200px) 0;
  position: relative;
  color: #ffffff;
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
  transition: background-position 0.6s ease, transform 0.4s ease;
}

.welcome-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 58, 0.9) 0%, rgba(30, 58, 138, 0.7) 100%);
  z-index: -1;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

.welcome-section:hover::before {
  opacity: 1;
}

.welcome-section:hover {
  transform: scale(1.01);
}

.welcome-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out forwards;
}

.welcome-title {
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out 0.2s forwards;
}

.welcome-text {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #e0e7ff;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out 0.4s forwards;
}

.welcome-actions {
  display: flex;
  justify-content: center;
}

.welcome-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out 0.6s forwards;
}

.welcome-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.welcome-btn:hover::before {
  left: 100%;
}

.welcome-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 183, 235, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .welcome-section {
    padding: clamp(60px, 12vh, 120px) 0;
  }
  .welcome-title {
    font-size: clamp(32px, 6vw, 48px);
  }
  .welcome-text {
    font-size: clamp(14px, 2vw, 17px);
  }
  .welcome-btn {
    padding: 12px 28px;
    font-size: clamp(14px, 1.8vw, 16px);
  }
}

@media (max-width: 480px) {
  .welcome-title {
    font-size: clamp(28px, 5.5vw, 40px);
  }
  .welcome-text {
    font-size: clamp(13px, 1.8vw, 16px);
  }
  .welcome-btn {
    padding: 10px 24px;
    font-size: clamp(13px, 1.6vw, 15px);
  }
}

/* ------------rating----------------------- */

.rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: clamp(20px, 5vw, 40px) 0;
    max-width: 960px;
    border-radius: 30px;
    margin: -36px auto 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    .rating-section {
        margin-top: 0;
    }
}

.rating-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(10px, 3vw, 20px);
}

@media screen and (max-width: 768px) {
    .rating-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 15px;
    }
}

@media screen and (max-width: 360px) {
    .rating-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.rating-item {
    background: #ffffff;
    padding: clamp(12px, 3vw, 20px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.rating-item:nth-child(1) {
    animation-delay: 0.1s;
}

.rating-item:nth-child(2) {
    animation-delay: 0.2s;
}

.rating-item:nth-child(3) {
    animation-delay: 0.3s;
}

.rating-item:nth-child(4) {
    animation-delay: 0.4s;
}

.rating-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 1200px) {
    .rating-item {
        min-height: 110px;
        max-width: 170px;
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .rating-item {
        min-height: 100px;
        max-width: 100%;
    }
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-header img {
    height: clamp(22px, 3vw, 26px);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rating-header:hover img {
    transform: scale(1.1);
}

.rating-header span {
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 500;
    color: #2a2a4e;
}

@media screen and (max-width: 1200px) {
    .rating-header span {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    .rating-header span {
        font-size: 12px;
    }
}

.rating-body {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-body span {
    margin-right: 8px;
    font-weight: 700;
    font-size: clamp(18px, 3vw, 24px);
    color: #2a2a4e;
}

@media screen and (max-width: 1200px) {
    .rating-body span {
        font-size: 18px;
    }
}

@media screen and (max-width: 360px) {
    .rating-body span {
        font-size: 16px;
    }
}

.rating-body svg {
    color: #ffd700;
    width: clamp(14px, 2vw, 18px);
    height: clamp(14px, 2vw, 18px);
    transition: transform 0.3s ease, color 0.3s ease;
}

.rating-body svg:hover {
    transform: scale(1.2);
    color: #ffac00;
}

.rating-item:nth-child(1) svg {
    color: #2962ff;
}

.rating-item:nth-child(4) svg {
    color: #01b57a;
}

@media screen and (max-width: 360px) {
    .rating-body svg {
        width: 14px;
        height: 14px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specific adjustments for 320-360px */
@media screen and (min-width: 320px) and (max-width: 360px) {
    .rating-section {
        padding: 15px 0;
    }
    .rating-grid {
        gap: 8px;
    }
    .rating-item {
        padding: 10px;
        min-height: 90px;
    }
    .rating-header {
        gap: 6px;
        margin-bottom: 8px;
    }
    .rating-header img {
        height: 20px;
    }
    .rating-body {
        gap: 3px;
    }
}

/* ------------------------about------------------------------ */

.about-section {
    padding: clamp(50px, 10vh, 80px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(77, 168, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.about-heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: #2a2a4e;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1200px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media screen and (min-width: 320px) and (max-width: 360px) {
    .about-grid {
        gap: 10px;
    }
}

.about-item {
    min-height: 425px;
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(15px, 2vw, 20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-item:nth-child(1) { animation-delay: 0.1s; }
.about-item:nth-child(2) { animation-delay: 0.2s; }
.about-item:nth-child(3) { animation-delay: 0.3s; }
.about-item:nth-child(4) { animation-delay: 0.4s; }
.about-item:nth-child(5) { animation-delay: 0.5s; }
.about-item:nth-child(6) { animation-delay: 0.6s; }

.about-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
    .about-item {
        min-height: 380px;
    }
}

@media screen and (min-width: 320px) and (max-width: 360px) {
    .about-item {
        min-height: 350px;
        padding: 12px;
    }
}

.about-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    border-radius: 15px;
    display: block;
    object-fit: cover;
    width: 100%;
    height: clamp(200px, 30vw, 240px);
    transition: transform 0.5s ease;
}

.about-item:hover .about-image img {
    transform: scale(1.05);
}

@media screen and (min-width: 320px) and (max-width: 360px) {
    .about-image img {
        height: 180px;
    }
}

.about-item-heading {
    margin-bottom: 12px;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #2a2a4e;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
    .about-item-heading {
        font-size: 18px;
    }
}

.about-item-description {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    color: #4a4a4a;
    line-height: 1.6;
}

@media screen and (min-width: 320px) and (max-width: 360px) {
    .about-item-description {
        font-size: 13px;
    }
}

.about-action-btn {
    display: block;
    max-width: 160px;
    margin: 0 auto;
    padding: 12px 24px;
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 1.8vw, 16px);
    border-radius: 5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.about-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 1;
}

.about-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

.about-action-btn:hover::before {
    left: 100%;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    .about-heading {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 30px;
    }
    .about-action-btn {
        padding: 10px 20px;
        font-size: clamp(12px, 2vw, 14px);
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .about-section {
        padding: 30px 0;
    }
    .about-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .about-grid {
        margin-bottom: 20px;
    }
    .about-action-btn {
        max-width: 140px;
        padding: 8px 16px;
        font-size: 12px;
    }
}


/* ----------------------services---------------------------- */

.tools-section {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(180deg, #0a1a3a 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0.6;
  z-index: 0;
}

.tools-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.tools-title {
  font-size: clamp(34px, 6.5vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDown 0.8s ease-out forwards;
}

.tools-subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 400;
  color: #e0e7ff;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.8s ease-out 0.2s forwards;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.tool-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 25px);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 183, 235, 0.3);
}

.tool-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #00b7eb, #00d4ff);
  border-radius: 12px;
  margin: 0 auto 20px;
  color: #ffffff;
  transition: transform 0.4s ease;
}

.tool-card:hover .tool-icon {
  transform: scale(1.1);
}

.tool-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.tool-text {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #e0e7ff;
  line-height: 1.7;
}

.tools-highlight {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 40px);
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 30px);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.tools-highlight-image {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.tools-highlight-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tools-highlight:hover .tools-highlight-image img {
  transform: scale(1.05);
}

.tools-highlight-content {
  flex: 1;
}

.tools-highlight-title {
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.tools-highlight-title span {
  color: #00d4ff;
}

.tools-highlight-text {
  font-size: clamp(15px, 2vw, 18px);
  color: #e0e7ff;
  line-height: 1.7;
  margin-bottom: 25px;
}

.tools-highlight-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tools-highlight-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.tools-highlight-btn:hover::before {
  left: 100%;
}

.tools-highlight-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 183, 235, 0.5);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tools-section {
    padding: clamp(50px, 10vh, 80px) 0;
  }
  .tools-title {
    font-size: clamp(28px, 5.5vw, 40px);
  }
  .tools-subtitle {
    font-size: clamp(14px, 2vw, 17px);
  }
  .tools-highlight {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .tools-highlight-title {
    font-size: clamp(26px, 4vw, 34px);
  }
  .tools-highlight-text {
    font-size: clamp(14px, 1.8vw, 16px);
  }
  .tools-highlight-btn {
    padding: 12px 28px;
    font-size: clamp(14px, 1.8vw, 16px);
  }
}

@media (max-width: 480px) {
  .tools-title {
    font-size: clamp(24px, 5vw, 36px);
  }
  .tools-subtitle {
    font-size: clamp(13px, 1.8vw, 15px);
  }
  .tool-title {
    font-size: clamp(18px, 2.2vw, 22px);
  }
  .tool-text {
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .tools-highlight-title {
    font-size: clamp(22px, 3.5vw, 30px);
  }
}

/* -----------------------help------------------------ */

.resources-section {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(180deg, #0a1a3a 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.resources-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0.6;
  z-index: 0;
}

.resources-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.resources-title {
  font-size: clamp(34px, 6.5vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDown 0.8s ease-out forwards;
}

.resources-subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 400;
  color: #e0e7ff;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.8s ease-out 0.2s forwards;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.resource-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 25px);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.resource-card:nth-child(1) { animation-delay: 0.1s; }
.resource-card:nth-child(2) { animation-delay: 0.2s; }
.resource-card:nth-child(3) { animation-delay: 0.3s; }
.resource-card:nth-child(4) { animation-delay: 0.4s; }
.resource-card:nth-child(5) { animation-delay: 0.5s; }

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 183, 235, 0.3);
}

.resource-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #00b7eb, #00d4ff);
  border-radius: 12px;
  margin: 0 auto 20px;
  color: #ffffff;
  transition: transform 0.4s ease;
}

.resource-card:hover .resource-icon {
  transform: scale(1.1);
}

.resource-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.resource-text {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #e0e7ff;
  line-height: 1.7;
  flex-grow: 1;
}

.resource-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.resource-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.resource-btn:hover::before {
  left: 100%;
}

.resource-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 183, 235, 0.5);
}

.resource-btn svg {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}

.resource-btn:hover svg {
  transform: rotate(-90deg) translateX(5px);
}

.resources-action {
  text-align: center;
}

.resources-main-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.resources-main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.resources-main-btn:hover::before {
  left: 100%;
}

.resources-main-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 183, 235, 0.5);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .resources-section {
    padding: clamp(50px, 10vh, 80px) 0;
  }
  .resources-title {
    font-size: clamp(28px, 5.5vw, 40px);
  }
  .resources-subtitle {
    font-size: clamp(14px, 2vw, 17px);
  }
  .resource-card {
    padding: 15px;
  }
  .resource-icon {
    width: 50px;
    height: 50px;
  }
  .resource-title {
    font-size: clamp(18px, 2.2vw, 22px);
  }
  .resource-text {
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .resource-btn {
    padding: 10px 20px;
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .resources-main-btn {
    padding: 12px 28px;
    font-size: clamp(14px, 1.8vw, 16px);
  }
}

@media (max-width: 480px) {
  .resources-title {
    font-size: clamp(24px, 5vw, 36px);
  }
  .resources-subtitle {
    font-size: clamp(13px, 1.8vw, 15px);
  }
  .resource-btn svg {
    width: 18px;
    height: 18px;
  }
}


/* ----------------------join, form---------------------------- */

.signup-section {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(180deg, #0a1a3a 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.signup-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0.6;
  z-index: 0;
}

.signup-section:hover {
  box-shadow: 0 15px 50px rgba(0, 183, 235, 0.3);
  transform: scale(1.01);
}

.signup-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.signup-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDown 0.8s ease-out forwards;
}

.signup-subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 400;
  color: #e0e7ff;
  max-width: 600px;
  margin: 15px auto 0;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.8s ease-out 0.2s forwards;
}

.signup-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.signup-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.form-field:nth-child(1) { animation-delay: 0.5s; }
.form-field:nth-child(2) { animation-delay: 0.6s; }
.form-field:nth-child(3) { animation-delay: 0.7s; }
.form-field:nth-child(4) { animation-delay: 0.8s; }

.form-field label {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #ffffff;
}

.form-input,
.form-textarea {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #e0e7ff;
  opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.form-notice {
  font-size: clamp(12px, 1.6vw, 14px);
  color: #e0e7ff;
  text-align: center;
}

.form-notice a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-notice a:hover {
  color: #80e6ff;
}

.signup-submit-btn {
  padding: 14px 32px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.signup-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.signup-submit-btn:hover::before {
  left: 100%;
}

.signup-submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 183, 235, 0.5);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .signup-section {
    padding: clamp(40px, 8vh, 60px) 0;
    border-radius: 16px;
  }
  .signup-title {
    font-size: clamp(28px, 5.5vw, 40px);
  }
  .signup-subtitle {
    font-size: clamp(14px, 2vw, 17px);
  }
  .signup-form {
    padding: 20px;
  }
  .signup-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .form-field label {
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .form-input,
  .form-textarea {
    padding: 12px 16px;
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .form-notice {
    font-size: clamp(11px, 1.4vw, 13px);
  }
  .signup-submit-btn {
    padding: 12px 28px;
    font-size: clamp(14px, 1.8vw, 16px);
  }
}

@media (max-width: 480px) {
  .signup-title {
    font-size: clamp(24px, 5vw, 36px);
  }
  .signup-subtitle {
    font-size: clamp(13px, 1.8vw, 15px);
  }
  .signup-form {
    padding: 15px;
    gap: 15px;
  }
  .form-textarea {
    min-height: 100px;
  }
  .signup-submit-btn {
    padding: 10px 24px;
    font-size: clamp(13px, 1.6vw, 15px);
  }
}

body {
    overflow-x: hidden !important;
}


/* --------------------------footer--------------------------- */

.base-section {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(180deg, #0a1a3a 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.4s ease;
}

.base-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0.6;
  z-index: 0;
}

.base-section:hover {
  box-shadow: 0 -15px 50px rgba(0, 183, 235, 0.3);
}

.base-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .base-info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.base-logo {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.base-logo-link {
  display: block;
  width: 80px;
  transition: transform 0.4s ease;
}

.base-logo-link:hover {
  transform: scale(1.1);
}

.base-logo-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 183, 235, 0.2));
}

.base-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.base-contact-link {
  color: #e0e7ff;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.base-contact-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: width 0.3s ease;
}

.base-contact-link:hover::before {
  width: 100%;
}

.base-contact-link:hover {
  color: #00d4ff;
}

.base-disclaimer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.disclaimer-item,
.disclaimer-license {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: clamp(15px, 2vw, 20px);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.disclaimer-item:nth-child(1) { animation-delay: 0.3s; }
.disclaimer-item:nth-child(2) { animation-delay: 0.4s; }
.disclaimer-item:nth-child(3) { animation-delay: 0.5s; }
.disclaimer-item:nth-child(4) { animation-delay: 0.6s; }
.disclaimer-license { animation-delay: 0.7s; }

.disclaimer-item:hover,
.disclaimer-license:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 183, 235, 0.2);
}

.disclaimer-title {
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.disclaimer-text {
  font-size: clamp(13px, 1.6vw, 15px);
  color: #e0e7ff;
  line-height: 1.7;
}

.disclaimer-text strong {
  color: #ffffff;
  font-weight: 600;
}

.disclaimer-text a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.disclaimer-text a:hover {
  color: #80e6ff;
}

.disclaimer-license-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00b7eb, #00d4ff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  border-radius: 8px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.disclaimer-license-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.disclaimer-license-btn:hover::before {
  left: 100%;
}

.disclaimer-license-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 183, 235, 0.4);
}

.base-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

@media screen and (max-width: 768px) {
  .base-footer {
    flex-direction: column;
    gap: 20px;
  }
}

.base-copyright {
  font-size: clamp(13px, 1.6vw, 15px);
  color: #e0e7ff;
}

.base-nav {
  display: flex;
  gap: clamp(15px, 2vw, 25px);
  flex-wrap: wrap;
  justify-content: center;
}

.base-nav-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.base-nav-item:nth-child(1) { animation-delay: 0.9s; }
.base-nav-item:nth-child(2) { animation-delay: 1.0s; }
.base-nav-item:nth-child(3) { animation-delay: 1.1s; }
.base-nav-item:nth-child(4) { animation-delay: 1.2s; }

.base-nav-link {
  color: #e0e7ff;
  text-decoration: none;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.base-nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: width 0.3s ease;
}

.base-nav-link:hover::before {
  width: 100%;
}

.base-nav-link:hover {
  color: #00d4ff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .base-section {
    padding: clamp(40px, 8vh, 60px) 0;
  }
  .base-info {
    margin-bottom: 40px;
  }
  .base-logo-link {
    width: 60px;
  }
  .base-contacts {
    align-items: center;
    text-align: center;
  }
  .base-contact-link {
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .disclaimer-title {
    font-size: clamp(16px, 2vw, 18px);
  }
  .disclaimer-text {
    font-size: clamp(12px, 1.4vw, 14px);
  }
  .disclaimer-license-btn {
    padding: 10px 20px;
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .base-copyright {
    font-size: clamp(12px, 1.4vw, 14px);
  }
  .base-nav {
    gap: 15px;
  }
  .base-nav-link {
    font-size: clamp(12px, 1.4vw, 14px);
  }
}

@media (max-width: 480px) {
  .base-section {
    padding: clamp(30px, 6vh, 50px) 0;
  }
  .base-disclaimer {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .disclaimer-item,
  .disclaimer-license {
    padding: 15px;
  }
  .disclaimer-license-btn {
    padding: 8px 16px;
    font-size: clamp(12px, 1.4vw, 13px);
  }
}

/* -------------------------cookie------------------------------- */

.cookie-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 3vw, 30px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.5s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-section:hover {
    transform: translateY(45px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

#cookieSvg {
    width: clamp(40px, 6vw, 50px);
    margin-bottom: 15px;
}

#cookieSvg g path {
    fill: #4da8ff;
    transition: fill 0.3s ease;
}

.cookie-section:hover #cookieSvg g path {
    fill: #2a2a4e;
}

.cookie-title {
    font-size: clamp(1.1em, 2vw, 1.2em);
    font-weight: 700;
    text-align: center;
    color: #2a2a4e;
    margin-bottom: 10px;
}

.cookie-text {
    text-align: center;
    font-size: clamp(0.65em, 1.5vw, 0.7em);
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    flex-direction: row;
}

.cookie-accept {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    transition-duration: 0.3s;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.cookie-accept:hover {
    background: linear-gradient(90deg, #4da8ff 0%, #2a2a4e 100%);
}

.cookie-accept:hover::before {
    left: 100%;
}

.cookie-reject {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background-color: #e0e0e0;
    transition-duration: 0.3s;
    color: #2a2a4e;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-reject::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
}

.cookie-reject:hover {
    background-color: #c0c0c0;
}

.cookie-reject:hover::before {
    left: 100%;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-section {
        max-width: 90%;
        bottom: 10px;
        right: 5%;
        padding: 15px;
    }
    .cookie-title {
        font-size: 1em;
    }
    .cookie-text {
        font-size: 0.65em;
    }
    .cookie-buttons {
        gap: 15px;
    }
    .cookie-accept, .cookie-reject {
        width: 70px;
        height: 25px;
        font-size: 0.8em;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .cookie-section {
        max-width: 95%;
        padding: 10px;
        bottom: 5px;
        right: 2.5%;
    }
    #cookieSvg {
        width: 35px;
    }
    .cookie-title {
        font-size: 0.9em;
    }
    .cookie-text {
        font-size: 0.6em;
    }
    .cookie-buttons {
        gap: 10px;
    }
    .cookie-accept, .cookie-reject {
        width: 60px;
        height: 22px;
        font-size: 0.7em;
        border-radius: 15px;
    }
}

/* -------------------------pages--------------------------- */

.main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: clamp(50px, 10vh, 80px) 0;
}

.policy-section {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 8vh, 60px) 0;
}

.policy-heading {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 32px;
    text-align: center;
    color: #2a2a4e;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards;
}

.policy-content {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.policy-content p {
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.policy-content p:hover {
    color: #2a2a4e;
}

.policy-content h2 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 16px;
    color: #2a2a4e;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content h2:hover::after {
    width: 100px;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.policy-content li:hover {
    transform: translateX(5px);
}

.policy-content a {
    color: #4da8ff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.policy-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content a:hover {
    color: #2a2a4e;
}

.policy-content a:hover::after {
    width: 100%;
}

.policy-action-btn {
    max-width: 180px;
    width: 100%;
    margin: 32px auto 0;
    padding: 12px 0;
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    color: #ffffff;
    text-align: center;
    display: block;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-heading {
        font-size: clamp(24px, 6vw, 32px);
    }
    .policy-content {
        font-size: 14px;
    }
    .policy-content h2 {
        font-size: 20px;
    }
    .policy-action-btn {
        padding: 10px 0;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .policy-section {
        padding: 30px 0;
    }
    .policy-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .policy-content {
        font-size: 13px;
    }
    .policy-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .policy-content ul {
        margin-left: 15px;
    }
    .policy-content li {
        margin-bottom: 8px;
    }
    .policy-action-btn {
        max-width: 160px;
        margin-top: 20px;
        padding: 8px 0;
    }
}