* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  color: #333;
}

/* Top Bar */
.top-bar {
  background-color: #1a1a3d;
  display: flex;
  justify-content: flex-end;
  padding: 10px 50px;
  color: white;
  font-size: 0.9rem;
}

.top-bar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Header Section */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background-color: #ffffff;
}

.logo img {
  width: 110px;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  position: relative;
}

nav ul li {
  position: relative;
}

nav ul a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 20px;
  display: inline-block;
}

/* Submenu */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.submenu li {
  margin: 5px 0;
}

.submenu a {
  color: #007bff;
  padding: 5px 15px;
  display: block;
}

nav ul li:hover .submenu {
  display: block;
}

.submenu a:hover {
  background-color: #f1f1f1;
}

nav a {
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease-in-out;
}

nav a:hover {
  color: #007bff;
  text-decoration: underline;
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  background-color: #1a1a3d;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Our Partner Section */
.ourpartner {
  margin-left: 70px;
  padding: 50px 20px;
  text-align: left;
}

.ourpartner h1 {
  font-size: 3.5rem;
  font-weight: lighter;
  color: rgb(10, 57, 174);
}

.ourpartner p {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: lighter;
}

.rectangle {
  height: 5px;
  background-color: #1a1a3d;
  margin: 20px 0;
}

/* Partner Grid Boxes */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 0 75px;
  margin-bottom: 50px;
}

.partner {
  background-color: #ffffff;
  border: 2px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  transition: transform 0.2s;
}

.partner:hover {
  transform: scale(1.05);
}

/* Partner Images */
.partner img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Footer */
.footer {
  background-color: #f4f4f4;
  padding: 30px 50px;
  color: #000;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1;
  text-align: center;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 50px;
  border-left: 1px solid #ddd;
  padding-left: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-info {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-info p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.linkedin-icon img {
  width: 30px;
  height: 30px;
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    border-left: none;
    padding: 0;
  }

  .footer-info {
    text-align: center;
  }
}