/* =======================================
   GLOBAL
======================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #020617;
  color: #e8e8e8;
  line-height: 1.6;
}

/* =======================================
   NAVBAR
======================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
   align-items: center;
  background: linear-gradient(
    to right,
    rgba(3, 7, 18, 0.9),
    rgba(15, 52, 96, 0.9),
    rgba(3, 7, 18, 0.9)
  );
  backdrop-filter: blur(10px);
  padding: 10px 60px;
  border-bottom: 1px solid #0b1738;
  height: 85px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 115px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #dcdcdc;
  font-size: 18px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5c518;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ===============================
   CONTACT SECTION (ZOHO FORM)
================================ */

.contact-section {
  padding: 90px 20px;
  background: #020617;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-section p {
  color: #b5b5b5;
  margin-bottom: 40px;
  font-size: 15px;
}

/* FORM WRAPPER */
.contact-section form {
  max-width: 520px;
  margin: auto;
  background: #030a1a;
  padding: 40px 30px;
  border-radius: 14px;
  border: 1px solid #0b1738;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* REMOVE ZOHO DEFAULT HEADINGS */
.contact-section form h2,
.contact-section form p {
  display: none;
}

/* LABELS */
.contact-section label {
  text-align: left;
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: -10px;
}

/* INPUTS & TEXTAREA */
.contact-section input,
.contact-section input[type="text"],
.contact-section textarea {
  width: 100%;
  padding: 14px 16px;
  background: #020617;
  border: 1px solid #0b1738;
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: #7a7a7a;
}

/* FOCUS STATE */
.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #2563eb;
}

/* TEXTAREA */
.contact-section textarea {
  min-height: 130px;
  resize: vertical;
}

/* SUBMIT BUTTON */
.contact-section button {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #7ccb1c, #88f52f);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-section button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(86, 235, 37, 0.35);
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 600px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-section form {
    padding: 30px 20px;
  }

  .contact-section h2 {
    font-size: 1.7rem;
  }
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 600px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-section h2 {
    font-size: 1.7rem;
  }
}



/* =======================================
   MOBILE RESPONSIVE
======================================= */
@media (max-width: 768px) {

  .navbar {
    padding: 10px 20px;
  }

  .logo img {
    height: 95px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #030a1a;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    display: none;
    border-top: 1px solid #0b1738;
  }

  .nav-links.open {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .contact-page h1 {
    font-size: 2rem;
  }
}
/* =======================
         FOOTER
=========================== */

.bp-footer {
  background: #020B25; /* Same as your website's dark theme */
  padding: 60px 20px;
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.bp-footer-section h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #60a5fa; /* Soft Blue Accent */
  font-weight: 600;
}

.bp-footer-section ul {
  list-style: none;
  padding: 0;
}

.bp-footer-section ul li {
  margin-bottom: 12px;
}

.bp-footer-section ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 16px;
  transition: 0.2s;
}

.bp-footer-section ul li a i {
  margin-right: 10px;
  color: #60a5fa; /* Matching blue accent */
}

.bp-footer-section ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.bp-footer-section p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}



/* Footer Fix */


.bp-footer-section ul {
  list-style: none; /* Removes default bullets */
  padding: 0;       /* Removes default indentation */
  margin: 0;
}

.bp-footer-section li {
  margin-bottom: 12px; /* Adds vertical spacing between items */
}

.bp-footer-section a {
  display: flex;
  align-items: center;    /* Vertically aligns icon and text */
  text-decoration: none;
  color: inherit;         /* Adjust as needed for your theme */
}

.bp-footer-section i {
  width: 24px;            /* Gives icons a fixed container width */
  text-align: center;     /* Centers narrower icons (like LinkedIn) */
  margin-right: 10px;     /* Creates uniform spacing after the icon */
  font-size: 1.2rem;      /* Adjust icon size */
}