body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}
.about-content{
  display: flex;
  text-align: center;
}

.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: 170px;
  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;
}



/* 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: 6%;
}



.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; */
  display: flex;
  flex-direction: column;

  backdrop-filter: blur(5px) 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: 550px; /* 👈 fixed height */
  object-fit: cover; /* ensures the image fills the area without distortion */
  display: block;
}



.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;
  }

 

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

@media (max-width: 768px) {

  .navbar {
    background: transparent;
    backdrop-filter: blur(5px) saturate(180%);
  }



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

  /* Navbar */
  .navbar {
    flex-direction: row;
    padding: 10px 20px;
  }
  .nav-links {
    /* flex-direction: row; */
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    color: #3B82F6;

  }
  .logo {
    width: auto;
    text-align: center;
  }
  .logo img {
    height: 125px;
  }


  .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);
  }

  /* 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;
  }

  .navbar {
    background: transparent;
    backdrop-filter: blur(5px) saturate(180%);
  }

  .nav-links li a {
    font-size: 16px;
    color: #3B82F6;
  }

  .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;
  }
  .logo img {
    height: 125px;
  }

}

/* Mobile styles */


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


/* FIX: add the missing dot before mySlides */
.mySlides {
  position: relative;
  display: none;
  width: 100%;
}

/* Optional fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Hero height fix */

/* SLIDER BASE */
.slider-wrapper {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}


.mySlides img {
  width: 100%;
  height: 600px; /* automatically adjusts to natural height */

  display: block;
}

/* Optional fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* TEXT OVERLAY */
.slide-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  padding: 20px 30px;
  border-radius: 12px;
  background: rgba(0,0,0,0.4);
  max-width: 80%;
  backdrop-filter: blur(4px);
}

.slide-text h2 {
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 10px;
}
.slide-text p {
  font-size: clamp(14px, 1.5vw, 18px);
}

/* DOTS */
.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  border-radius: 50%;
  border: 2px solid white;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}
.active-dots, .dot:hover {
  background-color: white;
}

/* Make sure hero auto expands to image height */
.hero {
  width: 100%;
  display: block;
}



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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937;
  background-color: #fff;
  line-height: 1.6;
}

/* Topbar */
.topbar {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}


/* Menu toggle (mobile) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* About Section */
.about {
  padding: 2rem;
  background: #f3f4f6;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.about h2, .about h3 {
  color: #111827;
  margin-bottom: 1rem;
}

.about p {
  margin-bottom: 1rem;
  text-align: justify;
}

.about ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Responsive Styles */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: transparent; /* dark transparent */
    backdrop-filter: blur(8px);
    /* margin-bottom: 20px; */
  }

  .logo img {
    height: 150px;
    margin-bottom: 10px;
  }

  .nav-links {
    display: flex !important;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative; /* keep inside navbar */
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    border-top: none;
    gap: 10px;
  }

  .nav-links li a {
    font-size: 16px;
    color: white; /* white text inside transparent navbar */
    text-decoration: none;
  }

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

  /* Hide the menu icon (not needed) */
  .menu-toggle {
    display: none;
  }
}


