/* Lexend Deca Font Import */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

:root {
    --primary-orange: #FF5C2A;
    --secondary-orange: #F84007;
    --primary-red: #E63946;
    --footer-col: #050517;
    --light-yellow: #FFFC34;
    --yellow: #E6A83E;
    --dark-ass: #8E8D87;
    --light-ass: #C3C3C3;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
    scroll-behavior:smooth;
    overflow-x: hidden;
}
body {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.55;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    display: block;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.col60 {
    max-width: 60%;
    flex: 0 0 60%;
    padding: 0 15px;
}
.col25 {
    max-width: 25%;
    flex: 0 0 25%;
    padding: 0 25px;
}
.col40 {
    max-width: 40%;
    flex: 0 0 40%;
    padding: 0 15px;
}
.col50 {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 15px;
}

.col33{
    max-width: 33.333%;
    flex: 0 0 33.333%;
    padding: 0 15px;
}

h1 {
    font-family: "Lexend Deca", sans-serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
}

h2{
    font-family: "Lexend Deca", sans-serif;
    font-size: 57px;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
}

.header {
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-links {
    margin-left: auto;
}

.navlinks {
    display: flex;
    align-items: center;
}

.navlinks li {
    padding: 0 30px;
}

.navlinks li a {
    text-transform: capitalize;
    color: var(--black);
}

.navlinks li a:hover {
    color: var(--secondary-orange);
}

.cmn-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 20px 48px;
    transition: 0.5s ease;
    border-radius: 0;
    text-transform: capitalize;
}

.cmn-btn:hover {
    background: var(--primary-red);
}

.hamburger {
    position: absolute;
    right: 100px;
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: var(--black);
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.profiles {
    display: flex;
}

.profiles img {
    width: 103px;
    height: 103px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--light-ass);
    background: #d9d9d9;
}

.banner {
    background: url("images/home-bg1.png") no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 925px;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.banner .row {
    align-items: center;
}

.bannercontent h1 {
    margin-bottom: 20px;
}

.bannercontent p {
    margin-bottom: 45px;
    margin-top: 20px;
    color: var(--white);
    max-width: 514px;
    width: 100%;
    font-size: 17px;
}
.bannercontent .texting{
    font-size: 100px;
    color: var(--light-yellow);
    margin-bottom: 20px;
}

.profiles .text{
    margin-left: 20px;
    color: var(--white);
    font-size: 19px;
}

.productscontent p{
    margin-top: 60px;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--black);
    align-items: center;
    justify-content: center;
    display: flex;
}

.productscontent h2{
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .card{
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-ass);
    padding: 32px 18px; 
    background: var(--dark-ass);
    border-radius: 20px;
}

.cardcontainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 100px;
    margin-right: 100px;
}

.btn{
    text-align: center;
    margin-top: 60px;
    display: inline-block;
    padding: 20px 48px;
    transition: 0.5s ease;
    border-radius: 0;
}
.ser-btn{
    text-decoration: none;
    display: block;
    text-align: center; 
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    transition: 0.3s;
} */

.services {
    background: #f5f1e6;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-card img {
    width: 42px;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ff4a17;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.5;
}

.services-btn {
    text-align: center;
    margin-top: 50px;
}

.services-btn a {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 36px;
    font-size: 16px;
    transition: 0.3s;
}

.services-btn a:hover {
    background: #ff4a17;
}


.research-section {
    padding: 60px 120px;
    background: var(--white);
}

.research-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.research-content {
    padding-left: 40px;
}

.research-content .small-title {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--black);
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.research-content h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.research-content .main-text {
    font-size: 14px;
    color: var(--dark-ass);
    margin-bottom: 20px;
}

.research-content .sub-text {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 20px;
}

.bottom-content h4 {
    font-size: 23px;
    margin-top: 250px;
    margin-bottom: 29px;
}

.bottom-content p {
    font-size: 14px;
    color: var(--dark-ass);
}

.stats-section {
    background: var(--white);
    padding: 60px 300px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-label {
    font-size: 19px;
    color: var(--black);
    /* margin-bottom: 0px; */
}

.stat-number {
    font-size: 80px;
    color: var(--black);
}

.courses-section {
    background: #F1EEE3;
    padding: 60px; 
}
.courses-section .row{
    margin: 70px;
}
.courses-heading {
    text-align: center;
}

.courses-heading .small-title {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--black);
    display: block;
    margin-bottom: 15px;
}

.courses-heading h2 {
    font-size: 57px;
    font-weight: 400;
}

.course-card {
    background: var(--white);
    overflow: hidden;
    height: 100%;
}

.course-img img {
    width: 100%;
    display: block;
}

.course-content {
    padding: 25px;
}

.rating {
    color: var(--yellow);
    font-size: 14px;
    margin-bottom: 5px;
}

.course-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.meta {
    font-size: 14px;
    color: var(--dark-ass);
    margin-bottom: 15px;
}

.author {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--dark-ass);
    margin-bottom: 20px;
}

.author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
}   

.course-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    transition: 0.3s;
}

.course-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.more-btn {
    text-align: center;
}

.black-btn {
    background: var(--black);
    color: var(--white);
    padding: 10px 40px;
    display: inline-block;
}

.review-section {
    background:  #F1EEE3;
    padding: 60px;
}

.review-content {
    padding-right: 100px;
}

.review-stars {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 34px;
    color: var(--black);
    margin-bottom: 22px;
}

.review-author strong {
    display: block;
    font-size: 19px;
    color: var(--black);
}

.review-author span {
    font-size: 15px;
    color: var(--dark-ass);
}

.review-section .row {
    align-items: center;
}
.review-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.signup-section {
    background: #F1EEE3;
    padding: 60px 340px;
}

.signup-wrapper {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.signup-section .small-title {
    font-size: 16px;
    letter-spacing: 0px;
    color: var(--black);
    display: block;
    margin-bottom: 15px;
}

.signup-section h2 {
    font-size: 57px;
    font-weight: 400;
    margin-bottom: 20px;
}

.signup-text {
    font-size: 16px;
    color: var(--dark-ass);
    /* max-width: 520px; */
    margin: 0 auto 30px;
}

.signup-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 13px;
    color: var(--black);
    margin: 43px;
}

.signup-form {
    display: flex;
    justify-content: center;
    margin-bottom: 19px;
}

.signup-form input {
    width: 320px;
    padding: 14px 15px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 12px;
}

.signup-form button {
    background: var(--primary-orange);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.signup-form button:hover {
    background: var(--secondary-orange);
}

.policy-text {
    font-size: 12px;
    color: var(--dark-ass);
}

.policy-text a {
    color: var(--primary-orange);
}


.logo-slider-section {
    background: var(--white);
    padding: 60px 0;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll-left 25s linear infinite;
}

.logo-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
}

.logo-item img:hover {
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.courses-create-section {
    padding: 60px 150px;
    background: var(--white);
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading .small-title {
    font-size: 14px;
    color:var(--black);
    display: block;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 50px;
    font-weight: 555;
    text-transform: capitalize;
}

/* LEFT ARTICLE */
.main-article-img img {
    width: 100%;
    margin-bottom: 20px;
}

.article-tag {
    font-size: 14px;
    color: var(--black);
    display: block;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-decoration: underline;
}

.main-article h3 {
    font-size: 35px;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 14px;
    color: var(--dark-ass);
    display: block;
    margin-bottom: 20px;
}

.article-text {
    font-size: 14px;
    color: var(--dark-ass);
    max-width:100%;
}

/* RIGHT LIST */

.article-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.article-item img {
    width: 100%;
    object-fit: cover;
}

.article-info h4 {
    font-size: 28px;
    margin-bottom: 8px;
}

.footer {
    background: var(--footer-col);
    color: var(--light-ass);
    padding: 80px 100px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 120px;
}

.footer-col {
    flex: 1;
    max-width: 100%;
}

.footer-brand {
    max-width: 100%;
}
.footer-logo a{
    display: block;
    max-width: 100%;
}
.footer-logo img {
    max-width: 100%;
    margin-bottom: 17px;
}

.footer-brand p {
    font-size: 19px;
    line-height: 29px;
    margin-bottom: 44px;
}

.footer-socials a {
    margin-right: 15px;
    font-size: 13px;
    color: var(--light-ass);
    text-transform: uppercase;
}

.footer-socials a:hover {
    color: var(--white);
}


.footer ul li {
    margin-bottom: 10px;
}

.footer ul li {
    color: var(--white);
}

.footer ul li a {
    color: var(--light-ass);
    font-size: 13px;
}

.footer ul li a:hover {
    color: var(--white);
}


.footer-email {
    color: var(--white);
    margin-bottom: 5px;
}

.footer small {
    font-size: 12px;
    color: var(--white);
}


.footer-bottom {
    border-top: 1px solid var(--light-ass);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--light-ass);
}

.footer-bottom a{
    color: var(--dark-ass);
    
}
.footer-bottom a:hover{
    color: white;
}
