body{
    background: #0a0a0f;
    font-family: 'Inter', sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 3rem 2rem;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: -2;
}



.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.45);
    z-index: -1;
}

.content{
    color: white;
    text-align: center;
    z-index: 1;
    position: relative;
    margin-top: 40px;
}

.content h1{
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.content .role-primary {
    color: #e11d2e;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.content .role-secondary {
    color: #cccccc;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.content .tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.3px;
    max-width: 480px;
    margin: 0 auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    line-height: 1.6;
}

hr{
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 80%;
    margin: 2.5rem auto;
    position: relative;
    z-index: 1;
}











ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

nav{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    /* position: relative; */
    z-index: 10000;
    backdrop-filter: blur(10px);
    width: 100%;
    top: 0;

}

.menu{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 80px;
}

.menu li{
    display: flex;
    width: 130px;
    color: rgb(255 255 255/ 96%);
    transition: 0.3s ease-in-out;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.menu li:hover .submenu{
    height: 120px;
    opacity: 1;
    /* visibility: hidden; */
}

.menu>li:hover>a{
    opacity: 1;
}

.menu>li:hover>a::before{
    visibility: visible;
    scale: 1 1;
}

.submenu{
    display: flex;
    overflow: hidden;
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 180px;
    background: linear-gradient(
        rgb(0 0 0/16%),
        rgb(0 0 0 / 0%)
    );
    backdrop-filter: blur(10px);
    height: 0;
    line-height: 40px;
    box-sizing: border-box;
    transition: height 0.3s ease-in-out;
    z-index: 100;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    background: rgba(15, 15, 15, .9);
    border-radius: 12px;
    transition: .3s;
     
}

.menu li .submenu a{
    color: #fff;
    /* opacity: 0; */
    font-size: 16px;
    transition: opacity (.25s);
}

.menu>li .submenu>a{
    opacity: 0.7;
}


.menu>li .submenu a:hover{
    background: linear-gradient(
        rgb(0 0 0 / 38%),
        rgb(0 0 0 / 0%)
    );
    opacity: 1;
    
}

.menu>li a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    height: 100%;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.75);
}


.menu>li>a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 3px;
    left: 0px;
    border-radius: 3px;
    background-color: rgb(255 255 255 / 78%);
    transition: 0.2s ease-in-out;
    visibility: hidden;
}

@media (max-width: 600px) {
    .menu li {
        width: auto;
        min-width: 60px;
    }
    
    .menu > li > a {
        font-size: 13px;
        padding: 0 6px;
    }
    
    nav {
        padding: 0 5px;
    }
}


html{
    scroll-behavior:smooth;
}



#contact-form {
  max-width: 500px;
  padding: 40px 20px;
}

#contact-form h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.5;
}

.input-group {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 15px;
  transition: border-color 0.2s;
}

.input-group:focus-within {
  border-color: #e63946;
}

.input-group .icon {
  margin-right: 12px;
  opacity: 0.7;
}

.input-group input,
.input-group textarea {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  font-size: 15px;
}

.textarea-group {
  align-items: flex-start;
}

.textarea-group textarea {
  min-height: 100px;
  resize: vertical;
}

#contact-form button {
  width: 100%;
  background: transparent;
  color: #e63946;
  border: 1px solid #e63946;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

#contact-form button:hover {
  background: #e63946;
  color: #fff;
}

.contact-footer {
  margin-top: 20px;
  color: #888;
  font-size: 13px;
}

#formStatus {
  margin-top: 15px;
  color: #e63946;
}



#contactForm {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #e63946;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.success-message h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.success-message p {
  color: #aaa;
}



#formWrapper {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #e63946;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.success-message h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.success-message p {
  color: #aaa;
}


