:root {
  --theme-color: #289C99;
  --dark-theme-color: #0f172a;
  --light-font-color: rgb(209, 213, 219);
  --sinace-black:#0f213c;
}

/* Global */

::selection {
  background-color: var(--theme-color);
  color: white;
}

body {
  font-family: "Inter", sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0F172A;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: #289C99;
    border-radius: 0px;
    border: 2px solid #289C99;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #289C99; /* slightly darker on hover */
}
.page-container {
  max-width: 1200px;
  padding: 0px 18px;
  margin: 0 auto;
}
.themebutton {
  border: 2px solid var(--theme-color);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  background-color: var(--theme-color);
  color: white;
  transition: 0.3s all ease;
}
.themebutton:hover {
  background-color: transparent;
  color: var(--theme-color);
}

/* HEADER */

nav.navbar ul li {
  font-size: 14px;
  cursor: pointer;
  transition-duration: 0.3s;
  font-weight: 500;
}

nav.navbar ul li:hover {
  color: var(--theme-color);
}

header {
  z-index: 50;
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 0.3s ease;
}
.scroll-header {
  background: rgb(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */

footer {
  background-color: var(--dark-theme-color);
  color: var(--light-font-color);
}
.footer-bottom {
  border-top: 1px solid rgba(136, 136, 136, 0.5);
}
.footer-icons {
  font-size: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-icons i {
  transition-duration: 0.3s;
  cursor: pointer;
}
.footer-icons i:hover {
  color: #7c3aed;
}

/* CARD SECTION */
.card-shadow {
  box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 20px;
}

/* CONTACT SECTION */
.contactform input{
padding: 10px;
outline: none !important;
border: 1px solid var(--theme-color);
border-radius: 10px;
}
.contactform textarea{
  padding: 10px;
outline: none !important;
border: 1px solid var(--theme-color);
border-radius: 10px;
}
/* ANIMATIONS */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* How high the element bounces */
  }
}

.bounce {
  display: inline-block;
  animation: bounce 3s ease-in-out infinite;
}
.bounce-2 {
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

/* Hero Section */
#herosection {
  background-image: url("/assets/herosection.png");
  background-size: cover;
  background-position: center;
}
