@font-face {
    font-family: p;
    src: url(Asset/Font/Poppins/Poppins-Regular.ttf);
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: p;
}

body {
    background-color: black;
}

.heading {
    font-size: 2.5rem;
    color: white;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: darkgreen;
    color: white;
    border-radius: 5px;
}

.btn:hover {
    background-color: transparent;
    transition: 0.3s;
    border: 1px solid darkgreen;
}

span {
    color: darkgreen;
}

nav {
    position: fixed;
    top: 0;
    padding: 1.5rem 6rem;
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0px 15px;
}

nav ul li a {
    color: white;
}

nav ul li a:hover {
    color: darkgreen;
    transition: 0.3s;
}

.logo a {
    font-size: 31px;
    color: white;
    font-weight: bold;
}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(Asset/Img/bg.jpg) center/cover no-repeat;
    background-color: #0000009e;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

.home::after {
    position: absolute;
    content: '';
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to top, #000 0%, #ff40 45%);
    pointer-events: none;
}

.home-c {
    color: white;
    margin-left: 5rem;
}

.home-t {
    color: white;
}

.home-t h1 {
    font-size: 3.5rem;
}

.home-t p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.count-c {
    padding: 2rem;
    color: white;
    gap: 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c i {
    font-size: 5rem;
}

.c h3 {
    font-size: 2.5rem;
}

.get-c {
    padding: 2rem;
    color: white;
    gap: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.get-c .box {
    padding: 2rem;
    width: 350px;
    border: 1px solid darkgreen;
    transform: translateY(0);
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-25px);
    transition: 0.3s;
}

.course {
    width: 100%;
    padding: 20px;
    background: url(Asset/Img/bg-p.jpg) center/cover no-repeat;
    background-color: #0000009e;
    background-blend-mode: overlay;
    color: white;
    background-attachment: fixed;
}

.content-c {
    width: 100%;
    padding: 2rem;
    gap: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-c .row {
    padding: 0px 0px 10px 0px;
    border-radius: 10px;
    transition: 0.3s;
    transform: translateY(0);
}

.row img {
    width: 400px;
    width: 200px;
    border-radius: 5px;
}

.row:hover {
    transition: 0.3s;
    transform: translateY(-15px);
}

.sponsor-c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-list img {
    width: 150px;
    height: 150px;
    border-radius: 50px;
}

.testi-c {
    padding: 2rem;
    color: white;
    gap: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icon i {
    font-size: 20px;
    margin-top: 10px;
    color: white;
    padding: 0px 10px;
    transition: 0.3s;
    cursor: pointer;
}

.icon i:hover {
    transition: 0.3s;
    transform: scale(1.2);
}

.testi-c .box {
    width: 350px;
    border: 1px solid darkgreen;
    padding: 2rem;
}

.testi-c .box img {
    width: 150px;
    height: 150px;
    border-radius: 5px;
}

footer {
    padding: 1.5rem 6rem;
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul {
    display: flex;
}

footer ul li {
    margin: 0px 15px;
}

footer ul li a {
    color: white;
}

.f-b {
    opacity: 0.7;
    text-align: center;
    color: white;
}