/*=========================
      SERVICES
==========================*/
.services-section .container{
    max-width:1300px;  
} 
.services-section {
    padding: 8px 0;
    background: #fff;
}

.section-title {

    font-size: 55px;
    font-weight: 700;
    color: #0d3445;

}

.section-subtitle {

    font-size: 20px;
    color: #6c757d;
    margin-top: 10px;

}

/* Card */

.service-card {
    background: #fff;
    border: 1px solid #dce8ec;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    
    display: flex;
    flex-direction: column;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.service-card:hover {

    transform: translateY(-10px);
    border-top:5px solid #00a7b5;
    box-shadow: 0 20px 40px rgba(0, 164, 180, .15);  

}

/* Header */

.service-header {

    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;

}

.service-icon {

    width: 48px;
    height: 48px;

    background: #e9fbfd;

    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #00a4b4;

    font-size: 22px;

}

.service-header h4 {

    font-size: 24px;
    font-weight: 700;
    color: #0d3445;
    margin: 0;
    min-height: 60px;

}

/* Image */

.service-img {

    width: 100%;
    height: 180px;

    object-fit: cover;

    border-radius: 12px;

    margin-bottom: 18px;

}

/* Description */

.service-card p {

    color: #67737d;
    line-height: 1.7;
    margin-bottom: 20px;

}

.service-card ul {

    list-style: none;
    padding: 0;
    margin-bottom: 25px;

}

.service-card ul li {

    margin-bottom: 10px;
    color: #495057;

}

.service-card ul li::before {

    content: "✓";
    color: #00a4b4;
    font-weight: bold;
    margin-right: 8px;

}

/* Button */

.service-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    width:100%;
    height:52px;

    background:#14b8b1;
    color:#fff;
    text-decoration:none;

    font-size:20px;
    font-weight:700;

    border:none;
    border-radius:10px;

    transition:.3s ease;
}

.service-btn:hover{
    background:#5b4ffa;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(20,184,177,.30);
}

.service-btn i{
    font-size:18px;
    transition:.3s;
}

.service-btn:hover i{
    transform:translateX(5px);
}

.service-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Show only 3 lines */
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.7;
}


 .service-btn i {
    font-size: 11px;
    transition: .3s;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* Bottom Buttons */

.main-btn {

    display: inline-block;

    background: #009fb0;
    color: #fff;

    padding: 15px 34px;

    border-radius: 40px;

    text-decoration: none;

}

.outline-btn {

    display: inline-block;

    border: 2px solid #00a4b4;

    color: #00a4b4;

    padding: 15px 34px;

    border-radius: 40px;

    text-decoration: none;

}

.outline-btn:hover {

    background: #00a4b4;

    color: #fff;

}
/*==========================
    OUR PROCESS SECTION
==========================*/
.process-section .container{
    max-width:1300px;   /* default Bootstrap is around 1320px */
}
.process-section{
    padding:90px 0;
    background:#f8feff;
    position:relative;
    overflow:hidden;
}

.process-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#bdeef4;
    border-radius:50%;
    filter:blur(120px);
    top:-150px;
    left:-150px;
    opacity:.45;
}

.process-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#dff7fb;
    border-radius:50%;
    filter:blur(120px);
    right:-120px;
    bottom:-150px;
    opacity:.45;
}

/*==========================
        Heading
==========================*/

.process-heading{
    max-width:700px;
    margin:auto;
    position:relative;
    z-index:2;
}

.process-subtitle{
    display:inline-block;
    padding:7px 18px;
    background:#dff9fc;
    color:#10a9b7;
    font-size:13px;
    font-weight:700;
    border-radius:30px;
    margin-bottom:15px;
    letter-spacing:.5px;
}

.process-heading h2{
    font-size:58px;
    font-weight:800;
    color:#0a3441;
    margin-bottom:15px;
}

.process-heading p{
    font-size:20px;
    color:#666;
    line-height:1.8;
}

.process-heading strong{
    color:#09b5c2;
}

/*==========================
        Cards
==========================*/

.process-card{
    background:#fff;
    border-radius:24px;
    padding:28px;
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,167,181,.15);
}

.process-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px; 
}

.process-top{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:18px;
}

.process-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#0fb2bf;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
    box-shadow:0 10px 25px rgba(0,167,181,.25);

    transition:.6s;
}

 .process-card:hover .process-icon{
    transform:rotate(360deg);
}

.process-icon.brown{
    background:#b46a48;
    box-shadow:0 10px 25px rgba(180,106,72,.25);
}

.step-badge{
    display:inline-block;
    padding:5px 14px;
    border-radius:30px;
    background:#dff7fb;
    color:#08a7b4;
    font-size:11px;
    font-weight:700;
    margin-bottom:10px;
}

.step-badge.brown{
    background:#f5e4dc;
    color:#a75e3d;
}

.process-card h4{
    font-size:28px;
    font-weight:700;
    color:#123847;
    margin-bottom:12px;
}

.process-card p{
    font-size:16px;
    color:#666;
    line-height:1.8;
}

/*==========================
      Success Card
==========================*/

.success-card{
    height:100%;
    background:linear-gradient(135deg,#0eb3bf,#108c95);
    border-radius:24px;
    padding:35px 28px;
    color:#fff;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 18px 40px rgba(0,167,181,.25);
    overflow:hidden;
    position:relative;
}

.success-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-40px;
    right:-40px;
}

.success-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#17b8c5;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin:0 auto 25px;
    box-shadow:0 15px 35px rgba(0,167,181,.25);

    transform-style:preserve-3d;
    animation:coinAir 7s cubic-bezier(.45,.05,.55,.95) infinite;
}

@keyframes coinAir{

    0%{
        transform:translateY(0) rotateY(0deg);
    }

    25%{
        transform:translateY(-10px) rotateY(180deg);
    }

    50%{
        transform:translateY(-18px) rotateY(360deg);
    }

    75%{
        transform:translateY(-10px) rotateY(540deg);
    }

    100%{
        transform:translateY(0) rotateY(720deg);
    }

}
.success-card h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:18px;
}

.success-card p{
    font-size:17px;
    line-height:1.8;
    margin:0;
}

/*==========================
      Responsive
==========================*/

@media(max-width:991px){

.process-section{
    padding:70px 0;
}

.process-heading h2{
    font-size:42px;
}

.process-heading p{
    font-size:17px;
}

.process-card{
    padding:24px;
}

.process-card h4{
    font-size:24px;
}

.success-card h3{
    font-size:28px;
}

}

@media(max-width:767px){

.process-heading h2{
    font-size:34px;
}

.process-heading p{
    font-size:15px;
}

.process-top{
    gap:12px;
}

.process-icon{
    width:52px;
    height:52px;
    font-size:20px;
}

.process-card h4{
    font-size:22px;
}

.process-card p{
    font-size:15px;
}

.success-card{
    padding:30px 22px;
}

.success-card h3{
    font-size:24px;
}

.success-card p{
    font-size:15px;
}

}

/*=========================
    TRUSTED PARTNERS
==========================*/

.partners-section{
    padding:90px 0;
    background:#eefbfd;
    position:relative;
    overflow:hidden;
}

/* Background Blur */

.partners-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#bceff5;
    border-radius:50%;
    filter:blur(120px);
    left:-120px;
    top:-80px;
    opacity:.45;
}

.partners-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#dff8fb;
    border-radius:50%;
    filter:blur(120px);
    right:-120px;
    bottom:-120px;
    opacity:.45;
}

/* Heading */

.partners-header{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.partners-header h2{
    font-size:56px;
    font-weight:800;
    color:#0b3442;
    margin-bottom:18px;
}

.partners-header p{
    max-width:650px;
    margin:auto;
    color:#666;
    font-size:20px;
    line-height:1.8;
}

/* Card */

.partner-card{

    background:#fff;
    border-radius:22px;
    padding:35px 30px;

    height:100%;

    text-align:center;

    border:1px solid #d9eef3;

    box-shadow:0 10px 28px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

 .partner-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 40px rgba(0,167,181,.18);

}

.partner-card img{

    width:120px;

    height:90px;

    object-fit:contain;

    margin-bottom:25px;

    transition:.35s;

}

.partner-card:hover img{

    transform:scale(1.08);

}

.partner-card h4{

    font-size:28px;

    font-weight:700;

    color:#123847;

    margin-bottom:15px;

}

.partner-card p{

    color:#666;

    font-size:17px;

    line-height:1.8;

    margin:0;

}

/* Responsive */

@media(max-width:991px){

.partners-section{

    padding:70px 0;

}

.partners-header h2{

    font-size:42px;

}

.partners-header p{

    font-size:17px;

}

.partner-card{

    padding:30px 25px;

}

.partner-card h4{

    font-size:24px;

}

.partner-card p{

    font-size:16px;

}

}

@media(max-width:767px){

.partners-header h2{

    font-size:34px;

}

.partners-header p{

    font-size:15px;

}

.partner-card{

    padding:28px 20px;

}

.partner-card img{

    width:95px;

    height:75px;

}

.partner-card h4{

    font-size:22px;

}

.partner-card p{

    font-size:15px;

}

}

