 /* Hybrid Style */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Base Styles */
body {
  background: #f8f9fa;
  color: #2a2a2a;
  font-family: 'Outfit', sans-serif;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 0px;
}

h1, h2, h3, h4, h5, h6,
nav, nav *, .admin-nav, .admin-nav * {
  font-family: 'Oswald', sans-serif !important;
}

/* Navigation  */
nav {
  background: #003366;
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo img {
  height: 45px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style-type: none;
  margin: 0;
  padding: 0;
} 

nav ul li {
  position: relative;
}

/* Profile Dropdown Styles */
.profile-dropdown {
  position: relative;
  margin-left: 15px;
}

.profile-btn {
  background: none;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.profile-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-width: 200px;
  display: none;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.dropdown-menu i {
  margin-right: 10px;
  font-size: 1.1em;
}

.dropdown-divider {
  border-top: 1px solid #eee;
  margin: 5px 0;
}

.profile-dropdown:hover .dropdown-menu {
  display: block;
}


.profile-btn {
  padding: 12px 20px;
  font-size: 1.1em;
}

.profile-btn i {
  font-size: 1.3em;
}

.dropdown-menu {
  min-width: 220px;
}

/* Hide auth links when logged in */
.auth-link {
  display: inline-block;
}

.profile-dropdown {
  display: none;
}

/* Modify existing navigation styles */
nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  border-radius: 10px;
  padding: 8px 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}



nav ul li a:hover {
  background: #FF9900;
  color: #000000;
}

nav ul li.active a{
  background-color: #FF9900;
  color:#000000;
}

nav ul li.active a::after {
  display: none; /* Hide underline on active state */
}

.auth-link {
  transition: opacity 0.3s ease;
}

/* Hide logout by default */
#logoutLink {
  display: none;
}
 
 /* Contact Form Styles */

 
 .form-container {
    max-width: 800px;
  
    padding: 30px;
    margin-top: -140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  background: white;
  position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .form-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
  }

  .form-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #3498db;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 90%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  }

  .form-group textarea {
    resize: vertical;
  }

  .btn-submit {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin-top: 15px;
    width: 100%;
    font-weight: 500;
  }

  .btn-submit:hover {
    background-color: #2980b9;
  }

  .contact-info {
    background: #e8f4fc;
    padding: 25px;
    border-radius: 8px;
    height: 95%;
  }

  .contact-info h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .contact-detail i {
    font-size: 24px;
    color: #3498db;
    margin-right: 15px;
    min-width: 30px;
  }

  .contact-detail div p {
    margin: 5px 0;
    color: #34495e;
  }

  .contact-detail div p:first-child {
    font-weight: 600;
  }

  .map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    display: none;
  }

  .error-message {
    background-color: #f2dede;
    color: #a94442;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    display: none;
  }

  @media (max-width: 768px) {
    .form-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Footer Section */
.footer {
    background-color:#036 ; /* Dark background */
    padding: 40px 10%;
  }
  
  .footer p{
    color:white;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Space between columns */
  }
  
  .footer-column {
    flex: 1 1 calc(25% - 20px); /* Adjust for four columns */
    min-width: 200px;
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #F57C00; /* Accent color */
  }
  
  .footer-column p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: #F57C00; /* Accent color on hover */
  }
  
  .footer-social a {
    font-size: 20px;
    color: white;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
    color: #F57C00; /* Accent color on hover */
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    
  }

 