/*==========================
      Page Banner
==========================*/

.page-banner {
    position: relative;
    padding: 50px 0 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(52, 68, 92, 0.55);
    z-index: -1;
}

.page-banner::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(212, 160, 23, .08);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.page-banner-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    opacity: .7;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

/* Responsive */

@media(max-width:991px) {
    .page-banner {
        padding: 60px 0 50px;
    }

    .page-banner h1 {
        font-size: 32px;
    }
}

@media(max-width:576px) {
    .page-banner {
        padding: 60px 0 50px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .breadcrumb-item {
        font-size: 14px;
    }
}





.about-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

.about-check i {
    width: 26px;
    height: 26px;
    background: rgba(212, 160, 23, .12);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}






/*==========================
    Mission & Vision
==========================*/

.mission-vision-section {
    background: #f8f9fc;
}

.mission-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .07);
    height: 100%;
    transition: .35s ease;
    border: 1px solid #edf1f7;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(11, 46, 107, .12);
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), #17438f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.vision-icon {
    background: linear-gradient(135deg, var(--secondary));
}

.mission-card h3 {
    color: var(--primary);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}

.mission-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 15px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #444;
    font-weight: 500;
}

.mission-list li i {
    color: var(--secondary);
    font-size: 16px;
}

@media(max-width:991px) {

    .mission-card {
        padding: 30px;
    }

    .mission-card h3 {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .mission-card {
        padding: 25px;
    }

    .mission-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        border-radius: 16px;
    }

    .mission-card h3 {
        font-size: 24px;
    }

}





/*==========================
      Core Values
==========================*/

.core-values {
    background: #e8e7e7;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px 30px;
    text-align: center;
    border: 1px solid #edf1f7;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition: .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 46, 107, .12);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 20px;
    background: rgba(212, 160, 23, .12);
    color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    transition: .35s;
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-8deg);
}

.value-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media(max-width:768px) {

    .value-card {
        padding: 28px 22px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .value-card h4 {
        font-size: 22px;
    }

}







/*==========================
      Contact Section
==========================*/

.contact-section {
    background: #f8f9fc;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 14px 28px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .35s;
}

.contact-card:hover {

    transform: translateY(-6px);

}

.contact-icon {

    width: 65px;
    height: 65px;
    background: rgba(212, 160, 23, .12);
    color: var(--secondary);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: .35s;

}

.contact-card:hover .contact-icon {

    background: var(--primary);
    color: #fff;

}

.contact-card h5 {

    color: var(--primary);
    font-size: 20px;
    margin-bottom: 8px;

}

.contact-card a,
.contact-card p {

    color: #666;
    text-decoration: none;
    margin: 0;
    line-height: 1.8;

}

.contact-form {

    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

}

.contact-form h3 {

    color: var(--primary);
    font-size: 32px;
    margin-bottom: 30px;

}

.contact-form .form-control,
.contact-form .form-select {

    height: 55px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: none;

}

.contact-form textarea {

    height: auto !important;
    resize: none;

}

.contact-form .form-control:focus,
.contact-form .form-select:focus {

    border-color: var(--secondary);
    box-shadow: 0 0 0 .2rem rgba(212, 160, 23, .15);

}

.contact-btn {

    border: none;
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;

}

.contact-btn:hover {

    background: var(--secondary);

}

/*==========================
      Google Map
==========================*/

.map-section {
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

@media(max-width:991px) {

    .contact-form {

        padding: 30px;

    }

}

@media(max-width:576px) {

    .contact-card {

        padding: 22px;

    }

    .contact-icon {

        width: 55px;
        height: 55px;
        font-size: 20px;

    }

    .contact-form {

        padding: 25px;

    }

    .contact-form h3 {

        font-size: 28px;

    }

    .map-section iframe {

        height: 300px;

    }

}













/*==========================
    Service Details
==========================*/

.service-banner {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 20px;
}

.service-content h2 {
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
}

.service-content h2 span {
    color: var(--secondary);
}

.service-content h3 {
    margin: 35px 0 18px;
    color: var(--primary);
    font-size: 28px;
}

.service-content p {
    color: #666;
    line-height: 1.7;
}

.service-list {
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

/*==========================
      Sticky Sidebar
==========================*/

.service-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
}

.sidebar-box h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    margin-bottom: 12px;
}

.service-menu li:last-child {
    margin-bottom: 0;
}

.service-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #444;
    background: #f8f9fc;
    padding: 15px 18px;
    border-radius: 12px;
    transition: .35s;
    font-weight: 500;
}

.service-menu li a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.service-menu li:hover a,
.service-menu li.active a {
    background: var(--primary);
    color: #fff;
}

/* Contact Card */

.sidebar-contact {
    background: linear-gradient(135deg, var(--primary), #18438d);
    border-radius: 20px;
    padding: 35px;
    color: #fff;
    text-align: center;
}

.sidebar-contact i {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto 20px;
    font-size: 30px;
}

.sidebar-contact h4 {
    color: #fff;
    margin-bottom: 15px;
}

.sidebar-contact p {
    color: #d8d8d8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.sidebar-contact .about-btn {
    background: var(--secondary);
}

.sidebar-contact .about-btn:hover {
    background: #fff;
    color: var(--primary);
}

@media(max-width:991px) {

    .service-sidebar {
        position: static;
        margin-top: 40px;
    }

}







.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-content h3 {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 45px 0 20px;
    padding-bottom: 12px;
}

.service-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 50px;
    background: var(--secondary);
}

/*==========================
    Service List
==========================*/

.service-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-list li {
    position: relative;
    padding: 15px 15px 15px 55px;
    margin-bottom: 15px;
    background: #f8f9fc;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    color: #555;
    transition: .35s;
}

.service-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.service-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
}

/*==========================
      Process Card
==========================*/

.process-card {

    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.process-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 46, 107, .10);

}

.process-card span {

    width: 65px;
    height: 65px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;

}

.process-card h5 {

    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;

}

.process-card p {

    margin: 0;
    color: #777;
    font-size: 15px;
    line-height: 1.8;

}

/*==========================
      Responsive
==========================*/

@media (max-width:991px) {

    .service-content h2 {
        font-size: 34px;
    }

    .service-content h3 {
        font-size: 26px;
    }

}

@media (max-width:767px) {

    .service-content h2 {
        font-size: 30px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-list li {
        padding: 14px 14px 14px 50px;
    }

    .process-card {
        padding: 25px;
    }

}









.blog-sidebar {
    position: sticky;
    top: 110px;
}

.blog-search form,
.sidebar-search {

    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

}

.blog-search input,
.sidebar-search input {

    width: 100%;
    border: none;
    padding: 16px 22px;
    outline: none;

}

.blog-search button,
.sidebar-search button {

    width: 65px;
    border: none;
    background: var(--primary);
    color: #fff;

}

.sidebar-box {

    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    margin-bottom: 30px;

}

.sidebar-box h4 {

    color: var(--primary);
    margin-bottom: 20px;

}

/* Categories */

.category-list {

    list-style: none;
    padding: 0;
    margin: 0;

}

.category-list li {

    margin-bottom: 12px;

}

.category-list a {

    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 14px 18px;
    background: #e4e7ed;
    border-radius: 10px;
    color: #444;
    transition: .3s;

}

.category-list a::after {

    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

}

.category-list a:hover {

    background: var(--primary);
    color: #fff;

}

/* Recent Blog */

.recent-blog {

    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;

}

.recent-blog:last-child {

    border: none;
    margin: 0;
    padding: 0;

}

.recent-blog img {

    width: 90px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;

}

.recent-blog a {

    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;

}

.recent-blog small {

    color: #888;

}

/* CTA */

.sidebar-cta {

    background: linear-gradient(135deg, var(--primary), #20498f);
    border-radius: 20px;
    padding: 35px;
    color: #fff;
    text-align: center;

}

.sidebar-cta i {

    font-size: 36px;
    margin-bottom: 20px;

}

.sidebar-cta h4 {

    color: #fff;

}

.sidebar-cta p {

    color: #ddd;
    margin: 20px 0;

}

@media(max-width:991px) {

    .blog-sidebar {
        position: static;
    }

}



.blog-listing {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
}









.recent-blog {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: all .3s ease;
}

.recent-blog:hover {
    transform: translateX(6px);
}

.recent-blog img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}















.recent-blog a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    margin-bottom: 5px;
    transition: .3s;
}

.blog-slider-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 34px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.blog-slider-btn:hover {
    background: #a47a0f;
    color: #fff;
    transform: translateY(-3px);
}


.read-btn-blog{
    text-decoration: none;
    color: #1b1b1b;
    transition: .3s;
}

.read-btn-blog:hover{
    color: var(--secondary);
    letter-spacing: .3px;
}
















/* ==========================
   Blog Details Page
========================== */

.blog-details-page{
    background:#F7F9FC;
}

/* Main Content */

.blog-details-wrapper{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(11,46,107,.08);
}

.blog-details-img img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:18px;
}

/* Meta */

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:20px;
}

.blog-meta span{
    color:#6b7280;
    font-size:15px;
}

.blog-meta i{
    color:var(--secondary);
}

/* Title */

.blog-title{
    font-size:30px;
    font-weight:700;
    color:var(--primary);
    line-height:1.3;
    margin-bottom:15px;
}

/* Typography */

.blog-text-content p{
    color:#555;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

.blog-text-content h3{
    color:var(--primary);
    font-size:26px;
    font-weight:700;
    margin:35px 0 18px;
}

.blog-text-content ul li{
    color:#555;
    margin-bottom:12px;
    line-height:1.8;
}

/* Tip Box */

.blog-text-content .bg-light{
    background:#F8FAFD !important;
    border-left:5px solid var(--secondary)!important;
    border-radius:14px;
}

.blog-text-content .bg-light h5{
    color:var(--primary);
    font-weight:700;
}

.blog-text-content .bg-light i{
    color:var(--secondary)!important;
}

/* Sidebar */

.blog-sidebar{
    position:sticky;
    top:110px;
}


/* Tags */

.blog-footer-tags{
    border-top:1px solid #ECECEC!important;
}

.tags .badge{
    background:#F7F9FC!important;
    color:var(--primary)!important;
    border:1px solid #E4EAF3!important;
    padding:8px 14px;
    border-radius:30px;
}

/* Share */

.share-links a{
    width:40px;
    height:40px;
    text-decoration: none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#F4F7FC;
    border-radius:50%;
    color:var(--primary)!important;
    transition:.3s;
}

.share-links a:hover{
    background:var(--secondary);
    color:#fff!important;
}

/* Responsive */

@media(max-width:991px){

    .blog-details-wrapper{
        padding:25px;
    }

    .blog-title{
        font-size:30px;
    }

    .blog-details-img img{
        height:300px;
    }

    .blog-sidebar{
        position:static;
    }

}

@media(max-width:576px){

    .blog-meta{
        flex-direction:column;
        gap:10px;
    }

    .blog-title{
        font-size:26px;
    }

    .blog-text-content h3{
        font-size:22px;
    }

}














/* pricing page */
.pricing-section{
    background:#F7F9FC;
}

.pricing-card{
    background:#fff;
    border-radius:18px;
    padding:25px 20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(11,46,107,.08);
    transition:.35s;
    position:relative;
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-10px);
}

.plan-name{
    display:inline-block;
    background:#EEF4FF;
    color:var(--primary);
    padding:6px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:10px;
}

.pricing-card h3{
    color:var(--primary);
    font-size:34px;
    font-weight:600;
    margin-bottom:4px;
}

.pricing-card p{
    color:#777;
    margin-bottom:10px;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:0 0 10px;
}

.pricing-card ul li{
    padding:3px 0;
    border-bottom:1px solid #eee;
}

.pricing-card ul li i{
    color:var(--secondary);
    margin-right:8px;
}

.active-plan{
    border:2px solid var(--secondary);
    transform:scale(1.04);
}

.popular-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:var(--secondary);
    color:#fff;
    padding:4px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.pribtn{
    justify-content: center;
}

@media(max-width:991px){

.active-plan{
transform:none;
}

}







/*==========================
Compare Plans
==========================*/

.compare-section{
    background:#fff;
}

.compare-table{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(11,46,107,.08);
}

.compare-table thead{
    background:var(--primary);
}

.compare-table thead th{
    color:#0B2E6B;
    text-align:center;
    padding:18px;
    font-size:17px;
    border:none;
}

.compare-table thead th:first-child{
    text-align:left;
}

.compare-table tbody td{
    padding:18px;
    text-align:center;
    vertical-align:middle;
    border-color:#edf2f7;
    font-size:15px;
}

.compare-table tbody td:first-child{
    text-align:left;
    font-weight:600;
    color:var(--primary);
}

.compare-table tbody tr:nth-child(even){
    background:#F8FAFD;
}

.compare-table i.fa-check{
    color:#28a745;
    font-size:18px;
}

.compare-btn{
    display:inline-block;
    padding:10px 24px;
    background:#fff;
    color:var(--primary);
    border:2px solid var(--primary);
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.compare-btn:hover{
    background:var(--primary);
    color:#fff;
}

.compare-btn.active{
    background:var(--secondary);
    border-color:var(--secondary);
    color:#fff;
}

.compare-btn.active:hover{
    background:var(--primary);
    border-color:var(--primary);
}

@media(max-width:991px){

.compare-table{
    min-width:850px;
}

}














/*==========================
Why Choose Our Pricing
==========================*/

.pricing-benefits{
    background:#F8FAFD;
}

.pricing-feature-card{
    background:#fff;
    padding:20px 15px;
    border-radius:18px;
    text-align:center;
    height:100%;
    transition:.35s;
    border:1px solid #edf2f7;
    box-shadow:0 10px 35px rgba(11,46,107,.06);
}

.pricing-feature-card:hover{
    transform:translateY(-8px);
    border-color:var(--secondary);
    box-shadow:0 18px 40px rgba(11,46,107,.12);
}

.feature-icon{
    width:75px;
    height:75px;
    margin:0 auto 22px;
    border-radius:50%;
    background:rgba(212,160,23,.12);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.35s;
}

.pricing-feature-card:hover .feature-icon{
    background:var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}

.pricing-feature-card h4{
    font-size:22px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

.pricing-feature-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

