/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: white;
  background-color: white;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #03132a; 
  backdrop-filter: blur(2px);
  padding: 1rem 0;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-left: -130%;

}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00d2c8;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}





/* Dropdown Wrapper */
.dropdown {
  position: relative;
}

/* Show on hover */
.dropdown:hover .solution-modal {
  display: block;
}

/* Modal container */
.solution-modal {
  position: absolute;
  top: 100%;
  /* left: -100%; */
  transform: translateX(-65%);
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  width: 1100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
}

/* Grid layout */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1rem;
}

/* Light card styling */
.solution-item.light {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.solution-item.light img {
  width: 80px;
  height: 80px;
}
.solution-item.light:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.solution-item.light h4 {
  margin: 0;
  font-size: 1rem;
  color:#000;
}

.solution-item.light p {
  font-size: 0.9rem;
  margin: 0.4rem 0;
  color: #000;
  text-align: left;
}

.solution-item.light a {
  color: #000;
  text-decoration: none;
  font-size: 0.85rem;
}

.solution-item.light a:hover {
  text-decoration: underline;
}

/* Dark card (spanning 2 rows) */
.solution-item.dark {
  grid-column: 3;
  grid-row: 1 / span 2;
  background: url('../Images/whychooseus_banner.png') no-repeat center center/cover;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-item.dark h4 {
  font-size: 1.4rem;
 
}

.solution-item.dark p {
  font-size: 18px;
  font-weight: 500;
  margin-top: -10% !important;
  text-align: left;
}

.solution-item.dark small {
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
  margin-top: -10% !important;

}

.solution-item.dark a {
  margin-left: 4.5rem;
  margin-bottom: 2rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid white;
  padding: 0.6rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
}

.solution-item.dark a:hover {
  background: #111111;
  border: 1px solid  #00FCF7;
  color: #00FCF7;
}










/*Homepage -  Hero */
.hero {
  position: relative;
  height: 105vh;
  width: 100vw;
  background: url('../Images/hero.png') no-repeat center center/cover ;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  background-attachment: fixed;
  margin-top: -5%;

}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  z-index: 0;
}

.hero-text {
  max-width: 700px;
  color: white;
  text-align: left;
  z-index: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.hero-text h1 span {
  color: #00FCF7;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  border: 2px solid #00FCF7 !important;
  color: white !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #00FCF7 !important;
  color: black !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #001129;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links ul {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }
    .logo img {
   height: 40px;
  margin-left: 0%;
}
}



@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .logo img {
  height: 40px;
  margin-left: 0%;
}
}



@media (max-width: 1200px)  {
  .logo img{
    height: 40px;
    margin-left: 0%;  
  }
}






/* Footer */
.footer {
  background-color: #03132a;
  color: white;
  padding: 3rem 1rem 1rem;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li:hover {
  margin-bottom: 0.5rem;
  color: #00d2c8;
}

.social-icons a {
  color: white;
  margin-right: 0.7rem;
  font-size: 1.2rem;
}

.contact-info li {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .footer-section ul,
  .contact-info {
    padding-left: 0;
  }
}
