.navbar-brand{
    max-width: 200px !important;
}

.navbar {
    height: 100px;
}

.logo{
    width: 200px !important;
}
.track-input{
    height: 45px;
    padding: 8px 15px;
    border: 1px solid #4d4747;
    border-radius: 5px;
    font-size: 14px;
}

.track-btn{
    height: 45px !important;
    padding: 0 20px !important;
    line-height: 45px !important;
}

.feature-list{
    padding-left:0;
    list-style-position:inside;
}

.feature-list{
    text-align:left !important;
    padding-left:20px;
}

.feature-list li{
    text-align:left !important;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary-custom,
.btn-secondary-custom{
    padding:14px 30px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-primary-custom{
    background:#0d6efd;
    color:#fff;
    border:2px solid #0d6efd;
}

.btn-primary-custom:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,.25);
    color: #fff;
}

.btn-secondary-custom{
    background:#fff;
    color:#0d6efd;
    border:2px solid #0d6efd;
}

.btn-secondary-custom:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-3px);
}

.inspection-modal{
    border:0;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.modal-header{
    padding:30px;
    border-bottom:1px solid #eef2f7;
}

.modal-body{
    padding:30px;
}

.form-label{
    font-weight:600;
    margin-bottom:10px;
    color:#222;
}

.custom-group{
    border-radius:12px;
    overflow:hidden;
    border:1px solid #dee2e6;
}

.custom-group .input-group-text{
    background:#fff;
    border:none;
    color:#0d6efd;
    width:48px;
    justify-content:center;
}

.custom-input{
    border:none;
    box-shadow:none!important;
    padding:14px;
}

.custom-group:focus-within{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.12);
}

textarea.custom-input{
    resize:none;
}

.purpose-group{
    display:flex;
    gap:12px;
}

.purpose-btn{
    flex:1;
    text-align:center;
    border:2px solid #dee2e6;
    border-radius:12px;
    padding:14px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
    background:#fff;
}

.btn-check:checked + .purpose-btn{
    background:#0d6efd;
    color:#fff;
    border-color:#0d6efd;
    box-shadow:0 10px 20px rgba(13,110,253,.25);
}

.purpose-btn:hover{
    border-color:#0d6efd;
}

.submit-btn{
    height:56px;
    border:none;
    border-radius:14px;
    background:#0d6efd;
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.submit-btn:hover{
    background:#0b5ed7;
    transform:translateY(-2px);
}

.btn-close{
    transition:.3s;
}

.btn-close:hover{
    transform:rotate(90deg);
}

/* Labels */

.form-label{
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
}

/* Wrapper */
.edublink-field{
    position: relative;
}

/* Icon */
.edublink-field .select-icon-box{
    position:absolute;
    left:0;
    top:0;
    width:72px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-right:1px solid #dee2e6;
    background:#f8f8f8;
    border-radius:12px 0 0 12px;
    z-index:10;          /* Keep icon visible */
    pointer-events:none; /* So clicks go to the select */
}

/* Choices */
.edublink-field .choices{
    position:relative;
    width:100%;
    margin:0;
}

.edublink-field .choices__inner{
    min-height:58px;
    height:58px;
    padding-left:95px !important;
    padding-right:45px !important;
    border-radius:12px;
    border:1px solid #dee2e6;
    background:#fff;
    display:flex;
    align-items:center;
}

.edublink-field .choices__list--dropdown,
.edublink-field .choices__list[aria-expanded]{
    z-index:9999;
}

.select-icon-box i{
    color:#0d6efd;   /* Your desired color */
}

.contact-card{
    background:#fff;
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    border:1px solid #ececec;
    transition:.35s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.contact-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#1c78c9;
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.contact-card:hover::before{
    height:100%;
    opacity:.05;
}

.contact-icon{
    width:75px;
    height:75px;
    background:#f3f4f6;
    border-radius:50%;
    margin:0 auto 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s;
}

.contact-card:hover .contact-icon{
    background:#1c78c9;
}

.contact-icon i{
    font-size:30px;
    color:#1c78c9;
    transition:.35s;
}

.contact-card:hover .contact-icon i{
    color:#fff;
}

.contact-card h5{
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.contact-card p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.8;
}

.track-input{
    display:block;
}

#requestError{
    display:block;
    margin-top:4px;
    font-size:13px;
}

.about-hero{
    background:#f7fafc;
}

.section-tag{
    color:#198754;
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    color:#0b2c5f;
    font-weight:700;
    margin-bottom:20px;
}

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:25px;
}

.inspection-card{
    position:absolute;
    right:-20px;
    bottom:25px;
    background:#fff;
    border-radius:15px;
    width:300px;
    padding:25px;
}

.inspection-card h4{
    color:#0b2c5f;
    margin-bottom:20px;
}

.inspection-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.inspection-card li{
    margin-bottom:12px;
}

.inspection-card i{
    color:#198754;
}

.mini-box{
    background:#fff;
    border-radius:15px;
    padding:18px;
    display:flex;
    align-items:flex-start;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.mini-box:hover{
    transform:translateY(-5px);
}

.mini-box i{
    font-size:28px;
    color:#198754;
    margin-right:15px;
}

.info-card{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    height:100%;
}

.info-card i{
    font-size:45px;
    color:#198754;
    margin-bottom:15px;
}

.company-section{
    background:#fff;
}

@media(max-width:991px){

.inspection-card{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:20px;
}

}

/*=========================
WHY CHOOSE US
=========================*/

.why-us{
    background:#f8fafc;
}

.feature-card{

    background:#fff;
    border-radius:18px;
    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border-top:4px solid transparent;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#198754;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.icon-box{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#198754;

    display:flex;

    align-items:center;

    justify-content:center;

}

.icon-box i{

    color:#fff;

    font-size:32px;

}

.feature-card h4{

    color:#0b2c5f;

    margin-bottom:15px;

    font-weight:700;

}

.feature-card p{

    color:#666;

    line-height:1.8;

}

/*=========================
MISSION & VISION
=========================*/

.mission-section{

    background:#ffffff;

}

.mission-box,
.vision-box{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

    transition:.35s;

}

.mission-box:hover,
.vision-box:hover{

    transform:translateY(-8px);

}

.mission-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#198754;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:20px;

}

.mission-box h2,
.vision-box h2{

    color:#0b2c5f;

    font-weight:700;

    margin-bottom:20px;

}

.mission-box ul,
.vision-box ul{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.mission-box li,
.vision-box li{

    margin-bottom:12px;

}

.mission-box li i,
.vision-box li i{

    color:#198754;

    margin-right:10px;

}



/*=========================
PROCESS
=========================*/

.process-section{

    background:#f8fafc;

}

.process-box{

    background:#fff;

    text-align:center;

    padding:35px;

    border-radius:18px;

    position:relative;

    height:100%;

    transition:.3s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.process-box:hover{

    transform:translateY(-8px);

}

.process-box span{

    position:absolute;

    top:20px;

    right:20px;

    font-size:40px;

    color:#19875420;

    font-weight:700;

}

.process-box i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:#198754;

    color:#fff;

    font-size:32px;

    margin-bottom:20px;

}

.process-box h4{

    color:#0b2c5f;

    margin-bottom:15px;

}

/*=============================
PROFESSIONAL TEAM
=============================*/

.professional-team{

    background:#fff;

    border-radius:20px;

}

.section-heading h2{

    color:#1d4f2b;

    font-weight:700;

    font-size:36px;

    text-transform:uppercase;

}

.section-heading p{

    color:#666;

    margin-top:10px;

}

.team-service{

    text-align:center;

    padding:15px;

    transition:.35s;

    height:100%;

}

.team-service:hover{

    transform:translateY(-8px);

}

.icon-circle{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    border:2px solid #d9d9d9;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

    transition:.3s;

}

.icon-circle i{

    font-size:34px;

    color:#0b2c5f;

}

.team-service:hover .icon-circle{

    background:#198754;

    border-color:#198754;

}

.team-service:hover .icon-circle i{

    color:#fff;

}

.team-service h6{

    color:#1d4f2b;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:10px;

    min-height:45px;

}

.team-service p{

    font-size:14px;

    color:#666;

    line-height:1.7;

}

/*===========================
FOUNDER
===========================*/

.founder-section{

    background:#f8f9fa;

}

.founder-box{

    background:#fff;

    border-radius:20px;

    padding:45px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.founder-icon{

    width:150px;

    height:150px;

    border-radius:50%;

    border:3px solid #198754;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    transition:.3s;

}

.founder-icon i{

    font-size:70px;

    color:#0b2c5f;

}

.founder-icon:hover{

    background:#198754;

}

.founder-icon:hover i{

    color:#fff;

}

.founder-box h3{

    color:#0b2c5f;

    font-weight:700;

    margin-bottom:20px;

}

.founder-box p{

    color:#555;

    line-height:1.9;

}

.signature{

    font-family:cursive;

    color:#198754;

    font-size:42px;

    margin-bottom:15px;

}

@media(max-width:991px){

.founder-box{

text-align:center;

}

.signature{

margin-top:25px;

}

}

/*====================================
        SERVICES PAGE
=====================================*/

.services-area{
    background:#f5f7fb;
}

.section-title .sub-title{
    display:inline-block;
    color:#198754;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
    font-size:14px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2147;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
}

/*==============================
        CARD
==============================*/

.service-card{
    background:#fff;
    border-radius:18px;
    border:2px solid #e5e5e5;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:.35s;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    border-color:#198754;
}

/*==============================
        HEADER
==============================*/

.service-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 25px;
    border-bottom:1px solid #eee;
}

.package-number{
    width:65px;
    height:65px;
    background:#0b2147;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:700;
}

.status{
    padding:8px 18px;
    border-radius:30px;
    color:#fff;
    font-weight:600;
    font-size:14px;
}

.available{
    background:#198754;
}

.coming{
    background:#6c757d;
}

/*==============================
        TITLE
==============================*/

.service-title{
    padding:25px 25px 10px;
    text-align:center;
}

.service-title h3{
    color:#0b2147;
    font-size:28px;
    font-weight:700;
    margin-bottom:12px;
}

.service-title p{
    color:#198754;
    font-size:17px;
    margin-bottom:0;
    line-height:1.6;
}

/*==============================
        ICON
==============================*/

.service-icon{
    width:90px;
    height:90px;
    background:#eef8f1;
    margin:20px auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.service-icon i{
    font-size:45px;
    color:#198754;
}

/*==============================
        FEATURES
==============================*/

.service-features{
    padding:0 25px 25px;
    flex:1;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:18px;
}

.feature-item i{
    color:#198754;
    font-size:20px;
    margin-right:10px;
    margin-top:2px;
}

.feature-item span{
    color:#444;
    font-size:15px;
    line-height:1.5;
}

/*==============================
        FOOTER
==============================*/

.service-footer{
    border-top:1px solid #eee;
    padding:25px;
    background:#fafafa;
}

.price-box{
    background:#198754;
    border-radius:12px;
    padding:18px;
    color:#fff;
    text-align:center;
}

.price-box .fee{
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
    opacity:.9;
    margin-bottom:5px;
}

.price-box .price{
    font-size:34px;
    font-weight:700;
}

.delivery{
    margin-top:20px;
    text-align:center;
    color:#555;
    font-size:16px;
}

.delivery i{
    color:#198754;
    margin-right:5px;
    font-size:18px;
}

/*==============================
        BUTTON
==============================*/

.default-btn{
    margin-top:20px;
    width:100%;
    display:block;
    text-align:center;
    background:#0b2147;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
    text-decoration:none;
}

.default-btn:hover{
    background:#198754;
    color:#fff;
}

.default-btn.disabled{
    background:#9ca3af;
    cursor:not-allowed;
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .service-title h3{
        font-size:24px;
    }

    .price-box .price{
        font-size:28px;
    }

}

@media(max-width:767px){

    .section-title h2{
        font-size:28px;
    }

    .package-number{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .service-title{
        padding:20px;
    }

    .service-features{
        padding:20px;
    }

    .feature-item{
        margin-bottom:15px;
    }

    .price-box .price{
        font-size:24px;
    }

}

.card-top{

display:flex;

justify-content:space-between;

align-items:center;

padding:25px;

}

.report-fee{

background:#0d7b3b;

color:#fff;

border-radius:10px;

padding:15px;

text-align:center;

}

.report-fee span{

display:block;

font-size:13px;

letter-spacing:1px;

opacity:.8;

margin-bottom:5px;

}

.report-fee h3{

margin:0;

font-size:34px;

font-weight:700;

}

.delivery-box{

margin-top:18px;

background:#eef8f1;

padding:12px;

border-radius:8px;

text-align:center;

font-weight:600;

}

.delivery-box i{

color:#198754;

margin-right:6px;

}

.book-btn{

margin-top:20px;

display:block;

width:100%;

background:#0b2147;

color:#fff;

text-align:center;

padding:15px;

border-radius:8px;

font-weight:600;

transition:.3s;

text-decoration:none;

}

.book-btn:hover{

background:#198754;

color:#fff;

}

.feature-icon{

width:28px;

height:28px;

background:#198754;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-right:10px;

flex-shrink:0;

}

.feature-icon i{

color:#fff;

font-size:16px;

}

.feature-text{

font-size:15px;

line-height:1.5;

}

.service-icon{

width:120px;

height:120px;

background:#eef8f1;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:20px auto;

}

.service-icon i{

font-size:60px;

color:#198754;

}

.status{

display:flex;

align-items:center;

gap:6px;

}


