
/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

:root {
  --bg-gradient: linear-gradient(90deg, #010b14 0%, #031b2b 50%, #01080e 100%);
  --blue-glow: #0076c9;
  --text-gray: #b0b8c1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #01080e;
}

.button-primary {
  padding: 6px 18px!important;
  border-top: 3px solid #82B8DC!important;
  border-radius: 10px!important;
}

.navbar {
  background-color: transparent;
  height: 85px;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
  justify-content: space-between!important;
}
.navbar.scrolled {
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  width: 90%;
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: #fff; /* Placeholder for cube logo */
  border-radius: 4px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-text span {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 3.5px;
  color: #fff;
}

/* Desktop Menu */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links li {
    position: relative; /* Anchor point for the border */
}

.nav-links li a {
    text-decoration: none;
    color: #fff; /* Aapke background ke hisaab se color */
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center;
}
.nav-links a:hover {
  color: #fff;
}

/* Border ka Initial State (Hidden) */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px; /* Border ki thickness */
    bottom: 0;
    left: 0;
    background-color: #ffffff; /* White Border */
    transform: scaleX(0); /* Shuruat mein width 0 rahegi */
    transform-origin: bottom left; /* Animation left se shuru hogi */
    transition: transform 0.3s ease-out; /* Smooth transitions */
}
/* Hover State (Show Border) */
.nav-links li a:hover::after {
    transform: scaleX(1); /* Hover karne par full width */
}

/* Contact Us Button Reset (Taki button ke niche line na aaye) */
.nav-links li a.btn-primary::after {
    display: none;
}

.arrow-right {
  width: 20px;
  height: 20px;
}

.contact-btn:hover .arrow {
  transform: translateX(5px);
}
.arrow {
  display: inline-block;
  margin-left: 8px;
  /* Animation ko yahan directly add kar diya */
  animation: arrowMove 1.2s ease-in-out infinite; 
}

@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px); /* Thoda left move karega */
  }
  100% {
    transform: translateX(0);
  }
}


/* Styles for Mobile Drawer (Initially Hidden on Desktop) */

.nav-links {
  display: flex;

  list-style: none;

  align-items: center;

  gap: 30px;
}

.drawer-header {
  display: none; /* Hidden by default, shown in mobile */

  justify-content: space-between;

  align-items: center;

  padding: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-header span {
  font-size: 18px;

  font-weight: 700;

  color: #fff;
}

.close-btn {
  color: #fff;

  font-size: 30px;

  cursor: pointer;
}

.overlay {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.5);

  z-index: 998;

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.3s, visibility 0.3s;
}

.overlay.active {
  opacity: 1;

  visibility: visible;
}

/* Hamburger Icon */

.hamburger {
  display: none;

  flex-direction: column;

  gap: 6px;

  cursor: pointer;
}

.hamburger span {
  width: 30px;

  height: 3px;

  background: white;

  border-radius: 2px;
}

.drawer-header {
  display: none; /* Only visible in mobile */
}
