@font-face {
    font-family: "Poppins-Black";
    src: url("../fonts/Poppins-Black.ttf");
}

@font-face {
    font-family: "Poppins-BlackItalic";
    src: url("../fonts/Poppins-BlackItalic.ttf");
}

@font-face {
    font-family: "Poppins-Bold";
    src: url("../fonts/Poppins-Bold.ttf");
}

@font-face {
    font-family: "Poppins-BoldItalic";
    src: url("../fonts/Poppins-BoldItalic.ttf");
}

@font-face {
    font-family: "Poppins-ExtraBold";
    src: url("../fonts/Poppins-ExtraBold.ttf");
}

@font-face {
    font-family: "Poppins-ExtraBoldItalic";
    src: url("../fonts/Poppins-ExtraBoldItalic.ttf");
}

@font-face {
    font-family: "Poppins-ExtraLight";
    src: url("../fonts/Poppins-ExtraLight.ttf");
}

@font-face {
    font-family: "Poppins-ExtraLightItalic";
    src: url("../fonts/Poppins-ExtraLightItalic.ttf");
}

@font-face {
    font-family: "Poppins-Italic";
    src: url("../fonts/Poppins-Italic.ttf");
}

@font-face {
    font-family: "Poppins-Light";
    src: url("../fonts/Poppins-Light.ttf");
}

@font-face {
    font-family: "Poppins-LightItalic";
    src: url("../fonts/Poppins-LightItalic.ttf");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/Poppins-Medium.ttf");
}

@font-face {
    font-family: "Poppins-MediumItalic";
    src: url("../fonts/Poppins-MediumItalic.ttf");
}

@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/Poppins-SemiBold.ttf");
}

@font-face {
    font-family: "Poppins-SemiBoldItalic";
    src: url("../fonts/Poppins-SemiBoldItalic.ttf");
}

@font-face {
    font-family: "Poppins-Thin";
    src: url("../fonts/Poppins-Thin.ttf");
}

@font-face {
    font-family: "Poppins-ThinItalic";
    src: url("../fonts/Poppins-ThinItalic.ttf");
}

:root {
    --text-color: #101010;
    --text-hover: #636363;
    --purple: #800097;
    --bg-soft: #f8f7f7;
}

body {
    font-family: "Poppins-Regular", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.faq-list {
    padding-left: 1rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

button {
    cursor: pointer;
    border: 1px solid var(--text-hover);
    padding: 8px 16px 8px 16px;
    justify-content: center;
    border-radius: 6px;
    font-size: 16px;
    font-family: "Poppins-Medium", sans-serif;
    background: none;
}

.container {
    width: 80%;
    margin: 0 auto;
}


.nav {
    display: flex;
    margin: 24px 0 24px 0;
    justify-content: space-between;
    align-items: center;
}

.nav img {
    width: 32px;
    border-radius: 20%;
}

.navbar-brand {
    display: flex;
    font-family: "Poppins-Medium", sans-serif;
    color: var(--text-color);
    align-items: center;
    gap: 0.75em;
}

.nav-list {
    display: inline-flex;
    font-family: "Poppins-Medium", sans-serif;
    gap: 1.5rem;
}

.nav-list a {
    color: var(--text-color);
    transition: 0.2s;
}

.nav-list a:hover {
    color: var(--text-hover);
    transition: 0.2s;
    border-bottom: 1px solid black;
}

.hero {
    padding-top: 1rem;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    width: 80%;
    align-items: center;
    justify-content: space-between;
}

.hero-left {
    display: grid;
    gap: 1rem;
    width: 55%;
}

.hero-left h1 {
    font-size: 60px;
    font-family: "Poppins-Bold", sans-serif;
}

.hero-left p {
    font-size: 18px;
    color: var(--text-hover);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-right img {
    width: 330px;
}

.download {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.button {
    cursor: pointer;
    border: 1px solid var(--text-hover);
    padding: 8px 16px 8px 16px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    display: flex;
    gap: 0.75rem;
    text-wrap: nowrap;
    font-family: "Poppins-Medium", sans-serif;
    background: none;
}

.button-primary {
    background-color: var(--text-color);
    color: white;
    border: 0;
}

.button-outline {
    color: var(--text-color);
    transition: 0.2s;
    border: 1 px solid gray;
}

.button-outline:hover {
    background-color: var(--text-color);
    color: white;
    transition: 0.2s;
    border: 1;
}

.button-bg {
    padding: 12px 16px 12px 16px;
}

.partners {
    font-family: "Poppins-Medium", sans-serif;
    padding: 2rem 0 2rem 0;
    display: block;
    text-align: center;
    /* background: var(--bg-soft); */
}

.gallery-list {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-list img {
    width: 100%;
    height: 100%;
}

.partners-list div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners p {
    font-family: "Poppins-Medium", sans-serif;
    padding: 0.75rem 0 0.75rem 0;
    color: var(--text-hover);
}


.home-list {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.home-list img {
    width: 130px;
    transition: 0.2s;
    filter: grayscale(100%);
}

.home-list img:hover {
    transition: 0.2s;
    filter: grayscale(0%);
}

.home-list:last-child {
    font-size: 20px;
    font-family: "Poppins-Bold", sans-serif;
}

.partners-list {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.partners-list img {
    width: 200px;
    transition: 0.2s;
}

.partners-list img:hover {
    transition: 0.2s;
    filter: grayscale(20%);
}

.partners-list:last-child {
    font-size: 20px;
    font-family: "Poppins-Bold", sans-serif;
}

.info {
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.info h1 {
    font-family: "Poppins-Bold", sans-serif;
    font-size: 60px;
}

.info p {
    font-size: 20px;
    color: var(--text-hover);
}

.w-50 {
    width: 55%;
}

.info img {
    padding-top: 5rem;
    width: 300px;
    border-radius: 12px;
}

.info-text {
    display: grid;
    gap: 0.75rem;
}

.info-text p {
    font-size: 18px;
}

.mail {
    display: flex;
    word-wrap: break-word;
    padding: 3rem 0 3rem 0;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 4rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bg-soft {
    background: var(--bg-soft);
}

.mail-text {
    display: grid;
    gap: 1rem;
}

.subscribe {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.mail h1 {
    font-family: "Poppins-Medium", sans-serif;
    font-size: 32px;
}



input {
    padding: 8px 12px 8px 12px;
    border-radius: 6px;
    border: 1px solid rgb(212 212 212);
    font-family: "Poppins-Medium", sans-serif;
}

select {
    padding: 8px 12px 8px 12px;
    border-radius: 6px;
    border: 1px solid rgb(212 212 212);
    font-family: "Poppins-Medium", sans-serif;
}


textarea {
    padding: 8px 12px 8px 12px;
    border-radius: 6px;
    border: 1px solid rgb(212 212 212);
    font-family: "Poppins-Medium", sans-serif;
}

.contenctbox {
    width: 95%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 0 auto;
}

.contenctbox p {
    font-size: 18px;
}

.img-cover {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    margin: 2rem;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
  
    gap: 1rem;
}

.cover {
    background: #101010;
    padding: 32px;
    border-radius: 12px;
}

.footer-info a {
    color: white;
}


.cover h1 {
    padding-top: 8rem;
    color: white;
    font-size: 32px;
}

.partner-contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 5rem;
}

footer {
    background: var(--text-color);
    color: white;
    margin-top: auto;
}

.footer-white {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0 2rem 0;
    margin: 0 auto;
    color: var(--text-hover);
}

.footer-info {
    display: grid;
    gap: 0.75rem;
    width: 30%;
}

.footer-info p:first-child {
    color: white;
}

.footer-info p {
    font-family: "Poppins-Medium", sans-serif;
    font-size: 16px;
}

.footer-socialmedia {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-socialmedia p:first-child {
    color: white;
    padding-bottom: 0.75rem;
}

.footer-socialmedia a {
    color: var(--text-hover);
    transition: 0.2s;
}

.footer-socialmedia a:hover {
    color: white;
    transition: 0.2s;
}

.footer-links p:first-child {
    color: white;
    padding-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-hover);
    transition: 0.2s;
}

.footer-links a:hover {
    color: white;
    border-bottom: 1px solid white;
    transition: 0.2s;
}

.footer-info img {
    height: 80px;
}

.cover-title {
    padding-top: 2rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container-80 {
    width: 80%;
    margin: 0 auto;
}

#mobile-show {
    display: none;
}

.dropdown {
    display: none;
}

.dropdown-modal {
    display: none;
    flex-direction: column;
    position: fixed;
    text-align: center;
    background: white;
    font-size: 42px;
    width: 100%;
    z-index: 1;
    gap: 2rem;
    height: 100dvh;
    align-items: center;
    justify-content: center;
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dropdown-list a {
    display: grid;
    gap: 10rem;
    text-decoration: none;
    color: var(--text-color);
}

.contact {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1024px) {
    .hero-right img {
        display: none;
    }

    .hero-left {
        width: 100%;
    }

    .hero-left p {
        font-size: 16px;
    }

    .info-text p {
        font-size: 16px;
    }

    .contenctbox p {
        font-size: 16px;
    }

    .w-50 {
        width: 100%;
    }

    .partners {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mail h1 {
        font-size: 32px;
    }

    .mail p {
        font-size: 16px;
    }

    .footer div {
        width: 100%;
    }

    .hero-left h1 {
        font-size: 32px;
    }


    .info h1 {
        font-size: 32px;
    }

    .info p {
        font-size: 16px;
    }

    .subscribe {
        display: grid;
        justify-content: center;
    }


    .info img {
        width: 150px;
    }
}

@media screen and (max-width: 1280px) {
    .hero {
        width: 100%;
    }

    .contact {
        grid-template-columns: repeat(1, 1fr);
    }

    .container-80 {
        width: 100%;
    }

    .dropdown {
        display: flex;
    }

    .main {
        height: auto;
    }

    .nav-list {
        display: none;
    }

    .text1 {
        order: 2;
    }

    .info {
        text-align: center;
        width: 100%;
    }

    .partners-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .home-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-left p {
        font-size: 16px;
    }

    .info-text p {
        font-size: 16px;
    }

    .contenctbox p {
        font-size: 16px;
    }

    /* Make BagDropShield coverage sections stack vertically on mobile */
    .coverage-sections {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .coverage-item {
        flex: none !important;
        width: 100% !important;
    }

    .hero {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #mobile-hide {
        display: none;
    }

    #mobile-show {
        display: flex;
    }
    

    .partners-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .home-list {
        grid-template-columns: repeat(2, 1fr);
    }



    .hero-left {
        width: 100%;
    }

    .hero-right {
        display: flex;
        justify-content: center;
    }

    .hero-right img {
        display: none;
    }

    .footer {
        display: grid;
        gap: 1rem;
    }

    .partners-list img {
        width: 150px;
    }

    .download {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}