﻿/*====================================================
                PRIVACY PAGE
====================================================*/

body {
    background: #f5f7fb;
    font-family: 'Poppins',sans-serif;
    color: #333;
    line-height: 1.8;
}


/*====================================================
                HERO SECTION
====================================================*/

.privacy-hero {
    position: relative;
    height: 430px;
    background: linear-gradient(rgba(13,71,161,.88), rgba(13,71,161,.88)), url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .privacy-hero .overlay {
        width: 100%;
    }

.page-small-title {
    display: inline-block;
    color: #ff9800;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.privacy-hero h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 18px;
}

.privacy-hero p {
    color: #f3f6ff;
    font-size: 22px;
}

.hero-line {
    width: 100px;
    height: 4px;
    background: #ff9800;
    border-radius: 30px;
    margin: 30px auto 0;
}


/*====================================================
            QUICK NAVIGATION
====================================================*/

.quick-nav {
    margin-top: -55px;
    position: relative;
    z-index: 20;
}

    .quick-nav .container {
        background: #fff;
        border-radius: 20px;
        padding: 35px;
        box-shadow: 0 15px 40px rgba(0,0,0,.10);
    }

    .quick-nav h2 {
        text-align: center;
        color: #0d47a1;
        font-size: 30px;
        margin-bottom: 30px;
    }

.nav-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 18px;
}

    .nav-grid a {
        background: #f8f9fc;
        color: #0d47a1;
        text-align: center;
        padding: 16px;
        border-radius: 14px;
        font-weight: 600;
        transition: .35s;
        border: 2px solid transparent;
    }

        .nav-grid a:hover {
            background: #0d47a1;
            color: #fff;
            border-color: #ff9800;
            transform: translateY(-5px);
        }


/*====================================================
            POLICY SECTION
====================================================*/

.policy-section {
    padding: 90px 0;
}

.policy-card {
    background: #fff;
    border-radius: 24px;
    padding: 55px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    position: relative;
    transition: .35s;
    border-left: 6px solid #0d47a1;
}

    .policy-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.14);
    }


/*====================================================
            SECTION NUMBER
====================================================*/

.section-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 22px;
}

.section-tag {
    display: inline-block;
    color: #ff9800;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.policy-card h2 {
    color: #0d47a1;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
}

.title-line {
    width: 90px;
    height: 4px;
    background: #ff9800;
    border-radius: 30px;
    margin-bottom: 28px;
}

.policy-card p {
    color: #666;
    font-size: 17px;
    margin-bottom: 18px;
    text-align: justify;
}


/*====================================================
            HIGHLIGHT BOX
====================================================*/

.highlight-box {
    margin-top: 35px;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

    .highlight-box i {
        font-size: 40px;
        color: #ff9800;
        margin-top: 5px;
    }

    .highlight-box h4 {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .highlight-box p {
        color: #eef4ff;
        margin: 0;
        text-align: left;
    }
/*====================================================
                SERVICE GRID
====================================================*/

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 40px;
}

.service-item {
    background: #f8f9fc;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: .35s;
    border: 2px solid transparent;
}

    .service-item:hover {
        background: #0d47a1;
        color: #fff;
        transform: translateY(-8px);
        border-color: #ff9800;
    }

    .service-item i {
        font-size: 34px;
        color: #ff9800;
        margin-bottom: 15px;
    }

    .service-item:hover i {
        color: #fff;
    }

    .service-item span {
        font-size: 17px;
        font-weight: 600;
    }


/*====================================================
                NOTE BOX
====================================================*/

.note-box {
    margin-top: 35px;
    background: #fff8e8;
    border-left: 6px solid #ff9800;
    padding: 22px 28px;
    border-radius: 14px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

    .note-box i {
        font-size: 28px;
        color: #ff9800;
    }

    .note-box p {
        margin: 0;
    }


/*====================================================
            INFORMATION GRID
====================================================*/

.info-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    margin-top: 40px;
}

.info-box {
    background: #f8f9fc;
    border-radius: 18px;
    padding: 30px;
    transition: .35s;
    text-align: center;
    border-bottom: 5px solid #0d47a1;
}

    .info-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.10);
    }

    .info-box i {
        font-size: 42px;
        color: #0d47a1;
        margin-bottom: 20px;
    }

    .info-box h4 {
        color: #0d47a1;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .info-box p {
        margin: 0;
        text-align: center;
    }


/*====================================================
        PERSONAL INFORMATION GRID
====================================================*/

.personal-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

.personal-item {
    background: #f5f7fb;
    padding: 20px 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: .35s;
}

    .personal-item:hover {
        background: #0d47a1;
        color: #fff;
        transform: translateX(8px);
    }

    .personal-item i {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #0d47a1;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .35s;
    }

    .personal-item:hover i {
        background: #fff;
        color: #0d47a1;
    }


/*====================================================
            USAGE GRID
====================================================*/

.usage-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 40px;
}

.usage-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
    border-top: 5px solid #0d47a1;
}

    .usage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.usage-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

    .usage-icon i {
        color: #fff;
        font-size: 30px;
    }

.usage-card h3 {
    color: #0d47a1;
    font-size: 24px;
    margin-bottom: 15px;
}

.usage-card p {
    margin: 0;
}


/*====================================================
            ANALYTICS LIST
====================================================*/

.analytics-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

    .analytics-list div {
        background: #f8f9fc;
        padding: 18px 22px;
        border-radius: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: .3s;
    }

        .analytics-list div:hover {
            background: #0d47a1;
            color: #fff;
        }

    .analytics-list i {
        color: #28a745;
        font-size: 18px;
    }

    .analytics-list div:hover i {
        color: #ff9800;
    }
/*====================================================
                PRIVACY STATS
====================================================*/

.privacy-stats {
    padding: 90px 0;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-box {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: .35s;
}

    .stat-box:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.15);
    }

    .stat-box i {
        font-size: 42px;
        color: #ff9800;
        margin-bottom: 20px;
    }

    .stat-box h2 {
        color: #fff;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stat-box p {
        color: #e7efff;
        font-size: 17px;
        margin: 0;
    }


/*====================================================
                SECURITY GRID
====================================================*/

.security-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 40px;
}

.security-item {
    background: #f8f9fc;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    transition: .35s;
    border-bottom: 5px solid #0d47a1;
}

    .security-item:hover {
        background: #0d47a1;
        color: #fff;
        transform: translateY(-8px);
    }

    .security-item i {
        font-size: 38px;
        color: #ff9800;
        margin-bottom: 18px;
    }

    .security-item:hover i {
        color: #fff;
    }

    .security-item h4 {
        font-size: 20px;
        margin: 0;
    }


/*====================================================
                RIGHTS GRID
====================================================*/

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 35px;
}

    .rights-grid div {
        background: #f8f9fc;
        padding: 20px 25px;
        border-radius: 14px;
        font-size: 17px;
        font-weight: 600;
        transition: .35s;
        border-left: 5px solid #ff9800;
    }

        .rights-grid div:hover {
            background: #0d47a1;
            color: #fff;
            transform: translateX(8px);
        }


/*====================================================
                CONTACT SECTION
====================================================*/

.privacy-contact {
    padding: 100px 0;
    background: #f5f7fb;
}

.contact-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 25px;
    padding: 55px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    transition: .35s;
}

    .contact-card:hover {
        transform: translateY(-8px);
    }

    .contact-card h2 {
        color: #0d47a1;
        font-size: 42px;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .contact-card > p {
        color: #666;
        font-size: 18px;
        margin-bottom: 35px;
    }

.contact-info {
    max-width: 650px;
    margin: auto;
    text-align: left;
}

    .contact-info p {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 17px;
        color: #555;
    }

    .contact-info i {
        color: #ff9800;
        width: 24px;
        font-size: 20px;
        margin-top: 4px;
    }


/*====================================================
            SMOOTH ANIMATION
====================================================*/

.policy-card,
.info-box,
.usage-card,
.stat-box,
.security-item,
.contact-card {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*====================================================
                FOOTER
====================================================*/

.footer {
    background: #0b1320;
    padding: 80px 0 0;
    color: #d8d8d8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 45px;
    padding-bottom: 45px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 22px;
}

.footer-column p {
    color: #bfc8d8;
    line-height: 1.9;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 14px;
    }

        .footer-column ul li a {
            color: #bfc8d8;
            transition: .3s;
        }

            .footer-column ul li a:hover {
                color: #ff9800;
                padding-left: 6px;
            }


/*====================================================
                FOOTER LOGO
====================================================*/

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

    .footer-logo img {
        width: 78px;
        height: 78px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid rgba(255,255,255,.9);
        background: #fff;
        padding: 4px;
    }

    .footer-logo h2 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }


/*====================================================
            SOCIAL ICONS
====================================================*/

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

    .footer-social a {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #0d47a1;
        color: #fff;
        transition: .35s;
    }

        .footer-social a:hover {
            background: #ff9800;
            transform: translateY(-5px);
        }


/*====================================================
            FOOTER BOTTOM
====================================================*/

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 20px;
    padding: 25px 0;
    display: flex;
    align-items: center;
    position: relative;
}

    .footer-bottom .copyright {
        width: 100%;
        text-align: center;
        color: #aeb8ca;
        font-size: 15px;
    }

    .footer-bottom .developer {
        position: absolute;
        right: 0;
        color: #aeb8ca;
        font-size: 15px;
        white-space: nowrap;
    }

        .footer-bottom .developer a {
            color: #ff9800;
            font-weight: 600;
            text-decoration: none;
            transition: .3s;
        }

            .footer-bottom .developer a:hover {
                color: #fff;
                text-decoration: underline;
            }


/*====================================================
                SCROLLBAR
====================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ececec;
}

::-webkit-scrollbar-thumb {
    background: #0d47a1;
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #1565c0;
    }


/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:992px) {

    .nav-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .personal-grid {
        grid-template-columns: 1fr;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .privacy-hero {
        height: 320px;
    }

        .privacy-hero h1 {
            font-size: 42px;
        }

        .privacy-hero p {
            font-size: 18px;
        }

    .policy-card {
        padding: 35px;
    }

        .policy-card h2 {
            font-size: 32px;
        }

    .nav-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .analytics-list {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }

        .footer-bottom .developer {
            position: static;
            margin-top: 12px;
        }
}

@media(max-width:480px) {

    .policy-card {
        padding: 25px;
    }

        .policy-card h2 {
            font-size: 28px;
        }

    .contact-card {
        padding: 30px;
    }

        .contact-card h2 {
            font-size: 30px;
        }

    .section-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
}