*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#fff;
    font-family: "Manrope", sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    padding:0;
    margin:0;
    list-style:none;
}

/* =========================
    HEADER
==========================*/

.main-header{
    padding:28px 0;
    position:relative;
    z-index:100;
}

        .navbar-brand{
            display:flex;
            align-items:center;
            gap:14px;
            color:#fff;
            font-size:20px;
            font-weight:600;
        }

        .logo-circle{
            width:42px;
            height:42px;
            border-radius:50%;
            background:#5b6f55;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#fff;
            font-size:20px;
        }

        .navbar-nav{
            gap:42px;
        }

        .navbar-nav .nav-link{
            color:#05070d;
            font-size:15px;
            font-weight:400;
            padding:0 !important;
            transition:0.3s;
        }

        .navbar-nav .nav-link:hover{
            color:#1ca45d;
        }

        .book-btn{
            width: 120px;
    height: 47px;
    border-radius: 30px 0px;
    background: #ffc819;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s;
    margin-left: 10px;
        }

        .book-btn:hover{
            background:#e4af04;
            color:#fff;
        }

        /* =========================
            HERO SECTION
        ==========================*/

        .hero-wrapper{
            position:relative;
            padding-bottom:60px;
        }

        .hero-box{
    position:relative;
    border-radius:36px;
    overflow:hidden;
    height:92vh;
    width:100%;
    background:#ccc;
}

       .hero-box > img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
}

        /* Left Grey Strip */
        .left-strip{
            position:absolute;
            top:0;
            left:0;
            width:82px;
            height:100%;
            background:#d9d9d9;
            z-index:2;
        }

        /* Right Grey Strip */
        .right-strip{
            position:absolute;
            top:0;
            right:0;
            width:110px;
            height:100%;
            background:#d9d9d9;
            z-index:2;
        }

        /* Hero Heading */
        .hero-content{
            position:absolute;
            top:70px;
            left:95px;
            z-index:10;
        }

        .hero-content h1{
                color: #E0E0E0;
    font-size: 73px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -4px;
    max-width: 900px;
        }

        /* Bottom Left Card */
        .bottom-left-box{
            position:absolute;
            left:50px;
            bottom:58px;
            z-index:20;
            display:flex;
            flex-direction:column;
            gap:20px;
        }

        .small-image{
            width:230px;
            height:150px;
            border-radius:22px;
            overflow:hidden;
        }

        .small-image img{
            width:100%;
            height:100%;
            object-fit:cover;
        }

        .bottom-left-box p{
            max-width:540px;
            color:#f1f1f1;
            font-size:17px;
            line-height:1.7;
            font-weight:300;
        }

        /* Featured Card */

        .featured-card{
            position:absolute;
            right:48px;
            bottom:58px;
            width:420px;
            background:#06080e;
            border-radius:28px;
            padding:22px 28px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            z-index:20;
        }

        .featured-left{
            display:flex;
            align-items:center;
            gap:18px;
        }

        .featured-image{
            width:92px;
            height:92px;
            border-radius:18px;
            overflow:hidden;
            flex-shrink:0;
        }

        .featured-image img{
            width:100%;
            height:100%;
            object-fit:cover;
        }

        .featured-text span{
            color:#8e8e8e;
            font-size:15px;
            display:block;
            margin-bottom:8px;
        }

        .featured-text h4{
            color:#E0E0E0;
            font-size:18px;
            font-weight:400;
            margin:0;
            line-height:1.2;
        }

        .arrow-btn{
            width:62px;
            height:62px;
            border-radius:50%;
            border:1px solid rgba(255,255,255,0.4);
            display:flex;
            align-items:center;
            justify-content:center;
            color:#fff;
            font-size:28px;
        }

        /* =========================
            RESPONSIVE
        ==========================*/

        @media(max-width:1400px){

            .hero-content h1{
                font-size:78px;
                max-width:760px;
            }

        }

        @media(max-width:1199px){

            .navbar-nav{
                gap:24px;
            }

            .hero-box{
                height:700px;
            }

            .hero-content h1{
                font-size:66px;
                max-width:650px;
            }

            .featured-card{
                width:360px;
            }

            .featured-text h4{
                font-size:22px;
            }

        }

        @media(max-width:991px){

            .navbar-collapse{
                background:#f1f1f1;
                padding:25px;
                margin-top:20px;
                border-radius:18px;
            }

            .navbar-nav{
                gap:20px;
            }

            .hero-box{
                height:auto;
                min-height:900px;
            }

            .hero-content{
                left:40px;
                top:60px;
            }

            .hero-content h1{
                font-size:54px;
                max-width:500px;
            }

            .bottom-left-box{
                left:40px;
                bottom:240px;
            }

            .featured-card{
                left:40px;
                right:auto;
                bottom:40px;
            }

            .left-strip{
                width:45px;
            }

            .right-strip{
                width:45px;
            }

        }

        @media(max-width:768px){

            .hero-box{
    height:100vh;
}

.hero-box > img{
    object-position:center center;
}

            .hero-content h1{
                font-size:42px;
                line-height:1.05;
                letter-spacing:-2px;
            }

            .bottom-left-box{
                left:28px;
                right:28px;
            }

            .small-image{
                width:180px;
                height:120px;
            }

            .bottom-left-box p{
                font-size:15px;
                max-width:100%;
            }

            .featured-card{
                width:auto;
                left:28px;
                right:28px;
                padding:18px;
            }

            .featured-image{
                width:70px;
                height:70px;
            }

            .featured-text h4{
                font-size:18px;
            }

            .arrow-btn{
                width:52px;
                height:52px;
                font-size:22px;
            }

        }

        @media(max-width:480px){

            .hero-content h1{
                font-size:34px;
            }

            .featured-card{
                flex-direction:column;
                align-items:flex-start;
                gap:20px;
            }

            .arrow-btn{
                align-self:flex-end;
            }

        }

    /* =========================
        SECTION 02
    ==========================*/

    .intro-section{
        background:#F0F6FF;
        padding:0;
        overflow:hidden;
    }

    .intro-wrapper{
        border-top:1px solid rgba(255,255,255,0.05);
        border-bottom:1px solid rgba(255,255,255,0.05);
    }

    /* =========================
        TOP AREA
    ==========================*/

    .intro-top {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    padding: 70px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

    .section-count{
        color:#5d7258;
        font-size:18px;
        font-weight:500;
        display:block;
        margin-bottom:14px;
    }

    .intro-left h6,
    .feature-left h6{
        color:#d4d4d4;
        font-size:18px;
        font-weight:600;
        letter-spacing:0.5px;
        margin-bottom:60px;
    }

    .intro-image{
        width:350px;
        height:250px;
        border-radius:18px;
        overflow:hidden;
    }

    .intro-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:1.2s ease;
    }

    .intro-image:hover img{
        transform:scale(1.08);
    }

    /* =========================
        RIGHT CONTENT
    ==========================*/

    .intro-right h2{
        color:#4487f4;
        font-size:3.5rem;
        font-weight:300;
        line-height:1.08; 
        max-width:980px;
        margin-bottom:55px;
    }

    .intro-right h2 span{
        color:#b9cc8b;
    }
    .intro-right p{
        color: #474747;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    }
    .intro-bottom-content{
        display:flex;
        justify-content:space-between;
        align-items:flex-end;
        gap:50px;
    }

    .intro-bottom-content p{
            max-width: 560px;
    color: #888888;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    }

    .about-btn{
            min-width: 160px;
    height: 60px;
        border-radius:30px 0px;
            background:#ffc819;
        border:1px solid rgba(255,255,255,0.5);
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        font-size:12px;
        font-weight:600;
        transition:0.3s; 
    }

    .about-btn:hover{
        background:#e4af04;
            color:#fff;
    }

    /* =========================
        FEATURES
    ==========================*/

    .intro-features{
        display:grid;
        grid-template-columns:280px repeat(3, 1fr);
        gap:70px;
        padding-top:55px;
    }

    .feature-box .star{
        color:#7f916d;
        font-size:52px;
        line-height:1;
        margin-bottom:18px;
    }

    .feature-box h4{
        color:#000;
        font-size:1.5rem;
        font-weight:400;
        margin-bottom:22px;
        line-height:1.3;
    }

    .feature-box p{
        color:#474747;
        font-size:1rem;
        line-height:1.8;
        font-weight:300;
    }

    /* =========================
        ANIMATION
    ==========================*/

    .fade-up{
        opacity:0;
        transform:translateY(70px);
        animation:fadeUp 1s ease forwards;
    }

    .delay-1{
        animation-delay:0.2s;
    }

    .delay-2{
        animation-delay:0.4s;
    }

    .delay-3{
        animation-delay:0.6s;
    }

    .delay-4{
        animation-delay:0.8s;
    }

    .zoom-in{
        opacity:0;
        transform:scale(0.9);
        animation:zoomIn 1.2s ease forwards;
        animation-delay:0.3s;
    }

    @keyframes fadeUp{

        from{
            opacity:0;
            transform:translateY(70px);
        }

        to{
            opacity:1;
            transform:translateY(0);
        }

    }

    @keyframes zoomIn{

        from{
            opacity:0;
            transform:scale(0.9);
        }

        to{
            opacity:1;
            transform:scale(1);
        }

    }

    /* =========================
        RESPONSIVE
    ==========================*/

    @media(max-width:1400px){

        .intro-right h2{
            font-size:70px;
        }

    }

    @media(max-width:1199px){

        .intro-top{
            grid-template-columns:1fr;
            gap:60px;
        }

        .intro-right h2{
            font-size:58px;
        }

        .intro-features{
            grid-template-columns:1fr 1fr;
        }

    }

    @media(max-width:991px){

        .intro-right h2{
            font-size:46px;
             
        }

        .intro-bottom-content{
            flex-direction:column;
            align-items:flex-start;
        }

        .intro-bottom-content p{
            font-size:18px;
        }

        .feature-box h4{
            font-size:28px;
        }

        .feature-box p{
            font-size:18px;
        }

    }

    @media(max-width:768px){

        .intro-section{
            padding:70px 0 90px;
        }

        .intro-image{
            width:100%;
            height:220px;
        }

        .intro-right h2{
            font-size:36px;
            line-height:1.2;
        }

        .intro-features{
            grid-template-columns:1fr;
            gap:50px;
        }

    }

    @media(max-width:480px){

        .intro-right h2{
            font-size:30px;
        }

        .intro-bottom-content p,
        .feature-box p{
            font-size:16px;
        }

        .feature-box h4{
            font-size:24px;
        }

    }
 /* =========================
        SECTION 03
    ==========================*/

    .services-section{
        background:#fff;
        padding:30px 0;
        overflow:hidden;
    }

    /* =========================
        TOP
    ==========================*/

    .services-top{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        margin-bottom:45px;
    }

    .service-count{
        color:#66725e;
        font-size:18px;
        font-weight:500;
        display:block;
        margin-bottom:22px;
    }

    .services-top h2{
        color:#4487f4;
        font-size:3.5rem;
        font-weight:300;
        line-height:1.08; 
        margin:0;
    }

    /* FILTER BUTTONS */

    .service-filter{
        display:flex;
        gap:14px;
        margin-top:10px;
    }

    .service-filter button{
        width:92px;
        height:50px;
        border-radius:50px;
        border:1px solid rgba(255,255,255,0.45);
        background:transparent;
        color:#fff;
        font-size:16px;
        font-weight:400;
        transition:0.3s;
    }

    .service-filter button:hover,
    .service-filter button.active{
        background:#fff;
        color:#000;
    }

    /* =========================
        GRID
    ==========================*/

    .services-grid{
        display:grid;
        grid-template-columns:1.05fr 1fr;
        gap:22px;
    }

    /* =========================
        LARGE CARD
    ==========================*/

    .service-large-card{
        position:relative;
        height:820px;
        border-radius:32px;
        overflow:hidden;
        cursor:pointer;
    }

    .service-large-card img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:1s ease;
    }

    .service-large-card:hover img{
        transform:scale(1.06);
    }

    .large-overlay{
        position:absolute;
        inset:0;
        padding:38px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
        background:linear-gradient(
            to top,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.05)
        );
    }

    .arrow-circle{
        width:64px;
        height:64px;
        border-radius:50%;
        background:#05070d;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:28px;
        margin-left:auto;
    }

    .large-content span{
        color:#cfcfcf;
        font-size:15px;
        font-weight:500;
        display:block;
        margin-bottom:18px;
    }

    .large-content h3{
        color:#fff;
        font-size:48px;
        font-weight:400;
        line-height:1.2;
        margin:0;
    }

    /* =========================
        RIGHT WRAP
    ==========================*/

    .service-right-wrap{
        display:flex;
        flex-direction:column;
        gap:22px;
    }

    /* SMALL CARD */

    .service-small-card{
        position:relative;
        height:290px;
        border-radius:32px;
        overflow:hidden;
    }

    .service-small-card img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:1s ease;
    }

    .service-small-card:hover img{
        transform:scale(1.05);
    }

    .small-overlay{
        position:absolute;
        inset:0;
        background:linear-gradient(
            to top,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.05)
        );
        display:flex;
        align-items:flex-end;
        padding:32px;
    }

    .small-overlay h4{
        color:#f3f3f3;
        font-size:44px;
        font-weight:300;
        margin:0;
         
    }

    /* =========================
        EXPLORE CARD
    ==========================*/

    .explore-card{
        height:508px;
        border-radius:32px;
        overflow:hidden;
        background:#05070d;
        display:grid;
        grid-template-columns:1fr 280px;
    }

    .explore-left{
        padding:48px 40px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
    }

    .explore-left h3{
        color:#f1f1f1;
        font-size:66px;
        line-height:1.08;
        font-weight:300;
         
        margin:0;
    }

    .explore-left a{
        color:#fff;
        font-size:15px;
        font-weight:600;
        letter-spacing:0.6px;
    }

    .explore-image{
        position:relative;
        overflow:hidden;
    }

    .explore-image::before{
        content:'';
        position:absolute;
        inset:0;
        background:linear-gradient(
            to right,
            #05070d,
            rgba(5,7,13,0.1)
        );
        z-index:2;
    }

    .explore-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:1s ease;
    }

    .explore-card:hover .explore-image img{
        transform:scale(1.06);
    }

    /* =========================
        ANIMATION
    ==========================*/

    .fade-up{
        opacity:0;
        transform:translateY(60px);
        animation:fadeUp 1s ease forwards;
    }

    .fade-left{
        opacity:0;
        transform:translateX(-80px);
        animation:fadeLeft 1.1s ease forwards;
    }

    .fade-right{
        opacity:0;
        transform:translateX(80px);
        animation:fadeRight 1.1s ease forwards;
    }

    .delay-1{
        animation-delay:0.2s;
    }

    .delay-2{
        animation-delay:0.4s;
    }

    @keyframes fadeUp{

        from{
            opacity:0;
            transform:translateY(60px);
        }

        to{
            opacity:1;
            transform:translateY(0);
        }

    }

    @keyframes fadeLeft{

        from{
            opacity:0;
            transform:translateX(-80px);
        }

        to{
            opacity:1;
            transform:translateX(0);
        }

    }

    @keyframes fadeRight{

        from{
            opacity:0;
            transform:translateX(80px);
        }

        to{
            opacity:1;
            transform:translateX(0);
        }

    }

    /* =========================
        RESPONSIVE
    ==========================*/

    @media(max-width:1400px){

        .services-top h2{
            font-size:70px;
        }

        .explore-left h3{
            font-size:54px;
        }

    }

    @media(max-width:1199px){

        .services-grid{
            grid-template-columns:1fr;
        }

        .service-large-card{
            height:700px;
        }

        .services-top{
            flex-direction:column;
            gap:30px;
        }

    }

    @media(max-width:991px){

        .services-top h2{
            font-size:54px;
            
        }

        .large-content h3{
            font-size:38px;
        }

        .small-overlay h4{
            font-size:34px;
        }

        .explore-left h3{
            font-size:46px;
        }

    }

    @media(max-width:768px){

        .services-section{
            padding:20px 0 70px;
        }

        .services-top h2{
            font-size:40px;
            line-height:1.2;
        }

        .service-filter{
            flex-wrap:wrap;
        }

        .service-large-card{
            height:520px;
        }

        .service-small-card{
            height:240px;
        }

        .explore-card{
            grid-template-columns:1fr;
            height:auto;
        }

        .explore-image{
            height:240px;
        }

        .explore-left{
            padding:35px 28px;
            gap:40px;
        }

        .explore-left h3{
            font-size:38px;
        }

        .large-content h3{
            font-size:30px;
        }

        .small-overlay h4{
            font-size:28px;
        }

    }

    @media(max-width:480px){

        .services-top h2{
            font-size:32px;
        }

        .service-large-card{
            height:420px;
        }

        .large-overlay{
            padding:24px;
        }

        .large-content h3{
            font-size:24px;
        }

        .explore-left h3{
            font-size:30px;
        }

    }










 /* =========================
        SECTION 04
    ==========================*/

    .portfolio-section{
        background:#F0F6FF;
        padding:40px 0 40px;
        overflow:hidden;
    }

    /* =========================
        TOP AREA
    ==========================*/

    .portfolio-top{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        margin-bottom:55px;
    }

    .portfolio-top h2{
        color:#4487f4;
        font-size:3.5rem;
        font-weight:300;
        line-height:1.03;
        
        margin:0;
    }

    .portfolio-btn{
        min-width:230px;
        height:64px;
        border-radius:60px;
        border:1px solid rgba(255,255,255,0.45);
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        font-size:15px;
        font-weight:600;
        margin-top:18px;
        transition:0.3s;
    }

    .portfolio-btn:hover{
        background:#fff;
        color:#000;
    }

    /* =========================
        GRID
    ==========================*/

    .portfolio-grid{
        display:grid;
        grid-template-columns:1fr 1fr 1fr;
        gap:26px;
        align-items:start;
    }

    /* =========================
        CARD
    ==========================*/

    .portfolio-card{
        position:relative;
        height:760px;
        border-radius:30px;
        overflow:hidden;
        cursor:pointer;
    }

    .middle-card{
        margin-top:60px;
    }

    .portfolio-card img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:1.1s ease;
    }

    .portfolio-card:hover img{
        transform:scale(1.06);
    }

    /* TAG */

    .portfolio-tag{
        position:absolute;
        top:18px;
        left:18px;
        z-index:5;
        min-width:88px;
        height:46px;
        border-radius:50px;
        background:#1d1f25;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:16px;
        font-weight:400;
    }

    /* OVERLAY */

    .portfolio-overlay{
        position:absolute;
        left:18px;
        right:18px;
        bottom:18px;
        background:#05070d;
        border-radius:24px;
        padding:30px 30px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .portfolio-info h4{
        color:#fff;
        font-size:1rem;
        font-weight:400;
        margin-bottom:10px;
        line-height:1.2;
    }

    .portfolio-info span{
        color:#a2a2a2;
        font-size:18px;
        font-weight:300;
    }

    .portfolio-arrow{
        color:#fff;
        font-size:34px;
        flex-shrink:0;
    }

    /* =========================
        ANIMATION
    ==========================*/

    .fade-up{
        opacity:0;
        transform:translateY(70px);
        animation:fadeUp 1s ease forwards;
    }

    .delay-1{
        animation-delay:0.2s;
    }

    .delay-2{
        animation-delay:0.4s;
    }

    .delay-3{
        animation-delay:0.6s;
    }

    @keyframes fadeUp{

        from{
            opacity:0;
            transform:translateY(70px);
        }

        to{
            opacity:1;
            transform:translateY(0);
        }

    }

    /* =========================
        RESPONSIVE
    ==========================*/

    @media(max-width:1400px){

        .portfolio-top h2{
            font-size:70px;
        }

    }

    @media(max-width:1199px){

        .portfolio-grid{
            grid-template-columns:1fr;
        }

        .middle-card{
            margin-top:0;
        }

        .portfolio-card{
            height:700px;
        }

    }

    @media(max-width:991px){

        .portfolio-top{
            flex-direction:column;
            gap:30px;
        }
        
        .services-top{
            flex-direction:column;
            gap:30px;
        }
        
        .team-top{
            flex-direction:column;
            gap:30px;
        }

        .portfolio-top h2{
            font-size:56px;
            letter-spacing:-2px;
        }

        .portfolio-info h4{
            font-size:28px;
        }

    }

    @media(max-width:768px){

        .portfolio-section{
            padding:20px 0 90px;
        }

        .portfolio-top h2{
            font-size:40px;
            line-height:1.15;
        }

        .portfolio-card{
            height:540px;
        }

        .portfolio-overlay{
            padding:24px;
        }

        .portfolio-info h4{
            font-size:24px;
        }

        .portfolio-info span{
            font-size:15px;
        }

    }

    @media(max-width:480px){

        .portfolio-top h2{
            font-size:32px;
        }

        .portfolio-card{
            height:440px;
        }

        .portfolio-overlay{
            left:12px;
            right:12px;
            bottom:12px;
            padding:18px;
            border-radius:18px;
        }

        .portfolio-info h4{
            font-size:20px;
        }

        .portfolio-arrow{
            font-size:24px;
        }

    }
    
    
    
    
    
    /* =========================
    SECTION 06 - AI SECTION
========================== */

.ai-section{
    /*background:#05070d;*/
    padding:30px 0 70px;
}

.ai-card{
    border:1px solid rgba(255,255,255,0.05);
    border-radius:28px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:420px;
    background:#06080e;
}

.ai-content{
   padding:55px 48px; 
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.ai-content h2{
    color:#f1f1f1;
    font-size:2.25rem;
    font-weight:300;
    line-height:1.1;
    margin-bottom:24px;
    letter-spacing:-2px;
}

.ai-content p{
    color:#d1d1d1;
    font-size:18px;
    line-height:1.9;
    font-weight:300; 
    margin-bottom:32px;
}

.ai-list{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:38px;
}

.ai-list li{
    color:#dcdcdc;
    font-size:18px;
    position:relative;
    padding-left:24px;
}

.ai-list li::before{
    content:'*';
    position:absolute;
    left:0;
    top:0;
    color:#7e946d;
}

.learn-btn{
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:0.5px;
}

.ai-image{
    position:relative;
    overflow:hidden;
}

.ai-image::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        #06080e,
        rgba(6,8,14,0.05)
    );
    z-index:2;
}

.ai-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
    STATS SECTION
========================== */

.stats-section{
    background:#F0F6FF;
    /*padding:0 0 80px;*/
    margin:30px 0;
}

.stats-wrapper{
    border-top:1px solid rgba(255,255,255,0.05);
    border-bottom:1px solid rgba(255,255,255,0.05);
    padding:60px 0;
    display:grid;
    grid-template-columns:220px 1fr;
    gap:40px;
}

.stats-title h6{
    color:#000;
    font-size:16px;
    font-weight:500;
    margin:0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-item h3{
    color:#000;
    font-size:72px;
    font-weight:300;
    margin-bottom:10px;
    letter-spacing:-2px;
}

.stat-item span{
    color:#8b8b8b;
    font-size:16px;
}

/* =========================
    TEAM SECTION
========================== */

.team-section{
    background:#F0F6FF;
    padding:20px 0 100px;
}

.team-top{
        display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 55px;
}

.team-top h2{
    color:#4487f4;
    font-size:3.5rem;
    font-weight:300; 
    margin:12px 0 0;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

.team-card{
    overflow:hidden;
}

.team-image{
    height:260px;
    border-radius:22px;
    overflow:hidden;
    margin-bottom:18px;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}

.team-card:hover img{
    transform:scale(1.06);
}

.team-card h4{
    color:#000;
    font-size:22px;
    font-weight:400;
    margin-bottom:6px;
}

.team-card span{
    color:#888888;
    font-size:15px;
}

/* =========================
    AWARDS SECTION
========================== */

.awards-section{
    background:#05070d;
    padding:30px 0 120px;
}

.awards-wrapper{
    border-top:1px solid rgba(255,255,255,0.05);
    padding-top:60px;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
}

.awards-left h2{
    color:#f1f1f1;
    font-size:62px;
    font-weight:300;
    line-height:1.15;
    letter-spacing:-2px;
    margin-top:18px;
}

.awards-right{
    display:flex;
    flex-direction:column;
}

.award-item{
    display:grid;
    grid-template-columns:100px 1.2fr 1fr 120px;
    align-items:center;
    gap:30px;
    padding:34px 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.award-item .year{
    color:#9a9a9a;
    font-size:18px;
}

.award-item h4{
    color:#fff;
    font-size:24px;
    font-weight:500;
    margin:0;
}

.award-item p{
    color:#7f7f7f;
    font-size:16px;
    margin:0;
}

.award-item img{
    width:100%;
    height:80px;
    border-radius:14px;
    object-fit:cover;
}

/* =========================
    FAQ SECTION
========================== */

.faq-section{
    background:#05070d;
    padding:20px 0 100px;
}

.faq-wrapper{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:80px;
}

.faq-left h2{
    color:#f1f1f1;
    font-size:62px;
    font-weight:300;
    margin-top:16px;
}

.faq-right{
    display:flex;
    flex-direction:column;
}

.faq-item{
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.faq-item button{
    width:100%;
    background:none;
    border:none;
    padding:28px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
    font-size:18px;
    text-align:left;
}

.faq-item span{
    font-size:18px;
    color:#a2a2a2;
}

/* =========================
    FOOTER
========================== */

.footer-section{
    background:#05070d;
    padding-bottom:10px;
}

.footer-wrapper{
    background:#121318;
    border-radius:32px;
    padding:70px 60px;
    display:grid;
    grid-template-columns:0.5fr 1fr;
    gap:80px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin-bottom:40px;
}

.footer-left h2{
    color:#f1f1f1;
    font-size:72px;
    font-weight:300;
    line-height:1.1;
    letter-spacing:-2px;
    max-width:620px;
    margin-bottom:70px;
}

.footer-left p{
    color:#7f7f7f;
    font-size:14px;
}

.footer-links-wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    align-items:flex-start;
    padding-top:70px;
}

.footer-links h5{
    color:#fff;
    font-size:26px;
    font-weight:400;
    margin-bottom:24px;
}
.footer-links p{
    color:#DEDEDE;
    font-size:14px; 
    margin-bottom:24px;
}
.footer-links ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links ul li a{
    color:#d3d3d3;
    font-size:18px;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#8ca17a;
}

.footer-links ul li a::before{
    content:'* ';
    color:#7f946f;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:40px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:14px;
}

/* =========================
    RESPONSIVE
========================== */

@media(max-width:1400px){

    .team-top h2,
    .portfolio-top h2,
    .footer-left h2{
        font-size:64px;
    }

    .ai-content h2{
        font-size:48px;
    }

}

@media(max-width:1199px){

    .team-grid{
        grid-template-columns:1fr 1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .awards-wrapper,
    .faq-wrapper,
    .footer-wrapper{
        grid-template-columns:1fr;
    }

    .ai-card{
        grid-template-columns:1fr;
    }

    .ai-image{
        height:380px;
    }

}

@media(max-width:991px){

    .team-top h2,
    .footer-left h2,
    .awards-left h2{
        font-size:52px;
    }

    .stat-item h3{
        font-size:52px;
    }

    .award-item{
        grid-template-columns:1fr;
        gap:18px;
    }

    .award-item img{
        width:180px;
    }

}

@media(max-width:768px){

    .team-grid,
    .stats-grid,
    .footer-links-wrap{
        grid-template-columns:1fr;
    }

    .stats-wrapper,
    .faq-wrapper{
        grid-template-columns:1fr;
    }

    .team-top h2,
    .footer-left h2,
    .awards-left h2,
    .faq-left h2{
        font-size:38px;
        line-height:1.2;
    }

    .ai-content{
        padding:40px 28px;
    }

    .ai-content h2{
        font-size:36px;
    }

    .footer-wrapper{
        padding:50px 30px;
    }

    .footer-links-wrap{
        padding-top:0;
    }

}

@media(max-width:480px){

    .team-top h2,
    .footer-left h2,
    .awards-left h2,
    .faq-left h2{
        font-size:30px;
    }

    .stat-item h3{
        font-size:42px;
    }

    .ai-content h2{
        font-size:30px;
    }

    .team-image{
        height:220px;
    }

}
.nav-item.active a {
    color: #1ca45d; 
    border-bottom: 1px solid #1ca45d;
}
.blue-h1 {
    color: #4487f4;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 2rem;
}
.section-padding{
   padding: 70px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center; 
}    
.mb-2y{
  margin-bottom: 2rem; 
}  
.wp-block-columns-is-layout-flex{
        display: flex;
}
.wp-block-heading{
    font-weight: 300;
}
.blue-k7{
    color: #4487f4;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 2rem;
}
.kio{
        border-radius: 18px;
    overflow: hidden;
}
.contact-form-modern{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form-modern .form-group{
    margin-bottom:20px;
}

.contact-form-modern label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#222;
    font-size:15px;
}

.contact-form-modern .form-control{
    width:100%;
    height:55px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    transition:.3s;
    background:#fafafa;
}

.contact-form-modern textarea.form-control{
    height:150px;
    padding:15px 18px;
    resize:none;
}

.contact-form-modern .form-control:focus{
    outline:none;
    border-color:#0d6efd;
    background:#fff;
    box-shadow:0 0 0 4px rgba(13,110,253,.12);
}

.contact-form-modern .btn-submit{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:14px 40px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form-modern .btn-submit:hover{
    transform:translateY(-2px);
}

.contact-form-modern .wpcf7-spinner{
    margin-top:10px;
}

.contact-form-modern .wpcf7-not-valid-tip{
    margin-top:5px;
    font-size:13px;
}

.contact-form-modern .wpcf7-response-output{
    margin-top:20px;
    border-radius:10px;
}

.blog-single{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.blog-content img{
    max-width:100%;
    height:auto;
    border-radius:12px;
    margin:20px 0;
}

.blog-content p{
    line-height:1.9;
    margin-bottom:20px;
}

.blog-content h2,
.blog-content h3,
.blog-content h4{
    margin-top:30px;
    margin-bottom:15px;
}

.blog-content ul,
.blog-content ol{
    padding-left:20px;
}
.wp-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-block-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.wp-block-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}
.check-flex {
  /*  display: -webkit-inline-box;*/
}
.pb-3{
	padding-bottom:3rem !important;
}
.pt-3{
	padding-top:3rem !important;
}
.pr-1{
	padding-right:10px !important;
}
 