/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;

    background-image: url("assets/background.svg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;

    min-height: 100vh;
    background-color: #f7f9fc;
}


@media (min-width: 1400px){

    .container{
        max-width: 1320px;
    }
}


/* =========================
   DESKTOP
========================= */

@media (max-width: 1200px){

    body{
        background-size: cover;
        background-position: center top;
    }
}


/* =========================
   LAPTOP / TABLET
========================= */

@media (max-width: 992px){

    body{
        background-size: cover;
        background-position: center top;
    }

    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================
   TABLETS
========================= */

@media (max-width: 768px){

    body{
        background-size: cover;
        background-position: top center;
    }

    .container{
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px){

    body{
        background-size: cover;
        background-position: top center;

        /* smoother mobile rendering */
        -webkit-text-size-adjust: 100%;
    }

    .container{
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px){

    body{
        background-size: auto;
        background-position: top center;
    }

    .container{
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* ================= NAVBAR ================= */

/* NAVBAR WIDTH */
.navbar-section{
    position: fixed;
    top: 20px;
    left: 0;

    width: 100%;

    z-index: 9999;
}

.navbar-wrapper{
    width: 70%;
    margin: auto;
}

.custom-navbar{
    background: rgba(255,255,255,0.95);
    border-radius: 60px;
    padding-left: 35px ;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.logo-img{
    height: 60px;
}

.nav-link{
    color: #111 !important;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover{
    color: #0d4ab5 !important;
}


/* ================= HERO CONTENT ================= */

.hero-section{
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}
/* TEAM IMAGES */


/* ================= TEAM IMAGES ================= */

.team-images{
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 40px;
}


/* EACH IMAGE */

.team-img{
    width: 140px;
    height: 140px;

    border-radius: 50%;
    overflow: hidden;

    margin-left: -18px;

    background: #fff;

    transition: 0.4s ease;

    position: relative;
}


/* FIRST IMAGE */

.team-img:first-child{
    margin-left: 0;
}


/* IMAGE */

.team-img img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* CENTER ACTIVE IMAGE */

.team-img.active{
    width: 170px;
    height: 170px;

    z-index: 2;

    
}


/* HERO TITLE */

.hero-title{
    font-size: 64px;
    font-weight: 600;
    line-height: 1.15;
    color: #000;
    margin-bottom: 25px;
}

.hero-title span{
    color: #0d4ab5;
}


/* DESCRIPTION */

.hero-description{
    max-width: 850px;
    margin: auto;
    color: #777;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}


/* ================= PRIMARY BUTTON ================= */

.custom-btn{
    background: #0d4ab5;
    color: #fff;

    border: none;
    border-radius: 40px;

    padding: 14px 30px;

    font-size: 15px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    overflow: hidden;

    transition: 0.3s ease;
}


/* TEXT */

.custom-btn span{
    transition: 0.3s ease;
}


/* ARROW */

.custom-btn .arrow{
    opacity: 0;
    transform: translateX(-10px);

    transition: 0.3s ease;
}


/* HOVER */

.custom-btn:hover{
    background-color: #01399A;
    color: #fff;
}

.custom-btn:hover span{
    transform: translateX(-4px);
}

.custom-btn:hover .arrow{
    opacity: 1;
    transform: translateX(0);
}



/* ================= OUTLINE BUTTON ================= */

.custom-btn-outline{
    background: transparent;
    color: #111;

    border: 1px solid #ccc;
    border-radius: 40px;

    padding: 14px 30px;

    font-size: 15px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition: 0.3s ease;
}


/* TEXT */

.custom-btn-outline span{
    transition: 0.3s ease;
}


/* ARROW */

.custom-btn-outline .arrow{
    opacity: 0;
    transform: translateX(-10px);

    transition: 0.3s ease;
}


/* HOVER */

.custom-btn-outline:hover{

    border-color: #ccc;
}

.custom-btn-outline:hover span{
    transform: translateX(-4px);
}

.custom-btn-outline:hover .arrow{
    opacity: 1;
    transform: translateX(0);
}




/* ================= ABOUT SECTION ================= */

.about-section{
    padding: 80px 0;
}

.about-heading{
    font-size: 40px;
    font-weight: 600;
    color: #111;
}

.about-text{
    color: #7a7a7a;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 20px;
}


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

.stats-section{
    padding-bottom: 100px;
}

.stats-box{
    background: #01399A;
    border-radius: 40px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}


/* GEAR IMAGE */

.gear-image{
    position: absolute;
    left: -10px;
    bottom: -10px;

    width: 300px;

  

    z-index: 1;
}

.stats-title{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}

.stat-item h3{
    color: #fff;
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-item span{
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

.stat-item p{
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.8;
    max-width: 250px;
}



/* ================= WHY CHOOSE US ================= */

.choose-section{
    padding: 100px 0;
    position: relative;
}

.choose-title{
    font-size: 40px;
    font-weight: 600;
    color: #000;
}


/* CARD */

.choose-card{
    background: rgba(255,255,255,0.75);
    border: 1px solid #e7e7e7;
    border-radius: 22px;

    padding: 30px;
    min-height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
    overflow: hidden;

    transition: 0.4s ease;
    cursor: pointer;
}


/* TITLE */

.choose-card h4{
    font-size: 20px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;

    transition: 0.4s;
}


/* DESCRIPTION */

.choose-card p{
    font-size: 15px;
    line-height: 1.8;
    color: #8b8b8b;

    margin-top: 20px;

    transition: 0.4s;
}


/* NUMBER */

.choose-card h1{
    font-size: 120px;
    font-weight: 600;

    color: #dbe5fb;

    line-height: 1;
    margin: 0;

    transition: 0.5s;
}


/* HOVER EFFECT */

.choose-card:hover{
    background: #01399A;
    
}


/* TEXT COLOR ON HOVER */

.choose-card:hover h4,
.choose-card:hover p,
.choose-card:hover h1{
    color: #fff;
}

@media(max-width: 992px){

    .choose-title{
        font-size: 44px;
    }

    .choose-card{
        min-height: 320px;
    }

    .choose-card h1{
        font-size: 90px;
    }

}

@media(max-width: 576px){

    .choose-title{
        font-size: 34px;
    }

    .choose-card{
        min-height: auto;
    }

    .choose-card h4{
        font-size: 24px;
    }

    .choose-card p{
        font-size: 16px;
    }

}



/* ================= CTA SECTION ================= */

.cta-section{
    padding-top: 80px;
    padding-bottom: 80px;
}

.cta-box{
    background: #0d43ab;
    border-radius: 50px;

    padding: 90px 40px;

    position: relative;
    overflow: hidden;
}


/* GEARS */

.gear-left{
    position: absolute;
    left: -40px;
    bottom: -40px;

    width: 280px;
   
}

.gear-right{
    position: absolute;
    right: -20px;
    top: -20px;

    width: 240px;
   
}


/* CONTENT */

.cta-content{
    position: relative;
    z-index: 2;
}

.cta-content h2{
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;

    margin-bottom: 40px;
}


/* BUTTON */

.cta-btn{
    background: #fff;
    color: black;

    border: none;
    border-radius: 40px;

    padding: 14px 30px;

    font-size: 15px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    overflow: hidden;

    transition: 0.3s ease;
}


/* TEXT */

.cta-btn span{
    transition: 0.3s ease;
}


/* ARROW */

.cta-btn .arrow{
    opacity: 0;
    transform: translateX(-10px);

    transition: 0.3s ease;
}


/* HOVER */

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

.cta-btn:hover span{
    transform: translateX(-4px);
}

.cta-btn:hover .arrow{
    opacity: 1;
    transform: translateX(0);
}



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

.footer-section{
    padding-bottom: 0;
    margin-top: 50px;
   
}

.footer-box{
    background: #DCE8FD;
    border-radius: 50px 50px 0 0;
    width: 100%;

    padding: 80px 60px;
}


/* LOGO */

.footer-logo img{
    width: 260px;
}


/* LINKS WRAPPER */

.footer-links-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}


/* LINKS */

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-links a{
    text-decoration: none;
    color: #111;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}



@media(max-width: 992px){

    .cta-content h2{
        font-size: 46px;
    }

    

}


@media(max-width: 768px){

    .cta-box{
        padding: 70px 25px;
        border-radius: 30px;
    }

    .cta-content h2{
        font-size: 34px;
    }

    .cta-btn{
        width: 170px;
        height: 55px;
        font-size: 16px;
    }

    
}

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

@media(max-width: 992px){

    .hero-title{
        font-size: 52px;
    }

    .about-heading{
        margin-bottom: 20px;
    }

    .stats-box{
        padding: 50px 35px;
    }

}

@media(max-width: 768px){

    .hero-title{
        font-size: 40px;
    }

    .hero-description{
        font-size: 14px;
    }

    
    .stats-title{
        margin-bottom: 40px;
    }

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

}

@media(max-width: 576px){

    .custom-navbar{
        border-radius: 25px;
        padding: 15px 20px;
    }

    .hero-title{
        font-size: 34px;
    }

    .about-heading{
        font-size: 36px;
    }

    .stats-box{
        border-radius: 25px;
        padding: 40px 25px;
    }

}



/* ============================ ABOUT US PAGE ================================ */

.about-hero-section{
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}

/* HERO TITLE */

.about-hero-title{
    font-size: 64px;
    font-weight: 600;
    line-height: 1.15;
    color: #000;
    margin-bottom: 25px;
}

.about-hero-title span{
    color: #0d4ab5;
}


/* DESCRIPTION */

.about-hero-description{
    max-width: 850px;
    margin: auto;
    color: #777;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* ================= ABOUT BADGE ================= */

.about-badge{
    display: inline-flex;
    align-items: center;
    gap: 14px;

    background: #4F8CF633;

    padding: 10px 15px;

    border-radius: 50px;

    margin-bottom: 20px;
}


/* ICON */

.badge-icon{
    width: 20px;
    height: 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0d43ab;

    font-size: 25px;
    font-weight: 500;
}


/* TEXT */

.about-badge span{
    color: #0d43ab;

    font-size: 14px;
    font-weight: 500;

    line-height: 1;
}


@media (max-width: 1200px){

    .about-hero-title{
        font-size: 56px;
    }

    .about-hero-description{
        font-size: 15px;
        max-width: 760px;
    }
}



/* =========================
   LAPTOP / TABLET
========================= */

@media (max-width: 992px){

    .about-hero-section{
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .about-hero-title{
        font-size: 48px;
        line-height: 1.2;
    }

    .about-hero-description{
        font-size: 15px;
        line-height: 1.8;
        max-width: 700px;
    }

    .about-badge{
        padding: 9px 14px;
        gap: 12px;
    }
}



/* =========================
   TABLETS
========================= */

@media (max-width: 768px){

    .about-hero-section{
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .about-hero-title{
        font-size: 38px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .about-hero-description{
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .about-badge{
        padding: 8px 14px;
        gap: 10px;
    }

    .about-badge span{
        font-size: 13px;
    }

    .badge-icon{
        font-size: 22px;
    }
}



/* =========================
   MOBILE
========================= */

@media (max-width: 576px){

    .about-hero-section{
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .about-hero-title{
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .about-hero-description{
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .about-badge{
        padding: 8px 12px;
        gap: 8px;

        border-radius: 40px;
    }

    .about-badge span{
        font-size: 12px;
    }

    .badge-icon{
        font-size: 20px;
    }
}



/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px){

    .about-hero-title{
        font-size: 26px;
    }

    .about-hero-description{
        font-size: 12px;
    }

    .about-badge{
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .about-badge span{
        font-size: 11px;
    }

    .badge-icon{
        font-size: 18px;
    }
}


/* ================= FUTURE SECTION ================= */

.future-section{
    padding: 100px 0;
}


/* TITLE */

.future-title{
    font-size: 40px;
    font-weight: 600;
    color: #000;
}



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

.future-card{
    position: relative;

    height: 280px;   /* IMPORTANT */

    border: 1px solid #d9d9d9;
    border-radius: 25px;

    overflow: hidden;

    background: rgba(255,255,255,0.7);

    padding: 40px;

    cursor: pointer;

    transition: 0.5s ease;
}


/* CONTENT */

.future-content{
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
}

/* PARAGRAPH */

.future-para{
    font-size: 14px;
    line-height: 1.8;

    color: #8d8d8d;

    transition: 0.6s ease;

    transform: translateY(0);
}


/* BIG TEXT */

.future-heading{
    font-size: 80px;
    font-weight: 600;

    color: #dbe5fb;

    line-height: 1;

    margin: 0;

    transition: 0.6s ease;

    transform: translateY(0);
}

.future2-para{
    font-size: 14px;
    line-height: 1.8;

    color: #8d8d8d;

    transition: 0.6s ease;

    transform: translateY(0);
}


/* BIG TEXT */

.future2-heading{
    font-size: 80px;
    font-weight: 600;

    color: #dbe5fb;

    line-height: 1;

    margin: 0;

    transition: 0.6s ease;

    transform: translateY(0);
}



/* ================= HOVER ================= */

.future-card:hover{
    background: #0d43ab;

    transform: translateY(-8px);
}


/* PARAGRAPH MOVES DOWN */

.future-card:hover .future-para {
    transform: translateY(160px);

    color: #fff;
}


/* BIG TEXT MOVES UP */

.future-card:hover .future-heading{
    transform: translateY(-130px);

    color: #ffff;
}


/* (for second card)paragraph up */
.future-card:hover .future2-para {
    transform: translateY(-120px);

    color: #fff;
}


/* BIG TEXT MOVES down */

.future-card:hover .future2-heading{
    transform: translateY(130px);

    color: #ffff;
}

@media(max-width: 1200px){

    .future-card{
        height: 260px;
        padding: 35px;
    }

    .future-heading{
        font-size: 68px;
    }

    .future-para{
        font-size: 13px;
    }

    .future2-heading{
        font-size: 68px;
    }

    .future2-para{
        font-size: 13px;
    }

    .future-card:hover .future-para{
        transform: translateY(140px);
    }

    .future-card:hover .future-heading{
        transform: translateY(-110px);
    }

    
    .future-card:hover .future2-para{
        transform: translateY(-140px);
    }

    .future-card:hover .future2-heading{
        transform: translateY(110px);
    }
}



/* =========================
   LAPTOP / TABLET
========================= */

@media(max-width: 992px){

    .future-title{
        font-size: 46px;
    }

    .future-card{
        height: 240px;
        padding: 30px;
    }

    .future-heading{
        font-size: 56px;
    }

    .future-para{
        font-size: 13px;
        line-height: 1.7;
    }

    .future2-heading{
        font-size: 56px;
    }

    .future2-para{
        font-size: 13px;
        line-height: 1.7;
    }

    .future-card:hover .future-para{
        transform: translateY(120px);
    }

    .future-card:hover .future-heading{
        transform: translateY(-95px);
    }

    .future-card:hover .future2-para{
        transform: translateY(-120px);
    }

    .future-card:hover .future2-heading{
        transform: translateY(95px);
    }
}



/* =========================
   TABLETS
========================= */

@media(max-width: 768px){

    .future-section{
        padding: 70px 0;
    }

    .future-title{
        font-size: 34px;
    }

    .future-card{
        height: 220px;
        padding: 25px;

        border-radius: 20px;
    }

    .future-heading{
        font-size: 44px;
    }

    .future-para{
        font-size: 14px;
        line-height: 1.6;
    }

    .future2-heading{
        font-size: 44px;
    }

    .future2-para{
        font-size: 14px;
        line-height: 1.6;
    }

    .future-card:hover .future-para{
        transform: translateY(90px);
    }

    .future-card:hover .future-heading{
        transform: translateY(-70px);
    }

    .future-card:hover .future2-para{
        transform: translateY(-90px);
    }

    .future-card:hover .future2-heading{
        transform: translateY(70px);
    }
}



/* =========================
   MOBILE
========================= */

@media(max-width: 576px){

    .future-section{
        padding: 60px 0;
    }

    .future-title{
        font-size: 28px;
    }

    .future-card{
        height: auto;
        min-height: 190px;

        padding: 22px;

        border-radius: 18px;
    }

    .future-heading{
        font-size: 34px;
    }

    .future-para{
        font-size: 13px;
        line-height: 1.6;
    }

    
    .future2-heading{
        font-size: 34px;
    }

    .future2-para{
        font-size: 13px;
        line-height: 1.6;
    }
    /* Reduce hover movement */

    .future-card:hover .future2-para{
        transform: translateY(-45px);
    }

    .future-card:hover .future2-heading{
        transform: translateY(100px);
    }
}



/* =========================
   SMALL MOBILE
========================= */

@media(max-width: 400px){

    .future-card{
        padding: 18px;
    }

    .future-heading{
        font-size: 28px;
    }

    .future-para{
        font-size: 12px;
    }

     .future2-heading{
        font-size: 28px;
    }

    .future2-para{
        font-size: 12px;
    }


    .future-card:hover .future-para{
        transform: translateY(45px);
    }

    .future-card:hover .future-heading{
        transform: translateY(-35px);
    }

    .future-card:hover .future2-para{
        transform: translateY(-45px);
    }

    .future-card:hover .future2-heading{
        transform: translateY(35px);
    }
}


/* ================= VALUES SECTION ================= */

.values-section{
    padding-top: 100px;
    padding-bottom: 80px;
}


/* TITLE */

.section-title{
    font-size: 40px;
    font-weight: 600;
    color: #000;
}


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

.value-card{
    background: rgba(255,255,255,0.75);

    border: 1px solid #e5e5e5;
    border-radius: 18px;

    padding: 30px;

    min-height: 250px;

    transition: 0.4s ease;

    cursor: pointer;
}


/* HOVER */

.value-card:hover{
    transform: translateY(-8px);

    box-shadow:
        0 15px 40px rgba(13, 67, 171, 0.12),
        0 5px 15px rgba(0,0,0,0.05);
}



/* ICON */

.value-icon{
    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: #dce8ff;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    transition: 0.4s ease;
}


/* ICON IMAGE */

.value-icon img{
    width: 24px;
}


/* SLIGHT TILT TO RIGHT */

.value-card:hover .value-icon{
    transform: rotate(-12deg);
}


/* TITLE */

.value-card h4{
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 18px;
}

.value-card:hover h4{

    color: #01399A;
}

/* TEXT */

.value-card p{
    color: #8a8a8a;

    font-size: 16px;
    line-height: 1.8;
}



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

.our-team-section{
    padding-top: 80px;
    padding-bottom: 100px;
}

/* MEMBER */

.team-member{
    text-align: center;
}


/* IMAGE */

.team-image{
    width: 220px;
    height: 220px;

    margin: auto auto 28px;

    border-radius: 50%;

    border: 8px solid #fff;

    overflow: hidden;

    transition: 0.4s ease;

    cursor: pointer;
}


/* IMAGE */

.team-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* HOVER BORDER EFFECT */
/* ================= TEAM MEMBER HOVER ================= */

.team-member{
    text-align: center;
    cursor: pointer;
}


/* IMAGE HOVER */

.team-member:hover .team-image{
    border-color: #0d43ab;

    transform: translateY(-8px);
}


/* NAME HOVER */

.team-member:hover h4{

    transform: translateY(-5px);
}


/* ROLE HOVER */

.team-member:hover span{

    transform: translateY(-5px);
}

/* IMAGE */

.team-image{
    width: 220px;
    height: 220px;

    margin: auto auto 28px;

    border-radius: 50%;

    border: 8px solid #fff;

    overflow: hidden;

    transition: 0.4s ease;
}


/* NAME */

.team-member h4{
    font-size: 30px;
    font-weight: 600;

    margin-bottom: 10px;

    transition: 0.4s ease;
}


/* ROLE */

.team-member span{
    color: #555;

    font-size: 20px;

    display: inline-block;

    transition: 0.4s ease;
}


/* ====================== CANDIDATE PAGE =============================== */

/* ================= HELP SECTION ================= */

.help-section{
    padding: 100px 0;
}


/* TITLE */

.help-title{
    font-size: 40px;
    font-weight: 600;

    color: #000;

    line-height: 1.2;
}



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

.help-card{
    display: flex;
    align-items: center;

    gap: 35px;

    background: rgba(255,255,255,0.7);

    border: 1px solid #e5e5e5;
    border-radius: 22px;

    padding: 30px 35px;

    margin-bottom: 22px;

    transition: 0.4s ease;

    cursor: pointer;
}


/* HOVER */

.help-card:hover{
    border-color: #0d43ab;

    transform: translateY(-6px);

    box-shadow:
        0 10px 30px rgba(13,67,171,0.08);
}



/* NUMBER */

.help-number{
    font-size: 92px;
    font-weight: 600;

    color: #dbe5fb;

    line-height: 1;

    min-width: 110px;

    transition: 0.4s ease;
}


/* CONTENT */

.help-content h4{
    font-size: 18px;
    font-weight: 600;

    color: #111;

    margin-bottom: 12px;

    transition: 0.4s ease;
}

.help-content p{
    font-size: 14px;
    line-height: 1.8;

    color: #8d8d8d;

    margin: 0;

    transition: 0.4s ease;
}


/* OPTIONAL TEXT HOVER */

.help-card:hover .help-content h4{
    color: #0d43ab;
}


/* ================= PROMISE SECTION ================= */

.promise-section{
    padding: 100px 0;
}


/* BOX */

.promise-box{
    position: relative;

    background: #0d43ab;

    border-radius: 45px;

    padding: 80px 70px;

    overflow: hidden;
}


/* GEAR IMAGE */

.promise-gear{
    position: absolute;

    left: -40px;
    bottom: -40px;

    width: 260px;


}



/* ================= TITLE ================= */

.promise-title{
    font-size: 40px;
    font-weight: 600;

    color: #fff;

    line-height: 1.2;

    margin-top: 0;
}


/* ================= TEXT ================= */

.promise-text{
    font-size: 20px;
    line-height: 1.8;

    color: #fff;

    margin-bottom: 35px;

    max-width: 700px;
}



/* ================= BUTTONS ================= */

.promise-buttons{
    display: flex;
    gap: 18px;

    flex-wrap: wrap;
}



/* COMMON BUTTON */

.promise-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 16px 34px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;
    font-weight: 500;

    transition: 0.4s ease;

    overflow: hidden;
}



/* TEXT */

.promise-btn span{
    transition: 0.4s ease;
}



/* ARROW */

.promise-btn .arrow{
    opacity: 0;

    transform: translateX(-10px);

    transition: 0.4s ease;
}



/* BUTTON HOVER */

.promise-btn:hover span{
    transform: translateX(-4px);
}

.promise-btn:hover .arrow{
    opacity: 1;

    transform: translateX(0);
}



.light-btn{
    background: #fff;

    color: #111;
}

.light-btn:hover{
    background: #f3f3f3;

    color: #111;
}



.outline-btn{
    border: 1px solid rgba(255,255,255,0.8);

    color: #fff;
}



@media(max-width: 992px){

    .promise-box{
        padding: 60px 40px;
    }

    .promise-title{
        font-size: 44px;
    }

    .promise-text{
        font-size: 18px;
    }

}


@media(max-width: 576px){

    .promise-section{
        padding: 70px 0;
    }

    .promise-box{
        padding: 45px 25px;

        border-radius: 30px;
    }

    .promise-title{
        font-size: 32px;
    }

    .promise-text{
        font-size: 16px;
    }

    .promise-btn{
        width: 100%;
    }

}


/* ==================================================================
                        TESTIMONIAL PAGE
====================================================================== */

.testimonial-section {
  position: relative;
  overflow: hidden;
}

/* Optional light background pattern */
.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.5;
}

/* Card */
.testimonial-card {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 28px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Profile Image */
.profile-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Name */
.client-name {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

/* Role */
.client-role {
  font-size: 14px;
  color: #0d47c9;
  font-weight: 500;
  margin-bottom: 0;
}

/* Text */
.testimonial-text {
  font-size: 16px;
  line-height: 1.9;
  color: #777;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {

  .client-name {
    font-size: 20px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonial-card {
    padding: 22px;
  }
}

@media (max-width: 576px) {

  .testimonial-card {
    border-radius: 20px;
    padding: 20px;
  }

  .profile-img {
    width: 50px;
    height: 50px;
  }

  .client-name {
    font-size: 18px;
  }

  .client-role {
    font-size: 13px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}


/* =====================================================
                    BLOG PAGE
======================================================================= */

.insight-section {
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.insight-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background-image: radial-gradient(rgba(32, 84, 185, 0.12) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.4;
}

/* Card */
.insight-card {
  background: #fff;
  padding: 14px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
/* Top Blue Box */
.insight-banner {
  background: #0d3fa4;
  border-radius: 14px;
  height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  margin-bottom: 18px;
}

.insight-banner h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 1px;
}

/* Content */
.insight-content {
  padding: 0;
}

/* Meta */
.insight-meta span {
  font-size: 12px;
  font-weight: 700;
  color: #0d3fa4;
}

/* Line */
.meta-line {
  width: 100%;
  height: 1px;
  background: #e2e2e2;
  margin: 12px 0 16px;
}

/* Title */
.insight-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #13263b;
  margin-bottom: 14px;
}

/* Text */
.insight-text {
  font-size: 14px;
  line-height: 1.8;
  color: #8a8a8a;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {

  .insight-banner {
    height: 160px;
  }

  .insight-banner h2 {
    font-size: 34px;
  }

  .insight-title {
    font-size: 24px;
  }

  .insight-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  .insight-banner {
    height: 140px;
  }

  .insight-banner h2 {
    font-size: 28px;
  }

  .insight-title {
    font-size: 22px;
  }

  .insight-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .insight-meta span {
    font-size: 11px;
  }
}


/* ===============================================================================
                            CONTACT US PAGE
================================================================================== */

.contact-top-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.contact-top-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 420px;
  height: 100%;
  background-image: radial-gradient(rgba(25, 75, 180, 0.12) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.5;
}

/* Heading */
.contact-heading {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  position: relative;
  z-index: 2;
}


/* =========================
   FORM SECTION
========================= */

.contact-form-section {
  background: #063aa7;
  padding: 80px 0;
}

/* Form Box */
.contact-form-wrapper {
  background: #fff;
  max-width: 700px;
  margin: auto;
  border-radius: 16px;
  padding: 45px;
}

/* Title */
.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111;
}

/* Label */
.form-label {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px;
}

.form-label span {
  color: #999;
  font-weight: 400;
}

/* Input */
.custom-input {
  width: 100%;
  height: 54px;
  border: none;
  background: #efefef;
  border-radius: 6px;
  padding: 0 16px;
  outline: none;
}

/* Textarea */
.textarea {
  height: 120px;
  resize: none;
  padding-top: 15px;
}

/* Radio */
.radio-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
}

.form-check-label {
  margin-left: 8px;
  font-size: 15px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #222;
}


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

@media (max-width: 991px) {

  .contact-heading {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .contact-form-wrapper {
    padding: 35px;
  }
}

@media (max-width: 576px) {

  .contact-top-section,
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-heading {
    font-size: 34px;
  }

  .contact-info-card {
    padding: 24px;
    min-height: auto;
  }

  .contact-info-card h5 {
    font-size: 22px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .form-title {
    font-size: 28px;
  }

  .radio-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}



.info-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}


/* Card */
.info-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(210,210,210,0.7);
  border-radius: 18px;

  padding: 28px 30px;

  display: flex;
  align-items: center;
  gap: 18px;

  position: relative;
  z-index: 2;

  backdrop-filter: blur(6px);

  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}



/* Icon Box */
.info-icon {
  width: 74px;
  height: 74px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* Blue Icon */
.blue-icon {
  background: #dce6ff;
}


.blue-icon i {
  color: #184db8;
}

.info-card:hover .blue-icon{
    background: #01399A;
}

.info-card:hover .blue-icon i{
    color: #fff;
}


/* Green Icon */
.green-icon {
  background: #bff0c8;
}

.green-icon i {
  color: #0aaf3c;
}

.info-card:hover .green-icon{
    background: #08A62D
}

.info-card:hover .green-icon i{
    color: #fff;
}


/* Icons */
.info-icon i {
  font-size: 34px;
}

/* Content */
.info-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.info-content p {
  margin: 0;
  color: #8b8b8b;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}


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

@media (max-width: 991px) {

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

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

@media (max-width: 576px) {

  .info-section {
    padding: 60px 0;
  }

  .info-card {
    padding: 22px;
    align-items: flex-start;
  }

  .info-icon {
    width: 62px;
    height: 62px;
  }

  .info-icon i {
    font-size: 28px;
  }

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

  .info-content p {
    font-size: 15px;
  }
}