* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font-light);
  /* letter-spacing: -0.3px; */
}

body{
  background-color: #161616;
  color: rgb(248, 248, 248);
}

.nav-bar-wrapper{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
}

.nav-container{
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.ham-icon-wrap{
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}
.ham{
  background-color: white;
  border-radius: 10px;
  height: 4px;
  width: 60px;
  margin-bottom: 15px;
}
.ham-2{
  background-color: white;
  border-radius: 10px;
  height: 4px;
  width: 30px;
  margin-bottom: 0px;
}

.nav-contact{
  color: rgba(255, 255, 255, 0.76);
}

/* Navbar base */
.nav-bar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

/* Glass effect after hero */
.nav-bar-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.08); /* light & premium */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Optional: improve contrast for text/icons */
.nav-bar-wrapper.scrolled .nav-link,
.nav-bar-wrapper.scrolled .nav-contact {
    color: #fff;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0b0b0b;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.fullscreen-menu.active {
    transform: translateX(0);
}

.menu-inner {
    color: #fff;
}

.menu-links li {
    margin-bottom: 24px;
}

.menu-link {
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-link:hover {
    opacity: 0.7;
}

.menu-contact {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
}

.menu-contact-link {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.menu-contact-link:hover {
    color: #fff;
}

/* Close Button */
.menu-close-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-close-btn:hover {
    transform: rotate(90deg);
    opacity: 0.7;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.3) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1.05;
}

.hero-text h4 {
    font-size: 1.4rem;
    line-height: 1.4;
}

.hero-text p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* About Section */
.about-section {
    padding: 120px 0;
    /* background: #0b0b0b; */
    color: #fff;
}

.about-tag {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
}

.about-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: 1.5px;
}

.about-image-wrap {
    max-width: 320px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}

.about-image-wrap img {
    width: 100%;
    display: block;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.btn-about {
    background: #d4af37;
    color: #000;
    font-size: 0.85rem;
    padding: 10px 24px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #c5a52f;
    color: #000;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    /* background: #0b0b0b; */
    color: #fff;
}

.stat-item {
    padding: 0 20px;
}

.stat-value {
    font-size: clamp(3.5rem, 5vw, 5rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.stat-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    /* background: #0b0b0b; */
    color: #fff;
}

.contact-tag {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
}

.contact-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: 1.5px;
}

/* Image */
.contact-image-wrap {
    max-width: 320px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}

.contact-image-wrap img {
    width: 100%;
    display: block;
}

/* Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #6f6f6f;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: #fff;
}

.contact-form textarea {
    border-radius: 16px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.85);
}

.btn-contact {
    background: #d4af37;
    color: #000;
    font-size: 0.85rem;
    padding: 10px 28px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #c5a52f;
    color: #000;
}

/* Developers Section */
.developers-section {
    /* background: #0b0b0b; */
    color: #ffffff;
}

.section-tag {
    font-size: 1rem;
    color: #9a9a9a;
    letter-spacing: 1px;
}

/* Card */
.developer-card {
    height: 100%;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.25);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
    transition: all 0.4s ease;
}

.developer-card:hover {
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-6px);
}

/* Logo */
.developer-logo {
    max-width: 120px;
    margin-bottom: 25px;
}

/* Title */
.developer-title {
    font-family: var(--head-font-regular);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Description */
.developer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.site-footer {
    background: #0f0f0f;
    color: #bfbfbf;
}

.footer-logo {
    max-width: 140px;
}

.footer-desc {
    font-size: 14px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-title {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bfbfbf;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d6b36a; /* luxury gold accent */
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    font-size: 13px;
    color: #8f8f8f;
}







@media screen and (width < 800px) {
  .ham{
    background-color: white;
    border-radius: 10px;
    height: 4px;
    width: 40px;
    margin-bottom: 15px;
  }
  .ham-2{
    background-color: white;
    border-radius: 10px;
    height: 4px;
    width: 25px;
    margin-bottom: 0px;
  }
  .nav-connect-btn{
    display: none;
  }
  .nav-contact-info{
    display: none !important;
  }
  .hero-content {
      text-align: left;
      align-items: center !important;
      padding-bottom: 0px !important;
  }
  .hero-row{
    align-items: center !important;
  }
  .hero-text {
      margin-top: 40px;
  }
  .about-section {
      padding: 80px 0;
      /* text-align: center; */
  }

  .about-image-wrap {
      margin: 40px 0;
  }
  .stats-section {
      padding: 70px 0;
  }

  .stat-item {
      margin-bottom: 40px;
  }
  .contact-section {
      padding: 80px 0;
      /* text-align: center; */
  }

  .contact-image-wrap {
      margin: 40px 0;
  }
}