* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  max-width: 100vw;
  overflow-x: hidden;
}
html,body{
  overflow-x: hidden;
}

/* Enhanced Header Styles */
.header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: .5px solid rgba(228, 228, 228);
  transition: all 0.3s ease;
}

.header-container{
  padding: 0 80px;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  height: 84px;
  position: relative;
}

/* Enhanced Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding-left: 0%;
}

.logo:hover {
  transform: scale(1.02);
}

@media (max-width:1024px) {
  .logo{
    height: 106px;
    width: 28px;
  }
  
}

/* Enhanced Navigation Styles */
.nav {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 

}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0; 
}

/* Active state for both desktop and mobile */
.nav-link.active,
.mobile-slide-menu .nav-link.active {
  color: #0d0d0e;
  font-weight: 500;
}

/* Optional: Add an underline indicator */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #777777;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: #777777;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 8px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 6px 0;
  background: transparent;
  
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.25px;
  background: #777777;
  transition: width 0.3s ease;
}

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

.nav-link:hover,
/* Auth Buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-login {
  text-decoration: none;
  color: #1e293b;
  font-weight: 400;
  font-size: 17px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "Inter";
}

.btn-login:hover {
  color: #0066ff;
}

.button-primary {
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 16px 28px;
  line-height: 28px;
}

.button-primary:hover {
  background: #006DE3;
   font-weight: 500;
  font-size: 17px;
}

.button-primary-small {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 10px 18px;
  line-height: 28px;
}

.button-primary-small:hover {
  background: #006DE3;
  font-weight: 500;
  font-size: 17px;
}

/* Products Dropdown */
.dropdown {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
    padding-bottom: 8px; 
  padding-top: 8px;
}

.dropdown-arrow {
  color: #64748b;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: #1e293b;
}


.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top:100%;
  left: 0;
  background: white;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  overflow: hidden; /* Ensure children respect border-radius */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  
  z-index: 999;
}

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

.dropdown-item {
  padding: 12px 16px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  color: #777;
  display: block;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: #E7F2FF;
  color: #14142B;
  position: relative;
}

.dropdown-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #007BFF; /* blue bar */
}


/* Enhanced Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0;
}

.mobile-menu-btn:hover {
  background: rgba(0, 125, 209, 0.08);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #475569;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
/* Hamburger Button Styles */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10001;
  margin-top: 10px;
  transform: scale(.90); /* Reduced overall size */
  transform-origin: top;
}

.hamburger .line {
  height: 3px;
  background-color: #2C2C44;
  border-radius: 6px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Optional layout wrapper if needed */
.ham-menu-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Line widths */
.hamburger span:nth-child(1) { width: 60%; }
.hamburger span:nth-child(2) { width: 85%; }
.hamburger span:nth-child(3) { width: 60%; }

/* Checked (X transformation) */
#menuToggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
  width: 100%;
}

#menuToggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-16px);
}

#menuToggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
  width: 100%;
}


/* Slide Menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: white;
  padding: 100px 40px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
}

.menu-auth-buttons{
  display: flex;
  gap: 2rem;
  align-items: center;
}
.menu-auth-buttons .btn-login{
  color: #1E1E1E;
}

/* Slide menu when checkbox is checked */
#menuToggle:checked ~ .mobile-slide-menu {
  right: 0;
}

#menuToggle:checked ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* DARK OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: 0.4s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-slide-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-slide-menu li {
  margin-bottom: 2.3rem;
}

.mobile-slide-menu a {
  text-decoration: none;
  color: #777777;
  font-size: 18px;
}

.button-primary-small-ham {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 10px 18px;
  line-height: 28px;
}

.button-primary-small-ham:hover {
  background: #006DE3;
  font-weight: 500;
}

/* Responsive Hamburger*/
@media (max-width: 1024px) {
  .hamburger {
    display: flex !important;
    position: absolute;
    top: 20px;
    right: 0px;
  }
  .nav {
    display: none !important;
  }

  .auth-buttons{
    display: none !important;
  }
  .header-container {
    padding: 0 35px;
  }

  /* .nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  } */
}

/* Hover effects for interactive elements */
.btn-primary,
.btn-secondary,
.btn-signup {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-signup:hover::before {
  left: 100%;
}
.header-animate {
  opacity: 0;
  transform: translateY(69px);
}

.header-animate.header-animated {
  opacity: 1;
  animation: headerSpring 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes headerSpring {
  0% {
    opacity: 0;
    transform: translateY(69px);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.black-heading {
  color: #1e1e1e;
  font-size: 48px;
  font-weight: 550;
  line-height: 56px;
  letter-spacing:-4%;
  font-family: "Inter";
  margin-bottom: 24px;
}
@media (max-width:1024px) {
  .black-heading{
   font-size: 42px;
   line-height: 52px;
   letter-spacing: -2.68px;
  }
  
}
.heading-container-row{
  margin-top: 36px;
  display: flex;
  
flex-direction: row;
}
.heading-container-main{
  line-height: 0;
}
.grey-description-privacy {
  color: #777777;
  font-size: 18px;
  font-weight: 300;
  font-family: "Inter";
  letter-spacing: -0.08px;
  margin-bottom: 24px;
  line-height: 1.3;
}
.small-black-heading {
 color: #1E1E1E;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
letter-spacing: -0.072px;
line-height: 1.3;
 }
 .privacy-policy-container{
  margin-top: 28px;
  padding-bottom: 8px;
 }
.privacy-title{
  color: #1E1E1E;
font-family: "Inter";
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.96px;
}
.body-container{
  margin-top: 14px;
  margin-left: 24px;
}
.body-container ul li{
  color: #666;
font-family: "Inter";
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 32px; 
letter-spacing: -0.072px;


}
.body-container-contact{
    margin-left: 8px;
}
.small-black-heading-contact{
  margin-top: 14px;
   color: #1E1E1E;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
letter-spacing: -0.072px;
}
.contact-text{
  color: #666;
font-family: "Inter";
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 32px;
letter-spacing: -0.072px;
}
 

.main-content{
  padding-top: 70px;
  position: relative;
}

.section{
    padding: 30px 80px 100px 80px;
}
@media (max-width:1024px) {
   .section{
     padding: 20px 20px 30px 20px;
   }
}


/* Footer Styles */
.footer {
  background: #007BFF;
  padding: 54px 100px 64px 100px;
}
.copy-right{
  color: #F2F2F7;
  margin-top: 20px;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.powerd-by{
  color: #F2F2F7;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-socials {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}
.footer-title {
  color:  #F2F2F7;
font-family: "Inter";
font-size: 20px;

font-weight: 600;
line-height: 24px; 

}
.footer-links a {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  color: #F4F4F4;
 font-family: "Inter";
 text-decoration: none;
 font-size: 16px;
 font-weight: 300;
}
.footer-links a:hover {
  color: #ffffff; 
  font-weight: 400;

}
.footer-col ul li a:hover {
  opacity: 0.7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 1024px) {
  .footer {
    padding: 80px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-col {
    width: 100%;
  }

  .footer-logo {
    margin-top: 0;
  }

  .footer-socials {
    margin-top: 16px;
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .copy-right {
    font-size: 14px;
    margin-top: 24px;
    line-height: 24px;
  }
}
