*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
 /*navbar styling*/
header{
    background: #820f0f;
    height: 60px;
    position: fixed;
    width: 100%;
    z-index: 5;
}

.navbar .nav-menu .nav-link{
    color: whitesmoke;
}
.nav-item{
    margin: 0 40px;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
.logo img{
    width: 100px;
    margin-top: -5px;
    margin-right: 100px;
    margin-left: 20px;
    cursor: pointer;
}

header .navbar{
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.navbar .nav-menu{
    display: flex;
}

.navbar .nav-menu .nav-link{
    padding: 10px 20px;
    color: #fff;
    border-radius: 30px;
    transition: 0.3s ease;
}
.navbar .nav-menu .nav-link:hover{
    color: #3b141c;
    background: #f3961c;
}

.signup{
    top: 10px;
    right: 120px;
    position: absolute;
    text-decoration: none;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(#42455a,#42455a),radial-gradient(circle at top left,#fd00da,#19d7f8);
    background-origin: border-box;
    background-clip: content-box,border-box;
}
.signup span{
    display: block;
    padding: 8px 22px;
}
/*Hero section styling*/
 .hero-section{
    min-height: 100vh;
    background: #820f0f;
 }
 .hero-section .section-content{
    display: flex;
    align-items: center;
    min-height: 90vh;
    color: #fff;
    justify-content: space-between;
    margin-left: 30px;
 }
 .hero-section .hero-details .title{
    font-size: 2.3rem;
    color: #f3961c;
    font-family: Georgia, 'Times New Roman', Times, serif;
 }
 .hero-section .hero-details .sub-title{
    font-size: 2rem;
    margin-top: 8px;
    max-width: 90%;
    font-family: sans-serif;
    font-weight: 600;
 }
 .hero-section .hero-details .descriptions{
    font-size: 1.12rem;
    max-width: 80%;
    margin: 24px 0 40px;
 }
 .hero-section .desimg{
    max-width: 600px;
    margin-right: 80px;
    
 }
 .hero-section .hero-details .trail{
    padding: 10px 26px;
    color: #3b141c;
    background: #f3961c;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid transparent;
    transition: 0.3 ease;
 }
 .hero-section .hero-details .learn{
    padding: 10px 26px;
    color: #3b141c;
    background: #f3961c;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid transparent;
    transition: 0.3 ease;
 }
 .hero-section .hero-details .buttons{
    display: flex;
    gap: 24px;
 }
  .hero-section .hero-details .trail:hover,
  .hero-section .hero-details .learn
  {
      color: #fff;
      background: transparent;
      border-color: #fff;
  }
  .hero-section .hero-details .learn:hover{
      color: #3b141c;
      background: #f3961c;
      border-color: #f3961c;
  }


/*Service Section*/
.menu-section{
    padding: 100px 20px;
    text-align: center;
}
.menu-section .section-title{
    font-size: 3rem;
    margin-bottom: 20px;
    text-decoration: underline solid brown;
}
.menu-section .intro-text{
    font-size: 2rem;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.menu-section .section-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.menu-details{
    box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    max-width: 300px;
}
.menu-image{
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-align: center;
}
.menu-details .name{
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.menu-details .text{
    font-size: 1rem;
    line-height: 1.5;
}




/* About section styling*/
.about-section{
    padding: 100px 0;
    background: #faf4f5;
}
.about-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-section .about-img .about-image{
    width: 400px;
    height: 400px;
    object-fit: cover;
}
.about-details .section-title{
    text-align: center;
    color: chocolate;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}
.about-details .text{
    line-height: 30px;
    margin: 5px;
    text-align: center;
    font-size: 1.12rem;
    margin-left: 10px;
}
.about-details .texts{
    text-align: center;
    font-size: 1.12rem;
    line-height: 30px;
}
.about-section .about-details .section-title{
    padding: 0;
}

/*Contact Us*/
.container{
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 50px auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}
.form-container .contact-info{
    flex: 1;
    min-width: 300px;
    padding: 30px;
}
form h2, .contact-info h2{
    margin-bottom: 20px;
    color: #333;
    margin-top: 20px;
}
label{
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
input textarea {
    width: 800px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
textarea{
    resize: vertical;
}
button{
    margin-top: 20px;
    padding: 12px;
    width: 60%;
    background-color: #ffa726;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
button:hover{
    background-color: #fb8c00;
}
.contact-info .info-box p{
    margin: 15px;
    line-height: 1.6;
    color: #333;
}
.contact-info a{
    text-decoration: none;
    color: #007BFF;
}
.form-container{
    margin-left: 20px;
}
/*Footer*/
.footer{
    text-align: center;
    padding: 15px 0;
    background: #003366;
    color: #fff;
    font-size: 14px;
    border-top: 1px solid #ccc;
    position: relative;
    bottom: 0;
    width: 100%;
}