/*=========================================
  GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
  RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
    line-height:1.7;
    

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=========================================
  COMMON
=========================================*/

.container{
  width:90%;
    max-width:1200px;
    margin:auto;
    padding:0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:#2b78ff;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:40px;
    margin-top:10px;
    color:#0b1f42;
}

.section-title p{
    width:70%;
    margin:15px auto 0;
    color:#666;
}

/*=========================================
  HEADER
=========================================*/

/*================ HEADER ================*/

header{
    background:#fff;
    width:100%;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

.logo img{
    width:230px;
    height:auto;
}

nav ul{
    display:flex;
    gap:40px;
}

nav ul li a{
    color:#222;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#2b78ff;
}
/*=========================================
  HERO
=========================================*/

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    color:#fff;
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-text span{
    color:#7fd84a;
}

.hero-text p{
    color:#ddd;
    font-size:18px;
    max-width:520px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-blue{
    background:#1d65f0;
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    transition:.3s;
}

.btn-blue:hover{
    background:#144cc2;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#071a36;
}

.hero{
    overflow:hidden;
}

.hero-image{
    overflow:hidden;
}

.hero-image img{
    width:100%;
    animation: kenburns 12s ease-in-out infinite alternate;
}

@keyframes kenburns{

    0%{
        transform:scale(1) translate(0,0);
    }

    50%{
        transform:scale(1.08) translate(-15px,-10px);
    }

    100%{
        transform:scale(1.12) translate(10px,5px);
    }

}
/*=========================================
  ABOUT
=========================================*/

.about{
    padding:90px 0;
}

.about-wrapper{
    display:flex;
    gap:60px;
    align-items:center;
}

.about-image{
    flex:1;
}

.about-image img{
    border-radius:15px;
}

.about-content{
    flex:1;
}

.about-content h5{
    color:#2b78ff;
    font-size:16px;
    margin-bottom:10px;
}

.about-content h2{
    font-size:42px;
    color:#0b1f42;
}

.line{
    width:70px;
    height:4px;
    background:#7fd84a;
    margin:18px 0 25px;
}

.about-content p{
    color:#555;
    margin-bottom:18px;
}

/*=========================================
  FEATURES
=========================================*/

/*=========================================
  FEATURES
=========================================*/

.features{
    padding:70px 0;
    background:#fff;
}

.features .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1200px;
    margin:auto;
}

.feature-box{
    flex:1;
    display:flex;
    align-items:center;
    gap:22px;
    padding:20px 35px;
    position:relative;
}

/* Vertical Divider */
.feature-box:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:18%;
    bottom:18%;
    width:1px;
    background:#dcdcdc;
}

.icon{
    width:78px;
    height:78px;
    min-width:78px;
    border:1px solid #dbe4f4;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f8fbff;
}

.icon i{
    font-size:34px;
    color:#2b78ff;
}

.content{
    flex:1;
}

.content h3{
    font-size:30px;
    color:#0b1f42;
    font-weight:700;
    margin-bottom:8px;
}

.content p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

.features .container{
    flex-direction:column;
}

.feature-box{
    width:100%;
    padding:25px 0;
}

.feature-box::after{
    display:none;
}

}

.industry-section{

    padding:70px 0;
    text-align:center;
}

.industry-section h2{

    color:#0d6efd;
    margin-bottom:45px;
    font-size:34px;
    font-weight:700;

}

.industrySwiper{

    width:90%;
    margin:auto;
    padding-bottom:50px;

}

.swiper-slide{

    text-align:center;

}

.swiper-slide i{

    font-size:60px;
    color:#4a73ff;
    margin-bottom:20px;

}

.swiper-slide h5{

    font-size:18px;
    color:#1f2d3d;
    line-height:1.5;

}

.swiper-pagination-bullet{

    width:12px;
    height:12px;

}

.swiper-pagination-bullet-active{

    background:#7BC043;
}


.swiper-pagination{
    position: relative !important;
    margin-top: 30px;
    text-align: center;
}

.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #d0d0d0;
    opacity: 1;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active{
    background: #8bc34a;
}

.framework{
    padding:90px 0;
    background:#fff;
}

.framework-box{
    border:1px solid #e7edf7;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.04);
}

.framework-row{
    display:grid;
    grid-template-columns:80px 230px 1fr;
    align-items:center;
    border-bottom:1px solid #edf2f8;
    min-height:82px;
    transition:.3s;
}

.framework-row:last-child{
    border-bottom:none;
}

.framework-row:hover{
    background:#f9fbff;
}

.framework-icon{
    display:flex;
    justify-content:center;
    align-items:center;
}

.framework-icon i{
    width:46px;
    height:46px;
    border:1px solid #dbe7ff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2f66ff;
    font-size:20px;
    background:#f7faff;
}

.framework-title{
    color:#2f66ff;
    font-size:18px;
    font-weight:600;
}

.framework-text{
    color:#555;
    font-size:15px;
    line-height:1.7;
    padding:15px 25px 15px 0;
}

@media(max-width:991px){

.framework-row{
    grid-template-columns:70px 1fr;
    padding:20px;
}

.framework-title{
    margin-bottom:10px;
}

.framework-text{
    grid-column:2;
    padding:0;
}

}

/*=============================
CONTACT SECTION
=============================*/

.contact-section{
    background:#f6f8fc;
    padding:90px 0;
}

.contact-wrapper{

    display:flex;
    gap:45px;
    align-items:flex-start;

}

.contact-info{

    width:30%;

}

.contact-form{

    width:70%;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/* LEFT */

.info-box{

    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;

}

.info-icon{

    width:58px;
    height:58px;
    border:2px solid #dce7ff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2f66ff;
    font-size:22px;
    flex-shrink:0;
    transition:.3s;

}

.info-box:hover .info-icon{

    background:#2f66ff;
    color:#fff;

}

.info-box h4{

    font-size:22px;
    color:#102547;
    margin-bottom:4px;

}

.info-box p{

    color:#666;
    line-height:1.8;
    font-size:16px;

}

/* FORM */

.row{

    display:flex;
    gap:20px;
    margin-bottom:22px;

}

.input-box{

    width:100%;

}

.input-box label{

    display:block;
    margin-bottom:8px;
    font-size:15px;
    color:#333;
    font-weight:500;

}

.input-box input,
.input-box select,
.input-box textarea{

    width:100%;
    padding:15px;
    border:1px solid #e3e3e3;
    border-radius:8px;
    outline:none;
    font-size:15px;
    transition:.3s;
    background:#fff;

}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

    border-color:#2f66ff;

}

textarea{

    resize:none;

}

.send-btn{

    width:100%;
    padding:16px;
    background:#2f66ff;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;

}

.send-btn:hover{

    background:#0f4fdf;

}

.send-btn i{

    margin-right:10px;

}

/*=========================
Responsive
=========================*/

@media(max-width:992px){

.contact-wrapper{

flex-direction:column;

}

.contact-info,
.contact-form{

width:100%;

}

.row{

flex-direction:column;

}

}
/*=========================
FOOTER
=========================*/

.footer{

    background:#061f3a;
    color:#fff;
    padding:70px 0 25px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1.3fr;
    gap:70px;
    align-items:flex-start;

}

.footer-logo{

    width:220px;
    margin-bottom:20px;

}

.footer-box p{

    color:#d4dceb;
    line-height:1.8;
    margin-bottom:14px;
    font-size:16px;

}

.footer-box h3{

    margin-bottom:25px;
    font-size:24px;
    color:#fff;

}

.footer-box ul{

    padding:0;

}

.footer-box ul li{

    margin-bottom:15px;

}

.footer-box ul li a{

    color:#d4dceb;
    transition:.3s;

}

.footer-box ul li a:hover{

    color:#7BC043;
    padding-left:8px;

}

.footer-box p i{

    color:#ffffff;
    width:28px;

}

/* Social */

.social-icons{

    display:flex;
    gap:15px;
    margin-top:25px;

}

.social-icons a{

    width:46px;
    height:46px;
    border:2px solid rgba(255,255,255,.18);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.3s;

}

.social-icons a:hover{

    background:#2f66ff;
    border-color:#2f66ff;
    transform:translateY(-5px);

}

/* Bottom */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#b7c4d8;
    font-size:15px;

}

/* Responsive */

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr;
gap:40px;

}

.footer{

text-align:center;

}

.social-icons{

justify-content:center;

}

.footer-box p i{

width:auto;
margin-right:10px;

}

}