* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: raleway, sans-serif;
	
	
}




a {
    color: white;
    text-decoration: none;

}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 10%;
    background: #2f3339;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    animation: show-content 1.5s linear forwards;
    animation-delay: 1.2s;
}

@keyframes show-content {
    100% {
        visibility: visible;
        opacity: 1;

    }

}


.nav-bar ul {
    display: flex;

}

.nav-bar ul li {
    list-style: none;
    display: inline-block;
    margin: 35px;

}

.nav-bar ul li a {
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}

.nav-bar ul li:hover a,
.nav-bar ul li.active a {
    color: #7cfe3d;
}

.nav-bar .logo {
    font-size: 30px;
    font-weight: 700;

}

.cont {
    padding: 5px 10px;
    background-color: #7cfe3d;
    border: 2px solid #7cfe3d;
    border-radius: 40px;
    font-size: 18px;

    color: #1f242d;
}

.cont:hover {
    background: transparent;
    color: #7cfe3d;
    box-shadow: none;
}


.home {
    justify-content: center;
    display: flex;
    align-items: center;
    padding-top: 10%;
    width: 100%;
    color: white;
    visibility: hidden;
    opacity: 0;
    animation: show-content 1.5s linear forwards;
    animation-delay: 1.6s;
	
}


.home h1 {
    font-size: 55px;
    padding-left: 80px;
    align-items: center;
}


@keyframes display-text {

    25%,
    100% {
        display: none;
    }

}


.home h2 span::before {
    content: attr(data-text);
    position: absolute;
    border-right: 2px solid #7cfe3d;
    color: #7cfe3d;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: fill-text 4s linear infinite;
}

@keyframes fill-text {

    10%,
    100% {
        width: 0;
    }

    70%,
    90% {
        width: 100%;
    }


}

.home p {
    font-size: 16px;
    padding: 10px 0 25px;
	
}


.home-info .btn-sci {
    display: flex;
    align-items: center;

}



.btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #7cfe3d;
    border: 2px solid #7cfe3d;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #1f242d;

    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 0 10px #7cfe3d;
}

.btn:hover {
    background: transparent;
    color: #7cfe3d;
    box-shadow: none;
}

.bar-animation {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    z-index: -1;
}

.bar-animation .bar {
    width: 100%;
    height: 100%;
    animation: show-bar .5s ease-in-out forwards;
    background: #1f242d;
    transform: translateY(-100%);
    animation-delay: calc(var(--i) * .1s);

}

@keyframes show-bar {
    100% {
        transform: translateY(0%);
    }

}


.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
	margin-bottom: 80px;
	

}

.sev {
    background-color: rgb(118, 117, 115);
    width: 300px;
    
    border-radius: 10px;
    
    transition-property: background-color;
    transition-duration: .1s;
    
}


.img-sev {
    padding-top: 25px;
	padding-left: 100px;
}


.sev-text {
    color: #fff;
    padding-top: 50px;

    text-align: center;

}

.sev-text h2 {
    color: #fff;
    margin-top: 5px;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}


.sev-text p {
    color: #fff;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	

}

.sev:hover {
    transition: ease-in-out 0.1s;
    transition-delay: .1s;
    background-color: #7cfe3d;
    color: #1f242d;
}

.sev-text:hover {
    color: #1f242d;
}



.testimony {
    display: flex;
    justify-content: center;
    align-items: center;

   
    background-color: #2f3339;

}

.testimony-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    color: #fff;
	
}

.testimony-star {
    color: #7cfe3d;
    font-size: 40px;
    margin-top: 10%;
}

.testimony-author {
    text-align: center;
    margin-top: 10px;
	margin-bottom: 60px;
}

.itm h2 {
    font-size: 18px;
    margin-top: 15px;
    padding-left: 50px;
    border-bottom: #7cfe3d 2px solid;
}

.itm h1 {
    font-size: 40px;
    color: #7cfe3d;
	padding-top: 50px;
}



.footer {
    background: #1f242d;
    color: white;
    text-align: center;
    padding: 20px;
}


.testimony-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}




/* Default (desktop) */
#menu-toggle {
  display: none;
}
.menu-icon {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ============== Responsive ============== */
@media (max-width: 768px) {
  .nav-bar {
    padding: 10px 5%;
  }

  /* Show hamburger */
  .menu-icon {
    display: block;
    z-index: 110;
  }

  /* Hide nav links by default */
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 5%;
    width: 200px;
    background: #2f3339;
    flex-direction: column;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-links li a {
    font-size: 16px;
    display: block;
    padding: 10px;
  }

  /* Toggle menu when checkbox is checked */
  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }
}


/* ==================== Mobiles (<768px) ==================== */
@media (max-width: 767px) {
    /* Nav Bar → Hamburger */
    .nav-bar {
        padding: 10px 5%;
    }

    .nav-bar ul {
        display: none;
        position: absolute;
        top: 60px;
        right: 5%;
        background: #2f3339;
        flex-direction: column;
        width: 200px;
        border-radius: 8px;
        padding: 10px 0;
    }

    .nav-bar ul li {
        margin: 15px 0;
        text-align: center;
    }
	
	
	.cont{
		padding: 2px 4px;
		width: 150px;
		margin-left: 25px;
		
		
	}

    /* Add a toggle button */
    .menu-toggle {
        display: block;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }




/* ==================== Large Screens (≥1200px) ==================== */
@media (min-width: 1200px) {
    .home h1 {
        font-size: 60px;
    }
    .home p {
        font-size: 18px;
    }
    .container {
        padding: 80px 15%;
    }
    .text {
        font-size: 52px;
    }
}


/* ==================== Tablets (768px – 1199px) ==================== */
@media (max-width: 1199px) and (min-width: 768px) {
    .nav-bar {
        padding: 10px 5%;
    }

    .nav-bar ul li {
        margin: 20px;
    }

    .home {
        flex-direction: row;
        gap: 40px;
        padding: 40px 6%;
    }

    .home h1 {
        font-size: 42px;
    }

    .home p {
        font-size: 15px;
    }

    .container {
        padding: 40px 6%;
    }

    .text {
        font-size: 36px;
    }

    .middle h2 {
        font-size: 20px;
    }
}


/* ==================== Mobiles (<768px) ==================== */
@media (max-width: 767px) {
    /* Nav Bar → Hamburger */
    .menu-icon {
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 5%;
        background: #2f3339;
        width: 220px;
        border-radius: 8px;
        padding: 15px 0;
        text-align: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    /* Toggle nav with checkbox */
    #menu-toggle {
        display: none;
    }
    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .home {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
        height: auto;
		margin-top: 110px;
    }

    .home h1 {
        font-size: 32px;
    }

    .home p {
        font-size: 14px;
    }

    .container {
        padding: 30px 5%;
    }

    .text {
        font-size: 28px;
    }

    .img-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 5%;

		align-items: center;
			justify-content: center;
    }

    .sev {
        flex-direction: column;
        text-align: center;
    }

    .sev img {
        margin-bottom: 10px;
		margin-right: 130px;
    }

    .middle {
        height: auto;
        padding: 40px 5%;
    }

    .middle h2 {
        font-size: 18px;
    }

    .middle p {
        font-size: 14px;
    }

    .middle button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .footer {
        font-size: 14px;
    }
}






