:root{

    /* Brand Colors */
    --primary:#0086D1;
    --primary-dark:#005AA9;
    --secondary:#003B78;

    --accent:#6EC6F0;

    --light:#F5FAFD;
    --white:#ffffff;

    --heading:#082C52;
    --text:#5B6B7A;

    --border:#E5EEF5;
}

/* =========================
GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit',sans-serif;
    overflow-x:hidden;
    color:var(--text);
    background:#fff;
}

section{
    padding:100px 0;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

.section-tag{
    color:var(--primary);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:var(--heading);
}

/* =========================
TOP HEADER
========================= */

.top-header{
    background:var(--secondary);
    padding:10px 0;
    font-size:14px;
}

.top-info{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.top-info a,
.top-info span{
    color:#dbeafe;
}

.top-info i{
    color:var(--accent);
    margin-right:8px;
}

.social-icons a{
    color:#fff;
    margin-left:15px;
    transition:.3s;
}

.social-icons a:hover{
    color:var(--accent);
}

/* =========================
MAIN NAVBAR
========================= */

.pcs-navbar{
    background:#fff;
    padding:18px 0;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.navbar-brand img{
    height:70px;
    width:auto;
}

.pcs-navbar .nav-link{
    color:var(--heading);
    font-weight:600;
    margin:0 12px;
    transition:.3s;
}

.pcs-navbar .nav-link:hover,
.pcs-navbar .nav-link.active{
    color:var(--primary);
}

.btn-book{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-book:hover{
    color:#fff;
    transform:translateY(-2px);
}

/* =========================
HERO
========================= */

.hero-section{
    position:relative;
    background:var(--light);
    padding:90px 0;
    overflow:hidden;
}

.hero-section::before{

    content:'';

    position:absolute;

    width:850px;
    height:850px;

    left:-350px;
    top:-150px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(0,134,209,.10),
    rgba(0,134,209,.03)
    );

    z-index:1;
}

.hero-section .container{
    position:relative;
    z-index:2;
}

.hero-title{
    font-size:68px;
    line-height:1.05;
    font-weight:800;
    color:var(--heading);
    margin-bottom:20px;
}

.hero-title span{
    color:var(--primary);
}

.hero-text{
    font-size:18px;
    max-width:550px;
    margin-bottom:35px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
}

.hero-features i{
    color:var(--primary);
    font-size:20px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:40px;
}

.swiper.heroSwiper {
    overflow:hidden;
    border-radius:30px;
}

.hero-image-wrap{
    position:relative;
}

.heroSwiper{
    width:100%;
}

.heroSwiper .swiper-slide{
    overflow:hidden;
}

.heroSwiper .hero-image{
    width:100%;
    display:block;
    object-fit:cover;
    transform:scale(1);
}

/* Ken Burns Effect */
.heroSwiper .swiper-slide-active .hero-image{
    animation:kenburns 7s ease-in-out forwards;
}

@keyframes kenburns{

    0%{
        transform:scale(1) translate(0,0);
    }

    100%{
        transform:scale(1.18) translate(-2%,-2%);
    }

}

.support-badge{

    z-index:20;
}



.btn-main{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-main:hover{
    color:#fff;
    transform:translateY(-3px);
}

.btn-outline-custom{

    border:2px solid var(--primary);
    color:var(--primary);

    padding:14px 30px;
    border-radius:50px;

    font-weight:700;
    transition:.3s;
}

.btn-outline-custom:hover{
    background:var(--primary);
    color:#fff;
}

/* =========================
CUSTOMERS
========================= */

.customer-box{
    display:flex;
    align-items:center;
    gap:20px;
}

.customer-box strong{
    color:var(--heading);
}

.customer-box p{
    margin:0;
}

.avatars{
    display:flex;
}

.avatars img{
    width:46px;
    height:46px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    margin-left:-10px;
}

/* =========================
HERO IMAGE
========================= */

.hero-image-wrap{
    position:relative;
    border-radius:30px;
}

.hero-image{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:30px;
}

/* =========================
24/7 SUPPORT CARD
========================= */

.support-badge{

    position:absolute;

    right:-20px;
    bottom:80px;

    width:160px;
    height:160px;

    background:#fff;

    border-radius:30px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    border:3px solid rgba(0,134,209,.15);

    box-shadow:
    0 20px 50px rgba(0,134,209,.15);
}

.support-badge h3{
    font-size:42px;
    font-weight:800;
    color:var(--secondary);
    margin:0;
}

.support-badge span{
    font-weight:600;
    color:var(--heading);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-title{
        font-size:48px;
    }

    .hero-image{
        height:450px;
        margin-top:50px;
    }

    .support-badge{
        right:20px;
        bottom:20px;
    }
}

@media(max-width:767px){

    .hero-features{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-title{
        font-size:40px;
    }

    .section-title{
        font-size:34px;
    }
}






/* =========================
ABOUT SECTION
========================= */

.about-section{
    padding:80px 0;
    background:#fff;
}

.about-image-wrapper{
    position:relative;
}

.about-image{

    width:100%;
    height:600px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

}

.experience-badge{

    position:absolute;

    left:-25px;
    bottom:40px;

    width:140px;
    height:140px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    border-radius:30px;

    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,134,209,.25);

}

.experience-badge h3{

    margin:0;
    font-size:42px;
    font-weight:800;

}

.experience-badge span{

    font-size:14px;
    line-height:1.4;

}

.about-title{

    font-size:52px;
    font-weight:800;

    color:var(--heading);

    margin-top:15px;
    margin-bottom:25px;

    line-height:1.15;

}

.about-text{

    font-size:17px;
    line-height:1.9;

    margin-bottom:35px;

}

.about-features{

    display:grid;
    gap:18px;

    margin-bottom:40px;

}

.about-features div{

    display:flex;
    align-items:center;
    gap:12px;

    font-weight:500;

}

.about-features i{

    color:var(--primary);
    font-size:18px;

}

.founder-box{

    display:flex;
    align-items:center;

    gap:25px;

    margin-top:20px;

}

.signature{

    font-size:34px;
    font-family:cursive;

    color:var(--primary);

}

.founder-box h5{

    margin:0;

    color:var(--heading);
    font-weight:700;

}

.founder-box span{

    color:var(--text);

}

/* MOBILE */

@media(max-width:991px){

    .about-title{
        font-size:38px;
    }

    .about-image{
        height:450px;
    }

    .experience-badge{

        left:20px;
        bottom:20px;

    }

}


/* =========================
SERVICES
========================= */

.services-section{
    background:#f5fafd;
    padding:80px 0;
}

.section-heading{
    font-size:48px;
    font-weight:800;
    color:var(--heading);
    margin-top:10px;
}

.section-subtitle{
    color:var(--text);
}

.service-card{

    background:#fff;

    border:1px solid #E8EEF5;

    border-radius:24px;

    padding:35px 25px;

    height:100%;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,134,209,.12);

}

.service-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    rgba(0,134,209,.10),
    rgba(0,90,169,.08)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.service-icon i{

    font-size:28px;
    color:var(--primary);

}

.service-card h4{

    color:var(--heading);
    font-weight:700;

    margin-bottom:15px;
}

.service-card p{

    margin-bottom:20px;
    line-height:1.7;

}

.service-card a{

    color:var(--primary);
    font-weight:600;

}



/* =========================
WHY CHOOSE US
========================= */

.why-us-section{
    padding:80px 0 80px;
    background:#fff;
}

.why-us-box{

    background:
    linear-gradient(
        135deg,
        #003B78,
        #005AA9
    );

    border-radius:35px;

    padding:70px 50px;

    position:relative;
    overflow:hidden;
}

.why-us-box::before{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    right:-120px;
    top:-120px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

}

.why-us-box::after{

    content:'';

    position:absolute;

    width:280px;
    height:280px;

    left:-100px;
    bottom:-100px;

    border-radius:50%;

    background:
    rgba(255,255,255,.04);

}

.section-tag-light{

    display:inline-block;

    color:#9ed7ff;

    text-transform:uppercase;
    letter-spacing:1px;

    font-size:13px;
    font-weight:600;

    margin-bottom:12px;
}

.why-us-box h2{

    color:#fff;

    font-size:42px;
    font-weight:800;

}

.feature-item{
    position:relative;
    z-index:2;
}

.feature-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:
    rgba(255,255,255,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;
    margin-bottom:20px;

    backdrop-filter:blur(10px);
}

.feature-icon i{

    font-size:30px;
    color:#fff;

}

.feature-item h5{

    color:#fff;
    font-weight:700;

    margin-bottom:10px;
}

.feature-item p{

    color:#c8def8;
    margin:0;

}

/* =========================
PROCESS PREMIUM
========================= */

.process-section{
    padding:80px 0;
    background:#F8FBFF;
}

.process-flow{
    position:relative;
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:80px;
}

.flow-line{

    position:absolute;

    top:50%;

    left:8%;
    right:8%;

    height:6px;

    background:#d9eefe;

    border-radius:50px;

    z-index:1;
}

.flow-dot{

    position:absolute;

    top:calc(50% - 9px);

    left:8%;

    width:18px;
    height:18px;

    border-radius:50%;

    background:#0086D1;

    box-shadow:
    0 0 0 8px rgba(0,134,209,.15),
    0 0 25px rgba(0,134,209,.8);

    z-index:2;

    animation:flowMove 8s linear infinite;
}

@keyframes flowMove{

    0%{
        left:8%;
    }

    100%{
        left:89%;
    }
}

.process-card{

    position:relative;

    width:220px;

    background:#fff;

    border-radius:24px;

    padding:35px 20px;

    text-align:center;

    z-index:3;

    border:1px solid #E7EEF7;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:.35s;
}

.process-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,134,209,.15);
}

.step-badge{

    position:absolute;

    top:-12px;
    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(
    135deg,
    #0086D1,
    #005AA9
    );

    color:#fff;

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    font-weight:700;
}

.process-card i{

    font-size:42px;

    color:#0086D1;

    margin-bottom:20px;
}

.process-card h5{

    color:#082C52;

    font-weight:700;

    margin-bottom:10px;
}

.process-card p{

    font-size:14px;
    margin:0;
}


.process-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:24px;
    background:linear-gradient(
        135deg,
        rgba(0,134,209,.08),
        transparent
    );
    opacity:0;
    transition:.4s;
}

.process-card:hover::before{
    opacity:1;
}



/* =========================
PROJECTS SECTION
========================= */

.projects-section{
    padding:80px 0;
    background:#fff;
}

.project-filter{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;

    margin-bottom:50px;
}

.filter-btn{

    border:none;

    padding:14px 28px;

    border-radius:50px;

    background:#F3F8FD;

    color:#082C52;

    font-weight:600;

    transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{

    background:linear-gradient(
        135deg,
        #0086D1,
        #005AA9
    );

    color:#fff;
}

.project-item{
    transition:.4s ease;
}

.project-card{

    position:relative;

    height:380px;

    overflow:hidden;

    border-radius:24px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.4s;
}

.project-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,134,209,.15);
}

.project-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:25px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
}

.project-overlay span{

    color:#6EC6F0;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.project-overlay h4{

    color:#fff;

    font-size:20px;

    margin-top:8px;

    font-weight:700;
}

.project-item.hide{

    opacity:0;

    transform:translateY(20px);

    pointer-events:none;
}

/* Responsive */

@media(max-width:991px){ 

    .project-card{
        height:320px;
    }

}

@media(max-width:767px){

    .project-filter{
        gap:10px;
    }

    .filter-btn{
        padding:10px 18px;
        font-size:14px;
    }

}



/* =========================
STATS SECTION
========================= */

.stats-section{

    padding:0px 0 80px 0;

    background:#fff;
}

.stats-wrapper{

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary-dark)
    );

    padding:80px;

    border-radius:35px;

    position:relative;

    overflow:hidden;
}

.stats-wrapper::before{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    right:-120px;
    top:-120px;

    background:
    rgba(255,255,255,.05);

    border-radius:50%;
}

.stats-title{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin:15px 0 20px;
}

.stats-text{

    color:#d8e6f5;

    margin-bottom:35px;

    line-height:1.8;
}

.btn-light-custom{

    display:inline-block;

    background:#fff;

    color:var(--primary);

    padding:15px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.btn-light-custom:hover{

    transform:translateY(-3px);
}

.stat-card{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.1);

    border-radius:25px;

    padding:35px;

    text-align:center;

    height:100%;
}

.stat-card h3{

    color:#fff;

    font-size:52px;

    font-weight:800;

    margin-bottom:10px;
}

.stat-card p{

    color:#d8e6f5;

    margin:0;

    font-size:16px;
}


/* =========================
TESTIMONIALS
========================= */

.testimonials-section{
    padding:80px 0;
    background:#F8FBFF;
}

.testimonialSwiper{
    padding:20px 10px 60px;
}

.testimonials-section .swiper-slide{
    height:auto;
    margin-top:20px;
    
}

.testimonial-card{

    background:#fff;

    border-radius:24px;

    padding:45px;

    height:100%;

    border:1px solid #E7EEF5;

    transition:.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.swiper-slide-active .testimonial-card{

    border-color:var(--primary);

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.rating{

    color:#FFB400;

    font-size:18px;

    letter-spacing:4px;

    margin-bottom:30px;
}

.testimonial-text{

    font-size:18px;

    line-height:1.9;

    color:#3E4B5B;

    margin-bottom:35px;

    min-height:180px;
}

.testimonial-author{

    display:flex;

    align-items:center;

    gap:18px;

    padding-top:25px;

    border-top:1px solid #EDF2F7;
}

.testimonial-author img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;
}

.testimonial-author h5{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:var(--heading);
}

.testimonial-author span{

    font-size:14px;

    color:#64748B;
}

/* Pagination */

.swiper-pagination{

    margin-top:30px;
}

.swiper-pagination-bullet{

    width:10px;
    height:10px;

    background:#B7C7D8;

    opacity:1;
}

.swiper-pagination-bullet-active{

    background:var(--primary);

    width:28px;

    border-radius:20px;
}

/* Mobile */

@media(max-width:768px){

    .testimonial-card{
        padding:30px;
    }

    .testimonial-text{
        min-height:auto;
        font-size:16px;
    }

}


/* =========================
FAQ + APPOINTMENT
========================= */

.faq-appointment-section{
    padding:80px 0;
    background:#fff;
}

/* FAQ */

.faq-accordion .accordion-item{
    border:1px solid #E5EEF6;
    border-radius:18px;
    margin-bottom:16px;
    overflow:hidden;
    background:#fff;
}

.faq-accordion .accordion-button{
    padding:22px 24px;
    font-weight:700;
    color:var(--heading);
    background:#fff;
    box-shadow:none;
}

.faq-accordion .accordion-button:not(.collapsed){
    color:var(--primary);
    background:#fff;
}

.faq-accordion .accordion-body{
    padding:0 24px 24px;
    color:var(--text);
    line-height:1.8;
}

/* FORM */

.appointment-card{

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary-dark)
    );

    border-radius:30px;

    padding:45px;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.appointment-card::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    top:-120px;
    right:-120px;

    border-radius:50%;

    background:
    rgba(255,255,255,.06);
}

.appointment-card::after{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    bottom:-80px;
    left:-80px;

    border-radius:50%;

    background:
    rgba(255,255,255,.04);
}

.form-tag{

    display:inline-block;

    padding:8px 14px;

    background:
    rgba(255,255,255,.12);

    border-radius:50px;

    color:#fff;

    font-size:12px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;
}

.appointment-card h3{

    color:#fff;

    font-size:38px;

    font-weight:800;

    margin-bottom:15px;
}

.appointment-card p{

    color:#D9E8F7;

    margin-bottom:30px;
}

.appointment-card .form-control,
.appointment-card .form-select{

    height:58px;

    border:none;

    border-radius:14px;

    background:
    rgba(255,255,255,.12);

    color:#fff;

    padding:15px 18px;

    backdrop-filter:blur(8px);

    box-shadow:none;
}

.appointment-card textarea.form-control{
    height:auto;
}

.appointment-card .form-control::placeholder{
    color:rgba(255,255,255,.75);
}

.appointment-card .form-control:focus,
.appointment-card .form-select:focus{

    background:
    rgba(255,255,255,.18);

    color:#fff;

    box-shadow:none;

    border:none;
}

.btn-submit{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    background:#fff;

    color:var(--primary);

    font-weight:700;

    transition:.3s;
}

.btn-submit:hover{

    transform:translateY(-2px);

    background:#F8FBFF;

    color:var(--secondary);
}

.appointment-card select option{
    color:#222;
}
.appointment-card input[type="date"]::-webkit-calendar-picker-indicator,
.appointment-card input[type="time"]::-webkit-calendar-picker-indicator{

    filter:
    brightness(0)
    invert(1)
    opacity(.85);
}


@media(max-width:767px){
    .appointment-card{
        padding:30px;
    }

    .appointment-card h3{
        font-size:30px;
    }
}

/* =========================
FOOTER
========================= */

.footer-section{
    background:#003B78;
    padding:90px 0 25px;
    color:#fff;
}

.footer-logo{
    height:85px;
    width:auto;
    margin-bottom:22px;
    background:#fff;
    padding:10px 14px;
    border-radius:14px;
}

.footer-text{
    color:#D8E6F5;
    line-height:1.8;
    margin-bottom:25px;
}

.footer-section h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section ul li a{
    color:#D8E6F5;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#6EC6F0;
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    background:rgba(255,255,255,.12);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.footer-social a:hover{
    background:#fff;
    color:var(--primary);
}

.footer-contact p{
    color:#D8E6F5;
    margin-bottom:14px;
}

.footer-contact i{
    color:#6EC6F0;
    margin-right:10px;
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    color:#D8E6F5;
}

.footer-bottom a{
    color:#D8E6F5;
    margin-left:20px;
}

.footer-bottom a:hover{
    color:#6EC6F0;
}

@media(max-width:767px){
    .footer-bottom{
        text-align:center;
        justify-content:center;
    }

    .footer-bottom a{
        margin:0 8px;
    }
}



.quick-popup{

    position:fixed;
    inset:0;

    background:
    rgba(0,0,0,.55);

    backdrop-filter:blur(4px);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.35s;
}

.quick-popup.show{

    opacity:1;
    visibility:visible;
}

.quick-popup-card{

    width:100%;
    max-width:500px;

    background:#fff;

    border-radius:32px;

    padding:40px;

    position:relative;

    animation:popupScale .4s ease;
}

.popup-badge{

    display:inline-flex;

    align-items:center;

    padding:8px 14px;

    border-radius:50px;

    background:#EAF6FF;

    color:var(--primary);

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;
}

.quick-popup-card h3{

    font-size:34px;

    line-height:1.15;

    color:var(--heading);

    font-weight:800;

    margin-bottom:12px;
}

.quick-popup-card p{

    color:var(--text);

    margin-bottom:25px;

    line-height:1.7;
}

.popup-close{

    position:absolute;

    top:18px;
    right:18px;

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:#F3F8FD;

    color:var(--heading);
}

.popup-form .form-control{

    height:56px;

    border-radius:14px;

    border:1px solid #E4EDF5;

    margin-bottom:12px;

    padding:0 18px;

    box-shadow:none;
}

.popup-form .form-control:focus{

    border-color:var(--primary);

    box-shadow:none;
}

.popup-form button{

    width:100%;

    height:58px;

    border:none;

    border-radius:16px;

    margin-top:10px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-weight:700;

    font-size:16px;
}

input[type="date"]::-webkit-calendar-picker-indicator{

    opacity:.7;

    cursor:pointer;
}

@keyframes popupScale{

    from{

        opacity:0;

        transform:
        translateY(20px)
        scale(.95);
    }

    to{

        opacity:1;

        transform:
        translateY(0)
        scale(1);
    }
}





/* Sticky Navbar */

.pcs-navbar{

    position:relative;

    z-index:999;

    transition:all .35s ease;
}

.pcs-navbar.sticky{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:#fff;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    animation:stickyMenu .35s ease;
}

@keyframes stickyMenu{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }
}




/* =========================
BRAND SLIDER
========================= */

.brand-section{
    padding:80px 0;
    background:#f8fbff;
}

.brand-wrapper{
    border-top:1px solid #E7EEF5;
    border-bottom:1px solid #E7EEF5;
    padding:35px 0;
}

.brand-wrapper p{
    text-align:center;
    margin-bottom:30px;
    color:var(--text);
    font-weight:600;
}

.brand-logo{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.brand-logo img{
    max-height:55px;
    max-width:140px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.65;
    transition:.3s;
}

.brand-logo:hover img{
    filter:grayscale(0%);
    opacity:1;
}


.ws-services-section{
    padding:80px 0;
    background:#f8fbff;
}

.ws-section-header{
    max-width:800px;
    margin:0 auto 60px;
}

.ws-section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(0,0,0,.03);
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.ws-section-title{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.ws-section-title span{
    color:var(--primary);
}

.ws-section-description{
    max-width:650px;
    margin:auto;
    color:#64748b;
    font-size:17px;
    line-height:1.7;
}

/* CARD */

.ws-service-card{
    height:100%;
    background:#fff;
    border-radius:24px;
    padding:28px;
    border:1px solid #edf2f7;
    box-shadow:0 15px 40px rgba(15,23,42,.05);
    transition:.35s ease;
}

.ws-service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,0,0,.08);
    box-shadow:0 25px 60px rgba(15,23,42,.10);
}

.ws-service-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(13,110,253,.08);
    color:var(--primary);
    font-size:26px;
    margin-bottom:18px;
    display:none;
}

.ws-service-image{
    text-align:center;
    margin-bottom:22px;
}

.ws-service-image img{
    width:100%;
    height:170px;
    object-fit:contain;
}

.ws-service-name{
    font-size:28px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:5px;
}

.ws-service-category{
    display:block;
    color:#64748b;
    font-size:15px;
    margin-bottom:24px;
}

.ws-service-features{
    padding:0;
    margin:0 0 28px;
    list-style:none;
}

.ws-service-features li{
    position:relative;
    padding-left:30px;
    margin-bottom:12px;
    color:#334155;
    font-size:15px;
}

.ws-service-features li::before{
    content:"";
    width:18px;
    height:18px;
    border-radius:50%;
    border:2px solid var(--primary);
    position:absolute;
    left:0;
    top:2px;
}

.ws-service-features li::after{
    content:"✓";
    position:absolute;
    left: 5px;
    top: 3px;
    font-size:10px;
    font-weight:700;
    color:var(--primary);
}

.ws-service-button{
    width:100%;
    height:54px;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.ws-service-button:hover{
    color:#fff;
    transform:translateY(-2px);
}

.ws-service-button i{
    transition:.3s;
}

.ws-service-button:hover i{
    transform:translateX(5px);
}

@media(max-width:991px){

    .ws-services-section{
        padding:80px 0;
    }

    .ws-section-title{
        font-size:42px;
    }

}

@media(max-width:767px){

    .ws-section-title{
        font-size:32px;
    }

    .ws-section-description{
        font-size:15px;
    }

    .ws-service-card{
        padding:22px;
    }

}


.pc-two-way-section{
    padding:80px 0;
    background:#fff;
    overflow:hidden;
}

.pc-two-way-heading{
    max-width:760px;
    margin:0 auto 60px;
}

.pc-two-way-label{
    display:inline-block;
    color:var(--primary);
    font-size:13px;
    font-weight:800;
    letter-spacing:.8px;
    margin-bottom:12px;
}

.pc-two-way-heading h2{
    font-size:52px;
    font-weight:800;
    color:#081832;
    margin-bottom:14px;
}

.pc-two-way-heading p{
    color:#64748b;
    font-size:17px;
    line-height:1.7;
}

.pc-two-way-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.pc-two-way-box{
    min-height:520px;
    position:relative;
    overflow:hidden;
    border-radius:34px;
    padding:46px;
    display:flex;
    align-items:flex-start;
    isolation:isolate;
}

.pc-selling-box{
    background:linear-gradient(135deg,var(--primary),#063b9c);
    color:#fff;
}

.pc-maintenance-box{
    background:#fff;
    border:1px solid #e5edf7;
    box-shadow:0 25px 70px rgba(15,23,42,.08);
}

.pc-two-bg-shape{
    position:absolute;
    width:360px;
    height:360px;
    border-radius:50%;
    right:-120px;
    bottom:-110px;
    z-index:-1;
}

.pc-selling-box .pc-two-bg-shape{
    background:rgba(255,255,255,.11);
}

.pc-maintenance-box .pc-two-bg-shape{
    background:rgba(13,110,253,.08);
}

.pc-two-content{
    max-width:340px;
    position:relative;
    z-index:3;
}

.pc-two-icon{
    width:66px;
    height:66px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:24px;
}

.pc-selling-box .pc-two-icon{
    background:#fff;
    color:var(--primary);
}

.pc-maintenance-box .pc-two-icon{
    background:var(--primary);
    color:#fff;
}

.pc-two-small{
    display:block;
    font-size:13px;
    font-weight:800;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:10px;
    opacity:.8;
}

.pc-two-content h3{
    font-size:44px;
    font-weight:800;
    margin-bottom:14px;
}

.pc-two-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:24px;
}

.pc-maintenance-box .pc-two-content h3{
    color:#081832;
}

.pc-maintenance-box .pc-two-content p,
.pc-maintenance-box .pc-two-small{
    color:#64748b;
}

.pc-two-content ul{
    padding:0;
    margin:0 0 30px;
    list-style:none;
}

.pc-two-content ul li{
    position:relative;
    padding-left:30px;
    margin-bottom:12px;
    font-size:15px;
    font-weight:600;
}

.pc-two-content ul li::before{
    content:"\2713";
    width:18px;
    height:18px;
    border-radius:50%;
    border:2px solid currentColor;
    position:absolute;
    left:0;
    top:2px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:9px;
    font-weight:800;
}

.pc-maintenance-box .pc-two-content ul li{
    color:#26364f;
}

.pc-maintenance-box .pc-two-content ul li::before{
    color:var(--primary);
}

.pc-two-btn{
    width:210px;
    height:52px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.pc-selling-box .pc-two-btn{
    background:#fff;
    color:var(--primary);
}

.pc-maintenance-box .pc-two-btn{
    background:var(--primary);
    color:#fff;
}

.pc-two-btn:hover{
    transform:translateY(-3px);
    color:var(--primary);
}

.pc-maintenance-box .pc-two-btn:hover{
     color:#fff;
}

.pc-two-image{
    position:absolute;
    right:0;
    bottom:0;
    z-index:2;
}

.pc-selling-image img{
    width:360px;
}

.pc-maintenance-image img{
    width:340px;
}

@media(max-width:991px){
    .pc-two-way-wrapper{
        grid-template-columns:1fr;
    }

    .pc-two-way-heading h2{
        font-size:38px;
    }
}

@media(max-width:575px){
    .pc-two-way-box{
        min-height:auto;
        padding:30px;
        padding-bottom:260px;
    }

    .pc-two-content{
        max-width:100%;
    }

    .pc-two-content h3{
        font-size:34px;
    }

    .pc-two-image img{
        width:280px;
    }
}

.floating-contact{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.floating-contact .fc-btn{
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    transition: .3s;
    border-radius: 50%;
}

.floating-contact .fc-btn i{
    font-size:22px;
    line-height:1;
}

.floating-contact .fc-whatsapp{
    background:#25D366;
}

.floating-contact .fc-call{
    background:var(--primary);
}

.floating-contact .fc-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

@media (max-width:767px){

    .floating-contact{
        right:0;
        left:0;
        bottom:0;
        width:100%;
        flex-direction:row;
        gap:0;
    }
    
    .process-flow {
        flex-wrap: wrap;
    }

    .floating-contact .fc-btn{
        width:50%;
        min-width:unset;
        height:60px;
        border-radius:0;
        box-shadow:none;
        font-size:15px;
    }

    .floating-contact .fc-btn:hover{
        transform:none;
    }
}
