*{
    padding: 0%;
    margin: 0%;
}
.brand-logo {
    font-size: 1.5rem;             
    font-weight: 800;            
    padding: 0.5rem;              
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #fffefe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
  }
  .brand-logo:hover {
    transform: scale(1.1);
    opacity: 0.9;
  }

  

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #0a0707;
    color: #ffffff; 
}

html {
    scroll-behavior: smooth;
}

.nav-link {
    color: #ffffff; 
    padding: 0.5rem 0.75rem; 
    border-radius: 0.375rem;
    transition: color 0.3s ease, background0.3s ease;
  }
  
  .nav-link:hover {
    color: #ffffff; 
    background: rgba(72, 59, 59, 0.08); 
  }
  
.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg,#ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    animation: popIn 1s ease;
  }
  .section-heading::after {
    content: "✨";
    position: absolute;
    right: -2rem;
    top: 0.2rem;
    font-size: 1.5rem;
    animation: sparkle 2s infinite ease-in-out;
  }
.card {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(180%);
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px #064232;
  }
.nav-link:hover {
    color: #064232; 
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem; 
  }
.btn-primary {
    background-color: #064232; 
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}
.btn-primary:hover {
    background-color: #568F87; 
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: #568F87;
    color: #feffff; 
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid #C7D2FE; 
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}
.btn-secondary:hover {
    background-color: #C7D2FE; 
    transform: translateY(-2px);
}

.hero-bg {
    background-color: #568F87; 
    background-image: radial-gradient(at 0% 0%, hsl(0, 0%, 0%) 0, transparent 50%),
                      radial-gradient(at 100% 100%, hsl(196, 45%, 22%) 0, transparent 50%);
}
@media (max-width: 768px) {
    .mobile-menu-hidden {
        display: none;
    }
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
  }
  
  
  .form-group {
    display: flex;
    flex-direction: column;
  
  }
  
 
  .form-label {
    color: #ffffff; 
    font-size: 1.125rem; 
    font-weight: 500; 
    margin-bottom: 0.5rem;
  }
  
  
  .form-input {
    color: #ffffff;
    background: #3f6b66;
    width: 100%;
    padding: 0.75rem; 
    border: 1px solid #4e4b4b; 
    border-radius: 0.375rem; 
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
  }
  
  
  .form-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #264843; 
  }
  
 
  .btn-primary {
    background-color: #215149; 
    color: rgb(255, 252, 252);
    font-size: 1.25rem; 
    padding: 0.75rem 2rem; 
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #568F87; 
  }
  
  /* Actions wrapper */
  .form-actions {
    text-align: center;
  }
  
.social-text {
    color:#fcffff;
  
  }
  
  
  .social-link {
    color: #5de1b7;              
    transition: color 0.2s ease-in-out;
  }
  
  .social-link:hover {
    color: #568F87;          
  }

  .theme-btn {
    position: fixed;
    top: 6rem;
    right: 1rem;
    background-color: #667f7c;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1000; 
  }

  .light-mode #mobile-menu-panel {
    background-color: #f9fafb;
    color: #064232;
  }
  
  .light-mode #mobile-menu-panel li a {
    color: #064232;
  }
  
  .light-mode #mobile-menu-panel li a:hover {
    background-color: rgba(6, 66, 50, 0.1);
  }

/* Contact Form */
.light-mode .form-label {
  color: #111827 !important;
}
.light-mode .form-input {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid #d1d5db !important;
}


#mobile-menu-panel{
  font-family: 'Times New Roman', Times, serif;
  font-weight: 800;
  display: block;
  padding: 0.75rem 0;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
#mobile-menu-panel nav li a:hover {
  color: #568f87;
}
#mobile-menu-overlay.show {
  display: block;
}
#mobile-menu-overlay.show #mobile-menu-panel {
  transform: translateX(0);
}