* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #333;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a3d; /* Blue color */
    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 Main Section */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background-color: #ffffff; /* White background */
}

.logo img {
    width: 110px;/* Adjust logo size to make it bigger */
}


/* Style for the navigation */
nav ul {
    list-style: none; /* Remove bullets */
    display: flex; /* Horizontal menu */
    gap: 20px; /* Space between menu items */
    position: relative; /* Needed for submenu positioning */
}

nav ul li {
    position: relative; /* For submenu positioning */
}

nav ul a {
    text-decoration: none;
    color: #333; /* Default text color */
    font-weight: bold;
    padding: 10px 20px;
    display: inline-block;
}

/* Submenu styles */
.submenu {
    display: none; /* Hide submenu by default */
    position: absolute; /* Position relative to parent */
    top: 100%; /* Position below the parent menu */
    left: 0;
    background: white;
    list-style: none;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
    z-index: 10;
}

.submenu li {
    margin: 5px 0; /* Space between submenu items */
}

.submenu a {
    color: #007bff; /* Submenu link color */
    padding: 5px 15px;
    display: block; /* Full-width clickable area */
}

/* Show the submenu on hover */
nav ul li:hover .submenu {
    display: block; /* Show submenu on hover */
}

/* Hover effect for submenu links */
.submenu a:hover {
    background-color: #f1f1f1; /* Light background on hover */
}


nav a {
    text-decoration: none;
    color: #1a1a3d; /* Black text */
    transition: transform 0.3s ease-in-out;
}

nav a:hover {
    color: #007bff; /* Blue hover color */
    text-decoration: underline; /* Add underline on hover */
    transform: scale(1.1);
}

/* Hero Section */
/* Hero Section with Parallax Effect */
.hero {
    position: relative;
    height: 60vh;
    background: url('../res/aboutusback.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Creates the parallax effect */
    background-position: center;
}

/* Hero Content Styling */
.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
}

.hero-content h1 span {
    color: rgb(255, 255, 255);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 15px;
    max-width: 500px;
    color: #e0e0e0; 
}

.cta-btn {
    padding: 10px 20px;
    background: rgb(255, 255, 255);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: rgb(255, 255, 255);
}

/* Title Box Styling */
.title-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.title-highlight {
  position: absolute;
  top: -10px;
  left: 0;
  width: 60px;
  height: 10px;
  background-color: rgb(255, 255, 255);
}

.hero-content h1 {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-content h1 span {
  color: rgb(255, 255, 255);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 15px;
  max-width: 500px;
  color: #e0e0e0; 
}

.cta-btn {
  padding: 10px 20px;
  background: rgb(255, 255, 255);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: rgb(255, 255, 255);
}

* Mission & History Section */
.mission-history {
  background-color: #f9f9f9;
  color: #1a1a3d;
  padding: 60px 20px;
  font-family: 'Times New Roman', Times, serif;
  display: flex;
  justify-content: center;
}

/* Mission & History Section */

.mission-history {
  background-color: #f9f9f9;
  color: #1a1a3d;
  padding: 60px 20px;
  font-family: 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px; /* Space between boxes */
}

.mission-history .box {
  max-width: 1000px;
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.mission-history h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: 'Times New Roman', Times, serif;
  color: #1a1a3d;
}

.mission-history p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}


/* Footer */
/* Footer Container */
.footer {
    background-color: #f4f4f4;
    padding: 30px 50px;
    color: #000;
    font-size: 14px;
  }
  
  /* Footer Container */
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  /* Footer Logo */
  .footer-logo {
    text-align: center;
    flex: 1; /* Ensures it occupies equal space between other sections */
  }
  
  .footer-logo img {
    max-width: 700px; /* Adjust logo size */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
  }
  
  /* Footer Links */
  .footer-links {
    display: flex;
    gap: 50px;
  }
  
  .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;
  }
  
  /* Headquarters Section */
  .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 */
  .footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #555;
  }
  
  .footer-links {
    border-left: 1px solid #ddd;
    padding-left: 20px;
  }
  
  /* Responsive Design */
  @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;
    }
  }
