*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
body{
    background: #f9f7ff;
    color: #222;
    line-height: 1.6;
}


/* Container */

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto
}

/* Navbar */

#navbar{
    background-color: #135b18;
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
#logo{
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}
#nav-links{
    display: flex;
    gap: 25px;
}
#nav-links a{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}
#menu-toggle{
    display: none;
}
#menu-btn{
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
#menu-btn .fa-xmark{
    display: none;
}
#menu-toggle:checked + #menu-btn .fa-bars{
    display: none;
}
#menu-toggle:checked + #menu-btn .fa-xmark{
    display: inline;
}
/* Hero Section */

#hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #d5fcc3, #135b18);
}
.hero-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}
#hero-text{
    flex: 1;
}
#hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
#hero-text p {
    font-size: 1.1rem;
}
#hero-img {
    flex: 1;
}
#hero-img {
  display: flex;
  gap: 15px;
}
#hero-img img {
  width: 50%;
  height: 280px;
  border-radius: 20px;
}

/* About Section */

#about{
    padding: 80px 0;
    background: #fff;
}
.about-flex{
    display: flex;
    align-items: center;
    gap: 40px;
}
#leftAbout{
    flex: 1;
    min-width: 300px;
}
#rightAbout{
    flex: 1;
    min-width: 300px;
}
#about-title{
    font-size: 2.2rem;
    margin-bottom: 20px;
}
#center{
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}
#rightAbout video{
    width: 100%;
    border-radius: 20px;
    max-height: 350px;
}

/* Footer */

footer{
    background: #135b18;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-weight: 500;
}

/* Media Queries */
@media  (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    #hero-text h1 {
        font-size: 2.2rem;
    }
    #hero-img {
        justify-content: center;
    }
    #hero-img img {
        width: 45%;
        height: 240px;
    }
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    #rightAbout video {
        max-height: 280px;
    }
}

@media (max-width: 600px) {

#hero{
    padding: 60px 0;
}
.hero-flex {
    gap: 20px;
}
.hero-img {
    flex-direction: column;
}
.hero-img img {
    width: 100%;
    height: 220px;
}
#center{
    font: 1rem;
    padding: 0 10px;
    text-align: center;
}

/* NAVBAR */

#menu-btn{
    display: block;
}
#nav-links{
    flex-direction: column;
    align-items: center;
    background-color: #135b18;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
}
#nav-links a{
    padding: 15px 0;
    width: 100%;
    text-align: center;
}
#menu-toggle:checked ~ #nav-links{
    display: flex;
}


}




