@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
	url("dark.jpg");
 background-attachment: fixed;
    background-size:cover ;
    background-repeat:repeat;
  
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, .2);
    z-index: 100;
}

.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
}

.header:hover::before{
    left: 100%;
}

.logo {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    font-weight: 400;
    cursor: default;
}
.heading{
    color: #ff0000;
    font-size: 22px;
    text-decoration: none;
    font-weight: 400;
    cursor: default;
}
.footer{
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 200;
    cursor: default;
}
.logo-container {
  display: inline-block; /* Or flex/block depending on layout */
  max-width: 80px; /* Adjust max-width as needed */
 height: auto;
  width: 100%; /* Ensures responsiveness within parent container */
}

.logo-img {
  width: 100%; /* Makes image fill container width */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes bottom space under image */
  max-height: 80px; /* Optional: Cap height for very large screens */
}

.navbar a{
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    margin-left: 45px;
    transition: .3s;
}

.navbar a:hover{
    color: #f00;
}

#menu-icon{
    font-size: 36px;
    color: #fff;
    display: none;
}
.vidlink {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight:400;
  color: #004418;                                                             
}

.font4 {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight:800;
  color: #ffffff;
  align-items: center;                                                             
}
.font4a {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight:800;
  color: #004418;                                                             
}
.font4b {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: #fff;                                                              
}
.font4c {
     font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}
.font4d {
     font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
}
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
.font-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #004418;
  text-align: center;
margin-bottom: 80px;
}
.font-title-light {
    font-size: 3.0rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
}
.slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
  text-align: center;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 992px){
    .header{
        padding: 1.25rem 4%;
    }
}

@media (max-width: 768px){
    #menu-icon{
        display: block;
    }

    .navbar{
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0.5rem 4%;
        display: none;
    }

    .navbar.active{
        display: block;
    }

    .navbar a{
        display: block;
        margin: 1.5rem 0;
    }

    .nav-bg{
        position: fixed;
        top: 8.5%;
        left: 0;
        width: 100%;
        height: 295px;
        background: rgba(255, 255, 255, .1);
        border-bottom: 2px solid rgba(255, 255, 255, .2);
        backdrop-filter: blur(10px);
        z-index: 99;
        display: none;
    }
    
    .nav-bg.active{
        display: block;
    }
  
}