

*{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    background-image: url(image/bg/back2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 700px;
    margin: auto; 
    /* padding: 60px; */
  } 

.bold{
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: -19px;
}

.bold :hover{
  color: #450920;
  text-decoration: none;

}

nav li img{
    width: 40px;
    height: 40px;
   
    border-radius: 70px;
   margin-top: 5px;
}

nav{
    background-color: #F9DBBD;
    color: #450920;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
/* 
    align-items: center; */
}

nav li{
    height: 50px;
 

}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
  color: #440920; 
  font-weight: 600;
  /* font-size: 1.1rem; */
   
}

nav a:hover{
    text-decoration: underline;
    color: rgb(179, 122, 131);
}

.left-nav{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
}

.right-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex: 1; /
}


.sidebaar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display:none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebaar li{
    width: 100%;
}

.sidebaar a{
    width: 100%;
}

.menu-button{
    display: none;
}

/* .emergency-btn {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 10px 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
  }

  .emergency-btn:hover {
    background-color: #b91c1c;
  } */
  
  /* Hero Section */
 
  .hero-content{
    color: #F9DBBD;
    margin-top: 19px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
.hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  .hero-text h3{
    font-size: 1.5rem;
    color: #450920;
    margin-bottom: 20px;
  }

  .hero-text h2{
    font-size: 2rem;
    color: #450920;
    /* margin-bottom: 10px; */
  }
  
  
  
  .hero-text h1 {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1.4;
    /* margin-bottom: 20px; */
  }
  
  .hero-text p {
    font-size: 16px;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .help-btn, .help-btn1 {
    background-color: #450920;
    color: #F9DBBD;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .help-btn:hover {
    background-color: transparent;
    font-size: 16px;
    padding: 9px 20px;
    font-weight: bolder;;
    color: #450920;
    border: #450920 2px solid;
  }
  .help-btn1:hover {
    background-color: transparent;
    font-size: 16px;
    padding: 9px 20px;
    font-weight: bolder;;
    color: #450920;
    border: #F9DBBD 2px solid;
  }
 
  
  
  
  /* Responsive */
  @media (min-width: 768px) {
    .hero-content {
      flex-direction: row;
      text-align: left;
    }
  
    .hero-text {
      flex: 1;
    }
  
    .hero-image {
      flex: 1;
    }
  }
@media(max-width: 800px){
    .hideOnMobile {
        display: none;
    }
    .menu-button{
        display: block;
    }
}

@media(max-width: 400px){
    .sidebaar{
        width : 100%
    }
    .bold{
        font-size: 1rem;
        font-weight: 700;
    }
}
  

@keyframes appear {
  from{
    opacity: 0;
    transform: translateY(-100px);
  }
  to{
    opacity: 1;
    transform: translateY(0px);
   
  }
}

.hero-text {
    animation: appear 0.5s linear forwards;
  /* animation-timeline: view(); */
  animation-range: entry 0% cover 40%;
}


@media screen and (max-width: 1024px){
     .hero{
      margin-top: -50
     }
     .hero-text h1{
        font-size: 3rem;
        margin-top: -25px;
     }

     .hero-text h3{
          margin-top: -5px;
    font-size: 1.3rem;
    margin-bottom: 12px;
     }
     .hero-text h2{
      font-size: 1.7rem;
    margin-top: 16px;
    font-weight: 800;
    margin-bottom: 10px;
     }
    
}
.privacy {
    margin-top: 320px;
    font-size: 0.7rem;
    margin-left: 10px;
}


