body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.navbar {
    background: linear-gradient(to right, #ff4d4d, #ff0000);
    color: white;
    padding: 10px 0;
}

.navbar .form-select {
    width: auto;
    display: inline-block;
    background: transparent;
    border: none;
    color: white;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: url('../images/banner.png') no-repeat center center/cover; */
}

.top-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.language-container-desktop .language-selector {
    color: #fff;
}

.language-container-desktop select {
    color: #fff;
}

.language-container-desktop select option {
    background: #222;
    /* Dark background for contrast */
    color: #fff;
    /* White text for visibility */
}

.download-app {
    position: relative;
    width: 100%;
    /* Adjust based on your design */
    transition: all 0.3s ease-in-out;
    text-align: center;
    padding: 1rem 0;
    display: none;
}

@media screen and (max-width: 768px) {
    .language-container-desktop {
        display: none;
    }

    .download-app {
        display: block;
    }

    .download-app.fixed {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        background: white;
        /* Ensure visibility */
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        width: 100%;
    }
}

.download-btn {
    display: inline-flex;
    align-items: center;
    border: 2px solid black;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    position: relative;
    overflow: hidden;
    background: white;
}

.download-btn::after {
    content: "";
    position: absolute;
    right: 45px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: black;
    transform: skewX(-20deg);
}

.download-btn img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

.download-btn-desktop {
    display: inline-flex;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.download-btn-desktop::after {
    content: "";
    position: absolute;
    right: 45px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #fff;
    transform: skewX(-20deg);
}

.download-btn-desktop img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

.top-header {
    text-align: center;
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    display: none;
}

.language-container {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.language-selector {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.flag-icon {
    width: 20px;
    height: 14px;
    margin-right: 5px;
}

select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    outline: none;
}

@media screen and (max-width: 768px) {
    .language-container {
        display: flex;
    }

    .whats-new h2 {
        font-size: 20px !important;
    }

    .navbar {
        background: #813486;
    }

    .mobile-logo {
        display: block;
    }

    .top-header {
        justify-content: center !important;
        width: 100%;
    }

    .language-dropdown {
        display: none;
    }

    .download-desktop {
        display: none;
    }

    .hero-section {
        height: auto;
        display: block;
    }

    .top-banner {
        position: relative;
        z-index: 0;
    }

}

.image-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    filter: grayscale(70%);
}

.overlay-text {
    position: absolute;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    opacity: 0.8;
}

.popup-box {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;

}

@media screen and (max-width: 768px) {
    .popup-box {
        display: none;
    }

}

.popup-box h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: bold;
}

.popup-box p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.popup-box .btn-danger {
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 50px;
}

.popup-box .logo {
    max-width: 100%;
    margin-bottom: 20px;
}

.whats-new {
    background-color: #f8f9fa;
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    .whats-new {
        padding: 20px 0;
    }

}

.mobile-banner {
    display: block;
}

.desktop-banner {
    display: none;
}

@media (min-width: 768px) {
    .mobile-banner {
        display: none;
    }

    .desktop-banner {
        display: block;
    }
}
.whats-new h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.whats-new p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.whats-new iframe {
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.our-values {
    background-color: white;
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    .our-values {
        padding: 20px 0;
    }

}

.section-title {
    font-size: 20px;
    font-style: italic;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title .divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    margin-bottom: 10px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .value-item {
        padding: 0 !important;
    }

}

.value-item img {
    width: 80px;
    height: 80px;
    background-color: #4c2a41;
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: #555;
}

.btn-danger {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 5px;
}

.why-choose {
    background-color: #f5f5f5;
    padding: 10px 0;
    position: relative;
}

.why-choose h2,
.why-choose h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.why-choose h4 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px;
}

.app-store-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.features-list {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.features-list li {
    font-size: 14px;
    color: #555;
    padding: 2px 0;
    position: relative;
}

.features-list li::before {
    content: "•";
    color: #d32f2f;
    font-weight: bold;
    margin-right: 8px;
}

.app-store {
    width: 100%;
    max-width: 150px;
    /* display: block;
    margin: 10px auto; */
}

.store-icons {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.secure-badge {
    width: 100px;
    margin-top: 10px;
}

.promo-image {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    width: 415px;
}

@media screen and (max-width: 768px) {
    .promo-image {
        display: none;
    }

}

.romantic-banner {
    margin: 1rem 0;
    background: url('../../img/romantic-banner.png') no-repeat center center/cover;
    height: 350px;
    /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    .romantic-banner {
        height: 200px;
    }

}

.overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    text-align: center;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.romantic-banner h2,
.romantic-banner h3 {
    color: #fff;
    /* White text */
    font-size: 26px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .romantic-banner h2 {
        font-size: 20px;
    }

    .romantic-banner h3 {
        font-size: 18px;
    }

}

.romantic-banner h3 {
    font-size: 22px;
    margin-top: 10px;
}

.instamate-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 40px 80px;
    flex-wrap: wrap;
}

.download-info {
    text-align: center;
    flex: 1;
}

.download-info h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.download-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.download-info img {
    width: 120px;
    /* Adjust based on QR size */
    height: auto;
}

.mobile-mockup {
    flex: 1.5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    width: 220px;
    position: relative;
    z-index: 1;
}

.features {
    /* position: absolute; */
    display: flex;
    /* flex-direction: column; */
    /* gap: 10px; */
    left: 50%;
    /* transform: translateX(-50%); */
    z-index: 2;
}

.feature-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    padding: 8px 16px;
    /* border-radius: 20px; */
    text-align: center;
    width: 200px;
    min-height: 70px;
}


.left-side {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
}

.right-side {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.orange {
    background: #f7931e;
}

.pink {
    background: #e91e63;
}


@media screen and (max-width: 768px) {
    .instamate-download {
        padding: 20px 10px;
    }

    .download-info {
        margin-bottom: 20px;
        width: 100%;
        flex: none;
        display: none;
    }

    .mobile-mockup {
        width: 100%;
    }

    .phone-container {
        /* display: none; */
    }

    .phone {
        width: 140px;
    }

    .features {
        /* flex-direction: column;
        gap: 10px; */
    }

    .feature {
        width: 110px;
        margin: 0.5rem 0;
        font-size: 10px;
        padding: 0.25rem;
        min-height: 35px;
    }

    .right-side {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .left-side {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

}

.footer {
    background: #f5f5f5;
    padding: 40px 80px 0;
    font-family: Arial, sans-serif;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 10px 0;
    }

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.other-links h3,
.find-match h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.other-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 0;
    list-style: none;
}

.other-links ul li {
    display: inline;
}

.other-links ul li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.state-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.state-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.footer-bottom nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-bottom nav a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

@media screen {
    .footer-bottom nav a {
        font-size: 12px;
    }
}

.footer-bottom p {
    font-size: 12px;
    color: #777;
}

.social-icons {
    margin-top: 10px;
    padding: 0.5rem 0;
}

.social-icons a {
    display: inline-block;
    margin: 0 5px;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .other-links ul {
        /* flex-direction: column; */
        justify-content: space-between;
        font-size: 0.75rem;
    }

    .state-links {
        /* grid-template-columns: repeat(2, 1fr); */
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .state-links {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-bottom nav {
        /* flex-direction: column; */

    }
}