/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
}

nav {
  height: 90px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.847);
  padding: 20px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid rgb(91, 102, 242);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 30px;
  height: 4px;
  background-color: rgb(0, 0, 0);
  margin: 5px 0;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: lime;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: rgb(0, 0, 0);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover::after {
  width: 100%;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(91, 102, 242);
  list-style: none;
  padding: 15px 0;
  margin: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.dropdown li a {
  color: white;
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropdown li a:hover {
  color: lime;
}

.nav-links li:hover .dropdown {
  display: block;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo p {
  font-size: 20px;
  margin-top: 18px;
  margin-left: 10px;
  color: #1976d2;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  nav {
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 100;
    padding-bottom: 10px;
    margin-top: 20px;
    background-color: rgb(91, 102, 242);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-links li a {
    color: white;
  }

  .dropdown {
    position: static;
    width: 100%;
    transform: none;
  }

  .dropdown li {
    text-align: center;
  }
  .logo p {
    font-size: 17px;
  }
}

.main{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.payment-container {
  background-color: #fff;
  padding: 25px;
  margin-top: 100px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
}
.container{
  display: flex;
  flex-direction: row;
  gap: 100px;
  justify-content: center;
}
.container .images{
  width: 40%;
}
.images img{
  height: 400px;
  width: 400px;
  border-radius: 10px;
}
h1 {
  color: #007bff;
  margin-bottom: 15px;
  font-size: 24px;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
}

.bank-details {
  width: 60%;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.detail-item {
  margin-bottom: 15px;
}

.detail-item label {
  font-weight: bold;
  color: #007bff; 
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.detail-item span {
  color: #333;
  font-size: 16px;
  display: block;
}


.note {
  font-style: italic;
  color: #007bff;
  margin-top: 20px;
  font-size: 14px;
}


@media (max-width: 600px) {
  h1 {
      font-size: 20px;
  }

  p {
      font-size: 14px;
  }

  .detail-item label {
      font-size: 12px;
  }

  .detail-item span {
      font-size: 14px;
  }

  .note {
      font-size: 12px;
  }
  .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .images img{
    height: 280px;
    width: 260px;
    border-radius: 10px;
  }
  
.bank-details {
  width: 100%;
}
}



footer {
  background: rgb(18, 22, 77);
  color: white;
  padding: 30px 0;
  text-align: center;
}

footer h2 {
  color: white;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.footer-section {
  width: 250px;
  margin-bottom: 20px;
}

.footer-section h2 {
  font-size: 20px;
  margin: 15px 0;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;

  &:hover {
    color: #1abc25;
  }
}

.footer-section .contactme,
.socialme {
  display: flex;
  flex-direction: column;
}

.footer-section .aboutme {
  display: flex;
  justify-content: center;
}

.socialme a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  padding-bottom: 10px;
}
