/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: "Inria Serif", serif;
  overflow-y: scroll; /* keeps layout stable */
}
body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}



.nav-links a.active {
  color:  #69A3FF;
  position: relative;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent; 
  padding: 15px 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
  
}

.logo img {
  height: 50px;
}


.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color:  #69A3FF;
}


.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  padding: 10px 0;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  min-width: 240px;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu a {
  color: #fff;
  font-weight: 500;
  display: block;
}

.dropdown-menu a:hover {
  color:  #69A3FF;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}


.contact-btn {
  background-color:  #69A3FF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #3E85FF;
}


/* Hamburger Menu */
.menu-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.bar {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

/* Bar positions */
.bar:nth-child(1) {
  transform: translate(-50%, -8px);
}
.bar:nth-child(2) {
  transform: translate(-50%, 0);
}
.bar:nth-child(3) {
  transform: translate(-50%, 8px);
}

/* Active state (Close X) */
.menu-toggle.active .bar:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.95); /* ✅ Slight transparency for mobile menu */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 25px 0;
    gap: 25px;
    display: none;
    border-top: 1px solid #111;
  }

  .nav-links.active {
    display: flex;
  }

  /* Center and clean dropdown */
  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    background-color: transparent;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 5px;
  }

  .dropdown-menu li {
    padding: 0;
  }

  /* Show dropdown when parent tapped or hovered */
  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  /* Contact button centered */
  .contact-btn {
    background-color: #001aff;
    text-align: center;
    padding: 12px 25px;
  }
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4%;
  overflow: hidden;
}

/* Background Image */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(50%) contrast(120%);
}

/* Text Section */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 3px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Inria Serif", serif;
}

.hero p {
  font-size: 1.3rem;
  color: #b3b3b3;
  line-height: 1.3;
  margin-top: 10px;
}

.hero h1 span {
  color: #3b82f6;
}

/* Responsive Hero */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .hero-content {
    padding: 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}





/* Contact Wrapper */
.contact-wrapper.dark {
  max-width: 700px;
  margin: auto;
  background: #0d0d0d; /* Deep black background */
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  padding: 50px 40px;
  margin-top: 60px;
  margin-bottom: 100px;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

/* Heading */
.contact-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
 
  letter-spacing: 0.5px;
}

/* Subheading */
.contact-subheading {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Contact Details Box */
.contact-details {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #ccc;
  border: 1px solid #2b2b2b;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-details a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #60a5fa;
}

/* Form Fields */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e0e0e0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 14px;
  color: #f5f5f5;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.3);
}

/* Submit Button */
.contact-submit {
  background: linear-gradient(90deg, #2563eb, #1e40af);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.contact-submit:hover {
  background: linear-gradient(90deg, #1d4ed8, #1e3a8a);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 600px) {
  .contact-wrapper.dark {
    padding: 30px 20px;
  }

  .contact-content h1 {
    font-size: 1.6rem;
  }

  .contact-submit {
    width: 100%;
  }
}








/* Footer Styles */
.footer {
  background-color: #000000;
  padding: 60px 5%;
  color: #d8d8d8;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cfcfcf;
  max-width: 450px;
}

.footer-col {
  width: 200px;
  margin-left: 40px;
}

/* === Headings with Half Underline === */
.footer-col h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block; /* ensures underline fits text width */
}

/* create the underline */
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%; /* 👈 half-width underline */
  height: 2px;
  background-color: #424242; /* accent color */
  border-radius: 2px;
}

/* Lists */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li i {
  color: #707070;
  font-size: 1rem;
  min-width: 18px;
  text-align: center;
}

.footer-col ul li a {
  color: #bfc4cf;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #b5b5b5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col {
    margin-left: 0;
  }

  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-col {
    margin: 0 auto;
    width: auto;
  }

  .footer-col h3 {
    margin-top: 20px;
  }

  /* center underline on small screens */
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul li {
    justify-content: center;
  }

  .footer-about {
    max-width: 100%;
    margin: 0 auto;
  }
}
