* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: white;
  height: 6rem;
 
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar .menu {
  display: flex;
  gap: 15px;
}

.navbar .menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.navbar .menu a:hover {
  color: #00bcd4;
}

.navbar .login-btn {
  padding: 8px 15px;
  background-color: #00bcd4;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.navbar .login-btn:hover {
  background-color: #008c9e;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* section-1 sratted */

.section-1{
  height: 40rem;
  background-image: url('../image/banar\ image\ copy.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-1-inner{
  height: 40rem;
  background-color:  rgb(39, 36, 46, 0.7);
}

.header-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 28%;
  gap: 10px;
}

.header-text h1{
  font-size: 35px;
  color: white;
  text-align: center;
}
.header-text p{
  font-size: 22px;
  color: white;
  width: 50%;
  text-align: center;
  line-height: 40px;
}
.menu a{
  padding-top: 6px;
}
.btn{
  display: flex;
  gap: 20px;
  padding-top: 20px;
}
.btn button{
  height: 50px;
  width: 200px;
  font-size: 22px;
  background-color: rgb(165, 255, 112);
  border-radius: 10px;
  border: none;
  
}

.section-2{
  height: 43rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(19, 18, 18);
  color: white;
  gap: 65px;
}

.About-heading{
  font-size: 25px;
}

.section-2-sub{
  display: flex;
  width: 95%;
  gap: 30px;
}
.about-image img{
  height: 32rem;
  width: 35rem;
  border-radius: 15px;
}

.show{
  display: none;
}

.about-text p{
  text-align: justify;
  font-size: 24px;
}

.section-3-para{
  line-height: 40px;
}

/* contact  */

.contact-sub{
  display: flex;
  background-color:rgb(39, 36, 46, 0.7) ;
  justify-content: space-around;
  padding-top: 3rem;
  height: 28rem;
}
.contact-sub-1, .footer-link{
  width: 30%;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-sub div h2{
  font-size: 26px;
}
.contact-sub div p{
  text-align: justify;
}
.mail, .add, .phone-num{
  font-size: 18px;
  font-weight:600;
}

.footer-link a{
  text-decoration: none;
  font-weight: bold;
  color: white;
}
.socal-div{
  display: flex;
  font-size: 35px;
  gap: 10px;
  margin-top: 20px;
}

.socal-div a{
  color: white;
}

/* footer */


footer{
  height: 4rem;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

