/* General Styles */
  .section-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    margin: 130px 0 0 0;
  }

  .contact-container {
    width: 100%;
    padding:0;
    background-color: #fff;
    margin-top: 0;
    margin-bottom: 0;
  }

  /* Header Section */
  .header {
    background-color: #003366;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
  }

  .header h2 {
    margin: 0;
  }

  .header a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }

  .header a:hover {
    text-decoration: underline;
  }

  /* Contact Section */
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #002e53;
    position: relative;
    overflow: hidden;
    margin: 2% 10%;
    gap: 10px;
  }

  .contact-info {
        flex: 1;
        max-width: 50%;
        padding: 5% 3%;
  }

  .contact-info h3 {
        color: #003366;
        font-size: 13px;
        margin: 8px;
        letter-spacing: 5px;
        font-weight: bolder;
    }
  .contact-info h4 {
        color: #003366;
        font-size: 48px;
        margin-bottom: 10px;
  }

  .contact-info p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
  }

  .contact-form {
    flex: 1;
    background-color: #f0f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }

  .contact-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    width: calc(50% - 10px);
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #003366;
  }

  .contact-form textarea {
    width: 100%;
    resize: vertical;
    height: 100px;
  }

  .contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #003366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
  }

  .contact-form button:hover {
    background-color: #002244;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .header {
        flex-direction: column;
    }
    .header h2 {
        font-size: 20px;
    }
    .header a{
        padding-top: 5px;
    }

    .contact-section {
        flex-direction: column;
        margin: 10px;
    }
    .contact-info {
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
    }
  }





  .info-portion{
    display: flex;
      justify-content: center;
      align-items: center;
      background-color:  #fff;
      padding: 40px 0 60px 0;
  }
  .info-section {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
  }

  /* Card Styling */
  .info-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .info-card::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #003366;
  }

  .info-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .info-card h4 {
    font-size: 18px;
    color: #003366;
    margin: 10px 0 5px;
  }
  .info-card p{
    font-size: 14px;
    color: #555;
    line-height: 0.5;
  }
  .info-card a{
    font-size: 14px;
    color: #555;
    line-height: 0.5;
    text-decoration: none;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .info-section {
      flex-direction: column;
      align-items: center;
    }
  }
  
  
  
  
  
  
  
  
  /* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;  /* Changed background to white */
    color: #002e53;  /* Dark color for text to contrast with white background */
    padding: 20px 40px;  /* Increased padding for a larger navbar */
    height: 120px;  /* Increased height of the navbar */
}

/* Logo Size */
.navbar .brand-logo {
    height: 50px;  /* Adjusted logo height to fit in the increased navbar */
    width: auto;   /* Maintain aspect ratio */
}

/* Nav Links Styling */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;  /* Increased gap between links */
}

.nav-links li a {
    text-decoration: none;
    color: #002e53;  /* Adjusted color to dark for contrast with the white background */
    font-size: 1.1rem;  /* Slightly larger font size */
}

.nav-links li a.active {
    font-weight: bold;
}

/* Menu Button */
.menu-btn {
    padding: 10px 20px;  /* Increased padding for the menu button */
    font-size: 16px;
}

/* Optional: Adjust Mobile Hamburger Menu */
.menu-icon {
    display: none;  /* Show this icon on smaller screens via media queries */
}

/* Media Query to show hamburger on small screens */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
        font-size: 24px;
    }

    .nav-links {
        display: none; /* Hide nav links initially on mobile */
        flex-direction: column;
        gap: 10px;
    }

    .nav-links.active {
        display: flex; /* Show nav links when the menu is active */
    }
}