﻿         /*=====================================================
        PORTAL FOR LAND RECORDS SERVICES
        Premium Landing Page
        Responsive Update
        ======================================================*/

                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }

                html,
                body {
                    width: 100%;
                    overflow: hidden;
                    font-family: Georgia, serif;
                    background: #f6f8fb;
                    color: #17364d;
                }

                body {
                    display: flex;
                    flex-direction: column;
                }

                a {
                    text-decoration: none;
                    color: inherit;
                }

                img {
                    max-width: 100%;
                }

/*                .page-wrapper {
                    height: 100vh;
                    display: flex;
                    flex-direction: column;
                }*/

                /*=====================================
        HEADER
        ======================================*/

                .top-header {
                    min-height: 92px;
                    background: #fffff1;
                    backdrop-filter: blur(15px);
                    border-bottom: 1px solid rgba(0,0,0,.08);
                    display: flex;
                    align-items: center;
                    z-index: 100;
                    box-shadow: 0 4px 18px rgba(0,0,0,.06);
                    flex-shrink: 0;
                }

                .container-fluid {
                    width: 100%;
                    padding-left: 40px;
                    padding-right: 40px;
                }

                .logo {
                    display: flex;
                    align-items: center;
                }

                    .logo img {
                        width: 100%;
                        max-width: 400px;
                        height: auto;
                        display: block;
                    }

                .header-right {
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;
                    flex-wrap: wrap;
                    gap: 20px 30px;
                }

                .header-links {
                    display: flex;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 20px 28px;
                }

                    .header-links a {
                        display: inline-flex;
                        align-items: center;
                        white-space: nowrap;
                        color: #17364d;
                        font-size: 16px;
                        font-weight: 500;
                        transition: .30s;
                    }

                        .header-links a:hover {
                            color: #0f5bd7;
                        }

                    .header-links i {
                        margin-right: 8px;
                        color: #0f5bd7;
                    }

                /*=====================================
        LANGUAGE
        ======================================*/

                .language-switch {
                    display: flex;
                    align-items: center;
                    border-radius: 50px;
                    font-size: 14px;
                    overflow: hidden;
                    border: 1px solid rgba(0,0,0,.08);
                    background: #eef2f6;
                    flex-shrink: 0;
                }

                .lang-btn {
                    border: none;
                    padding: 10px 22px;
                    background: none;
                    cursor: pointer;
                    transition: .50s;
                    font-weight: 500;
                    color: #17364d;
                    white-space: nowrap;
                }

                    .lang-btn.active {
                        background: #2c67db;
                        color: #fff;
                    }

                    .lang-btn:hover {
                        background: #2c67db;
                        color: #fff;
                    }

                /*=====================================
        HERO
        ======================================*/

                .hero {
                    flex: 1;
                    min-height: 0;
                    position: relative;
                    background: url("../images/bg.jpg") center center/cover no-repeat;
                    padding: 20px;
                    display: flex;
                    align-items: center;
                    overflow: hidden;
                }

                .hero-overlay {
                    position: absolute;
                    inset: 0;
                    background: linear-gradient( rgba(255,255,255,.35), rgba(255,255,255,.15) );
                }

                .hero-content {
                    position: relative;
                    z-index: 5;
                    width: 100%;
                }

                .hero h1 {
                    font-size: clamp(28px, 4.2vw, 54px);
                    font-weight: 700;
                    color: #17364d;
                    line-height: 1.1;
                    margin: 30px 0;
                }

                .notice {
                    max-width: 950px;
                    margin: 20px auto;
                    padding: 20px 28px;
                    background: rgba(255,255,255,.30);
                    backdrop-filter: blur(15px);
                    border-radius: 18px;
                    border: 1px solid rgba(255,255,255,.55);
                    color: #243b53;
                    font-size: clamp(13px, 1.4vw, 18px);
                    line-height: 1.8;
                    box-shadow: 0 15px 40px rgba(0,0,0,.08);
                }

                /*=====================================
        SERVICE SECTION
        ======================================*/

                .service-wrapper {
                    margin-top: 45px;
                }

                .service-card {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    align-items: center;
                    text-align: center;
                    height: 100%;
                    padding: 15px 8px;
                    border-radius: 24px;
                    background: rgba(255,255,255,.35);
                    backdrop-filter: blur(18px);
                    border: 1px solid rgba(255,255,255,.6);
                    transition: .35s;
                    box-shadow: 0 15px 35px rgba(0,0,0,.08);
                    position: relative;
                    overflow: hidden;
                }

                    .service-card::before {
                        content: "";
                        position: absolute;
                        left: -120px;
                        top: -120px;
                        width: 220px;
                        height: 220px;
                        border-radius: 50%;
                        background: rgba(255,255,255,.18);
                    }

                    .service-card:hover {
                        transform: translateY(-12px);
                        box-shadow: 0 25px 55px rgba(0,0,0,.18);
                    }

                .icon {
                    width: 72px;
                    height: 72px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #fff;
                    font-size: 30px;
                    margin-bottom: 25px;
                    box-shadow: 0 12px 25px rgba(0,0,0,.10);
                    flex-shrink: 0;
                }

                .premium {
                    color: #d79b08;
                }

                .green {
                    color: #1fa24d;
                }

                .blue {
                    color: #1976d2;
                }

                .service-card h3 {
                    font-size: clamp(20px, 1.8vw, 25px);
                    font-weight: 700;
                    margin-bottom: 15px;
                }

                .service-card p {
                    color: #4b5563;
                    font-size: 16px;
                    line-height: 1.4;
                }

                /*=====================================
        ARROW BUTTON
        ======================================*/

                .arrow {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    background: linear-gradient(135deg,#17364d,#2f6edc);
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 20px;
                    margin-top: 18px;
                    transition: .35s;
                    box-shadow: 0 12px 28px rgba(23,54,77,.35);
                    flex-shrink: 0;
                }

                .service-card:hover .arrow {
                    transform: translateX(6px);
                    background: linear-gradient(135deg,#2f6edc,#17364d);
                }

                .arrow i {
                    color: #fff;
                }

                /*=====================================
        FOOTER
        ======================================*/

                footer {
                    min-height: 98px;
                    background: #0f2d39;
                    color: #fff;
                    padding: 14px 45px;
                    border-top: 1px solid rgba(255,255,255,.08);
                    flex-shrink: 0;
                }

                   

                /*=====================================
        GLASS EFFECT
        ======================================*/

                .service-card::after {
                    content: "";
                    position: absolute;
                    inset: 0;
                    border-radius: 24px;
                    padding: 1px;
                    background: linear-gradient( 135deg, rgba(255,255,255,.55), rgba(255,255,255,0), rgba(255,255,255,.35) );
                    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                    -webkit-mask-composite: xor;
                    mask-composite: exclude;
                    pointer-events: none;
                }

                /*=====================================
        ANIMATION
        ======================================*/

                @@keyframes floatCard {

                    0% {
                        transform: translateY(0px);
                    }

                    50% {
                        transform: translateY(-6px);
                    }

                    100% {
                        transform: translateY(0px);
                    }
                }

                .service-card {
                    animation: floatCard 6s ease-in-out infinite;
                }

                    .service-card:nth-child(2) {
                        animation-delay: .4s;
                    }

                    .service-card:nth-child(3) {
                        animation-delay: .8s;
                    }

                /*=====================================
        LARGE DESKTOP / DESKTOP (NO SCROLL)
        ======================================*/

                @@media (min-width:1200px) {

                    html, body {
                        overflow: hidden;
                    }

                    .page-wrapper {
                        height: 100vh;
                    }

                    .hero {
                        min-height: calc(100vh - 170px);
                    }

                    .service-wrapper {
                        margin-top: 35px;
                    }

                    .notice {
                        max-width: 980px;
                    }

                    .service-card {
                        min-height: 250px;
                    }
                }

                @@media (max-width:1400px) and (min-width:1200px) {

                    .hero h1 {
                        font-size: clamp(28px, 4vw, 52px);
                    }

                    .service-card {
                        min-height: 270px;
                    }
                }

                /*=====================================
        LAPTOP
        ======================================*/

                @@media (max-width:1199.98px) {

                    .top-header {
                        min-height: auto;
                        padding: 16px 0;
                    }

                    .header-right {
                        justify-content: center;
                    }

                    .header-links {
                        justify-content: center;
                    }

                    .logo {
                        justify-content: center;
                    }

                    footer {
                        padding: 14px 25px;
                    }
                }

/* =====================================
   TABLET & MOBILE - ENABLE SCROLL
   ===================================== */

@media (max-width: 991.98px) {

    html,
    body {
        width: 100%;
        height: auto;
        min-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body {
        display: block;
    }

    .page-wrapper {
        width: 100%;
        min-height: 100vh;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .hero {
        flex: none;
        min-height: auto;
        height: auto;
        overflow: visible;
        padding: 45px 0;
    }

    footer {
        flex-shrink: 0;
    }
}

                /*=====================================
        MOBILE
        ======================================*/

                @@media (max-width:767.98px) {

                    .top-header {
                        padding: 15px 0;
                    }

                    .container-fluid {
                        padding: 0 18px;
                    }

                    .logo {
                        flex-direction: column;
                    }

                        .logo img {
                            max-width: 220px;
                        }

                    .header-links {
                        flex-direction: column;
                        gap: 12px;
                        margin-top: 15px;
                    }

                        .header-links a {
                            font-size: 15px;
                        }

                    .language-switch {
                        margin-top: 12px;
                    }

                    .hero {
                        padding: 35px 0;
                    }

                    .notice {
                        line-height: 1.7;
                    }

                    .service-card {
                        min-height: auto;
                        padding: 20px 15px;
                    }
                }

                /*=====================================
        SMALL MOBILE
        ======================================*/

                @@media (max-width:575.98px) {

                    .notice {
                        padding: 16px;
                    }

                    .service-wrapper {
                        margin-top: 28px;
                    }

                    .service-card {
                        border-radius: 18px;
                    }

                    .icon {
                        width: 64px;
                        height: 64px;
                        font-size: 26px;
                    }

                    .arrow {
                        width: 50px;
                        height: 50px;
                        font-size: 18px;
                    }

                    footer h4 {
                        font-size: 16px;
                    }

                    footer span,
                    footer p {
                        font-size: 12px;
                    }
                }

                /*=====================================
        SMOOTH TRANSITIONS
        ======================================*/

                * {
                    transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
                }

                /*=====================================
        CUSTOM SCROLLBAR
        ======================================*/

                ::-webkit-scrollbar {
                    width: 8px;
                }

                ::-webkit-scrollbar-track {
                    background: #edf2f7;
                }

                ::-webkit-scrollbar-thumb {
                    background: #9fb5dc;
                    border-radius: 50px;
                }

                    ::-webkit-scrollbar-thumb:hover {
                        background: #2f6edc;
                    }

                .foot-logo {
                    height: 60px;
                    width: 300px;
                    max-width: 100%;
                    justify-content: center;
                    align-items: center;
                }


        .citizen-modal .modal-dialog {
            max-width: 900px;
        }

        .citizen-modal .modal-content {
            background: #fdf9e7;
            border: none;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(0,0,0,.35);
        }

        .citizen-modal .modal-header {
            background: #fdf9e7;
            border-bottom: 1px solid rgba(23,54,77,.08);
            padding: 26px 30px;
        }

        .citizen-modal .modal-title {
            font-weight: 700;
            font-size: 24px;
            color: #17364d;
        }

        .citizen-modal p {
            font-weight: 500;
            font-size: 14px;
            color: #17364d;
        }

        .citizen-modal .btn-close {
            box-shadow: none;
            opacity: .7;
        }

            .citizen-modal .btn-close:hover {
                opacity: 1;
            }

        .citizen-modal .modal-body {
            padding: 35px 30px 40px;
        }

        .citizen-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            height: 100%;
            min-height: 180px;
            padding: 28px 16px;
            background: #fff4d7;
            border: 1.5px solid #e8b93f;
            border-radius: 16px;
            color: #17364d;
            font-weight: 700;
            font-size: 18px;
            text-align: center;
            transition: .3s;
        }

/*            .citizen-option i,
            .citizen-option svg {
                font-size: 38px;
                color: #17364d;
            }*/

        .citizen-option img
        {
            width: 50px;
            height 50px;
        }

        .citizen-option:hover {
            background: #fadf9c;
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(232,185,63,.35);
        }

        .service-card.citizen-trigger {
            cursor: pointer;
        }


        .helpline {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

            .helpline div {
                display: flex;
                flex-direction: column;
                line-height: 1.2;
            }

            .helpline a {
                margin: 0;
            }

            .helpline span {
                font-size: 14px;
                color: #17364d;
            }


.language-switch {
    display: flex;
    gap: 10px;
}

.lang-btn {
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    background: #fff;
    display: inline-block;
}

    .lang-btn.active {
        background: #0d6efd;
        color: #fff;
    }