/*=========================================================
    MISSION SECTION
=========================================================*/

.mission-section{
    position:relative;
    margin-top:-170px;
    padding:0 0 120px;
    background:transparent;
    z-index:20;
    overflow:hidden;
}

.mission-section .container{
    position:relative;
    z-index:2;
}

/*=========================================================
    MISSION WRAPPER
=========================================================*/

.mission-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:40px;
    padding:70px 60px;
    background:#ffffff;
    box-shadow:0 35px 90px rgba(17,49,82,.12);
}

/* Decorative Background */

.mission-wrapper::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(47,109,246,.06);
    top:-220px;
    left:-180px;
    filter:blur(60px);
}

.mission-wrapper::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,193,7,.06);
    bottom:-150px;
    right:-120px;
    filter:blur(60px);
}

/* Keep Content Above Background */

.mission-wrapper > *{
    position:relative;
    z-index:2;
}

/*=========================================================
    SECTION HEADING
=========================================================*/

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    background:#e9f4ff;
    color:#2f6df6;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#12355b;
    margin-bottom:18px;
    line-height:1.2;
}

.section-heading p{
    font-size:18px;
    color:#68768b;
    line-height:1.8;
}

/*=========================================================
    GRID
=========================================================*/

.mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
}

/*=========================================================
    CARD
=========================================================*/

.mission-card{
    position:relative;
    padding:60px 45px;
    text-align:center;
    background:transparent;
    transition:.35s ease;
}

.mission-card:not(:last-child){
    border-right:1px solid #edf2f7;
}

.mission-card:hover{
    transform:translateY(-8px);
    background:#fbfdff;
}

/*=========================================================
    ICON
=========================================================*/

.mission-icon{
    width:90px;
    height:90px;
    margin:0 auto 28px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#fff;
    background:linear-gradient(135deg,#2f6df6,#4f8cff);
    transition:.35s ease;
}

.mission-icon.vision{
    background:linear-gradient(135deg,#ffb000,#ffd54f);
}

.mission-icon.values{
    background:linear-gradient(135deg,#16a34a,#4ade80);
}

.mission-card:hover .mission-icon{
    transform:rotate(8deg) scale(1.06);
}

/*=========================================================
    TEXT
=========================================================*/

.mission-card h3{
    font-size:30px;
    font-weight:700;
    color:#12355b;
    margin-bottom:18px;
}

.mission-card p{
    font-size:17px;
    color:#68768b;
    line-height:1.9;
    margin-bottom:30px;
}

/*=========================================================
    BUTTON
=========================================================*/

.mission-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2f6df6;
    font-weight:700;
    text-decoration:none;
}

.mission-btn i{
    transition:.3s ease;
}

.mission-card:hover .mission-btn i{
    transform:translateX(8px);
}

/*=========================================================
    ANIMATION
=========================================================*/

.mission-card.show{
    opacity:1 !important;
    transform:translateY(0) !important;
}

/*=========================================================
    TABLET
=========================================================*/

@media(max-width:991px){

    .mission-wrapper{
        padding:60px 40px;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .mission-card{
        border-right:none;
        border-bottom:1px solid #edf2f7;
    }

    .mission-card:last-child{
        border-bottom:none;
    }

    .section-heading h2{
        font-size:36px;
    }

}

/*=========================================================
    MOBILE
=========================================================*/

@media(max-width:768px){

    .mission-section{
        margin-top:-120px;
        padding-bottom:80px;
    }

    .mission-wrapper{
        padding:45px 25px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:16px;
    }

    .mission-card{
        padding:40px 20px;
    }

}
/*=========================================================
    FEATURED PROJECTS SECTION
=========================================================*/

.projects-section{
    position:relative;
    padding:120px 0;
    background:transparent;
    overflow:hidden;
}

.projects-section .container{
    position:relative;
    z-index:2;
}

/*=========================================================
    PROJECTS WRAPPER
=========================================================*/

.projects-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:40px;
    padding:70px 60px;

    background:
        radial-gradient(circle at top left,
        rgba(47,109,246,.08),
        transparent 45%),

        radial-gradient(circle at bottom right,
        rgba(255,193,7,.06),
        transparent 45%),

        linear-gradient(
            180deg,
            #f8fbff 0%,
            #eef5ff 55%,
            #e7f0ff 100%
        );

    box-shadow:0 25px 70px rgba(17,62,120,.08);
}

/* Keep content above background */

.projects-wrapper > *{
    position:relative;
    z-index:2;
}

/*=========================================================
    FILTER BUTTONS
=========================================================*/

.project-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin:50px 0 70px;
}

.project-filter button{

    border:none;

    padding:12px 24px;

    border-radius:50px;

    background:#eef5ff;

    color:#2f6df6;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s ease;

}

.project-filter button:hover,
.project-filter button.active{

    background:#2f6df6;

    color:#fff;

}

/*=========================================================
    GRID
=========================================================*/

.projects-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

    align-items:stretch;

}

/*=========================================================
    CARD
=========================================================*/

.project-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

}

.project-card.large{

    grid-row:span 2;

}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(17,62,120,.15);

}

/*=========================================================
    IMAGE
=========================================================*/

.project-image{

    position:relative;

    overflow:hidden;

    border-radius:25px 25px 0 0;

}

.project-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:.5s ease;

}

.project-card:hover img{

    transform:scale(1.08);

}

/*=========================================================
    CATEGORY BADGE
=========================================================*/

.project-category{

    position:absolute;

    top:22px;

    left:22px;

    padding:8px 18px;

    border-radius:30px;

    color:#fff;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

    background:#2f6df6;

}

.project-category.healthcare{

    background:#16a34a;

}

.project-category.empowerment{

    background:#f4a300;

}

.project-category.education{

    background:#8e44ad;

}

/*=========================================================
    CONTENT
=========================================================*/

.project-content{

    padding:35px;

}

.project-content h3{

    font-size:28px;

    font-weight:700;

    color:#12355b;

    margin-bottom:15px;

    line-height:1.3;

}

.project-content p{

    color:#68768b;

    line-height:1.8;

    margin-bottom:25px;

}

/*=========================================================
    META
=========================================================*/

.project-meta{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:25px;

    color:#7b8794;

    font-size:15px;

}

.project-meta i{

    color:#2f6df6;

    margin-right:6px;

}

/*=========================================================
    BUTTON
=========================================================*/

.project-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2f6df6;

    font-weight:700;

    text-decoration:none;

}

.project-btn i{

    transition:.3s ease;

}

.project-btn:hover i{

    transform:translateX(8px);

}

/*=========================================================
    TABLET
=========================================================*/

@media(max-width:991px){

    .projects-wrapper{

        padding:60px 40px;

    }

    .projects-grid{

        grid-template-columns:1fr;

    }

    .project-card.large{

        grid-row:auto;

    }

}

/*=========================================================
    MOBILE
=========================================================*/

@media(max-width:768px){

    .projects-section{

        padding:80px 0;

    }

    .projects-wrapper{

        padding:45px 25px;

    }

    .project-filter{

        gap:10px;

    }

    .project-filter button{

        padding:10px 18px;

        font-size:14px;

    }

    .project-content{

        padding:25px;

    }

    .project-content h3{

        font-size:24px;

    }

}
/*=========================================================
    TESTIMONIALS SECTION
=========================================================*/

.testimonials-section{
    position:relative;
    padding:120px 0;
    background:transparent;
}

.testimonials-section .container{
    position:relative;
    z-index:2;
}

/*=========================================================
    WRAPPER
=========================================================*/

.testimonials-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:40px;

    padding:70px 60px;

    background:
        radial-gradient(circle at top left,
        rgba(47,109,246,.08),
        transparent 45%),

        radial-gradient(circle at bottom right,
        rgba(22,163,74,.06),
        transparent 45%),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f9fbff 100%
        );

    box-shadow:
        0 25px 70px rgba(17,62,120,.08);

}

.testimonials-wrapper>*{
    position:relative;
    z-index:2;
}

/*=========================================================
    GRID
=========================================================*/

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*=========================================================
    CARD
=========================================================*/

.testimonial-card{

    background:#fff;

    padding:40px 35px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.35s ease;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(17,62,120,.15);

}

/*=========================================================
    PHOTO
=========================================================*/

.testimonial-photo{

    width:100px;

    height:100px;

    margin:0 auto 25px;

    border-radius:50%;

    overflow:hidden;

    border:5px solid #eef5ff;

}

.testimonial-photo img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*=========================================================
    STARS
=========================================================*/

.testimonial-stars{

    margin-bottom:20px;

    color:#f4b400;

    font-size:18px;

}

.testimonial-stars i{

    margin:0 2px;

}

/*=========================================================
    TEXT
=========================================================*/

.testimonial-card p{

    color:#68768b;

    font-size:17px;

    line-height:1.8;

    margin-bottom:30px;

    font-style:italic;

}

.testimonial-card h4{

    color:#12355b;

    font-size:22px;

    margin-bottom:8px;

}

.testimonial-card span{

    color:#2f6df6;

    font-size:15px;

    font-weight:600;

}

/*=========================================================
    TABLET
=========================================================*/

@media(max-width:991px){

    .testimonials-wrapper{

        padding:60px 40px;

    }

    .testimonial-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*=========================================================
    MOBILE
=========================================================*/

@media(max-width:768px){

    .testimonials-section{

        padding:80px 0;

    }

    .testimonials-wrapper{

        padding:45px 25px;

    }

    .testimonial-grid{

        grid-template-columns:1fr;

    }

}
/*=========================================================
    OUR LEADERSHIP TEAM
=========================================================*/

.team-section{
    position:relative;
    padding:120px 0;
    background:transparent;
    overflow:hidden;
}

.team-section .container{
    position:relative;
    z-index:2;
}

/*=========================================================
    WRAPPER
=========================================================*/

.team-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:40px;

    padding:70px 60px;

    background:
        radial-gradient(circle at top left,
        rgba(47,109,246,.08),
        transparent 45%),

        radial-gradient(circle at bottom right,
        rgba(255,193,7,.06),
        transparent 45%),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f9fbff 100%
        );

    box-shadow:
        0 25px 70px rgba(17,62,120,.08);

}

.team-wrapper>*{
    position:relative;
    z-index:2;
}

/*=========================================================
    SWIPER
=========================================================*/

.teamSwiper{

    margin-top:60px;
    padding-bottom:70px;

}

.teamSwiper .swiper-slide{

    height:auto;

}

/*=========================================================
    CARD
=========================================================*/

.team-card{

    background:#fff;

    border-radius:30px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.4s ease;

    height:100%;

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(17,62,120,.15);

}

/*=========================================================
    IMAGE
=========================================================*/

.team-image{

    width:170px;

    height:170px;

    margin:0 auto 30px;

    border-radius:50%;

    overflow:hidden;

    border:6px solid #eef5ff;

    transition:.4s;

}

.team-card:hover .team-image{

    border-color:#2f6df6;

}

.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.team-card:hover img{

    transform:scale(1.08);

}

/*=========================================================
    TEXT
=========================================================*/

.team-card h3{

    font-size:28px;

    color:#12355b;

    margin-bottom:10px;

    font-weight:700;

}

.position{

    display:block;

    color:#2f6df6;

    font-size:17px;

    font-weight:600;

    margin-bottom:30px;

}

/*=========================================================
    SOCIAL
=========================================================*/

.team-social{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:25px;

    opacity:0;

    transform:translateY(20px);

    transition:.4s;

}

.team-card:hover .team-social{

    opacity:1;

    transform:translateY(0);

}

/*=========================================================
    SWIPER BUTTONS
=========================================================*/

.teamSwiper .swiper-button-next,
.teamSwiper .swiper-button-prev{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    color:#2f6df6;

}

.teamSwiper .swiper-button-next::after,
.teamSwiper .swiper-button-prev::after{

    font-size:18px;

    font-weight:bold;

}

/*=========================================================
    PAGINATION
=========================================================*/

.teamSwiper .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#cfd8e3;

    opacity:1;

}

.teamSwiper .swiper-pagination-bullet-active{

    background:#2f6df6;

    width:32px;

    border-radius:30px;

}

/*=========================================================
    TABLET
=========================================================*/

@media(max-width:991px){

    .team-wrapper{

        padding:60px 40px;

    }

    .team-image{

        width:150px;
        height:150px;

    }

}

/*=========================================================
    MOBILE
=========================================================*/

@media(max-width:768px){

    .team-section{

        padding:80px 0;

    }

    .team-wrapper{

        padding:45px 25px;

    }

    .team-card{

        padding:35px 20px;

    }

    .team-image{

        width:130px;
        height:130px;

    }

    .team-card h3{

        font-size:24px;

    }

    .position{

        font-size:16px;

    }

}
/*=========================================================
    FOUNDER CARD
=========================================================*/

.team-card.founder{

    border:3px solid #f4b400;

    position:relative;

}

.team-card.founder::before{

    content:"Founder";

    position:absolute;

    top:20px;

    right:20px;

    background:#f4b400;

    color:#fff;

    padding:6px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}
.team-image{

    position:relative;

}

.team-image::before{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:50%;

    background:linear-gradient(135deg,#2f6df6,#00bfff);

    z-index:-1;

    opacity:0;

    transition:.4s;

}

.team-card:hover .team-image::before{

    opacity:1;

}
/*=========================================================
    LATEST NEWS
=========================================================*/

.news-section{
    position:relative;
    padding:120px 0;
    background:transparent;
    overflow:hidden;
}

.news-section .container{
    position:relative;
    z-index:2;
}

/*=========================================================
    NEWS WRAPPER
=========================================================*/

.news-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:40px;

    padding:70px 60px;

    background:
        radial-gradient(circle at top left,
        rgba(47,109,246,.08),
        transparent 45%),

        radial-gradient(circle at bottom right,
        rgba(255,193,7,.06),
        transparent 45%),

        linear-gradient(
            180deg,
            #f8fbff 0%,
            #eef5ff 55%,
            #e7f0ff 100%
        );

    box-shadow:
        0 25px 70px rgba(17,62,120,.08);

}

/*=========================================================
    SWIPER
=========================================================*/

.newsSwiper .swiper-slide{

    height:auto;

    display:flex;

}

/*=========================================================
    CARD
=========================================================*/

.news-card{

    width:100%;

    display:flex;

    flex-direction:column;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}
.news-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(17,62,120,.18);

}


/*=========================================================
    IMAGE
=========================================================*/

.news-image{

    position:relative;

    overflow:hidden;

}

.news-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.news-card:hover img{

    transform:scale(1.08);

}

/*=========================================================
    CATEGORY
=========================================================*/

.news-category{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 18px;

    border-radius:30px;

    color:#fff;

    font-size:13px;

    font-weight:700;

}

.news-category.healthcare{

    background:#16a34a;

}

.news-category.education{

    background:#2f6df6;

}

.news-category.empowerment{

    background:#f4a300;

}

.news-category.community{

    background:#8e44ad;

}

/*=========================================================
    CONTENT
=========================================================*/

.news-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:30px;

}

/*=========================================================
    EXCERPT
=========================================================*/

.news-excerpt{

    color:#6b7280;

    font-size:16px;

    line-height:1.8;

    margin-bottom:20px;

    display:-webkit-box;

    -webkit-box-orient:vertical;

    -webkit-line-clamp:2;

    overflow:hidden;

    min-height:58px;

}

/*=========================================================
    META
=========================================================*/

.news-meta{

    display:flex;

    justify-content:space-between;

    margin-top:auto;

    margin-bottom:20px;

    font-size:14px;

    color:#7b8794;

}

.news-meta i{

    color:#2f6df6;

    margin-right:6px;

}

/*=========================================================
    BUTTON
=========================================================*/

.news-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:auto;

    color:#2f6df6;

    font-weight:700;

    text-decoration:none;

}

.news-btn i{

    transition:.35s;

}

.news-card:hover .news-btn i{

    transform:translateX(8px);

}

/*=========================================================
    SWIPER BUTTONS
=========================================================*/

.newsSwiper .swiper-button-next,
.newsSwiper .swiper-button-prev{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    color:#2f6df6;

}

.newsSwiper .swiper-button-next::after,
.newsSwiper .swiper-button-prev::after{

    font-size:18px;

    font-weight:bold;

}

.newsSwiper .swiper-pagination-bullet{

    width:12px;

    height:12px;

}

.newsSwiper .swiper-pagination-bullet-active{

    background:#2f6df6;

}

/*=========================================================
    TABLET
=========================================================*/

@media(max-width:991px){

    .news-wrapper{

        padding:60px 40px;

    }

}

/*=========================================================
    MOBILE
=========================================================*/

@media(max-width:768px){

    .news-section{

        padding:80px 0;

    }

    .news-wrapper{

        padding:45px 25px;

    }

    .news-content{

        padding:25px;

    }

    .news-content h3{

    font-size:24px;

    color:#12355b;

    line-height:1.45;

    margin-bottom:15px

}
}
/*=========================================================
    CALL TO ACTION
=========================================================*/

.cta-section{

    padding:120px 0;

    background:transparent;

}

.cta-wrapper{

    position:relative;

    overflow:hidden;

    text-align:center;

    border-radius:40px;

    padding:90px 70px;

    background:linear-gradient(135deg,#0b4da1,#2f6df6);

    box-shadow:0 30px 80px rgba(18,53,91,.18);

}

/* Decorative Shapes */

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    top:-180px;

    left:-150px;

}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,193,7,.12);

    bottom:-120px;

    right:-120px;

}

.cta-wrapper>*{

    position:relative;

    z-index:2;

}

.cta-wrapper .section-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:8px 22px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-wrapper h2{

    color:#fff;

    font-size:50px;

    font-weight:800;

    margin-bottom:25px;

}

.cta-wrapper p{

    max-width:820px;

    margin:0 auto 45px;

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

}

/* Buttons */

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;

}

.theme-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 36px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.theme-btn{

    background:#ffc107;

    color:#12355b;

}

.theme-btn:hover{

    transform:translateY(-6px);

}

.btn-outline{

    background:transparent;

    color:#fff;

    border:2px solid rgba(255,255,255,.4);

}

.btn-outline:hover{

    background:#fff;

    color:#12355b;

}

/* Statistics */

.cta-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    max-width:850px;

    margin:auto;

}

.cta-stat{

    padding:25px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

}

.cta-stat h3{

    color:#ffc107;

    font-size:42px;

    margin-bottom:10px;

}

.cta-stat span{

    color:#fff;

    font-size:16px;

}

/*=========================================================
    TABLET
=========================================================*/

@media(max-width:991px){

    .cta-wrapper{

        padding:70px 40px;

    }

    .cta-wrapper h2{

        font-size:40px;

    }

    .cta-stats{

        grid-template-columns:1fr;

    }

}

/*=========================================================
    MOBILE
=========================================================*/

@media(max-width:768px){

    .cta-section{

        padding:80px 0;

    }

    .cta-wrapper{

        padding:50px 25px;

    }

    .cta-wrapper h2{

        font-size:32px;

    }

    .cta-wrapper p{

        font-size:16px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .theme-btn{

        justify-content:center;

    }

}

.theme-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.theme-btn{

    background:#ffc107;
    color:#12355b;

}

.theme-btn:hover{

    transform:translateY(-5px);

}

.btn-outline{

    background:transparent;

    color:#fff;

    border:2px solid rgba(255,255,255,.45);

}

.btn-outline:hover{

    background:#fff;
    color:#12355b;

}



@media(max-width:991px){

    .cta-wrapper{

        
        text-align:center;

        padding:60px 40px;

    }

    .cta-buttons{

        justify-content:center;

    }

    .cta-image{

        margin-top:20px;

    }

}

@media(max-width:768px){

    .cta-section{

        padding:80px 0;

    }

    .cta-wrapper{

        padding:45px 25px;

    }

    .cta-wrapper h2{
        font-size:34px;

    }

}

.theme-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    border-radius:50px;

    background:#ffc107;

    color:#12355b;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.theme-btn:hover{

    transform:translateY(-4px);

}

.btn-outline{

    background:transparent;

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#12355b;

}

.cta-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.cta-image img{
    width:100%;
    max-width:380px;
    max-height:420px;
    object-fit:contain;
    display:block;
}

@media(max-width:991px){

    .cta-wrapper{

        grid-template-columns:1fr;

        text-align:center;

    }

    .cta-buttons{

        justify-content:center;

    }

}

@media(max-width:768px){

    .cta-section{

        padding:80px 0;

    }

    .cta-wrapper{

        padding:50px 30px;

    }

    .cta-content h2{

        font-size:34px;

    }

}
/*=========================================================
    PAGE HERO
=========================================================*/

.page-banner{

    position:relative;

    height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:
    linear-gradient(rgba(8,35,66,.82),rgba(8,35,66,.82)),
    url('../images/banner/contact-banner.jpg') center center/cover no-repeat;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(47,109,246,.15),
        rgba(255,193,7,.08)
    );

}

.banner-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

    max-width:760px;

    margin:auto;

}

.banner-content h1{

    font-size:58px;

    font-weight:800;

    margin:20px 0;

}

.banner-content p{

    font-size:19px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

.breadcrumb{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:12px;

    font-weight:600;

}

.breadcrumb a{

    color:#ffc107;

    text-decoration:none;

}

.breadcrumb span{

    color:#fff;

}

@media(max-width:768px){

    .page-banner{

        height:340px;

    }

    .banner-content h1{

        font-size:38px;

    }

    .banner-content p{

        font-size:16px;

        padding:0 10px;

    }

}