/**
* ========================
* Created: June 18 2026
* Bootstrap v5.3.2
* Author: Paul Mangaser
*
========================== */

:root{
    --dark: #000000;
    --secondary: #0f4cbf;

    --blue: #175cdd;
    --light: #f8fbff;

    --gray: #808080;
    --light-gray: #dadada;

    --green: #8CCB3E;
}

body{
    font-family: 'Segoe UI', sans-serif;
    overflow-x:hidden;
}


/* ==========================
   TOP BAR
========================== */
.top-bar{
    background:#175cdd;
    color:#fff;
    font-size:14px;
    position:fixed;
    top:0;
    width:100%;
    z-index:1050;
    transition:all .6s ease;
    min-height:45px;
    padding:10px 0;
}

.top-bar.hidden{
    transform:translateY(-100%);
    opacity:0;
}

/* ==========================
   NAVIGATION
========================== */
.navbar-custom{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    position:fixed;
    top:45px;
    width:100%;
    z-index:1049;
    transition:all .6s ease;
}

.navbar-custom.move-top{
    top:0;
}

.navbar-brand{
    color:var(--blue);
    font-weight:700;
    font-size:1.5rem;

    /*padding-left: 60px;*/
}

.navbar-brand:hover {
    color:var(--blue);
}

/*.navbar-brand img {
    position: absolute;
    margin-top: 15px;
    width: 70px;
    margin-left: -60px;
}*/

.navbar-brand span {
    color:var(--green);
}

.nav-link{
    font-weight:500;
    color:#333;
}

.nav-link:hover{
    color:var(--blue);
}

/* ==========================
   HERO
========================== */
.hero{
    padding:180px 0 100px;
    background:linear-gradient(to right,#f8fbff,#eef5ff);
}

.hero h1{
    font-size:3.2rem;
    font-weight:800;
    line-height:1.2;
}

.hero p{
    font-size:1.1rem;
    color:#666;
}

.btn-primary-custom{
    background:var(--blue);
    border:none;
    padding:14px 35px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
}

.btn:hover,
.btn-primary-custom:hover {
    background-color: var(--light-gray) !important;
    color: var(--gray);
}

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:20px;
}

.floating-badge {
    position:absolute;
    top:-20px;
    right:-20px;
    z-index:10;
    background: color-mix(in srgb, var(--blue), transparent 40%);
    color:#fff;
    border-radius:16px;
    padding:18px 22px;
    box-shadow:0 15px 35px rgba(23,92,221,.25);
    animation:floatBadge 4s ease-in-out infinite;
}

.badge-content h4{
    margin:0;
    font-size:1.8rem;
    font-weight:800;
    line-height:1;
}

.badge-content span{
    font-size:.85rem;
    font-weight:500;
    display:block;
    margin-top:5px;
}

@keyframes floatBadge{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

@media (max-width: 576px) {
    .hero .hero-content h1 {
        font-size: 2rem;
    }
}

.rating-card{
    position:absolute;
    bottom:20px;
    right:-20px;
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.rating-card i{
    color:#ffc107;
}

/* ==========================
   SECTION
========================== */
.section-title{
    font-weight:800;
    margin-bottom:15px;
}

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

.bg-light-custom{
    background:#f8fbff;
}

/* ==========================
   CARDS
========================== */
.service-card,
.department-card,
.blogs-card {
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover,
.department-card:hover,
.blogs-card: hover {
    transform:translateY(-10px);
}

.service-card img,
.department-card img,
.blogs-card img {
    height:250px;
    object-fit:cover;
    object-position: top center;
}

/* ==========================
   TESTIMONIALS
========================== */
.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:var(--blue);
    border-radius:50%;
    padding:15px;
}

/* ==========================
   CONTACT
========================== */
.contact-info{
    /*background:var(--blue);*/
    color:#000;
    border-radius:15px;
    padding:40px;
    height:100%;
}

.form-control{
    padding:12px;
}

/* ==========================
   FOOTER
========================== */
.footer{
    background:#ffffff;
    padding-top:70px;
    border-top:1px solid #eaeaea;
}

.footer h5{
    font-weight:700;
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer a{
    text-decoration:none;
    color:#555;
}

.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--blue);
    color:#fff;
    margin-right:8px;
}

.copyright{
    border-top:1px solid #eee;
    margin-top:40px;
    padding:20px 0;
    background:#fff;
}

/* ==========================
   FEATURE BOX
========================== */

.feature-box {
    background:#ffffff;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.feature-box:hover {
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(23,92,221,.15);
}

.feature-box::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#175cdd;
    transform:scaleX(0);
    transition:.35s ease;
}

.feature-box:hover::before {
    transform:scaleX(1);
}

.feature-box i {
    font-size:3rem;
    color:#175cdd;
    margin-bottom:20px;
    display:block;
    transition:.35s ease;
}

.feature-box:hover i {
    transform:scale(1.1);
}

.feature-box h5 { 
    font-size:1.2rem;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.feature-box p {
    color:#6c757d;
    font-size:.95rem;
    line-height:1.7;
    margin-bottom:0;
}

/*.feature-box:hover{
    background:var(--blue);
}

.feature-box:hover h5,
.feature-box:hover p,
.feature-box:hover i{
    color:#ffffff;
}*/

.mini-feature{
    display:flex;
    gap:15px;
    align-items:flex-start;
    padding:20px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s ease;
    height:100%;
}

.mini-feature:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(23,92,221,.12);
}

.mini-feature i{
    font-size:2rem;
    color:#175cdd;
    flex-shrink:0;
}

.mini-feature h6{
    font-weight:700;
    margin-bottom:8px;
}

.mini-feature p{
    margin:0;
    color:#6c757d;
    font-size:.95rem;
    line-height:1.6;
}

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

.step-card{
    background:#fff;
    text-align:center;
    padding:40px 20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.step-card span{
    font-size:2rem;
    font-weight:800;
    color:#175cdd;
}

.service-cta{
    padding:100px 0;
    background:var(--light-gray);
}

.step-card{
    background:#ffffff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:all .35s ease;
}

.step-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(23,92,221,.15);
}

.step-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#175cdd;
    transform:scaleX(0);
    transition:.35s ease;
}

.step-card:hover::before{
    transform:scaleX(1);
}

.step-card span{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    color:#175cdd;
    font-size:1.8rem;
    font-weight:800;
    transition:.35s ease;
}

.step-card:hover span{
    background:#175cdd;
    color:#fff;
}

.step-card h5{
    font-size:1.25rem;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.step-card p{
    color:#6c757d;
    line-height:1.7;
    margin-bottom:0;
}

/* ==========================
   SERVICES BENEFIT LIST
========================== */

.benefit-list{
    list-style:none;
    padding:0;
}

.benefit-list li{
    padding:15px 0;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:35px;
}

.benefit-list li::before{
    content:"✓";
    color:#175cdd;
    font-weight:bold;
    position:absolute;
    left:0;
}

@media(max-width:991px){

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .rating-card{
        right:10px;
    }
}

/* ==========================
   STATISTICS SECTION
========================== */

.stats-section{
    padding:100px 0;
    /*background:linear-gradient(135deg, #175cdd 0%, #0f4fc2 100%);*/
    position:relative;
    overflow:hidden;
}

.stats-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-150px;
    right:-150px;
}

.stats-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
}

.stats-item{
    text-align:center;
    color:#000;
    padding:30px 15px;
    position:relative;
    z-index:2;
}

.stats-item h2{
    font-size:2rem;
    font-weight:800;
    margin-bottom:10px;
    line-height:1;
    color:var(--blue);
}

.stats-item p{
    font-size:1rem;
    margin:0;
    opacity:.9;
    font-weight:500;
}

.stats-item i{
    font-size:1.5rem;
    margin-bottom:20px;
    display:block;
    color:var(--blue);
}

.stats-item:hover{
    transform:translateY(-5px);
    transition:.3s ease;
}


/* ==========================
   CUSTOMS
========================== */

.blue-highlight {
    color: var(--blue);
}

.green-highlight {
    color: var(--green);
}


.custom-badge {
    display:inline-block;
    background:#e8f0ff;
    color:#175cdd;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.custom-small-badge {
    color: var(--blue);
    padding: 12px 25px;
    background: color-mix(in srgb, var(--blue), transparent 90%);
    border-radius: 50px;
    font-size: 14px;
}

.category-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
}

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

.category-card i{
    font-size:2.5rem;
    color:#175cdd;
}