/* ===== ABOUT US PAGE STYLES ===== */

/* Page Background */
body {
    background-color: #D3EBF9;
    font-family: Arial, sans-serif;
}

/* Section layout */
.about-section {
    width: 100%;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
}

/* Container */
.about-container {
    text-align: center;
    width: 100%;
    max-width: 1100px;
}

/* Title */
.about-container h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* ✅ Blue Box */
.about-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #0097b2;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Image Styling */
.about-image {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Text inside Box */
.about-text {
    max-width: 500px;
    font-size: 17px;
    line-height: 1.7;
    color: white;
    text-align: left;
}

/* ✅ Responsive Layout */
@media (max-width: 768px) {
    .about-box {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        text-align: center;
    }
}
/* ====== DROPDOWN MENU ====== */
    .nav-links li.dropdown {
      position: relative;
    }

    .nav-links li.dropdown .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      min-width: 180px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      border-radius: 6px;
      z-index: 10;
    }

    .nav-links li.dropdown .dropdown-menu li {
      list-style: none;
    }

    .nav-links li.dropdown .dropdown-menu li a {
      display: block;
      padding: 10px 15px;
      color: #333;
      text-decoration: none;
      font-size: 14px;
    }

    .nav-links li.dropdown .dropdown-menu li a:hover {
      background: #f0f0f0;
      color: #0097b2;
    }

    .nav-links li.dropdown:hover .dropdown-menu {
      display: block;
    }
  
