/* GENERAL RESET AND BODY STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #1e1e80, #352d9d);
  color: white;
  min-height: 100vh; 
  padding-top: 80px; 
  margin-bottom: 0; 
}

/* HEADER STYLES */
.header {
  position: fixed; /* Fixed position to keep it at the top while scrolling */
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(30, 30, 128, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 100%; /* Ensure it spans the full width */
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.logo-text {
  color: white;
}

/* Navigation Styles */
.nav {
  display: flex;
  gap: 20px;
}


.nav a {
  color:#fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 1.02rem;
}

.nav a:hover {
  color: #ffffff;
}

.nav a.active {
  font-weight: 900;
  /* text-decoration: underline; */
}

/* Sign Up Button Styles */
.btn-signup {
  background-color: #2563eb;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-signup:hover {
  background-color: #1d4ed8;
}

/* MOBILE MENU (Hamburger Menu) */
.hamburger-menu {
  display: none; /* Hidden by default */
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.hamburger-menu .bar {
  width: 100%;
  height: 5px;
  background-color: white;
  border-radius: 5px;
}

/* Mobile Navigation Styles */
/* .mobile-nav {
  display: none; 
  position: absolute;
  top: 80px; 
  left: 0;
  right: 0;
  background-color: rgba(30, 30, 128, 0.95);
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  text-align: center;
} */
.mobile-nav {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: rgba(30, 30, 128, 0.95);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
  transition: 
    max-height 0.5s ease-in-out,
    opacity 0.3s ease-in-out,
    padding 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}

.mobile-nav.active {
  max-height: 500px; /* Adjust based on content height */
  opacity: 1;
  visibility: visible;
  padding: 20px;
}


.mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Show hamburger menu only on mobile */
@media (max-width: 768px) {
  .nav {
    display: none; /* Hide the desktop menu on mobile */
  }
  .hamburger-menu {
    display: flex; /* Show hamburger menu */
  }
}
/* nav button hide on mobile  */
@media (max-width: 900px) {
  .btn-signup {
    display: none;
  }
}



/* When the mobile menu is active, show it */
.mobile-nav.active {
  display: flex; /* Show mobile menu */
}
.box{

}


.values-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 10px;
}

.value-card2 {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary);
}

.value-card2 h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.value-card2 p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.5;
}


/* FOOTER STYLES */
.footer {
  background-color: #1a1a4a;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.logo-box {
  background-color: #2563eb;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 5px;
}

.footer-logo p {
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-socials i {
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-socials i:hover {
  color: #ffffff;
}

.footer-links h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li a{
  margin-bottom: 8px;
  color: #ccc;
  cursor: pointer;
  text-decoration: none;
}
.footer-links ul li a:hover{
 color: #fff;
}

.footer-links ul li:hover {
  color: #ffffff;
}

.footer-contact i {
  margin-right: 8px;
  color: #2563eb;
}

/* Newsletter Form Styles */
.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 250px;
}

.footer-form button {
  padding: 10px 20px;
  background-color: #2563eb;
  border: none;
  color: white;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-form button:hover {
  background-color: #1d4ed8;
}

/* Footer Bottom Styles */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 50px 20px 30px;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 40px;
}
.footer-logo {
  flex: 1 1 440px;
}
.f-logo {
    min-width: 200px;
    display: flex;
}
.f-logo img {
    width: 200px;
    height: 200px;
    position: relative;
   left: -24px;
    top: -13px;
}
.footer-logo h2 {
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo .logo-box {
  background-color: #2563eb;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: bold;
}

.footer-logo p {
  margin: 15px 0;
  line-height: 1.5;
  font-size: 14px;
  color: #94a3b8;
}

.logo-box {
  background-color: #2563eb;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 5px;
}

.footer-logo p {
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-socials{
    position: relative;
    top: -20px;
}

.footer-socials i {
  font-size: 18px;
  margin-right: 12px;
  margin-right: 10px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-socials i:hover {
  color: #ffffff;
}
.footer-links {
  flex: 1 1 150px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;

}

.footer-links ul li {
  margin-bottom: 8px;
  color: #ccc;
  cursor: pointer;
}

.footer-links ul li:hover {
  color: #ffffff;
}

.footer-contact i {
  margin-right: 8px;
  color: #2563eb;
}

/* Newsletter Form Styles */
.footer-newsletter {
  margin-top: 40px;
  border-top: 1px solid #1e293b;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 250px;
}

.footer-form button {
  padding: 10px 20px;
  background-color: #2563eb;
  border: none;
  color: white;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-form button:hover {
  background-color: #1d4ed8;
}

/* Footer Bottom Styles */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  color: #aaa;
}

.footer-bottom span {
  margin: 0 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-bottom span:hover {
  color: #ffffff;
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
  .footer-top,
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-form {
    width: 100%;
  }

  .footer-form input {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-form button {
    width: 100%;
    margin-left: 0;
  }
}


  .footer-newsletter h4 {
    color: white;
    margin-bottom: 6px;
  }

  .footer-newsletter p {
    font-size: 14px;
    color: #94a3b8;
  }

  .footer-form {
    display: flex;
    gap: 0;
    margin-top: 10px;
  }

  .footer-form input {
    padding: 10px 12px;
    border: none;
    background-color: #1e293b;
    color: white;
    width: 220px;
  }

  .footer-form button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #64748b;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
  }

  .footer-bottom span {
    margin: 0 10px;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    /* .footer-top,
    .footer-newsletter {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-form {
      flex-direction: column;
      width: 100%;
    }

    .footer-form input,
    .footer-form button {
      width: 100%;
    }

    .footer-bottom {
      text-align: left;
    } */


    /* .footer-top {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  
    .footer-links {
      margin-bottom: 20px;
    }
  
    .footer-newsletter {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-form {
      flex-direction: column;
      width: 100%;
    }
  
    .footer-form input,
    .footer-form button {
      width: 100%;
    }
  
    .footer-bottom {
      text-align: left;
    } */

 .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-logo {
    grid-column: 1 / -1; /* spans both columns (full width) */
  }

  .footer-links:nth-child(2),
  .footer-links:nth-child(3) {
    /* stay as 2 columns */
  }

  .footer-contact {
    grid-column: 1 / -1; /* full width for contact or any last section */
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .footer-form {
    flex-direction: column;
    width: 100%;
  }

  .footer-form input,
  .footer-form button {
    width: 100%;
  }

  .footer-bottom {
    text-align: left;
  }

  }
  
  .footer-contact ul li:nth-child(3) {
  /* Your styles here */
  /*color: red;*/
  font-size: 14px;
}
.footer-contact {
    flex: 1 1 200px;
}

