 /* HEADER */
/*==========================
HEADER
===========================*/

.header{

    background:rgba(15,23,42,.92);

    backdrop-filter:blur(18px);

    transition:.4s;

    padding:10px 0;

    box-shadow:0 10px 35px rgba(0,0,0,.25);

}

/* Container */

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Logo */

.logo img{

    height:70px;

    transition:.4s;

}

.logo img:hover{

    transform:scale(1.06);

}

/* Navigation */

.navmenu{

    margin-left:40px;

}

.navmenu ul{

    display:flex;

    align-items:center;

    gap:28px;

    list-style:none;

    margin:0;

    padding:0;

}

.navmenu a{

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    position:relative;

    transition:.35s;

}

.navmenu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#2DBE60;

    transition:.35s;

}

.navmenu a:hover,

.navmenu .active{

    color:#2DBE60;

}

.navmenu a:hover::after,

.navmenu .active::after{

    width:100%;

}

/* Right */

.header-right{

    display:flex;

    align-items:center;

    gap:20px;

}

/* Social */

.header-social{

    display:flex;

    gap:15px;

    /* margin-top:30px; */

}

.header-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.header-social a:hover{

    background:#2DBE60;

    transform:translateY(-5px);

}

/* Button */

.quote-btn{

    background:linear-gradient(135deg,#2DBE60,#1fa74d);

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.quote-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(45,190,96,.4);

    color:#fff;

}

/* Sticky Scroll */

.scrolled .header{

    padding:6px 0;

    background:#0F172A;

}

.scrolled .logo img{

    height:60px;

}

/* Mobile */

@media(max-width:991px){

.navmenu{

display:none;

}

.header-right{

display:none;

}

.logo img{

height:60px;

}

}

/*========================
ABOUT
========================*/

.about{

    background:#0F172A;

    padding:100px 0;

    position:relative;

    overflow:hidden;

}

.about::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#2DBE60;

    filter:blur(170px);

    opacity:.12;

    top:-100px;

    left:-120px;

}

.about::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#D4A017;

    filter:blur(170px);

    opacity:.08;

    right:-120px;

    bottom:-100px;

}

/* IMAGE */

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}


/* TEXT */

.about-tag{

    color:#2DBE60;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.about-title{

    color:#fff;

    font-size:46px;

    font-weight:800;

    margin:18px 0;

    line-height:1.3;

}

.about-title span{

    color:#2DBE60;

}

.about-text{

    color:#cbd5e1;

    line-height:30px;

    margin-bottom:20px;

}

/* FEATURES */

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:35px 0;

}

.about-features div{

    color:#fff;

    font-weight:600;

}

.about-features i{

    color:#2DBE60;

    margin-right:8px;

}

/* COUNTER */

.about-counter{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.counter-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:20px;

    flex:1;

    text-align:center;

}

.counter-box h3{

    color:#2DBE60;

    font-size:34px;

    margin-bottom:5px;

}

.counter-box span{

    color:#ddd;

}

/*==========================
TEAM SECTION
==========================*/

.team{

    background:#0F172A;

    padding:100px 0;

    position:relative;

    overflow:hidden;

}

.team::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#2DBE60;

    filter:blur(170px);

    opacity:.10;

    top:-120px;

    left:-120px;

}

.team::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#D4A017;

    filter:blur(170px);

    opacity:.08;

    right:-120px;

    bottom:-120px;

}

/* Card */

.team-member{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    backdrop-filter:blur(15px);

}

.team-member:hover{

    transform:translateY(-10px);

    border-color:#2DBE60;

    box-shadow:0 20px 45px rgba(45,190,96,.20);

}

/* Image */

.member-img{

    position:relative;

    overflow:hidden;

}

.member-img img{

    width:100%;

    transition:.5s;

}

.team-member:hover img{

    transform:scale(1.08);

}

/* Social */

.social{

    position:absolute;

    left:50%;

    bottom:20px;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    opacity:0;

    transition:.4s;

}

.team-member:hover .social{

    opacity:1;

}

.social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#2DBE60;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.social a:hover{

    background:#D4A017;

}

/* Info */

.member-info{

    padding:25px;

    text-align:center;

}

.member-info h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

}

.member-info span{

    color:#2DBE60;

    font-size:15px;

    font-weight:600;

}


/*==========================
BLOG SECTION
==========================*/

.blog-posts{

    background:#0F172A;

    padding:100px 0;

    position:relative;

    overflow:hidden;

}

.blog-posts::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#2DBE60;

    filter:blur(170px);

    opacity:.12;

    top:-120px;

    left:-120px;

}

.blog-posts::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#D4A017;

    filter:blur(170px);

    opacity:.08;

    right:-120px;

    bottom:-120px;

}

/* Card */

.blog-posts article{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    backdrop-filter:blur(15px);

}

.blog-posts article:hover{

    transform:translateY(-10px);

    border-color:#2DBE60;

    box-shadow:0 20px 45px rgba(45,190,96,.20);

}

/* Image */

.post-img img{

    width:100%;

    transition:.5s;

}

.blog-posts article:hover img{

    transform:scale(1.08);

}

/* Date */

.post-date{

    position:absolute;

    top:18px;

    left:18px;

    background:#2DBE60;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

/* Content */

.post-content{

    padding:25px;

}

.post-title{

    color:#fff;

    font-size:23px;

    font-weight:700;

    line-height:1.5;

}

.post-title:hover{

    color:#2DBE60;

}

/* Meta */

.meta{

    margin:15px 0;

    color:#9CA3AF;

    font-size:14px;

}

.meta i{

    color:#2DBE60;

    margin-right:6px;

}

/* Paragraph */

.post-content p{

    color:#CBD5E1;

    line-height:28px;

}

/* Read More */

.readmore{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2DBE60;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.readmore:hover{

    color:#D4A017;

}

.readmore i{

    transition:.3s;

}

.readmore:hover i{

    transform:translateX(8px);

}

.blog-posts hr{

    border-color:rgba(255,255,255,.08);

}


.clients{

    background:linear-gradient(135deg,#0F172A,#16213E);

    padding:100px 0;

    position:relative;

    overflow:hidden;

}

.clients::before{

    content:'';

    position:absolute;

    width:400px;

    height:400px;

    background:#2DBE60;

    filter:blur(180px);

    opacity:.12;

    top:-150px;

    left:-120px;

}

.clients::after{

    content:'';

    position:absolute;

    width:350px;

    height:350px;

    background:#D4A017;

    filter:blur(180px);

    opacity:.08;

    right:-100px;

    bottom:-120px;

}

.section-title{

    position:relative;

    z-index:2;

}

.section-title span{

    color:#2DBE60;

    font-size:15px;

    letter-spacing:3px;

    font-weight:700;

}

.section-title h2{

    color:#fff;

    font-size:42px;

    font-weight:800;

    margin:15px 0;

}

.section-title p{

    color:#d1d5db;

    max-width:700px;

    margin:auto;

    line-height:30px;

}

.client-box{

    background:#1B263B;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    height:160px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s;

    backdrop-filter:blur(10px);

}

.client-box img{

    max-width:140px;

    filter:grayscale(100%) brightness(1.2);

    transition:.4s;

}

.client-box:hover{

    transform:translateY(-10px);

    border-color:#2DBE60;

    box-shadow:0 15px 40px rgba(45,190,96,.25);

}

.client-box:hover img{

    filter:none;

    transform:scale(1.08);

}

/*==============================
 SERVICES SECTION
==============================*/

.services{

    background:linear-gradient(135deg,#0F172A,#111827);

    padding:100px 0;

    position:relative;

    overflow:hidden;

}

.services::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#2DBE60;

    filter:blur(170px);

    opacity:.15;

    top:-120px;

    left:-100px;

}

.services::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#D4A017;

    filter:blur(170px);

    opacity:.12;

    right:-100px;

    bottom:-100px;

}

/*==============================
 HEADING
==============================*/

.section-title{

    margin-bottom:70px;

}

.sub-title{

    color:#2DBE60;

    font-weight:700;

    letter-spacing:3px;

    font-size:14px;

    text-transform:uppercase;

}

.section-title h2{

    color:#fff;

    font-size:42px;

    font-weight:800;

    margin:15px 0;

}

.section-title p{

    color:#bfc5d2;

    max-width:700px;

    margin:auto;

    line-height:30px;

}

/*==============================
 SERVICE CARD
==============================*/

.service-item{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

    backdrop-filter:blur(14px);

    height:100%;

}

.service-item:hover{

    transform:translateY(-12px);

    border-color:#2DBE60;

    box-shadow:0 20px 45px rgba(45,190,96,.20);

}

/*==============================
 ICON
==============================*/

.service-item .icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#2DBE60,#17a34a);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(45,190,96,.35);

}

.service-item .icon svg{

    display:none;

}

.service-item .icon i{

    font-size:38px;

    color:#fff;

}

/*==============================
 TEXT
==============================*/

.service-item h3{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

}

.service-item p{

    color:#cbd5e1;

    line-height:28px;

    font-size:15px;

}

.service-item a{

    text-decoration:none;

}

/*==============================
 HOVER
==============================*/

.service-item:hover h3{

    color:#2DBE60;

}

.service-item:hover .icon{

    transform:rotate(10deg) scale(1.08);

    transition:.4s;

}

/*==========================
FOOTER
===========================*/

.footer{

    background:#08111F;

    padding:90px 0 30px;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#2DBE60;

    filter:blur(170px);

    opacity:.10;

    left:-150px;

    top:-100px;

}

.footer::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#D4A017;

    filter:blur(170px);

    opacity:.08;

    right:-120px;

    bottom:-120px;

}

/* Logo */

.footer-logo img{

    height:75px;

}

/* Text */

.footer-text{

    color:#bfc5d2;

    line-height:30px;

}

/* Headings */

.footer h4{

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

    font-weight:700;

}

/* Links */

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:14px;

    color:#cbd5e1;

}

.footer ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#2DBE60;

    padding-left:8px;

}

/* Contact */

.footer p{

    color:#cbd5e1;

    margin-bottom:15px;

}

.footer p i{

    color:#2DBE60;

    margin-right:8px;

}

/* Social */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#2DBE60;

    transform:translateY(-5px);

}

/* Button */

.footer-btn{

    display:inline-block;

    margin-top:15px;

    background:#2DBE60;

    color:#fff;

    padding:13px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.footer-btn:hover{

    background:#24a854;

    color:#fff;

    transform:translateY(-3px);

}

/* Copyright */

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:50px 0 25px;

}

.copyright{

    color:#9CA3AF;

    text-align:center;

    font-size:15px;

}

.copyright strong{

    color:#2DBE60;

}