/* =====================================
   GOOGLE FONT
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');


/* =====================================
   ROOT
======================================*/

:root{

    --primary:#333366; 
    --secondary:#00C6FF;
    --dark:#202124;
    --text:#6B7280;
    --light:#F8F8FC;
    --border:#ECECEC;
    --radius:18px;

}


/* =====================================
RESET
======================================*/



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Jost',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

section{

    padding:90px 0;

}

.container{

    max-width:1280px;

}


/* =====================================
TOP HEADER
======================================*/

.top-header{

    background:#ffffff;
    border-bottom:1px solid #efefef;
    padding:12px 0;
    font-size:14px;

}

.top-header span{

    color:#666;

}

.top-header a{

    color:#666;
    transition:.3s;

}

.top-header a:hover{

    color:var(--primary);

}



/* =====================================
NAVBAR
======================================*/

.navbar{

    padding:18px 0;
    transition:.35s;

}

.navbar-nav{

    margin-left:auto;

}

.navbar-brand{

    font-size:34px;
    font-weight:700;
    color:var(--primary)!important;
	margin-right:50px;

}

.nav-link{

    font-weight:500;
    color:#444!important;
    margin:0 12px;
    transition:.3s;

}

.nav-link:hover{

    color:var(--primary)!important;

}


.nav-search{

    margin-left:30px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#F5F5F8;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    transition:.3s;

}

.nav-search:hover{

    background:var(--primary);

    color:#fff;

}

.btn-primary{

    background:var(--primary);
    border:none;
    border-radius:50px;
    padding:12px 28px;
    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-2px);

}

.btn-outline-primary{

    border-radius:50px;

}


/*=============================
MENU
==============================*/

.navbar-nav .nav-item{

    position:relative;
    margin:0 10px;

}

.navbar-nav .nav-link{
    padding:5px 5px;
    border-radius:10px;

}

.navbar-nav .nav-link.active{

    background:rgba(51,51,102,.08);
    color:var(--primary);
}


.dropdown-toggle-custom{

    display:flex;
    align-items:center;
    gap:8px;

    color:#222;

    font-weight:600;

    text-decoration:none;

    padding:25px 0;

}

.menu-arrow{

    font-size:11px;

    transition:.3s;

}

/* rotate arrow */

.nav-item:hover .menu-arrow{

    transform:rotate(180deg);

}


/*=============================
SUBMENU
==============================*/

.submenu{

    position:absolute;

    top:110%;

    left:0;

    min-width:240px;

    background:white;

    border-radius:15px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    padding:15px 0;

    list-style:none;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:999;

}

.nav-item:hover .submenu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.submenu li{

    width:100%;

}

.submenu li a{

    display:block;

    padding:12px 25px;

    color:#444;

    transition:.3s;

}

.submenu li a:hover{

    background:#f8f8ff;

    color:#333366;

    padding-left:35px;

}

/* =====================================
HERO
======================================*/

.hero{

    background:#F7F7FD;
    overflow:hidden;

}

.hero h1{

    font-size:62px;
    font-weight:700;
    line-height:1.2;

}

.hero p{

    font-size:18px;
    color:var(--text);

}

.hero .badge{

    border-radius:40px;
    padding:10px 18px;
    font-size:15px;

}

.hero-search{

    max-width:540px;

}

.hero-search input{

    border:none;
    height:65px;
    border-radius:50px 0 0 50px;
    box-shadow:none;

}

.hero-search button{

    border-radius:0 50px 50px 0;
    width:150px;

}

.hero img{

    animation:float 5s ease infinite;

}


/*==================================
HERO
===================================*/

.hero-banner{

    padding:35px 0 80px;

}

.hero-wrapper{

    position:relative;

    min-height:700px;
   	border-radius:40px;

    overflow:hidden;

    background-image:url("../img/home-banner3.jpg");

    background-size:cover;

    background-position:center;

}


/* overlay putih */

.hero-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:;

}

.hero-content{

    position:relative;
    z-index:10;
    max-width:650px;
    padding:50px 40px;
    height:700px;
    display:flex;
    flex-direction:column;
	
}

.hero-subtitle{

    display:inline-block;

    background:#eef2ff;

    color:#333366;

    padding:10px 20px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:64px;

    font-weight:800;

    line-height:1.05;

    color:#FFF;
text-shadow: 2px 3px 8px rgba(6,11,55,0.74);


}

.hero-content p{

    margin-top:25px;
    color:#666;
    font-size:20px;
    line-height:1.8;	
    text-justify:inter-word;
	

}

.hero-button{

    margin-top:35px;

}

.hero-button .btn{

    border-radius:60px;
    padding:15px 20px;

    font-size:20px;

}

.hero-logo img{

    width:180px;

}



/* =====================================
COURSE CARD
======================================*/

.course-slider-wrapper{

    position:relative;

}


.course-card{

    border-radius:20px;
    overflow:hidden;
    background:#fff;
    border:1px solid #eee;
    transition:.35s;

}

.course-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.08);

}

.course-image{

    position:relative;

}

.course-image img{

    width:100%;

}

.course-price{

    position:absolute;
    right:20px;
    bottom:20px;

    background:var(--primary);
    color:#fff;

    border-radius:40px;

    padding:8px 16px;

}

.course-body{

    padding:25px;

}

.course-body h5{

    font-weight:600;

}

.course-meta{

    display:flex;
    justify-content:space-between;
    color:#777;
    margin-top:18px;

}



.course-section{

    padding:100px 0;
    background:#fff;

}

.section-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;

}

.course-card{

    border-radius:20px;
    overflow:hidden;
    background:white;
    border:1px solid #ececec;
    transition:.35s;

}

.course-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.course-image{

    position:relative;

}

.course-image img{

    width:100%;
    height:230px;
    object-fit:cover;

}

.badge-course{

    position:absolute;
    top:15px;
    left:15px;

    background:#333366;
    color:white;

    padding:8px 14px;
    border-radius:30px;
    font-size:13px;

}

.course-body{

    padding:25px;

}

.course-body small{

    color:#333366;
    font-weight:600;

}

.course-body h4{

    margin:12px 0;
    font-size:22px;

}

.rating{

    color:#f9b800;
    margin:18px 0;

}

.course-footer{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.course-nav{

    display:flex;
    gap:15px;

}

.course-prev,
.course-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#333366;

    color:#fff;

    z-index:20;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.course-prev{

    left:-28px;

}

.course-next{

    right:-28px;

}

.course-prev:hover,
.course-next:hover{

    background:#4d2fe0;

    transform:translateY(-50%) scale(1.08);

}

.course-prev::after,
.course-next::after{

    font-size:18px;

}


.topCourse .swiper-slide{

    height:auto;
    display:flex;

}

.course-card{

    width:100%;
}

.topCourse{

    overflow:hidden;
}

.topCourse .swiper-wrapper{

    align-items:stretch;
}


.course-navigation{

    display:flex;
    gap:12px;

}





/* =====================================
ARTICLE
======================================*/

.article-content h3{}
.article-content p{}
.article-content img{}
.article-content table{}
.article-content ul{}
.article-content ol{}
.article-content blockquote{}
.article-content iframe{}

.article-cover{

border-radius:25px;

margin:40px 0;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.article-content{

max-width:850px;

margin:auto;

line-height:2;

font-size:18px;

}

.article-content h2{

font-size:34px;

margin-top:50px;

margin-bottom:25px;

color:#333366;

}


/* =====================================
BUTTON
======================================*/

.btn{

    transition:.3s;

}

.btn:hover{

    transform:translateY(-2px);

}


/*==================================
FAQ
===================================*/

.faq-section{

    padding:100px 0;

    background:;

}

.faq-section .accordion-item{

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.faq-section .accordion-button{

    background:#fff;

    padding:22px 28px;

    font-size:18px;

    font-weight:600;

    color:#222;

    box-shadow:none;

}

.faq-section .accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-body{

    padding:25px 30px;

    color:#666;

    line-height:1.8;

    background:#fff;

}


/* =====================================
FOOTER
======================================*/

footer{

    background:#111827;
    color:#fff;
    padding:80px 0;

}

footer a{

    color:#d6d6d6;

}

footer a:hover{

    color:#fff;

}

.footer-logo{

    max-height:90px;

}

.footer-brand{

    display:flex;

    align-items:center;

    height:100%;

}


/*==========================
SOCIAL FOOTER
==========================*/

.social-wrapper{

    text-align:right;

}

.social-title{

    color:#fff;

    font-size:18px;

    font-weight:600;

    margin-bottom:18px;

}

.social-icon{

    display:flex;

    justify-content:flex-end;

    gap:15px;

}

.social-icon a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:22px;

    transition:.35s;
	

}

.social-icon a:hover{

    background:var(--primary);

    box-shadow:0 12px 30px rgba(51,51,102,.35);

    transform:translateY(-6px) scale(1.08);

}


@media(max-width:991px){

    .social-wrapper{

        text-align:center;

        margin-top:30px;

    }

    .social-icon{

        justify-content:center;

    }

}


/* =====================================
ANIMATION
======================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==============================
SECTION TITLE
==============================*/

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    display:inline-block;
    background:#ede9fe;
    color:#333366;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:15px;

}

.section-title h2{

    font-size:46px;
    font-weight:700;
    margin-bottom:15px;
	color:#333366;
}

.section-title h5{

    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
	color:#333366;

}

.section-title p{

    color:#6b7280;
    font-size:18px;

}

.section-about p{

    color:#6b7280;
    font-size:18px;

}


/*==============================
CATEGORY
==============================*/

.category{

    background:#fff;
    padding:50px 0;

}

.category-card{

    background:#fff;
    border-radius:22px;
    padding:30px 20px;
    transition:.35s;
	height:100%;
    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.08);

}


.category-card .icon{


    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:34px;
    margin:auto;
    margin-bottom:25px;
    transition:.35s;

}

.category-card:hover .icon{

    transform:rotate(15deg) scale(1.08);

}

.category-card h4{

    font-size:38px;
    font-weight:600;
    margin-bottom:8px;
	color: #333366;
}

.category-card p{

    color:#6b7280;
    margin:0;
	font-size:22px;

}


/*==================================
GALLERY
===================================*/

.gallery-section{

    padding:100px 0;
    background:#F8F9FD;

}

.gallery-item{

    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;

}

.gallery-item img{

    width:100%;
    height:260px;
    object-fit:cover;

    transition:.5s;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(100,64,251,.70);

    opacity:0;

    transition:.4s;

}

.gallery-overlay i{

    font-size:34px;

    color:white;

    transform:scale(.5);

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-item:hover i{

    transform:scale(1);

}


/* blog */

/*==========================
BLOG
==========================*/

.blog-section{

    padding:100px 0;

    background:#F8F9FD;

}

.blog-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.blog-card:hover{

    transform:translateY(-8px);

}

.blog-image{

    position:relative;
    overflow:hidden;

}

.blog-image img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.5s;
	
	border-radius:22px;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-category{

    position:absolute;

    left:20px;

    top:20px;

    background:var(--primary);

    color:white;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

}

.blog-body{

    padding:25px;

}

.blog-date{

    color:#888;

    font-size:14px;

    margin-bottom:12px;

}

.blog-body h4{

    font-size:22px;

    line-height:1.4;

    margin-bottom:15px;

    transition:.3s;

}

.blog-card:hover h4{

    color:var(--primary);

}

.blog-body p{

    color:#777;

    margin-bottom:20px;

}

.blog-body a{

    color:var(--primary);

    font-weight:600;

}

.blog-body a i{

    margin-left:8px;

    transition:.3s;

}

.blog-body:hover a i{

    transform:translateX(6px);

}

.blog-content h3{

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:66px;

    overflow-wrap:break-word;
    word-break:break-word;

}


/*==========================
BACK TO TOP
==========================*/

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    z-index:9999;

}

.back-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-top:hover{

    color:#fff;

    background:#292952;

    transform:translateY(-5px);

}



/*==================================
CTA
===================================*/

.cta-section{

    padding:100px 0 80px;

}

.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    min-height:500px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:url("../img/home-banner-footer.jpg") center center/cover no-repeat;

}



.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(51,51,102,.82);

    backdrop-filter:blur(2px);

}


.cta-overlay2{

    position:absolute;

    inset:0;

    background:rgba(1,1,1,.4);

    backdrop-filter:blur(2px);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:760px;

    padding:30px;

}

.cta-content h2{

    color:#fff;

    font-size:56px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}

.cta-content p{

    color:rgba(255,255,255,.90);

    font-size:20px;

    line-height:1.8;

    margin-bottom:45px;

}



.btn-cta{

    display:inline-flex;

    align-items:center;

    text-decoration:none;

    overflow:hidden;

    border-radius:60px;

    background:rgba(255,255,255,.12);

    color:#fff;

    transition:.35s;

    box-shadow: 0px 0px 14px 4px rgba(242,229,229,0.39);
	
	

}

.btn-icon{

    width:90px;

    height:78px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#2A1836;

    font-size:40px;

}

.btn-cta span:last-child{

    padding:0 45px;

    font-size:28px;

    font-weight:700;

}

.btn-cta:hover{

    transform:translateY(-5px);

    color:#fff;

    background:rgba(255,255,255,.50);

}





@media (max-width:768px){

    .cta-box{

        min-height:340px;

    }

    .cta-content h2{

        font-size:34px;

    }

    .cta-content p{

        font-size:16px;

    }

    .btn-icon{

        width:65px;
        height:60px;
        font-size:28px;

    }

    .btn-cta span:last-child{

        font-size:18px;
        padding:0 24px;

    }

}


/*==================================
HERO INFO
===================================*/

.hero-info{

    margin-top:-120px;
    position:relative;
    z-index:20;

}

.hero-info-box{

    background:#fff;
    border-radius:24px;
    padding:30px;

}

.info-item{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    padding:10px 25px;

}

.info-icon{

    width:70px;

    height:70px;

    border-radius:50%;


    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

}

.info-item small{

    display:block;

    color:#888;

    font-size:15px;

    margin-bottom:5px;

}

.info-item h5{

    margin:0;

    color:var(--primary);

    font-size:30px;

    font-weight:700;

}


.hero-scroll{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#fff;

    text-decoration:none;

    font-weight:600;

}

.hero-scroll i{

    animation:bounceDown 1.5s infinite;

}

@media (max-width:768px){

    .hero-info{

        margin-top:-120px;

    }

    .hero-info-box{

        padding:20px;

    }

    .info-item{

        justify-content:flex-start;

        border:none !important;

        margin-bottom:25px;

        padding:10px;

    }

}


@keyframes bounceDown{

    0%,20%,50%,80%,100%{
        transform:translateY(0);
    }

    40%{
        transform:translateY(8px);
    }
    60%{
        transform:translateY(4px);
    }

}


/*==========================
Kontak
==========================*/
.contact-map{

    padding:0;
    margin:0;
	background:#F8F9FD;
}

.contact-map iframe{
	top:0px;
    width:100%;
    max-height:500px;
    border:0;
	border-bottom-right-radius: 80px;
border-bottom-left-radius: 80px;
	

}


.contact-form-section{

    padding:20px 0 75px 0;

    background:#F8F9FD;
    
}

.contact-card{

    background:#fff;

    padding:60px;

    border-radius:30px;
    
    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.contact-card .section-con-p {
    
    color: #333366;
}


.custom-input{

    height:58px;

    border:2px solid #ECEEF5;

    border-radius:16px;

    padding:0 22px;

    font-size:16px;

    transition:.35s;

    background:#FAFBFF;

}

textarea.custom-input{

    height:auto;

    padding:18px 22px;

}


.custom-input:focus{

    border-color:var(--primary);

    background:#fff;

    box-shadow:0 0 0 5px rgba(51,51,102,.08);

}

.contact-card label{

    font-weight:600;

    margin-bottom:10px;

    color:#444;

}


.btn-send{

    border:none;

    padding:16px 45px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.btn-send:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(51,51,102,.25);

}

.custom-input:hover{

    border-color:#D9DDED;

}





/*==================================
PAGINATION
==================================*/

.pagination-wrapper{

    margin-top:70px;

    display:flex;

    justify-content:center;

}

.custom-pagination{

    display:flex;

    align-items:center;

    gap:12px;

    padding:0;

    margin:0;

    list-style:none;

}

.custom-pagination li a,

.custom-pagination li span{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-weight:600;

    color:#333;

    background:#fff;

    border:1px solid #E8E8E8;

    transition:.35s;

}

.custom-pagination li:not(.disabled) a:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

    transform:translateY(-3px);

}

.custom-pagination li a.active{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

    box-shadow:0 12px 30px rgba(51,51,102,.25);

}

.custom-pagination li.disabled a{

    pointer-events:none;

    opacity:.45;

    cursor:not-allowed;

    background:#F5F5F5;

    color:#999;

    border-color:#E5E5E5;

    box-shadow:none;

    transform:none;

}


.custom-pagination li:not(.disabled) a:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

    transform:translateY(-3px);

}


@media(max-width:576px){

    .custom-pagination{

        gap:8px;

    }

    .custom-pagination li a{

        width:42px;

        height:42px;

        font-size:15px;

    }

}


/*==============================
VISION
==============================*/

.vision-section{

    padding:100px 0;

}

.vision-card{

    background:#333366;

    color:#fff;

    border-radius:30px;

    padding:50px;

    height:100%;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.vision-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(51,51,102,.28);

}

.vision-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.vision-card h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;

}

.vision-card p{

    font-size:18px;

    line-height:2;

    margin:0;

}

.vision-card::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    top:-100px;

    right:-100px;

}


.vision-card::after{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    bottom:-70px;

    left:-70px;

}


.kan-card{

  
    border-radius:30px;

    padding:50px;

    height:100%;
	box-shadow:-10px 20px 55px rgba(0,0,0,.09);
	
	display:flex;

    justify-content:center;

    align-items:center;



}

/* proses kalibrasi*/

.process-hero{

    padding:100px 0 170px;

    background:#F8F9FD;

    position:relative;

}

.process-flow{

    background:#fff;

    border-radius:25px;

    padding:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}




.flow-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#F3F5FA;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    color:#333366;

    transition:.35s;

}


.proses-title{
    color: #333366;
}

.proses-title p{
    color: #6b7280;
}

	
.proses-title h2{

    font-size:46px;
    font-weight:700;
    margin-bottom:15px;
	color:#333366;
}	


.process-step h2{

    font-size:46px;
    font-weight:700;
    margin-bottom:15px;
	color:#333366;
}


.process-summary{

    margin-top:-150px;

    position:relative;

    z-index:20;

}

.summary-card{

    background:#fff;
	color: #333366;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;
	margin-bottom:10px;

}

.summary-card:hover{

    transform:translateY(-8px);

}


.flow-icon.active{

    background:#333366;

    color:#fff;

}

.flow-line{

    flex:1;

    height:3px;

    background:#E4E7F2;

    margin:0 0px;

}

.process-item{

    display:flex;

    align-items:center;

    gap:35px;

    padding:40px;

    border-radius:25px;

    background:#333366;

    color:#fff;

    margin-bottom:40px;

    transition:.35s;

}

.process-item:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(51,51,102,.25);

}

.process-icon{

    width:110px;

    height:110px;

    border-radius:25px;

    background:rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    flex-shrink:0;

}

.process-content {
	border-left : 1px solid #fff;
	padding: 20px;
}


.process-content span{

    color:#FFD166;

    font-weight:700;

    letter-spacing:2px;

}


.service-card{

    background:#333366;

    color:#fff;

    border-radius:28px;

    margin-bottom:40px;
    margin-top:40px;

    overflow:hidden;

    position:relative;

    transition:.35s;

}

.service-card-inner{
	padding:40px;
}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(51,51,102,.25);

}

.service-image{

    max-width:95%;

    transition:.4s;

}

.service-card:hover .service-image{

    transform:scale(1.05);

}

.service-button{

    align-items:center;
    justify-content:center;
    font-size:15px;
    position:absolute;
    bottom:35px;
    right:35px;
    transition:.35s;	
	background:#fff;
	padding : 4px;
    color:#333366;
	border-radius:10px;
	
}

.service-button:hover{
	
    background:#4c4c79;
	padding : 2px;
    color:#fff;
	border-radius:10px;

}

.service-category{

    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    margin-bottom:18px;

    font-size:22px;
    font-weight:700;

    letter-spacing:1px;

}

.service-card::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-100px;

    top:100px;

}

@media(max-width:991px){

.service-card{

padding:40px;

}

.service-image{

margin-top:30px;

}

}