 :root{
  --navy:#081A33;
  --orange:#F7941D;
  --green:#1E5A23;
  --white:#ffffff;
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:#111;background:#fff;line-height:1.5}
.header{background:var(--navy);color:var(--white);position:sticky;top:0;z-index:1000}
.container{max-width:1100px;margin:0 auto;padding:0 16px}
.topbar{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.logo{display:flex;align-items:center;gap:12px}
.logo img{height:56px}
.nav{display:flex;gap:18px;align-items:center}
.nav a{color:var(--white);text-decoration:none;font-weight:700;letter-spacing:1px}
.cta{background:var(--orange);padding:8px 14px;border-radius:6px;color:#fff;text-decoration:none;font-weight:700}
.hamburger{display:none;cursor:pointer}
.hero{background:var(--navy);color:var(--white);padding:60px 0;text-align:left}
.hero .hero-inner{display:flex;gap:30px;align-items:center;flex-wrap:wrap}
.hero .logo-large img{height:140px}
.hero h1{font-size:48px;margin:0;color:var(--orange);letter-spacing:1px}
.hero p{max-width:560px;color:#e6eef8}
.section{padding:48px 0}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px}
.card{background:#fff;border-radius:8px;box-shadow:0 8px 20px rgba(0,0,0,0.08);overflow:hidden;padding:18px}
.news-img{width:100%;height:180px;object-fit:cover;border-radius:6px}
.footer{background:var(--green);color:var(--white);padding:24px 0;margin-top:40px}
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:12px}
.profile{background:#fff;padding:12px;border-radius:8px;text-align:center}
.profile img{width:100%;height:180px;object-fit:cover;border-radius:6px}
.back-to-top{position:fixed;right:18px;bottom:18px;background:var(--orange);color:#fff;padding:10px;border-radius:50%;display:none;cursor:pointer;box-shadow:0 6px 18px rgba(0,0,0,0.2)}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--navy);
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}
.dropdown-content a {
  color: var(--white);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: normal;
}
.dropdown-content a:hover {
  background-color: var(--orange);
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive */
@media(max-width:900px){
  .nav{display:none;flex-direction:column;gap:10px;background:var(--navy);padding:10px}
  .hamburger{display:block;color:var(--white)}
  .hero h1{font-size:36px}
  .logo img{height:48px}
  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: var(--navy);
  }
}


 <style>
    * { box-sizing: border-box; }
    body { font-family: Arial, sans-serif; margin: 0; }

    .slideshow-container {
      max-width: 800px;
      position: relative;
      margin: auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .mySlides {
      display: none;
    }

    .mySlides img {
      width: 100%;
      border-radius: 10px;
    }

    /* Fade effect */
    .fade {
      animation: fadeEffect 1.5s;
    }

    @keyframes fadeEffect {
      from { opacity: 0.4; }
      to { opacity: 1; }
    }

    /* Navigation buttons */
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -22px;
      color: white;
      font-weight: bold;
      font-size: 20px;
      transition: 0.3s;
      border-radius: 0 3px 3px 0;
      user-select: none;
      background: rgba(0,0,0,0.5);
    }

    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }

    .prev:hover, .next:hover {
      background: rgba(0,0,0,0.8);
    }

    /* Dots */
    .dots {
      text-align: center;
      margin-top: 10px;
    }

    .dot {
      cursor: pointer;
      height: 15px;
      width: 15px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
      background-color: #717171;
    }
  </style>