@import url(/assets/theme/theme.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
  color: #f5f5f5;
}

.hero {
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  z-index: 10;
}

.logo img {
  height: 55px;
}
.icon-hambrgr{
    background-color: transparent;
    border: none;
}
.hambrgr-div{
    margin-right: 15px;
}
.logo-main-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.login-main-div img{
    width: 24px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: #121212;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.hero-content {
  max-width: 900px;
  margin: 30px auto 30px;
  text-align: center;
  position: relative;
  z-index: 4;
  
}

.hero-badge {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 span {
  color: #3b82f6;
  position: relative;
}

.hero-description {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.cta-primary-nav {
  background-color: #3b82f6;
  color: #f5f5f5 !important;
  padding: 10px 20px;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.8 !important;
}

.cta-primary-nav:hover {
  background-color: #2563eb;
}

.trusted-by {
  text-align: center;
}

.trusted-by-text {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logo {
  height: 35px;
  filter: brightness(1000%) contrast(100%) saturate(0%);
}

.grid-background {
  /*position: absolute;*/
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  z-index: 1;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  filter: blur(80px);
  z-index: 0;
}

.blob-1 {
  top: -200px;
  right: -100px;
}

.blob-1-custom {
  top: -200px;
  left: -100px;
}

.blob-2 {
  bottom: -300px;
  left: -200px;
}

.blob-2-custom {
  bottom: -200px;
  right: -100px;
}


@media (min-width: 768px){
    .login-main-div{
        display: none;
    }
    .hambrgr-div{
        display: none;
    }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .trusted-logos {
    gap: 1.5rem;
  }
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: rgb(19,18,19);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 0.75rem 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: rgba(245, 245, 245, 0.8);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

/* Mobile dropdown styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  background-color: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.mobile-dropdown-menu a {
  padding-left: 2rem !important;
}