body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

/*
.hero {
  position: relative;
  width: 100%;
  height: 30%;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}*/


.about-content{
  display: flex;
  text-align: center;
}

/*.hero {
  background-color: #111827;
  padding-bottom: 10px;
  text-align: center;
  gap: 5px;

}
*/

.button-home {
  display:inline-block;
  padding:12px 20px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  font-size:16px;
  font-weight:600;
  color:#ffffff;
  background:#2563eb;               /* blue */
  border-radius:9999px;              /* pill shape */
  text-decoration:none;
  box-shadow:0 10px 15px rgba(37,99,235,.25);
  transition:transform .15s ease, box-shadow .15s ease;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
}

.cards {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  background: #f9f9f9;
}

.card {
  background: white;
  padding: 20px;
  width: 30%;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

footer {
  background: #222;
  color: white;
  /*text-align: center;*/
  padding: 20px;
}

mySlides {
  position: relative;
  display: none;
}


/*new design--------------------------------------------------------------------------------*/
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Top Contact Bar */
.topbar {
  background: #1F2937;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  padding: 6px 40px;
  margin-bottom: 10px;
}

.topbar p {
  margin: 0;
  font-weight: 400;
}


/* Logo */
.logo img {
  height: 100px;
  width: auto;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #3B82F6;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #facc15; /* yellow underline */
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #facc15; /* hover yellow */
}

.nav-links li a.active {
  color: #facc15;
}


/*.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #3B82F6;
  border-radius: 50%;
  border-color: solid 2px #ffffff;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}
*/


/* Position dots inside the slider */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}




.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  border: 1px solid #3B82F6; /* Blue border */
  background-color: transparent; /* No fill */
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  transform: scale(1.2); /* Slight zoom on hover */
}

.active-dots {
  background-color: #3B82F6; /* Filled blue when active */
  border-color: #3B82F6; /* Match border */
}



.logo-container {
  width: 100%;
  overflow: hidden;
  background: #fff;   /* optional */
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: calc(200px * 14); /* logo width * (logos * 2) */
  animation: scroll 25s linear infinite;
}

.logo-track img {
  width: 200px;   /* adjust logo size */
  height: auto;
  margin: 0 20px;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}










/*nav new above----------------------------------------------------*/



/* Navbar wrapper */
header {
  background-color: #1F2937;
  /* padding: 0.5rem 1rem; */
}

/* Logo */
.logo {
  width: 15%;
  height: 5%;
}



.footer-content {
  text-align: center;
  align-content: center;
}





/*2--------------------------------------------------*/
.navbar {
  /*position: absolute;   
  top: 40px;           
  left: 0;
  width: 100%;*/

  position: absolute; /* stays on top of hero */
  top: 0;             /* stick to very top */
  left: 0;
  width: 100%;
  background: transparent; /* transparent over hero */
  z-index: 1000;
  padding: 10px 20px;


  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}


.navbar {
  position: absolute; /* stays on top of hero */
  top: 0;             /* stick to very top */
  left: 0;
  width: 100%;
  background: transparent; /* transparent over hero */
  z-index: 1000;
  padding: 10px 20px;
}

/* Hero full height (show under navbar) */
.hero {
  position: relative;
  width: 100%;
  height: 60%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.slide-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  padding: 25px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 80%;
  animation: fadeInUp 1s ease forwards;
  margin-bottom: 10px;
}
.slide-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 400;
}
.slide-text p {
  font-size: 16px;
}












.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}







/* Mobile & Tablet Responsive Styles */
@media (max-width: 1024px) {
  /* Navbar stack */
  .nav-links {
    gap: 1rem;
    font-size: 16px;
  }

  .logo img {
    height: 70px;
  }

  .slide-text h2 {
    font-size: 22px;
  }
  .slide-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {


  .hero {
    margin-top: 70px; /* push hero down below navbar */
  }
  .navbar {
    background: rgba(0,0,0,0.6); /* add background for readability */
  }



  /* Stack topbar content */
  .topbar {
    flex-direction: column;
    align-items: center;
    padding: 8px 15px;
    font-size: 11px;
    text-align: center;
  }

  /* Navbar */
  .navbar {
    flex-direction: column;
    padding: 10px 20px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
  }
  .logo {
    width: auto;
    text-align: center;
  }
  .logo img {
    height: 60px;
  }



  .slide-text {
    display: none;
    top: 10%;

    padding: 5px;
  }
  .slide-text h2 {
    font-size: clamp(16px, 3vw, 22px);
  }
  .slide-text p {
    font-size: clamp(12px, 2.5vw, 16px);
  }



  /* Hero text */
/*  .slide-text {
    top: 10%;
    padding: 15px 20px;
  }
  .slide-text h2 {
    font-size: 10px;
  }
  .slide-text p {
    font-size: 8px;
  }*/





  /* Cards stack */
  .cards {
    flex-direction: column;
    padding: 20px;
  }
  .card {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Logos smaller */
  .logo-track img {
    width: 120px;
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .topbar {
    font-size: 10px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .slide-text {
    display: none;
    bottom: 8%;
    padding: 10px;
    max-width: 100%;
  }
  .slide-text h2 {
    font-size: clamp(14px, 4vw, 18px);
  }
  .slide-text p {
    font-size: clamp(11px, 3vw, 14px);
  }

  .logo-track img {
    width: 90px;
    margin: 0 5px;
  }
}





/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* show hamburger */
  }

  .nav-links {
    display: none; /* hide menu by default */
    flex-direction: column;
    width: 100%;
    background: #1F2937;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex; /* show when toggled */
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .nav-links li a {
    font-size: 18px;
    color: white;
  }
}





















/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}