@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* ==========================================
   CONTACT US / DOWNLOAD BUTTONS
========================================== */

.hero-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
    width:100%;
    margin-top:50px;
}

.hero-actions a{

    text-decoration:none !important;

}

.btn-primary,
.btn-secondary{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 30px;
    border-radius:50px;

    font-size:16px;
    font-weight:600;
    font-family: 'Poppins';

    text-decoration:none !important;
    transition:all .3s ease;

}

/* Contact Us */

.btn-primary{

    background:#ff6600;
    color:#fff !important;
    box-shadow:0 10px 25px rgba(21,101,255,.25);

}

.btn-primary:hover{

    transform:translateY(-3px);
    background:#0f57e8;

}

/* Download Materials */

.btn-secondary{

    background:#1565ff;
    color:#fff !important;
    border:1px solid #d8e6ff;

}

.btn-secondary:hover{

    background: #ff6600;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.btn-primary i,
.btn-secondary i{

    font-size:18px;

}


/* ==========================================
   WHY CHOOSE US
========================================== */


.why-choose-us{

    padding:120px 0;
    background:#f7fbff;
    font-family: 'Poppins';
}

.why-choose-us .container{
    max-width:950px;
    margin:auto;
    padding:0 40px;
}

/* Header */

.section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    padding:10px 20px;

    background:rgba(29,118,236,.0);
    border: 1px solid rgba(29,118,236,.2);
    color:#1d76ec;

    border-radius:5px;

    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
}

.section-header h2{
    margin:25px 0 20px;

    font-size:48px;
    line-height:1.1;
    font-weight:800;

    color:#092a68;
}

.section-header p{
    font-size:18px;
    line-height:1.8;
    color:#667892;
}

/* Cards */

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;

    padding:40px;
    border-radius:24px;

    border:1px solid #e8f1ff;

    transition:.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
    text-align: left;
}

.why-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(29,118,236,.12);
}

.why-card i{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #1d76ec,
        #5ca8ff
    );

    color:#fff;
    font-size:28px;

    margin-bottom:25px;
}

.why-card h3{
    margin-bottom:15px;

    font-size:26px;
    font-weight:700;

    color:#092a68;
}

.why-card p{
    color:#60738e;
    line-height:1.8;
    font-size:16px;
}

/* Tablet */

@media (max-width:1024px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:44px;
    }
}

/* Mobile */

@media (max-width:768px){

    .why-choose-us{
        padding:80px 0;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:36px;
    }

    .why-card{
        padding:30px;
    }
}

/* ===================================
   INDUSTRIES SECTION
=================================== */

.industry-section{
    padding:10px 0;
    background:none;
    font-family: 'Poppins';
}

.industry-section .container{
    max-width:950px;
    margin:auto;
    padding:0 40px;
}

/* Header */

.industry-header{
    text-align:center;
    max-width:950px;
    margin:0 auto 70px;
}

.industry-section-badge{
    display:inline-block;

    padding:10px 20px;

    background:rgba(29,118,236,.0);
    border: 1px solid rgba(29,118,236,.2);
    color:#1d76ec;

    border-radius:5px;

    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
}

.industry-header h2{
    margin-top:25px;

    font-size:36px;
    line-height:1.15;
    font-weight:600;

    color:#092a68;
}

.industry-header h2 span{
    color:#1d76ec;
}

/* Grid */

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* Cards */

.industry-card{
    background:#f8fbff;
    border:1px solid #e7f0ff;

    border-radius:24px;
    padding:35px 25px;

    text-align:center;

    transition:.35s ease;
}

.industry-card:hover{
    transform:translateY(-8px);

    border-color:#1d76ec;

    box-shadow:
    0 15px 35px rgba(29,118,236,.12);
}

.industry-card i{
    font-size:34px;
    color:#1d76ec;
    margin-bottom:18px;
}

.industry-card h3{
    margin:0;

    font-size:16px;
    font-weight:700;

    color:#092a68;
}

/* CTA Card */

.industry-card-highlight{
    background:linear-gradient(
        135deg,
        #1d76ec,
        #4fa4ff
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.industry-card-highlight a{
    color:#fff;
    text-decoration:none;

    font-size:20px;
    font-weight:700;
}

.industry-card-highlight i{
    color:#fff;
    margin-left:8px;
}

/* Responsive */

@media (max-width:1200px){

    .industry-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){

    .industry-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .industry-header h2{
        font-size:38px;
    }
}

@media (max-width:576px){

    .industry-grid{
        grid-template-columns:1fr;
    }
}


/* ===================================
   LEADERSHIP SECTION
=================================== */

.leadership-section{
    padding:120px 0;
    background:#f8fbff;
    font-family: 'Poppins';
}

.leadership-section .container{
    max-width:950px;
    margin:auto;
    padding:0 40px;
}

/* Header */

.leadership-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;

    padding:10px 20px;

    background:rgba(29,118,236,.0);
    border: 1px solid rgba(29,118,236,.2);
    color:#1d76ec;

    border-radius:5px;

    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
}

.leadership-header h2{
    margin-top:25px;

    font-size:56px;
    line-height:1.1;
    font-weight:800;

    color:#092a68;
}

.leadership-header span:last-child{
    color:#1d76ec;
}

/* Team Grid */

.leadership-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.leader-card{
    background:#fff;

    border-radius:28px;
    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.leader-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(29,118,236,.15);
}

/* Image */

.leader-image{
    height:320px;
    overflow:hidden;
}

.leader-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s ease;
}

.leader-card:hover img{
    transform:scale(1.05);
}

/* Content */

.leader-content{
    padding:28px 24px;
    text-align:center;
}

.leader-content h3{
    margin-bottom:10px;

    font-size:24px;
    font-weight:700;

    color:#092a68;
}

.leader-content p{
    color:#1d76ec;
    font-weight:600;
    font-size:16px;
}

/* Responsive */

@media (max-width:1200px){

    .leadership-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){

    .leadership-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .leadership-header h2{
        font-size:40px;
    }
}

@media (max-width:576px){

    .leadership-grid{
        grid-template-columns:1fr;
    }
}