@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;500;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
}

body {
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden;
    /* background-color: #000; */
    position: relative;
}


.loader-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.959);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.5s, visibility 2s;
}

.loader-box-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    --c: linear-gradient(#ffffff 0 0);
    --r1: radial-gradient(farthest-side at bottom, #ffffff 93%, #ffffff00);
    --r2: radial-gradient(farthest-side at top, #ffffff 93%, #ffffff00);
    background:
        var(--c), var(--r1), var(--r2),
        var(--c), var(--r1), var(--r2),
        var(--c), var(--r1), var(--r2);
    background-repeat: no-repeat;
    animation: l2 1s infinite alternate;
}

@keyframes l2 {

    0%,
    25% {
        background-size: 8px 0, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px;
        background-position: 0 50%, 0 calc(50% - 2px), 0 calc(50% + 2px), 50% 50%, 50% calc(50% - 2px), 50% calc(50% + 2px), 100% 50%, 100% calc(50% - 2px), 100% calc(50% + 2px);
    }

    50% {
        background-size: 8px 100%, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px;
        background-position: 0 50%, 0 calc(0% - 2px), 0 calc(100% + 2px), 50% 50%, 50% calc(50% - 2px), 50% calc(50% + 2px), 100% 50%, 100% calc(50% - 2px), 100% calc(50% + 2px);
    }

    75% {
        background-size: 8px 100%, 8px 4px, 8px 4px, 8px 100%, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px;
        background-position: 0 50%, 0 calc(0% - 2px), 0 calc(100% + 2px), 50% 50%, 50% calc(0% - 2px), 50% calc(100% + 2px), 100% 50%, 100% calc(50% - 2px), 100% calc(50% + 2px);
    }

    95%,
    100% {
        background-size: 8px 100%, 8px 4px, 8px 4px, 8px 100%, 8px 4px, 8px 4px, 8px 100%, 8px 4px, 8px 4px;
        background-position: 0 50%, 0 calc(0% - 2px), 0 calc(100% + 2px), 50% 50%, 50% calc(0% - 2px), 50% calc(100% + 2px), 100% 50%, 100% calc(0% - 2px), 100% calc(100% + 2px);
    }
}

#header {
    width: 100vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 1000;
}

.header-logo img {
    width: 200px;
}

#navbar-list-item {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

#navbar-list-item li {
    margin-right: 15px;
    position: relative;
}

#navbar-list-item li a {
    text-decoration: none;
    color: rgb(174, 174, 174);
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: block;
}

#navbar-list-item li a:hover {
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    z-index: 1;
    top: 8vh;
    left: 100%;
    transform: translateX(-80%);
    width: 800px;
    padding: 30px;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.641));
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dropdown-grid div {
    text-align: center;/
}

.dropdown-grid a {
    padding: 5px 0;
    display: block;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease-in;
}

.dropdown-grid a:hover {
    border-bottom: 2px solid white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger i {
    font-size: 2rem;
    color: white;
}

.navbar ul {
    display: flex;
    gap: 20px;
}


/* this will show error */
.navbar.active #navbar-list-item {
    display: block;
}

@media (max-width:1150px) {
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-content {
        width: 551px;
    }

    .hamburger {
        display: block;
    }

    #navbar-list-item {
        display: none;
        background-color: black;
        flex-direction: column;
        width: 100vw;
        height: auto;
        position: absolute;
        top: 10vh;
        left: 0;
        z-index: 999;
        padding: 20px;
    }

    #navbar-list-item li {
        margin: 10px 0px 17px;
        transition: all 0.3s ease-in;
    }

    .dropdown-content {
        position: relative;
        top: 10px;
        left: 40%;
        width: 320px;
        box-shadow: none;
        margin: 10px 0px 0px 20px;
        padding: 10px;
        border-radius: 10px;
    }

}

@media (max-width: 900px) {
    #navbar-list-item {
        display: none;
        flex-direction: column;
        width: 100vw;
        height: auto;
        position: absolute;
        top: 10vh;
        left: 0;
        z-index: 999;
        padding: 20px;
    }

    .hamburger {
        display: block;
        /* position: absolute;
        top: 25px;
        right: 20px; */
    }

}


@media screen and (max-width:570px) {
    #header {
        justify-content: space-around;
    }

    #navbar-list-item {
        display: none;
        background-color: black;
        flex-direction: column;
        width: 100vw;
        height: auto;
        position: absolute;
        top: 10vh;
        left: 0;
        z-index: 999;
        padding: 20px;
    }

    #navbar-list-item li a {
        font-size: 1rem;
    }

    #navbar-list-item li {
        margin: 2px 0px 17px;
        transition: all 0.3s ease-in;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .dropdown-content {
        position: relative;
        top: 10px;
        left: 75%;
        width: 320px;
        box-shadow: none;
        margin: 10px 0px 0px 20px;
        padding: 10px;
        border-radius: 10px;
    }


    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dropdown-grid a {
        font-size: 0.5rem;
    }
}

/* hero section */

.about-us-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: url("../images/privacy-home-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.about-us-container-content {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: end;
    color: white;
    background-color: rgba(0, 0, 0, 0.612);
    font-family: 'Satoshi', sans-serif;

}

.about-us-container-content .left-heading {
    width: 40%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

.about-us-container-content .left-heading p {
    font-size: 1.5rem;
    font-weight: 100;
    color: #d1d1d1;
    border-left: 2px solid #d1d1d1;
    padding-left: 10px;
    font-weight: lighter;
}

.about-us-container-content .right-subheading {
    width: 40%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.about-us-container-content .left-heading h1 {
    font-size: 3.5rem;
    letter-spacing: 2.5px;
    line-height: 1.5em;
}


.about-us-container-content .right-subheading h3 {
    width: 70%;
    font-size: 1.2rem;
    line-height: 1.6em;
    letter-spacing: 2px;
    font-weight: 100;
    color: #ffffff;
}

.about-us-container-content .right-subheading a {
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.about-us-container-content .right-subheading {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}


@media (max-width: 768px) {

    .about-us-container-content {
        flex-direction: column;
        padding: 20px;
    }

    .about-us-container-content .left-heading {
        width: 100%;
    }

    .about-us-container-content .right-subheading {
        width: 100%;
    }

    .about-us-container-content h1 {
        font-size: 40px;
        width: 100%;
    }

    .about-us-container-content div h3 {
        font-size: 16px;
        width: 80vw;
    }

    .header-logo img {
        width: 150px;
    }

    #navbar-list-item {
        flex-direction: column;
    }

    #navbar-list-item li {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .about-us-container-content {
        flex-direction: column;
        justify-content: flex-end;
    }

    .about-us-container-content .left-heading {
        width: 100%;
        height: 30%;
    }

    .about-us-container-content .left-heading p {
        font-size: 0.9rem;
        padding-left: 5px;
    }

    .about-us-container-content .left-heading h1 {
        font-size: 2.35rem;
        /* filter: drop-shadow(0px 0px 10px black); */
    }

    .about-us-container-content .right-subheading {
        width: 100%;
        height: 35%;
        justify-content: flex-start;
        gap: 25px;
    }

    .about-us-container-content .right-subheading h3 {
        width: 90%;
        font-size: 1rem;
        /* filter: drop-shadow(0px 0px 3px black); */
    }
}

/* intro section */

.privacy-introduction {
    width: 100vw;
    display: flex;
    justify-content: center;
}

.privacy-introduction .privacy-intro-container {
    width: 85%;
    margin-top: 30px;

    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.privacy-introduction .privacy-intro-container h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0px 20px 0px;
}

.privacy-intro-para {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    row-gap: 30px;
}

.privacy-intro-para p {
    font-size: 1.3rem;
    letter-spacing: 1.1px;
    line-height: 1.5em;
    word-spacing: 2px;
}

/* section 3 */

.personal-data {
    width: 100vw;

    display: flex;
    justify-content: center;
}

.personal-data-container {
    width: 85%;
    margin-top: 30px;
}

.personal-data-container h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0px 20px 0px;
}

.privacy-points {
    width: 100%;
}

.privacy-points ul {
    display: flex;
    flex-direction: column;
    margin-left: 25px;
}

.privacy-points ul li {
    margin: 20px 0px;
    font-size: 1.3rem;
    letter-spacing: 1.1px;
    word-spacing: 2px;
}

/* section 4 */
.managing-info {
    width: 100vw;
    display: flex;
    justify-content: center;
}

.managing-info-container {
    width: 85%;
    margin-top: 30px;
}

.managing-info-container h1 {
    width: 50%;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0px 20px 0px;
}

/* section 5 */

.share-data {
    width: 100vw;
    display: flex;
    justify-content: center;
}

.share-data-container {
    width: 85%;
    margin-top: 30px;
}

.share-data-container h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0px 20px 0px;
}

/* section 6 */

.safe-info {
    width: 100vw;
    display: flex;
    justify-content: center;
}

.safe-info-container {
    width: 85%;
    margin-top: 30px;
}

.safe-info-container h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0px 20px 0px;
}


/* section 7 */
.keep-info {
    width: 100vw;

    display: flex;
    justify-content: center;
}

.keep-info-container {
    width: 85%;
    margin-top: 30px;
}

.keep-info-container h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0px 20px 0px;
}


/* section 8 */
.contact-us {
    width: 100vw;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-us-container {
    width: 85%;
    margin: 30px 0px 30px 0px;
}

.contact-us-container h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0px 20px 0px;
}

@media (max-width:570px) {
    .privacy-introduction .privacy-intro-container h1 {
        font-size: 1.6rem;
        margin: 20px 0px 10px 0px;
    }

    .privacy-intro-para p {
        font-size: 0.9rem;
    }

    .personal-data-container h1 {
        font-size: 1.6rem;
        margin: 20px 0px 10px 0px;
    }

    .privacy-points ul li {
        margin: 10px 0px;
        font-size: 0.9rem;
    }

    .managing-info-container h1 {
        font-size: 1.4rem;
        margin: 20px 0px 10px 0px;
        width: 100%;
    }

    .share-data-container h1 {
        font-size: 1.6rem;
        margin: 20px 0px 10px 0px;
    }

    .safe-info-container h1 {
        font-size: 1.6rem;
        margin: 20px 0px 10px 0px;
    }

    .keep-info-container h1 {
        font-size: 1.6rem;
        margin: 20px 0px 10px 0px;
    }

    .contact-us-container h1 {
        font-size: 1.6rem;
        margin: 20px 0px 10px 0px;
    }
}




/* footer section */

.footer-container {
    max-width: 100vw;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.footer-social-container {
    margin-top: 40px;
    width: 85%;

}

.footer-social-heading {
    display: flex;
    align-items: baseline;
    flex-direction: column;

}

.footer-social-heading h1 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
    margin: 20px 0px;
}

.footer-social-heading h2 {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
}

.footer-social-media-container {
    margin: 60px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
}

.footer-social-media-container a {
    text-decoration: none;
}

.social-media-content {
    display: flex;
    align-items: center;

}

.social-media-img {
    width: 42px;
    height: 42px;
    margin-right: 15px;
    cursor: pointer;
}

.social-media-text img {
    width: 120px;
    cursor: pointer;
}

.social-media-text p {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
    padding-left: 7px;
    cursor: pointer;
}


#footer-middle-line {
    min-width: 100%;
    height: 2px;
    background-color: gray;
    margin: 40px 0px;
}

.footer-more-info-container {
    margin: 40px 0;
    width: 80%;

    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.more-info-list-item {
    min-width: 20%;
    color: white;
}

.more-info-list-item a {
    text-decoration: none;
}

.more-info-list-item h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.more-info-list-item ul {
    margin-top: 40px;
}

.more-info-list-item ul li {
    list-style: none;
    font-size: 1.04rem;
    font-weight: 400;
    margin-top: 25px;
    color: #CDCDCD;
    cursor: pointer;
}

.footer-last-container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 45px 0px;
    flex-wrap: wrap;

}

.footer-last-content {
    min-width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.footer-last-container img {
    width: 208px;
}

.footer-last-content p {
    color: #d1d1d1;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.social-icon-container span img {
    margin-right: 30px;
    width: 30px;
    cursor: pointer;
    transition: filter 0.1s ease-in;
}

.social-icon-container span img:hover {
    filter: drop-shadow(0px 0px 10px white);
}

/* Responsive Styles */

/* For Tablets (Max Width: 1024px) */
@media (max-width: 1024px) {
    .footer-more-info-container {
        width: 90%;
    }

    .footer-last-container {
        width: 90%;
    }

    .footer-last-content {
        min-width: 100%;
        justify-content: space-between;
    }

    .more-info-list-item {
        min-width: 45%;
    }
}

/* For Mobile Devices (Max Width: 768px) */


@media screen and (max-width:570px) {
    .footer-social-heading h1 {
        font-size: 2rem;
        margin: 10px 0px;

    }

    .footer-social-heading h2 {
        font-size: 1.3rem;

    }

    .footer-social-media-container {
        margin: 18px 0px 0px;

    }

    .social-media-content .social-media-text {
        display: none;

    }

    .more-info-list-item:nth-child(1) {
        display: none;

    }

    .more-info-list-item:nth-child(2) {
        display: none;
    }

    .more-info-list-item:nth-child(3) h2 {
        display: none;
    }

    .more-info-list-item:nth-child(3) ul {
        margin-top: 17px;
    }

    #footer-middle-line {
        display: none;
    }

    .footer-more-info-container {
        margin: 0px 0px 10px 15px;
    }

    .footer-last-container {
        width: 90%;
        margin: 10px 0px 10px 0px;
    }

    .footer-last-content {
        gap: 25px;
    }

    .footer-last-content img {
        width: 120px;
    }

    .footer-last-content p {
        font-size: 0.6rem;
    }

    .social-icon-container {

        display: none;
    }

}


@media (max-width:350px) {
    .dropdown-content {
        width: 290px;
    }

    #navbar-list-item li a {
        font-size: 0.9rem;
    }

    .service-img-container {
        width: 115px;
    }
}

@media (max-height:670px) {

    #navbar-list-item li {
        margin: 2px 0px 15px;
    }

    #navbar-list-item li a {
        font-size: 0.85rem;
    }

    .about-us-container-content .left-heading h1 {
        width: 100%;
        font-size: 2.1rem;
    }

    .hamburger {
        position: relative;
        top: 0px;
        left: 0px;
    }

    .about-us-container-content .right-subheading h3 {
        font-size: 0.95rem;
    }

    .social-media-img {
        width: 35px;
        height: 35px;
    }
}