/* =========================
        GLOBAL
========================= */

body{
    font-family: 'Inter', sans-serif;
}


/* =========================
        TOPBAR
========================= */

.topbar{

    background: #000;

    border-bottom:
    1px solid rgba(255,255,255,0.08);

    padding: 10px 0;

    overflow: hidden;
}

/* FLEX */

.topbar-left,
.topbar-right{

    display: flex;

    align-items: center;

    gap: 25px;
}

/* TEXT */

.topbar a,
.topbar span{

    color: #d1d5db;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition: 0.3s ease;

    white-space: nowrap;
}

/* ICONS */

.topbar i{

    color: #01c034;

    margin-right: 7px;
}

/* HOVER */

.topbar a:hover{

    color: #ffffff;
}

/* =========================
        SOCIAL ICONS
========================= */

.social-icons{

    display: flex;

    align-items: center;

    gap: 10px;
}

.social-icons a{

    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    transition: 0.3s ease;
}

/* HOVER */

.social-icons a:hover{

    background: #01c034;

    transform: translateY(-3px);
}

.social-icons a:hover i{

    color: #ffffff;
}

/* =========================
    TABLET RESPONSIVE
========================= */

@media(max-width:991px){

    .topbar{

        padding: 12px 0;
    }

    .topbar-left,
    .topbar-right{

        justify-content: center;

        flex-wrap: wrap;

        gap: 15px;
    }

    .topbar .col-lg-6{

        text-align: center !important;
    }

    .topbar-right{

        margin-top: 10px;
    }

}

/* =========================
    MOBILE RESPONSIVE
========================= */

@media(max-width:576px){

    .topbar{

        padding: 14px 0;
    }

    .topbar-left,
    .topbar-right{

        flex-direction: column;

        gap: 12px;
    }

    .topbar a,
    .topbar span{

        font-size: 13px;

        text-align: center;
    }

    .social-icons{

        justify-content: center;

        flex-wrap: wrap;
    }

    .social-icons a{

        width: 32px;
        height: 32px;
    }

}


/* =========================
        PREMIUM NAVBAR
========================= */

.custom-navbar{
    position: sticky;
    top: 0;
    z-index: 999;

    padding: 18px 0;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 8px 32px rgba(0,0,0,0.15);

    transition: 0.4s ease;
}

/* SCROLL EFFECT */

.custom-navbar.scrolled{
    background: rgba(255,255,255,0.95);

    box-shadow: 0 10px 35px rgba(0,0,0,0.08);

    padding: 14px 0;
}

/* =========================
        NAVBAR LOGO
========================= */

.navbar-brand{

    display: flex;

    align-items: center;

    padding: 0;

    margin: 0;
}

/* LOGO IMAGE */

.navbar-brand img{

    width: 180px;

    height: auto;

    object-fit: contain;

    transition: 0.4s ease;
}

/* HOVER EFFECT */

.navbar-brand:hover img{

    transform:
    scale(1.03);
}

/* =========================
    TABLET RESPONSIVE
========================= */

@media(max-width:991px){

    .navbar-brand img{

        width: 150px;
    }

}

/* =========================
    MOBILE RESPONSIVE
========================= */

@media(max-width:576px){

    .navbar-brand img{

        width: 130px;
    }

}
/* =========================
        NAV LINKS
========================= */

.navbar-nav{
    gap: 10px;
}

.nav-link{
    position: relative;

    color: #111 !important;

    font-size: 15px;
    font-weight: 600;

    padding: 12px 18px !important;

    transition: 0.3s ease;
}

/* HOVER */

.nav-link:hover,
.nav-link.active{
    color: #01c034 !important;
}

/* LINE EFFECT */

.nav-link::after{
    content: '';

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0%;
    height: 2px;

    background: #01c034;

    border-radius: 10px;

    transform: translateX(-50%);

    transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
    width: 70%;
}

/* =========================
        BUTTON
========================= */

.nav-btn{
    position: relative;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #01c034,
        #00a82f
    );

    color: #fff;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 50px;

    font-weight: 700;

    transition: 0.4s ease;

    box-shadow:
    0 10px 25px rgba(1,192,52,0.25);
}

.nav-btn:hover{
    transform: translateY(-3px);

    color: #fff;

    box-shadow:
    0 15px 35px rgba(1,192,52,0.35);
}

/* SHINE EFFECT */

.nav-btn::before{
    content: '';

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );

    transition: 0.6s;
}

.nav-btn:hover::before{
    left: 100%;
}

/* =========================
    MENU BUTTON
========================= */

.navbar-toggler{
    border: none !important;

    background: transparent !important;

    box-shadow: none !important;

    padding: 0;
}

.navbar-toggler:focus{
    box-shadow: none !important;
}

/* HAMBURGER ICON */

.menu-icon{
    width: 32px;
    height: 24px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}

.menu-icon span{
    width: 100%;
    height: 3px;

    background: #111;

    border-radius: 10px;

    transition: 0.4s ease;
}

/* HOVER */

.navbar-toggler:hover .menu-icon span{
    background: #01c034;
}

/* ANIMATION */

.navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(1){
    transform:
    rotate(45deg)
    translate(7px,7px);
}

.navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(2){
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(3){
    transform:
    rotate(-45deg)
    translate(7px,-7px);
}

/* =========================
    MOBILE NAVIGATION
========================= */

@media(max-width:991px){

    .navbar-collapse{

        margin-top: 20px;

        padding: 25px;

        border-radius: 28px;

        background: rgba(255,255,255,0.12);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border:
        1px solid rgba(255,255,255,0.15);

        box-shadow:
        0 15px 40px rgba(0,0,0,0.15);

        animation:
        mobileMenu 0.4s ease;
    }

    /* NAV LIST */

    .navbar-nav{
        gap: 10px;
    }

    .nav-item{
        width: 100%;
    }

    /* MOBILE LINKS */

    .nav-link{

        width: 100%;

        padding: 15px 18px !important;

        border-radius: 16px;

        background:
        rgba(255,255,255,0.08);

        border:
        1px solid rgba(255,255,255,0.08);

        color: #111 !important;

        transition: 0.35s ease;
    }

    /* HOVER EFFECT */

    .nav-link:hover{

        background:
        rgba(1,192,52,0.12);

        border:
        1px solid rgba(1,192,52,0.25);

        transform:
        translateX(6px);

        padding-left: 24px !important;
    }

    /* ACTIVE */

    .nav-link.active{

        background:
        rgba(1,192,52,0.15);

        border:
        1px solid rgba(1,192,52,0.25);

        color: #01c034 !important;
    }

    /* REMOVE DESKTOP LINE */

    .nav-link::after{
        display: none;
    }

    /* BUTTON */

    .nav-btn{

        width: 100%;

        display: flex;

        justify-content: center;

        margin-top: 18px;
    }

}

/* =========================
        ANIMATION
========================= */

@keyframes mobileMenu{

    from{
        opacity: 0;

        transform:
        translateY(-10px)
        scale(0.96);
    }

    to{
        opacity: 1;

        transform:
        translateY(0)
        scale(1);
    }

}



/* =========================
        HERO SECTION
========================= */

.hero-section{

    position: relative;
    min-height: 100vh;
    background:
    linear-gradient(135deg,#0b2e1c,#043b21,#025826);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* =========================
        GLOW EFFECTS
========================= */

.hero-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
}

.glow-one{
    width: 350px;
    height: 350px;
    background: #01c034;
    top: -120px;
    left: -100px;
}

.glow-two{
    width: 300px;
    height: 300px;
    background: #01c034;
    bottom: -100px;
    right: -80px;
}


/* =========================
        HERO BADGE
========================= */

.hero-badge{

    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background:
    rgba(255,255,255,0.06);
    border:
    1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(12px);
}

.hero-badge span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #01c034;
    box-shadow: 0 0 15px #01c034;
}

/* =========================
        HERO TITLE
========================= */

.hero-title{
    font-size: 67px;
    font-weight: 00;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 25px;
}

.hero-title span{

    color: #01c034;
}

/* =========================
        HERO TEXT
========================= */

.hero-text{

    color: #b5b5b5;

    font-size: 18px;

    line-height: 1.9;

    max-width: 600px;

    margin-bottom: 35px;
}

/* =========================
        BUTTONS
========================= */

.hero-buttons{

    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-btn{

    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
}

/* PRIMARY */

.primary-btn{

    background:
    linear-gradient( 135deg, #01c034, #00a82f
    );
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(1,192,52,0.3);
}

.primary-btn:hover{
    transform: translateY(-4px);
    color: #ffffff;
}

/* SECONDARY */

.secondary-btn{
    border:1px solid rgba(255,255,255,0.15);
    background:rgba(255,255,255,0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover{
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    transform: translateY(-4px);
}

/* =========================
        STATS
========================= */

.hero-stats{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-box{
    min-width: 140px;
}

.stat-box h3{
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
}

.stat-box p{
    color: #9ca3af;
    margin-top: 6px;
}

/* =========================
        SHOWCASE
========================= */

.hero-showcase{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
}

/* MAIN CARD */

.main-card{
    width: 500px;
    border-radius: 30px;
    overflow: hidden;
    background:
    rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.main-card img{
    width: 100%;
    display: block;
}

/* FLOATING CARDS */

.floating-card{
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    animation: floatCard 4s ease-in-out infinite;
}

.card-icon{

    width: 55px;
    height: 55px;
    border-radius: 16px;
    background:rgba(231, 255, 237, 0.08);
    color: #01c034;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.floating-card h5{
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 17px;
}

.floating-card p{
    color: #9ca3af;
    margin: 0;
    font-size: 14px;
}

/* CARD POSITIONS */

.card-one{
    top: 60px;
    left: -40px;
}

.card-two{
    bottom: 90px;
    left: -20px;
}

.card-three{
    top: 180px;
    right: -40px;
}

/* =========================
        FLOAT ANIMATION
========================= */

@keyframes floatCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* =========================
        SCROLL DOWN
========================= */

.scroll-down{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down span{
    width: 28px;
    height: 48px;
    border:
    2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    display: block;
    position: relative;
}

.scroll-down span::before{
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    border-radius: 20px;
    background: #01c034;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim{

    0%{
        opacity: 0;
        top: 8px;
    }

    50%{
        opacity: 1;
    }

    100%{
        opacity: 0;
        top: 24px;
    }

}
/* =========================
        RESPONSIVE HERO
========================= */

@media(max-width:991px){

    .hero-section{

        padding:
        140px 0 90px;

        text-align: center;
    }

    /* TITLE */

    .hero-title{

        font-size: 56px;

        line-height: 1.15;

        margin-bottom: 25px;
    }

    /* TEXT */

    .hero-text{

        max-width: 100%;

        margin:
        0 auto 35px;

        font-size: 17px;
    }

    /* BUTTONS */

    .hero-buttons{

        justify-content: center;

        margin-bottom: 45px;
    }

    /* STATS */

    .hero-stats{

        justify-content: center;

        gap: 25px;
    }

    /* SHOWCASE */

    .hero-showcase{

        margin-top: 80px;

        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 20px;
    }

    /* MAIN CARD */

    .main-card{

        width: 100%;

        max-width: 650px;
    }

    /* FLOATING CARDS */

    .card-one,
    .card-two,
    .card-three{

        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;

        max-width: 350px;

        justify-content: center;

        margin: 0;
    }

    /* SCROLL INDICATOR */

    .scroll-down{

        display: none;
    }

}


/* =========================
        MOBILE
========================= */

@media(max-width:576px){

    .hero-section{

        padding:
        120px 0 70px;
    }

    /* BADGE */

    .hero-badge{

        font-size: 12px;

        padding: 10px 18px;
    }

    /* TITLE */

    .hero-title{

        font-size: 40px;

        line-height: 1.2;

        letter-spacing: -1px;
    }

    /* TEXT */

    .hero-text{

        font-size: 15px;

        line-height: 1.8;
    }

    /* BUTTONS */

    .hero-buttons{

        flex-direction: column;

        gap: 15px;
    }

    .hero-btn{

        width: 100%;

        text-align: center;

        padding: 16px 20px;
    }

    /* STATS */

    .hero-stats{

        flex-direction: column;

        align-items: center;

        gap: 20px;
    }

    .stat-box{

        width: 100%;

        max-width: 220px;

        padding: 20px;

        border-radius: 22px;

        background:
        rgba(255,255,255,0.04);

        border:
        1px solid rgba(255,255,255,0.08);
    }

    .stat-box h3{

        font-size: 30px;
    }

    /* SHOWCASE */

    .hero-showcase{

        margin-top: 60px;
    }

    .main-card{

        border-radius: 24px;
    }

    /* FLOATING CARDS */

    .floating-card{

        width: 100%;

        max-width: 100%;

        padding: 16px 18px;

        border-radius: 20px;
    }

    .floating-card h5{

        font-size: 16px;
    }

    .floating-card p{

        font-size: 13px;
    }

    /* ICON */

    .card-icon{

        width: 50px;
        height: 50px;

        font-size: 20px;

        border-radius: 14px;
    }

}




/* =========================
        MINI SERVICES
========================= */

.mini-services{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background:
    linear-gradient( rgba(0,0,0,0.52), rgba(0,0,0,0.68)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* GREEN GLOW */

.mini-services::before{

    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #01c034;
    filter: blur(180px);
    opacity: 0.08;
    top: -150px;
    right: -150px;
}

/* CONTENT */

.mini-services .container{
    position: relative;
    z-index: 2;
}

/* =========================
        SECTION HEADER
========================= */

.section-header{

    margin-bottom: 80px;
}

.section-badge{
    display: inline-block;
    padding: 12px 26px;
    border-radius: 50px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    color: #01c034;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(12px);
}

.section-title{

    color: #ffffff;

    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
}

/* =========================
        SERVICES GRID
========================= */

.services-grid{
    display: grid;
    grid-template-columns:
    repeat(4,1fr);
    gap: 30px;
}

/* =========================
        CARD
========================= */

.service-card{
    position: relative;
    padding: 45px 35px;
    border-radius: 30px;
    background:
    rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border:1px solid rgba(255,255,255,0.10);
    overflow: hidden;
    transition: .45s ease;
    cursor: pointer;
}

/* TOP GLOW */

.service-card::before{
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #01c034;
    filter: blur(100px);
    opacity: 0;
    top: -60px;
    right: -60px;
    transition: .5s ease;
}

/* HOVER */

.service-card:hover{

    transform:
    translateY(-12px);
    border:1px solid rgba(1,192,52,0.35);
    box-shadow:
    0 25px 60px rgba(0,0,0,0.35);
}

.service-card:hover::before{

    opacity: .18;
}

/* ICON */

.service-icon{

    width: 80px;
    height: 80px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
    background:rgba(1,192,52,0.15);
    border: 1px solid rgba(1,192,52,0.20);
    color: #01c034;
}

/* TITLE */

.service-card h3{

    color: #ffffff;

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 18px;
}

/* TEXT */

.service-card p{

    color: #d1d5db;

    line-height: 1.9;

    margin: 0;

    font-size: 15px;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

    .services-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .section-title{

        font-size: 46px;
    }

}

@media(max-width:576px){

    .mini-services{

        padding: 90px 0;
    }

    .services-grid{

        grid-template-columns: 1fr;
    }

    .section-title{

        font-size: 34px;
    }

    .service-card{

        padding: 35px 28px;
    }

    .service-icon{

        width: 70px;
        height: 70px;

        font-size: 30px;
    }

    .service-card h3{

        font-size: 24px;
    }

}






/* =========================
        NAVIGATION HUB
========================= */

.floating-links{

    position: relative;

    padding: 100px 0;

    background:
    linear-gradient(180deg, #007c61, #1d7047);

    overflow: hidden;
}

/* GLOW */

.floating-bg{

    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: #01c034;
    filter: blur(280px);
    opacity: .08;
    top: 50%;
    left: 50%;
    transform:
    translate(-50%,-50%);
}

/* HEADER */

.floating-header{
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.floating-badge{

    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color: #01c034;
    font-weight: 600;
    margin-bottom: 25px;
}

.floating-header h2{
    color: #fff;
    font-size: 50px;
    font-weight: 700;

    letter-spacing: -2px;
}

/* GRID */

.floating-wrapper{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
    repeat(5,1fr);

    gap: 25px;
}

/* CARD */

.floating-card-link{

    position: relative;

    padding: 40px 25px;

    border-radius: 30px;

    text-decoration: none;

    background:
    rgba(255,255,255,.05);

    backdrop-filter: blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    transition: .45s ease;

    overflow: hidden;

    min-height: 280px;
}

/* TOP BORDER */

.floating-card-link::before{

    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
    linear-gradient(
        90deg,
        #01c034,
        #ffffff
    );

    transform: scaleX(0);

    transition: .4s;
}

.floating-card-link:hover::before{

    transform: scaleX(1);
}

/* HOVER */

.floating-card-link:hover{

    transform:
    translateY(-15px);

    border:
    1px solid rgba(1,192,52,.25);

    box-shadow:
    0 25px 60px rgba(1,192,52,.12);
}

/* ICON */

.card-icon{

    width: 75px;
    height: 75px;

    border-radius: 22px;

    background:
    rgba(1,192,52,.12);

    border:
    1px solid rgba(1,192,52,.15);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;
}

.card-icon i{

    color: #01c034;

    font-size: 32px;
}

/* TITLE */

.floating-card-link h4{

    color: #fff;

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 15px;
}

/* TEXT */

.floating-card-link p{

    color: #bdbdbd;

    line-height: 1.8;

    margin: 0;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .floating-wrapper{

        grid-template-columns:
        repeat(3,1fr);
    }

}

@media(max-width:768px){

    .floating-wrapper{

        grid-template-columns:
        repeat(2,1fr);
    }

    .floating-header h2{

        font-size: 42px;
    }

}

@media(max-width:576px){

    .floating-wrapper{

        grid-template-columns:
        1fr;
    }

    .floating-header h2{

        font-size: 32px;
    }

}






/* =========================
    PORTFOLIO HERO
========================= */

.portfolio-hero{
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
    linear-gradient( rgba(0,0,0,0.52), rgba(0,0,0,0.68)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* GLOW */
.portfolio-glow{
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #01c034;
    filter: blur(130px);
    opacity: 0.1;
}

.glow-left{
    top: -120px;
    left: -100px;
}

.glow-right{
    bottom: -120px;
    right: -100px;
}

/* BADGE */

.portfolio-badge{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background:rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #01c034;
    font-weight: 600;
    margin-bottom: 30px;
}

/* TITLE */

.portfolio-title{
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

/* TEXT */

.portfolio-text{

    color: #9ca3af;

    font-size: 18px;

    line-height: 1.9;

    max-width: 700px;

    margin: auto;
}





/* =========================
    GENERAL SECTION
========================= */

.portfolio-section, .logo-showcase, .video-section{
    padding: 100px 0;
    background: #01160f;
}

.section-head{
    margin-bottom: 50px;
}

.section-head h2{
    color: #ffffff;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-head p{
    color: #ffffff;
    font-size: 17px;
}

/* =========================
    PORTFOLIO GRID
========================= */

.website-showcase{
     position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
    linear-gradient( rgba(0,0,0,0.82), rgba(0,0,0,0.78)), url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.portfolio-grid, .website-grid, .video-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 35px;
}

/* CARD */

.portfolio-card, .website-card, .video-card{
    background:rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    overflow: hidden;
    transition: 0.45s ease;
}

/* HOVER */
.portfolio-card:hover, .website-card:hover, .video-card:hover{
    transform: translateY(-10px);
    border: 1px solid rgba(1,192,52,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* IMAGE */

.portfolio-image, .website-banner{
    position: relative;
    overflow: hidden;
}

.portfolio-image img, .website-banner img{
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

.portfolio-card:hover img, .website-card:hover img{
    transform: scale(1.06);
}

/* OVERLAY */

.portfolio-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay{
    opacity: 1;
}

/* BUTTON */
.view-btn, .site-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(  135deg,#01c034,#00a82f);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.view-btn:hover, .site-link:hover{
    transform: translateY(-3px);
    color: #ffffff;
}

/* CONTENT */

.portfolio-content,
.website-content,
.video-content{

    padding: 30px;
}

.portfolio-content h3,
.website-content h3,
.video-content h3{
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-content p,
.website-content p,
.video-content p{
    color: #9ca3af;
    line-height: 1.8;
}

/* =========================
    LOGO GRID
========================= */

.logo-grid{

    display: grid;
    grid-template-columns:
    repeat(4,1fr);

    gap: 30px;
}

.logo-card{

    height: 260px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    transition: 0.4s ease;
}

.logo-card img{

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;
}

.logo-card:hover{

    transform:
    translateY(-10px)
    rotate(-2deg);

    border:
    1px solid rgba(1,192,52,0.25);
}

/* =========================
    VIDEO
========================= */

.video-card video{

    width: 100%;

    display: block;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:991px){

    .portfolio-title{

        font-size: 54px;
    }

    .section-head h2{

        font-size: 42px;
    }

    .portfolio-grid,
    .website-grid,
    .video-grid,
    .logo-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:576px){

    .portfolio-hero{

        padding: 150px 0 90px;
    }

    .portfolio-title{

        font-size: 40px;

        letter-spacing: -1px;
    }

    .portfolio-text{

        font-size: 15px;
    }

    .section-head h2{

        font-size: 34px;
    }

    .portfolio-grid,
    .website-grid,
    .video-grid,
    .logo-grid{

        grid-template-columns:
        1fr;
    }

    .portfolio-content h3,
    .website-content h3,
    .video-content h3{

        font-size: 24px;
    }

}







/* =========================
        ABOUT HERO
========================= */

.about-hero{

    position: relative;
    padding: 80px 0 120px;
    background:linear-gradient(  180deg,  #022c08,  #023f1b);
    overflow: hidden;
}

/* GLOW */

.about-glow{
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #01c034;
    filter: blur(130px);
    opacity: 0.08;
}

.glow-1{
    top: -120px;
    left: -120px;
}

.glow-2{
    bottom: -120px;
    right: -120px;
}

/* BADGE */
.about-badge,
.section-mini-title{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color: #01c034;
    font-weight: 600;
    margin-bottom: 28px;
}

/* TITLE */

.about-title{
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

/* TEXT */

.about-text,
.story-text{
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.9;
}

/* BUTTONS */

.about-buttons,
.cta-buttons{
    display: flex;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* BUTTON */

.about-btn{
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.35s ease;
}

.primary-btn{
    background: linear-gradient(135deg,#01c034,#00a82f);
    color: #ffffff;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    background: rgba(255,255,255,0.04);
}

.about-btn:hover{
    transform: translateY(-4px);
    color: #ffffff;
}

/* IMAGE */

.about-image-wrapper{
    position: relative;
}

.about-main-image{
    width: 100%;
    border-radius: 35px;
    border:1px solid rgba(255,255,255,0.08);
}

/* FLOATING CARD */

.floating-about-card{

    position: absolute;

    padding: 22px;

    border-radius: 24px;

    background:
    rgba(255,255,255,0.06);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.35);
}

.card-1{

    top: 20px;
    left: -40px;
}

.card-2{

    bottom: 20px;
    right: -40px;
}

.floating-about-card h4{

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;
}

.floating-about-card p{

    color: #9ca3af;

    margin: 0;
}

/* =========================
        STORY
========================= */

.story-section, .stats-section, .about-cta{
    padding: 40px 0;
    background: #021303;
}
.process-section{
    padding: 120px 0;
    background: #050505;
}
.story-title{
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* =========================
        WHY US
========================= */

.why-us-section{
    padding: 60px 0;
    background: #0a0a0a;
}

.why-us-section .section-head{
    margin-bottom: 40px;
}

.why-us-section .section-head h2{
    color: #ffffff;
    font-size: 34px;
    font-weight: 600;
}

/* GRID */
.why-grid, .process-grid, .stats-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* CARD */

.why-card, .process-card, .stat-item{
    padding: 40px 30px;
    border-radius: 30px;
    background:
    rgba(255,255,255,0.04);
    border:
    1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

/* HOVER */
.why-card:hover, .process-card:hover, .stat-item:hover{
    transform:
    translateY(-10px);
    border: 1px solid rgba(1,192,52,0.25);
}

/* ICON */

.why-icon{
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background:
    rgba(1,192,52,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
}

/* TITLES */

.why-card h3,
.process-card h3{
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 18px;
}

/* TEXT */
.why-card p, .process-card p, .stat-item p{
    color: #9ca3af;
    line-height: 1.8;
}
.process-section .section-head h2{
    font-size: 34px;
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
}
/* PROCESS NUMBER */
.process-number{
    color: #01c034;
    font-size: 34px;
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
}

/* STATS */

.stat-item{
    text-align: center;
}

 .stat-item h2{
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* CTA */

.cta-box{

    padding: 80px 50px;
    border-radius: 40px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
}

.cta-box h2{
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
}

.cta-box p{

    color: #9ca3af;

    font-size: 18px;

    max-width: 650px;

    margin:
    auto auto 35px;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

    .about-title{

        font-size: 54px;
    }

    .story-title{

        font-size: 44px;
    }

    .section-head h2,
    .cta-box h2{

        font-size: 42px;
    }

    .why-grid,
    .process-grid,
    .stats-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .about-image-wrapper{

        margin-top: 60px;
    }

}

@media(max-width:576px){

    .about-hero{

        padding: 150px 0 90px;
    }

    .about-title{

        font-size: 40px;

        letter-spacing: -1px;
    }

    .story-title{

        font-size: 34px;
    }

    .section-head h2,
    .cta-box h2{

        font-size: 32px;
    }

    .why-grid,
    .process-grid,
    .stats-grid{

        grid-template-columns:
        1fr;
    }

    .floating-about-card{

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        margin-top: 20px;
    }

    .cta-box{

        padding: 60px 30px;
    }

}





/* =========================
        SERVICES HERO
========================= */

.services-hero{
    position: relative;
    padding: 60px 0 120px;
    background: linear-gradient(180deg,#043b21, #012206);
    overflow: hidden;
}

/* GLOW */

.services-glow{
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #01c034;
    filter: blur(130px);
    opacity: 0.08;
}

.glow-left{
    top: -120px;
    left: -120px;
}

.glow-right{
    bottom: -120px;
    right: -120px;
}

/* BADGE */
.services-badge{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #01c034;
    font-weight: 600;
    margin-bottom: 28px;
}

/* TITLE */

.services-title{
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

/* TEXT */

.services-text{

    color: #9ca3af;

    font-size: 18px;

    line-height: 1.9;

    max-width: 760px;

    margin: auto;
}

/* =========================
        STACK SECTION
========================= */

.services-stack{
    padding: 60px 0;
    background: #050505;
}

/* ROW */

.service-row{
    display: grid;
    grid-template-columns:
    repeat(2,1fr);
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

/* REVERSE */

.reverse-row .service-image{
    order: 2;
}

.reverse-row .service-content{
    order: 1;
}

/* IMAGE */

.service-image{
    position: relative;
}

.service-image img{
    width: 100%;
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.45s ease;
}

/* HOVER */

.service-image:hover img{
    transform: scale(1.03);
}

/* MINI TITLE */

.service-mini-title{
    display: inline-block;
    color: #01c034;
    font-weight: 600;
    margin-bottom: 22px;
}

/* CONTENT */

.service-content h2{

    color: #ffffff;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
}

.service-content p{

    color: #9ca3af;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 35px;
}

/* FEATURES */

.service-features{

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 40px;
}

.service-features span{

    padding: 12px 20px;

    border-radius: 50px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    color: #ffffff;

    font-size: 14px;

    transition: 0.3s ease;
}

/* HOVER */

.service-features span:hover{

    background:
    rgba(1,192,52,0.15);

    border:
    1px solid rgba(1,192,52,0.25);

    transform:
    translateY(-3px);
}

/* BUTTON */

.service-btn{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 34px;

    border-radius: 60px;

    text-decoration: none;

    font-weight: 700;

    background:
    linear-gradient(
        135deg,
        #01c034,
        #00a82f
    );

    color: #ffffff;

    transition: 0.35s ease;
}

/* HOVER */

.service-btn:hover{

    transform:
    translateY(-5px);

    color: #ffffff;

    box-shadow:
    0 18px 35px rgba(1,192,52,0.25);
}

/* =========================
        MARQUEE
========================= */

.services-marquee{

    background: #000000;

    padding: 35px 0;

    overflow: hidden;

    border-top:
    1px solid rgba(255,255,255,0.06);

    border-bottom:
    1px solid rgba(255,255,255,0.06);
}

/* TRACK */

.marquee-track{

    display: flex;

    gap: 80px;

    width: max-content;

    animation:
    marqueeMove 25s linear infinite;
}

.marquee-track span{

    color: #ffffff;

    font-size: 34px;

    font-weight: 900;

    letter-spacing: -1px;

    white-space: nowrap;
}

/* ANIMATION */

@keyframes marqueeMove{

    from{

        transform: translateX(0);
    }

    to{

        transform: translateX(-50%);
    }

}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

    .services-title{

        font-size: 54px;
    }

    .service-row{

        grid-template-columns:
        1fr;

        gap: 50px;
    }

    .reverse-row .service-image,
    .reverse-row .service-content{

        order: unset;
    }

    .service-content h2{

        font-size: 42px;
    }

}

@media(max-width:576px){

    .services-hero{

        padding: 150px 0 90px;
    }

    .services-title{

        font-size: 40px;

        letter-spacing: -1px;
    }

    .services-text{

        font-size: 15px;
    }

    .service-content h2{

        font-size: 34px;
    }

    .service-content p{

        font-size: 15px;
    }

    .marquee-track span{

        font-size: 24px;
    }

}







/* =========================
        CONTACT HERO
========================= */

.contact-hero{

    position: relative;

    padding: 60px 0 120px;

    background:
    linear-gradient(
        180deg,
        #022c08,
        #001602
    );

    overflow: hidden;
}

/* GLOW */

.contact-glow{

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: #01c034;

    filter: blur(130px);

    opacity: 0.08;
}

.glow-left{

    top: -120px;
    left: -120px;
}

.glow-right{

    bottom: -120px;
    right: -120px;
}

/* BADGE */

.contact-badge,
.section-mini-title{

    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    color: #01c034;

    font-weight: 600;

    margin-bottom: 28px;
}

/* TITLE */

.contact-title{

    color: #ffffff;

    font-size: 34px;

    font-weight: 600;

    line-height: 1.08;

    margin-bottom: 30px;
}

/* TEXT */

.contact-text{

    color: #9ca3af;

    font-size: 18px;

    line-height: 1.9;

    max-width: 760px;

    margin: auto;
}

/* =========================
        CONTACT SECTION
========================= */

.contact-section{

    padding: 80px 0;

    background: #050505;
}

/* WRAPPER */

.contact-wrapper{

    display: grid;

    grid-template-columns:
    1fr 1fr;

    gap: 50px;
}

/* INFO */

.contact-info{

    padding: 50px;

    border-radius: 35px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);
}

.contact-info h2{

    color: #ffffff;

    font-size: 36px;

    font-weight: 600;

    line-height: 1.1;

    margin-bottom: 28px;
}

.contact-info p{

    color: #9ca3af;

    line-height: 1.9;

    margin-bottom: 40px;
}

/* INFO BOX */

.info-box{

    display: flex;

    gap: 20px;

    margin-bottom: 30px;
}

/* ICON */

.info-icon{

    width: 70px;
    height: 70px;

    border-radius: 22px;

    background:
    rgba(1,192,52,0.12);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;
}

/* TEXT */

.info-box h4{

    color: #ffffff;

    font-size: 22px;

    margin-bottom: 8px;
}

.info-box span{

    color: #9ca3af;
}

/* =========================
        FORM
========================= */

.contact-form-box{

    padding: 50px;

    border-radius: 35px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);
}

/* GROUP */

.form-group{

    margin-bottom: 25px;
}

/* LABEL */

.form-group label{

    display: block;

    color: #ffffff;

    font-weight: 600;

    margin-bottom: 12px;
}

/* INPUT */

.form-group input,
.form-group select,
.form-group textarea{

    width: 100%;

    padding: 18px 22px;

    border-radius: 18px;

    border:
    1px solid rgba(255,255,255,0.08);

    background:
    rgba(255,255,255,0.04);

    color: #ffffff;

    outline: none;

    transition: 0.35s ease;
}

/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder{

    color: #6b7280;
}

/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border:
    1px solid rgba(1,192,52,0.35);

    box-shadow:
    0 0 0 4px rgba(1,192,52,0.08);
}

/* OPTION */

.form-group select option{

    background: #0a0a0a;

    color: #ffffff;
}

/* BUTTON */

.submit-btn{

    width: 100%;

    padding: 18px 24px;

    border: none;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #01c034,
        #00a82f
    );

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    transition: 0.35s ease;
}

/* HOVER */

.submit-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 18px 35px rgba(1,192,52,0.25);
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

    .contact-title{

        font-size: 54px;
    }

    .contact-wrapper{

        grid-template-columns:
        1fr;
    }

    .contact-info h2{

        font-size: 42px;
    }

}

@media(max-width:576px){

    .contact-hero{

        padding: 150px 0 90px;
    }

    .contact-title{

        font-size: 40px;

        letter-spacing: -1px;
    }

    .contact-text{

        font-size: 15px;
    }

    .contact-info,
    .contact-form-box{

        padding: 35px 25px;
    }

    .contact-info h2{

        font-size: 34px;
    }

}













/* =========================
        TUTORIAL HERO
========================= */

.tutorials-hero{

    position: relative;

    padding: 60px 0 120px;

    background:
    linear-gradient(
        180deg,
        #000000,
        #050505
    );

    overflow: hidden;
}

/* GLOW */

.tutorial-glow{

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: #01c034;

    filter: blur(130px);

    opacity: 0.08;
}

.glow-left{

    top: -120px;
    left: -120px;
}

.glow-right{

    bottom: -120px;
    right: -120px;
}

/* BADGE */

.tutorial-badge,
.section-mini-title{

    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    color: #01c034;

    font-weight: 600;

    margin-bottom: 28px;
}

/* TITLE */

.tutorial-title{

    color: #ffffff;

    font-size: 34px;

    font-weight: 600;

    line-height: 1.08;

    margin-bottom: 30px;
}

/* TEXT */

.tutorial-text{

    color: #9ca3af;

    font-size: 18px;

    line-height: 1.9;

    max-width: 760px;

    margin: auto;
}

/* =========================
        GENERAL SECTION
========================= */

.featured-video-section,
.youtube-section,
.local-video-section,
.tutorial-cta{

    padding: 60px 0;

    background: #001602;
}

/* =========================
        FEATURED VIDEO
========================= */

.featured-video-box{

    display: grid;

    grid-template-columns:
    repeat(2,1fr);

    gap: 70px;

    align-items: center;

    padding: 45px;

    border-radius: 40px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);
}

/* VIDEO */

.featured-video-wrapper iframe{

    width: 100%;

    height: 450px;

    border: none;

    border-radius: 30px;
}

/* CONTENT */

.featured-tag{

    display: inline-block;

    color: #01c034;

    font-weight: 700;

    margin-bottom: 22px;
}

.featured-video-content h2{

    color: #ffffff;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.1;

    margin-bottom: 28px;
}

.featured-video-content p{

    color: #9ca3af;

    line-height: 1.9;

    margin-bottom: 35px;
}

/* BUTTON */

.watch-btn{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 34px;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #01c034,
        #00a82f
    );

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: 0.35s ease;
}

/* HOVER */

.watch-btn:hover{

    transform:
    translateY(-5px);

    color: #ffffff;

    box-shadow:
    0 18px 35px rgba(1,192,52,0.25);
}

/* =========================
        SECTION HEAD
========================= */

.section-head{

    margin-bottom: 30px;
}

.section-head h2{

    color: #ffffff;

    font-size: 34px;

    font-weight: 600;

    letter-spacing: -1px;
}

/* =========================
        GRID
========================= */

.tutorial-grid{

    display: grid;

    grid-template-columns:
    repeat(2,1fr);

    gap: 35px;
}

/* CARD */

.tutorial-card{

    border-radius: 32px;

    overflow: hidden;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    transition: 0.4s ease;
}

/* HOVER */

.tutorial-card:hover{

    transform:
    translateY(-10px);

    border:
    1px solid rgba(1,192,52,0.25);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.4);
}

/* VIDEO */

.tutorial-video iframe{

    width: 100%;

    height: 320px;

    border: none;
}

/* LOCAL VIDEO */

.local-video-wrapper video{

    width: 100%;

    display: block;
}

/* CONTENT */

.tutorial-content{

    padding: 30px;
}

/* CATEGORY */

.tutorial-category{

    display: inline-block;

    color: #01c034;

    font-weight: 700;

    margin-bottom: 18px;
}

/* TITLE */

.tutorial-content h3{

    color: #ffffff;

    font-size: 30px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 18px;
}

/* TEXT */

.tutorial-content p{

    color: #9ca3af;

    line-height: 1.8;
}

/* =========================
        CTA
========================= */

.tutorial-cta-box{

    padding: 40px 50px;

    border-radius: 40px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);
}

.tutorial-cta-box h2{

    color: #ffffff;

    font-size: 34px;

    font-weight: 900;

    margin-bottom: 25px;
}

.tutorial-cta-box p{

    color: #9ca3af;

    max-width: 650px;

    margin:
    auto auto 35px;

    line-height: 1.9;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

    .tutorial-title{

        font-size: 54px;
    }

    .featured-video-box{

        grid-template-columns:
        1fr;
    }

    .tutorial-grid{

        grid-template-columns:
        1fr;
    }

    .featured-video-content h2{

        font-size: 42px;
    }

    .section-head h2,
    .tutorial-cta-box h2{

        font-size: 42px;
    }

}

@media(max-width:576px){

    .tutorials-hero{

        padding: 150px 0 90px;
    }

    .tutorial-title{

        font-size: 40px;

        letter-spacing: -1px;
    }

    .tutorial-text{

        font-size: 15px;
    }

    .featured-video-wrapper iframe{

        height: 250px;
    }

    .tutorial-video iframe{

        height: 240px;
    }

    .featured-video-content h2{

        font-size: 34px;
    }

    .section-head h2,
    .tutorial-cta-box h2{

        font-size: 32px;
    }

    .tutorial-content h3{

        font-size: 24px;
    }

    .tutorial-cta-box{

        padding: 60px 30px;
    }

}

/* =========================
        PREMIUM FOOTER
========================= */

.premium-footer{

    position: relative;

    overflow: hidden;

    padding-top: 0;

    background: #000;
}

/* BACKGROUND IMAGE */

.premium-footer::before{

    content: '';

    position: absolute;

    inset: 0;

    background:
    url('../images/footer-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: .28;

    transform: scale(1.05);

    z-index: 1;
}

/* DARK OVERLAY */

.premium-footer::after{

    content: '';

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        rgba(0,0,0,.48),
        rgba(0,0,0,.20)
    );

    z-index: 2;
}

/* CONTENT */

.premium-footer .container{

    position: relative;

    z-index: 3;
}

/* =========================
        GREEN GLOW
========================= */

.footer-glow{

    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background: #01c034;

    filter: blur(250px);

    opacity: .08;

    right: -150px;
    bottom: -150px;

    z-index: 2;
}

/* =========================
        CTA SECTION
========================= */

.footer-cta{

    position: relative;

    margin-bottom: 90px;

    z-index: 3;
}

.footer-cta-box{

    padding: 70px 50px;

    border-radius: 40px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    border:
    1px solid rgba(255,255,255,.08);

    text-align: center;

    box-shadow:
    0 20px 60px rgba(0,0,0,.30);
}

.footer-cta-box h2{

    color: #fff;

    font-size: 38px;

    font-weight: 700;

    margin-bottom: 20px;

    letter-spacing: -2px;
}

.footer-cta-box p{

    color: #d1d5db;

    max-width: 700px;

    margin: auto auto 35px;

    line-height: 1.9;
}

.footer-cta-btn{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 40px;

    border-radius: 60px;

    text-decoration: none;

    color: #fff;

    font-weight: 700;

    background:
    linear-gradient(
        135deg,
        #01c034,
        #00a82f
    );

    transition: .4s ease;
}

.footer-cta-btn:hover{

    color: #fff;

    transform: translateY(-5px);

    box-shadow:
    0 20px 40px rgba(1,192,52,.25);
}

/* =========================
        FOOTER BODY
========================= */

.footer-body{

    padding: 60px;

    border-radius: 35px;

    background:
    rgba(255,255,255,.04);

    backdrop-filter: blur(18px);

    border:
    1px solid rgba(255,255,255,.08);

    margin-bottom: 40px;
}

/* =========================
        LOGO
========================= */

.footer-logo{

    display: inline-block;

    text-decoration: none;

    color: #fff;

    font-size: 42px;

    font-weight: 900;

    margin-bottom: 25px;
}

.footer-logo span{

    color: #01c034;
}

/* TEXT */

.footer-text{

    color: #d1d5db;

    line-height: 1.9;

    margin-bottom: 30px;
}

/* TITLES */

.footer-title{

    color: #fff;

    font-size: 22px;

    font-weight: 800;

    margin-bottom: 25px;
}

/* LINKS */

.footer-links{

    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li{

    margin-bottom: 14px;
}

.footer-links a{

    text-decoration: none;

    color: #cfcfcf;

    transition: .35s ease;
}

.footer-links a:hover{

    color: #01c034;

    padding-left: 6px;
}

/* SOCIAL */

.footer-socials{

    display: flex;

    gap: 12px;
}

.footer-socials a{

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #fff;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    transition: .4s ease;
}

.footer-socials a:hover{

    background: #01c034;

    transform: translateY(-5px);
}

/* CONTACT */

.footer-contact p{

    color: #d1d5db;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;
}

.footer-contact i{

    color: #01c034;
}

/* =========================
        FOOTER BOTTOM
========================= */

.footer-bottom{

    padding: 30px 0;

    border-top:
    1px solid rgba(255,255,255,.08);

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;
}

.footer-bottom p{

    margin: 0;

    color: #9ca3af;
}

.footer-credit span{

    color: #01c034;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

    .footer-cta-box h2{

        font-size: 42px;
    }

    .footer-body{

        padding: 40px;
    }

}

@media(max-width:576px){

    .footer-cta-box{

        padding: 50px 25px;
    }

    .footer-cta-box h2{

        font-size: 32px;
    }

    .footer-body{

        padding: 30px;
    }

    .footer-logo{

        font-size: 32px;
    }

    .footer-bottom{

        justify-content: center;

        text-align: center;
    }

}