@import url('https://fonts.googleapis.com/css2?family=Asimovian&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab:ital,wght@0,300..900;1,300..900&display=swap');

:root{
   --bg-color:#09090a;
  --text-color:#fff;
  --navbar: rgb(12, 12, 14);
  --primary-color: rgb(255, 0, 255);
}

[data-theme="light"] {
 --bg-color:whitesmoke;
  --text-color:#0e0e12;
  --navbar:#eee9e9;
}
#theme-toggle {
  transition: filter 0.3s;
  margin-left: auto;
}

/* Optional: add hover effect */
#theme-toggle:hover {
  filter: brightness(1.2);
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

#loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#loader {
  width: 60px;
  height: 60px;
  border: 6px solid var(--primary-color);
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 5s linear infinite;
}


.navbar{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  position: sticky;
  top: 0;
  background: var(--navbar);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.navbar-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  max-width: 1600px;
  border-bottom: 2px solid var(--primary-color);
}
.navbar-menu li a{
 font-family: "Epunda Slab", serif;
 font-weight: 400;
 font-size: 1.2rem;
 color: var(--text-color);
}

.navbar-logo{
  font-family: "Asimovian", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}
.logo-dot{
  color: var(--primary-color);
  font-size: 2.5rem;
}
.navbar-container .navbar-menu{
  display: flex;
  text-align: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-container .navbar-menu li a{
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 3px 20px;
  border-radius:  20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover,
.navbar-container .navbar-menu li a.active
{
     border-bottom: 4px solid var(--primary-color);
     border-top: 4px solid var(--primary-color);
}
.navbar-container .navbar-menu li:nth-child(5){
  /* padding: 3px 20px; */
  border-radius:  20px;
  /* border: 2px solid transparent; */
   border-bottom: 4px solid var(--primary-color);
     border-top: 4px solid var(--primary-color);
}

.navbar-toggle{
  display: none;
  background: transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
   /* background: transparent; */
   color: transparent;
  background: 8px var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
@media (max-width:880px){
  .navbar{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.navbar-container .navbar-menu {
  display: none;
  flex-direction: column;
  gap: 1.7rem !important;
  align-items: center;
  position: absolute;
  height: 100vh;
  width: 250px;
   background-color: var(--navbar);
  top: 5.5rem;
  right: 0;
  padding: 5rem 1.5rem;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); */
}
.navbar-container .navbar-menu.active{
  display: flex;
}
.navbar-toggle{
  display: block;
  z-index: 999;
}
.navbar-toggle.active .bar:nth-child(2){
  opacity: 0;
}
.navbar-toggle.active .bar:nth-child(1){
transform: translateY(8px) rotate(45deg);
}
.navbar-toggle.active .bar:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

}

@media (max-width:480px){
  .navbar-container{
    padding: 0 1rem;
  }
  .navbar-logo{
    font-size: 1.5rem;
  }
    .navbar-container .navbar-menu{
      font-size: 1.2rem;
      padding: 3px 15px;
    }
  }





.contact-section {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
  background: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
}
/* .contact-info {
  margin-right: 20px;
  height: 400px;
} */

.contact-info h2,
.contact-form h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 20px;
  color: white;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 20px;
}

.contact-info ul li {
  color: white;
  margin-bottom: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #fff;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  /* height: 100px; */
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  outline: none;
  background: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #3c3c3c;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #019ca4;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background: #1e1e1e;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
  }

  .navbar .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--navbar);
  color: var(--text-color);
  padding: 20px 0;
  text-align: center;
  margin-top: 3rem;
   font-size: larger;
 font-family: "Epunda Slab", serif;
  border-top: 2px solid var(--primary-color);
}

/* .footer a {
  color: var(--text-color);
  text-decoration: underline;
} */



.map-section {
  margin-top: -3rem;
  padding: 40px 20px;
  text-align: center;
}

.map-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.map-container iframe {
  border-radius: 10px;
  width: 90%;
}

.map-iframe {
  border: 0;
}
.loc{
  color: var(--primary-color);
  text-decoration: none;
}
/* .loc:hover{
  text-decoration: underline;
} */
.down{
  text-decoration: none;
  color: white;
  cursor: pointer;
}


     .navbar-logo:hover{
      transform: rotate(-8deg);
      transition: transform 0.5s ease;
     }


     .success-message {
  display: none;
  background: #4caf50;
  color: #fff;
  padding: 12px 20px;
  margin-top: 15px;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
}

.success-message.show {
  display: block;
  animation: fadeOut 5s forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}


select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  color: white;
   background: #3c3c3c;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
}
#subject option {
  color: white;
  padding: 10px;
   background: #3c3c3c;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
  /* border-radius: 10px; */
}

/* #subject option:hover {
  background: #575757;
  cursor: pointer;
} */

#message {
 height: 180px;
}