/* Preloader wrapper */
.tkms-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    /* white background */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inner container */
.tkms-preloader-inner {
    text-align: center;
    position: relative;
}

/* Logo animation */
.tkms-preloader-logo {
    width: 250px;
    height: auto;
    animation: tkmsPulse 1.5s infinite ease-in-out, tkmsFade 2s infinite ease-in-out;
}

/* Pulse (zoom in/out) */
@keyframes tkmsPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Fade in/out */
@keyframes tkmsFade {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}


/*  */
.sticky-header .nav-outer {
    margin-right: 3%;
}

.header-style-two {
    background: #ffffff;
}

.main-menu .navigation>li>a {
    color: #000 !important;
}

.navigation li.dropdown>a::after {
    content: "\f078";
    /* Font Awesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-left: 6px;
    font-size: 12px;
}


/* slider */

.slider-two .outer-box .content-column .inner-column .title {
    font-size: 45px;
    line-height: 60px;
    max-width: 900px;
}

.slider-two .outer-box .content-column .inner-column {
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.slider-two .outer-box {
    padding: 222px 0px 160px;
}

.slider-p {
    font-size: 22px;
    font-weight: 500;
    color: var(--theme-color-white);
}

.bg-slide-1 video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
.bg-slide-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* adjust opacity & color */
    z-index: 1;
}

.outer-box {
    position: relative;
    z-index: 2;

}

/*  */
.pb-60 {
    padding: 0px 0px 60px 0;
}

.ft-35 {
    font-size: 35px;
}

.mb-60 {
    margin-bottom: 60px;
}

.ptb-30-60 {
    padding: 30px 0px 40px 0px;
}

.ptb-30-10 {
    padding: 30px 0px 10px 0px !important;
}

.ft-32 {
    font-size: 32px !important;
}

.ptb-30-30 {
    padding: 30px 0 !important;
}

/*  */

.consult-tab .tab-content .list li {
    text-align: justify;
}

.vision-title,
.mission-title {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.vision-img,
.mission-img {
    width: 52px;
    filter: brightness(0.5);
    height: auto;
}

/*  */
@media (max-width: 767px) {
    .consult-tab .tab-content .list li {
        width: 100%;
        text-align: unset;
    }
}

/* Feature Section */
.custom-feature-section {
    padding: 30px 0 30px 0;
    background: #f5f7fa;
}

/* Wrapper with patterns */
.custom-feature-wrapper {
    position: relative;
    padding: 20px 20px;
    background: #f5f7fa;
}

/* Pattern images */
.custom-pattern {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.custom-pattern-top-left {
    top: 0;
    left: 0;
    max-width: 250px;
}

.custom-pattern-bottom-right {
    bottom: 0;
    right: 0;
    max-width: 250px;
}

/* Custom row */
.custom-feature-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Custom feature item */
.custom-feature-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    padding: 20px;
    border-right: 1px solid #ccc;
    transition: all 0.4s ease;
    background: transparent;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* Remove right border for every 3rd item */
.custom-feature-item:nth-child(3n) {
    border-right: none;
}

/* Hover effect */
.custom-feature-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #0A192F, #1D3557, #457B9D);
    color: #fff;
    border-right: none;
}

/* Title styling */
.outlined-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: transparent;
    -webkit-text-stroke: 1.5px #0A192F;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

/* Hover title effect */
.custom-feature-item:hover .outlined-title {
    color: #fff;
    -webkit-text-stroke: 0px transparent;
}

/* Paragraph styling */
.custom-feature-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    transition: color 0.3s ease;
}

/* Hover paragraph effect */
.custom-feature-item:hover p {
    color: #f1f1f1;
}

/* Responsive */
@media (max-width: 991px) {
    .custom-feature-item {
        flex: 1 1 calc(50% - 20px);
        border-right: none;
    }
}

@media (max-width: 600px) {
    .custom-feature-item {
        flex: 1 1 100%;
        border-right: none;
    }
}

/* === Badge Styles === */
.feature-icon-badge {
    position: absolute;
    top: -10px;
    /* overlap outside */
    right: -15px;
    /* overlap outside */
    width: 70px;
    height: 70px;
    border: 2px solid #0A192F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    /* depth */
    z-index: 3;
    transition: all 0.3s ease;
}

.feature-icon-badge img {
    max-width: 38px;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

/* Hover effect */
.custom-feature-item:hover .feature-icon-badge {
    background: #0A192F;
    border-color: #fff;
    transform: scale(1.1);
    /* slight pop */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.custom-feature-item:hover .feature-icon-badge img {
    filter: brightness(0) invert(1);
}

/*  */
.gov-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gov-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.gov-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gov-card .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.gov-card:hover .icon {
    background: #0A192F;
    /* theme color */
}

.gov-card:hover .icon img {
    filter: brightness(0) invert(1);
    /* turn icon white */
}

.gov-card .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0A192F;
}

.gov-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/*custom-list  */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.custom-list .custom-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background-color: #0A192F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-list .custom-icon i {
    color: #fff;
    font-size: 18px;
}

/* Simple hover effect (no zoom) */
.custom-list li:hover .custom-icon {
    background-color: #142d4d;
    /* lighter shade */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* custom-list */

/*  */
.arrow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.arrow-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #0A192F;
    /* Your theme color */
}

.arrow-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 18px;
    color: #0a192f;
    /* Green accent */
}

.fs-22 {
    font-size: 22px !important;
}

.step-block_one .inner:hover .icon {
    background-color: #c0bbbb !important;
}

/*  */

@media (max-width: 991px) {
    .step-block_one .inner {
        height: unset !important;
    }

    .slider-two .outer-box .content-column .inner-column .title {
        font-size: 30px;
        line-height: 42px;
    }

    .highlight-counter {
        margin: 15px auto 30px;
    }

    .service-section-eight {
        padding-bottom: 15px !important;
    }

    .main-footer {
        padding: 20px 0px 20px !important;
    }

    .navigation li.dropdown>a::after {
        content: "";
    }

    .outlined-title {
        font-size: 28px;
    }

    .counter-block .inner {
        display: flex !important;
        align-items: center !important;
    }

    .mbl-width {
        width: 115px !important;
    }

    .consult-two .content {
        padding: 26px 30px;
        background-color: #c1c1c1;
    }


    .page-title .title {
        font-size: 24px;
    }

    .consult-section .auto-container .inner-container {
        padding: 15px 10px;
    }

    .main-footer .copyright {
       text-align: unset !important; 
    }
}