#customModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensures the modal appears on top of all content */
}

.modal-content {
    background: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content p {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}

.modal-buttons button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-install {
    background-color: #4CAF50;
    color: white;
    transition: background-color 0.3s;
}

.btn-install:hover {
    background-color: #45a049;
}

.btn-cancel {
    background-color: #f44336;
    color: white;
    transition: background-color 0.3s;
}

.btn-cancel:hover {
    background-color: #e53935;
}

body {
    font-family: 'Lexend', sans-serif;
    text-align: center;
    margin: 0px;
}
.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 20px;
    margin-top: 20px;
}
.buttons {
    margin-bottom: 20px;
}
.buttons button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin: 5px;
}
.buttons .video-call {
    background-color: #06C170;
    color: white;
}
.buttons .next {
    background: linear-gradient(to right, #ED4988, #B853A1);
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.buttons .next:hover {
    background: linear-gradient(45deg, #B853A1, #ED4988);
}
.card {
    background-color: #F0F0F0;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.card h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #565656;
}
.card .title-number {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
    color: #000;
}
.card p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-indent: 30px;
}
.card ul {
    margin-bottom: 20px;
    list-style-type: disc; 
    margin-left: 20px; /* Indent the list */
    margin-top: 20px;
}

.card ul ul {
    list-style-type: circle; /* Nested bullet */
    margin-left: 20px;
    margin-top: 5px;
    color: #555;
}

.card strong {
    font-weight: bold;
    color: #555;
}

.content {
    max-width: 1800px;
    margin: auto;
    text-align: left;
}

h1 {
    font-size: 30px; 
    text-align: center; 
    margin: 20px 20px; 
    font-weight: 700;
}
@media (max-width: 768px) {
    h1 {
        font-size: 28px; 
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 22px; 
    }
    .card p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-indent: 3px;
   
}
.card{
    margin-left: 10px;
    margin-right: 10px;
}
.card ul {
    list-style-type: disc; /* Main bullet */
    margin-left: -10px; /* Indent the list */
    
}

.card ul ul {
    list-style-type: circle; 
    margin-left: -10px;
    color: #555;
}
}
.rectangle-image {
    width: 800px; 
    height: 400px; 
    border-radius: 15px; 
    object-fit: cover; 
    transition: all 0.3s ease-in-out;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive behavior for medium screens (tablets) */
@media (max-width: 1024px) {
    .rectangle-image {
        width: 600px; /* Resize for medium screens */
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsive behavior for small screens (mobile) */
@media (max-width: 768px) {
    .rectangle-image {
        width: 400px; /* Resize for small screens */
        height: 200px;
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Responsive behavior for very small screens (mobile) */
@media (max-width: 480px) {
    .rectangle-image {
        width: calc(100% - 20px); /* Full width minus margins */
        height: auto; /* Keep the height proportional */
        margin-left: 10px;
        margin-right: 10px;
    }
}


.image-container {
    text-align: center;
    max-width: 1200px;
    margin: 20px auto;
}
.video-call {
    background-color: #06C170;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
}
.video-call:hover {
    background-color: #12D068;
}
h1 {
    color: #E94A8A;
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 40px;
}

p {
    font-size: 16px;
    margin-bottom: 30px;
}

.confirm-button {
    background: linear-gradient(to right, #ED4988, #B853A1);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.confirm-button:hover {
    background: linear-gradient(45deg, #B853A1, #ED4988);
}

.confirm-button .checkmark {
    font-size: 20px;
    margin-right: 10px;
}

/* Image Gallery Styling */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row */
    gap: 40px 20px; /* Increase horizontal gap to 40px, vertical remains 20px */
    margin-top: 40px;
    max-width: 1200px; /* Limit the gallery width to 1200px on large screens */
    margin-left: auto; /* Center the gallery */
    margin-right: auto; /* Center the gallery */
}

/* Gallery images */
.gallery img {
    width: 100%; /* Ensure the images take up full width of their container */
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 images per row for medium-sized screens */
        max-width: 100%; /* Full width on smaller screens */
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row for tablets or smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr; /* 1 image per row for very small screens (mobile) */
        gap: 20px 20px; /* Smaller gap on mobile */
    }
}
h2 {
    color: #E94A8A;
    margin-bottom: 30px;
}

/* Card container */
.app-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 20px; /* Add consistent space between columns and rows */
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual app card styling */
.app-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 100%; /* Ensure cards take full width */
    max-width: 220px; /* Set a consistent max-width */
    transition: transform 0.3s ease;
    position: relative; /* To position the countdown */
}

.app-card:hover {
    transform: translateY(-5px);
}

.app-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 5px;
}

.app-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

 h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #333;
}

.app-card button {
    background: linear-gradient(to right, #ED4988, #B853A1);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.app-card button:hover {
    background: linear-gradient(45deg, #B853A1, #ED4988);
}

/* Countdown styling */
.countdown {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: red;
}

/* Responsive design */
@media (max-width: 1024px) {
    .app-container {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .app-container {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on smaller screens */
    }
    .app-card {
        width: 100%; /* Ensure cards take full width on smaller screens */
        max-width: 250px; /* Limit width on smaller screens */
    }
}

@media (max-width: 480px) {
    .app-container {
        grid-template-columns: repeat(2, 1fr); /* Still show 2 cards per row on very small screens */
    }
    .app-card {
        width: 100%;
        max-width: 115px; /* Make sure the cards donâ€™t exceed screen width */
    }
    h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #333;
    }
    
}
.preferences-form {
    background-color: #F0F0F0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure block-level element */
    text-align: left;
    max-width: 400px;
    width: 100%;
    margin: 0 auto; /* Centering the form */
}

.preferences-form label {
    display: block;
    background-color: #BA53A0;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.preferences-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #8C8C8C;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    background-color: #28a745;
    color: white;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #218838;
}

.toast-message {
    color: red;
    font-size: 14px;
    display: none;
}
.countdown {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .preferences-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .preferences-form {
        padding: 15px;
        max-width: 300px;
    }
}




   /* Banner styling */
   .banner {
    background: linear-gradient(to right, #ED4988, #B853A1);
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 5px;
    max-width: 100%;
}

/* Image Gallery Styling */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row */
    gap: 40px 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery images */
.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0; /* Initially hidden */
    transform: scale(0.9); /* Shrink image initially */
    visibility: hidden; /* Hide visibility initially */
}

.gallery img.show {
    opacity: 1; /* Show image */
    transform: scale(1); /* Scale to normal size */
    visibility: visible; /* Make visible */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition */
}

/* Center the clicked image */
.centered-image {
    width: 400px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

/* Countdown message styling */
.countdown-message {
    margin-top: 10px;
    font-size: 18px;
    color: red;
    font-weight: bold;
}

/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 images per row */
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr; /* 1 image per row */
        gap: 20px 20px;
        margin-left: 20px;
        margin-right: 20px;

    }
}
.centered-image {
    width: 400px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

/* Responsive design for the selected image */
@media (max-width: 768px) {
    .centered-image {
        width: 300px; /* Adjust width for tablets and small screens */
    }
}

@media (max-width: 480px) {
    .centered-image {
        width: 100%; /* Full width for mobile screens */
        max-width: 300px; /* Ensure the image doesn't stretch too much */
    }
}
.zconfirm-button {
    background: linear-gradient(to right, #ED4988, #B853A1);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.zconfirm-button:hover {
    background: linear-gradient(45deg, #B853A1, #ED4988);
}

.zconfirm-button .checkmark {
    font-size: 20px;
    margin-right: 10px;
}

/* Image Gallery Styling */
.zgallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row */
    gap: 40px 20px; /* Increase horizontal gap to 40px, vertical remains 20px */
    margin-top: 40px;
    max-width: 1200px; /* Limit the gallery width to 1200px on large screens */
    margin-left: auto; /* Center the gallery */
    margin-right: auto; /* Center the gallery */
}

/* Gallery images */
.zgallery img {
    width: 100%; /* Ensure the images take up full width of their container */
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.zgallery img:hover {
    transform: scale(1.05);
}

/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .zgallery {
        grid-template-columns: repeat(3, 1fr); /* 3 images per row for medium-sized screens */
        max-width: 100%; /* Full width on smaller screens */
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .zgallery {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row for tablets or smaller screens */
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .zgallery {
        grid-template-columns: 1fr; /* 1 image per row for very small screens (mobile) */
        gap: 20px 20px; /* Smaller gap on mobile */
        margin-left: 20px;
        margin-right: 20px;
    }
}
.gchat-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    margin: 0px;
    background-color: #EDEDED;
}

.gchat-header {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gheader-left {
    display: flex;
    align-items: center;
}

.gheader-left img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.gheader-right {
    display: flex;
    gap: 35px; /* Space between icons */
    align-items: center;
}

.gheader-icon {
    width: auto;
    height: 15px;
    cursor: pointer;
}

.gchat-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background-image: url('https://web.whatsapp.com/#');
    background-size: contain;
}

.gmessage {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gmessage.visible {
    opacity: 1;
    transform: translateY(0);
}

.gmessage img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.gmessage-text {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    max-width: 70%;
}

.gmessage-audio {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    max-width: 18%;
    width: 100%;
    display: flex;
    align-items: center;
}

.gmessage-audio audio {
    width: 100%;
    max-width: 300px;
    min-width: 150px;
    display: block;
}

.gmessage-video {
    position: relative;
    width: 250px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.gmessage-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.video-duration {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: white;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.gchat-footer {
    display: flex;
    padding: 10px;
    background-color: #F0F0F0;
    align-items: center;
}

.gchat-footer input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.gchat-footer button {
    background-color: #075E54;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.selected-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .gchat-header, .gchat-footer {
        padding: 8px;
        margin-bottom: 20px;
    }

    .gmessage-video {
        width: 150px;
        height: 250px;
    }

    .gmessage-audio {
        max-width: 70%;
    }
}
.vform {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}