body {
 padding: 0;
 margin: 0;
 background: white;
}

  /*Navigation Bar Section*/
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:#25629b;
    transition: background-color 0.4s ease;
    z-index: 1000; 
  }
  .navbar-brand {
    width: 70px;
    height: 70px;
    position: absolute;
    left: 400px;
  }
  .navbar-nav .nav-item {
    position: relative;
    margin: 0 25px; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 15px;
    }
  .navbar-nav .nav-link {
    color: white !important;
    transition: color 0.3s ease;
    position: relative;
  }
  .navbar-nav .nav-link:hover{
    cursor: pointer;
  }
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background-color: gold; 
    transition: width 0.3s ease
  }
  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }

/* Dropdown menu for Navigations */
.nav-item.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 50px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 500px;
  background-color: white;
  border: none;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-item.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;      
  left: 0;
  width: 100%;
  height: 12px;     
  background: transparent;
}
.dropdown-menu .dropdown-item {
  color: #25629b;
  text-align: center;
  font-weight: bold;
  padding: 20px;
  border-radius: 6px;
  flex: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dropdown-menu .dropdown-item:hover {
  background-color: gold;
  color: #25629b;
  transform: translateY(-3px);
}
.dropdown-item i {
  font-size: 20px;
  margin-bottom: 6px;
  color: #25629b;
}
.dropdown-item small {
  font-weight: normal;
  color: #555;
  font-size: 12px;
}


/* Mega dropdown panel section */
.info-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  background: #fff;
  color: #333;
  padding: 30px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

.nav-item:hover .info-panel,.info-panel:hover {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.info-panel h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #25629b; 
}

.info-panel p {
  font-size: 14px;
  color: #555;
}
.container-again {
  background-color:white ;
  position: absolute; 
}


/* Hero section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Images/BG2.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}
.hero h1 {
  font-size: 3em;
  margin: 0;
  color: gold;
}
.hero p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Sections */
.section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}
.section h2 {
  font-size: 2em;
  color: #25629b;
  margin-bottom: 20px;
  position: relative;
}
.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #25629b;
  margin-top: 6px;
  border-radius: 2px;
}
.section p {
  font-size: 1em;
  margin-bottom: 15px;
  color: #555;
}

/* Feature cards */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
.feature {
  background: #f0f4f8;
  flex: 1 1 250px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.feature i {
  font-size: 2em;
  color: #25629b;
  margin-bottom: 15px;
}
.feature h3 {
  color: #25629b;
  margin-bottom: 10px;
}
.feature p {
  color: #555;
  font-size: 0.95em;
}
