@import url(https://fonts.googleapis.com/css2?family=Poppins);
@import url(https://fonts.googleapis.com/css2?family=Figtree:wght@400;700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Choose Section */

.choose-section {
    padding: 40px;
    background-color: #FFF;
}

.container-choose {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container-choose .choose-heading {
    /* text-transform: capitalize; */
    color: #323942;
    /* Dark grey for heading */
    font-weight: bold;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
    margin-bottom: 30px;
}

.container-choose .choose-desc {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #555;
    /* Medium grey for description text */
    margin-bottom: 20px;
}

.container-choose .choose-heading span {
    border-bottom: 8px solid #333;
    /* Black underline for emphasis */
}

.choose-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.choose-main .choose-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: none;
    border-radius: 20px;
    background-color: #FFFFFF;
    /* White background for cards */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-main .choose-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #F3F3F3;
    /* Light grey on hover */
}

.choose-main .choose-box .icon i {
    border: 2px solid #333;
    /* Black border for icons */
    padding: 20px;
    font-size: 2rem;
    border-radius: 50%;
    color: #555;
    /* Medium grey for icon color */
    margin-bottom: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.choose-main .choose-box:hover .icon i {
    background-color: #333;
    /* Black background for icon on hover */
    color: #F3F3F3;
    /* Light grey icon color on hover */
}

.choose-main .choose-box h5 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #323942;
    /* Dark grey for card headings */
    margin-bottom: 10px;
}

.choose-main .choose-box p {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #555;
    /* Medium grey for text */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .container-choose .choose-heading {
        font-size: 1.9rem;
    }

    .choose-main .choose-box {
        padding: 15px;
    }

    .choose-main .choose-box h5 {
        font-size: 1.2rem;
    }

    .choose-main .choose-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .choose-section {
        padding: 20px;
    }

    .choose-main {
        grid-template-columns: 1fr;
    }
}


/* Background Animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Main Section */
.safety-section {
    width: 100vw;
    min-height: 100vh;
    padding: 40px 20px;
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    /* background: linear-gradient(120deg, #F3F3F3, #E0E0E0, #D6D6D6);   */
    /* Light grey gradient */
    border-radius: 20px;
    margin: 50px auto;
    margin-top: 20vh;
    position: relative;
    overflow: hidden;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #F3F3F3, #B3B3B3);
    /* Grey gradient for a subtle effect */
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    transform: scale(0.8);
}

.safety-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #F3F3F3, #B3B3B3);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    transform: scale(0.8);
}

.safety-container h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    /* Dark black for bold headings */
    text-align: center;
    letter-spacing: 1px;
}












.safety-container h1 span {
    color: #666;
    /* Grey for highlighted text */
    text-decoration: underline;
}

.safety-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.safety-image {
    align-self: center;
}
/* Image Section */
.safety-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    /* Subtle black shadow */
}

.safety-image img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Text Section */
.safety-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    text-align: left;
    animation: fadeIn 1s ease-out;
    color: #333;
    /* Dark grey for better readability */
}

.safety-item {
    background: #ffffff;
    border: 1px solid #D6D6D6;
    width: 100%;
    height: 20vh;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #F3F3F3;
    /* Light grey on hover */
}

.safety-item::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #B3B3B3, #666666);
    /* Grey gradient */
    opacity: 0.1;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.safety-item:hover::before {
    transform: scale(1.5);
}

.safety-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
    /* Dark grey for item headings */
    position: relative;
}

.safety-item h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #666;
    /* Grey underline */
    margin-top: 8px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.safety-item:hover h3::after {
    width: 80px;
}

.safety-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */
@media (min-width: 768px) {
    .safety-content {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 20px;
    }

    .safety-image img {
        max-width: 600px;
    }

    .safety-text {
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .safety-content {
        flex-direction: column;
        gap: 15px;
        /* Reduced gap between elements */
        padding: 10px;
        /* Added padding for better spacing */
        justify-content: center;
        
    }

    .safety-image {
        display: flex;
        justify-content: center;
        /* Centers the image horizontally */
        align-items: center;
        /* Centers the image vertically */
        width: 100%;
        /* Full width of the container */
        margin-bottom: 20px;
        /* Adds space below the image */
    }

    .safety-image img {
        max-width: 90%;
        /* Adjust image size to 90% of the container */
        height: auto;
        /* Maintain aspect ratio */
    }

    .safety-text {
        max-width: 100%;
        text-align: center;
        /* Center align text for smaller screens */
    }

    .safety-item {
        padding: 15px;
        height: 190px;
        
        /* Reduced padding for small screens */
    }

    .safety-item h3 {
        font-size: 1.4rem;
        /* Smaller heading size */
    }

    .safety-item p {
        font-size: 1rem;
        /* Smaller paragraph text */
    }
}


/* General Styles */
.download-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin-top: 20vh;
    margin-left: 30px;
    margin-right: 30px;
    /* Light grey background */
    border-radius: 10px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    /* Allow content to wrap */
    text-align: start;
    gap: 20px;
    /* Add gap between text and QR sections */
}

.text-section {
    max-width: 65%;
    /* Restrict the max width of the text section */
    display: flex;
    /* Use flexbox to position items */
    justify-content: flex-start;
    /* Ensure everything is aligned to the left */
    align-items: center;
    /* Vertically center items */
    flex-wrap: wrap;
    /* Allow items to wrap if needed */
}


.text-section h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #222;
    /* Black for heading */
    margin-bottom: 20px;
}

.text-section h1 span {
    color: #666;
    /* Grey for highlighted text */
    text-decoration: underline;
}

.text-section p {
    font-size: 1.3rem;
    color: #333;
    /* Dark grey for better readability */
    margin-bottom: 20px;
}


.btn-download {
    margin-left: auto;
    /* Push the button to the right */
    padding: 10px 20px;
    background-color: #333;
    /* Dark grey background */
    color: #F3F3F3;
    /* Light grey text */
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    /* Fixed width for the button */
}



.btn-download:hover {
    background-color: #666;
    /* Lighter grey on hover */
    color: #fff;
    /* White text for better contrast */
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 35%;
    padding: 20px;
    border-radius: 30px;
    background-color: #F3F3F3;
    /* Light grey background for QR section */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    text-align: center;
}

.qr-section p {
    font-size: 1.3rem;
    color: #333;
    /* Dark grey text */
    margin-bottom: 15px;
}

.qr-section img {
    width: 250px;
    height: 250px;
    border: 1px solid #ddd;
    /* Light grey border */
    border-radius: 10px;
    object-fit: cover;
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .text-section h1 {
        font-size: 2.5rem;
    }

    .text-section p {
        font-size: 1.2rem;
    }

    .btn-download {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .qr-section img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .content {
        flex-direction: column;
        gap: 30px;
    }

    .text-section {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .qr-section {
        max-width: 70%;
        margin: 20px 0;
    }

    .qr-section img {
        width: 235px;
        height: 235px;
    }

    .text-section h1 {
        font-size: 2.2rem;
    }

    .text-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .text-section h1 {
        font-size: 2rem;
    }

    .text-section p {
        font-size: 1rem;
    }

    .btn-download {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .qr-section {
        max-width: 80%;
    }

    .qr-section img {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 480px) {
    .text-section h1 {
        font-size: 1.8rem;
    }

    .text-section p {
        font-size: 17px;
    }

    .btn-download {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .qr-section {
        max-width: 90%;
        margin-top: 20px;
    }

    .qr-section img {
        width: 220px;
        height: 220px;
    }
}

/* How Section */

.how-section {
    padding: 40px;
    background-color: #fff;
}

.container-how {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container-how .how-heading {
    text-transform: capitalize;
    color: #323942;
    /* Dark grey for the heading */
    font-weight: bold;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
    margin-bottom: 30px;
}

.container-how .how-desc {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #555;
    /* Medium grey for description text */
    margin-bottom: 20px;
}

.container-how .how-heading span {
    border-bottom: 8px solid #333;
    /* Black underline for emphasis */
}

.how-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.how-main .how-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: none;
    border-radius: 20px;
    background-color: #FFFFFF;
    /* White background for cards */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-main .how-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #F3F3F3;
    /* Light grey on hover */
}

.how-main .how-box .step-circle h5 {
    display: flex;
    justify-content: center;
    border: 2px solid #333;
    /* Black border for steps */
    padding: 5px 20px;
    font-size: 2rem;
    border-radius: 50%;
    color: #333;
    /* Black text for step number */
    margin-bottom: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.how-main .how-box:hover .step-circle h5 {
    background-color: #333;
    /* Black background on hover */
    color: #F3F3F3;
    /* Light grey text on hover */
}

.how-main .how-box .step-icon {
    margin-top: 20px;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #555;
    /* Medium grey for icons */
    transition: color 0.3s ease;
}

.how-main .how-box:hover .step-icon {
    color: #333;
    /* Black icon color on hover */
}

.how-main .how-box h5 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #323942;
    /* Dark grey for card headings */
    margin-bottom: 10px;
}

.how-main .how-box p {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #555;
    /* Medium grey for text */
}



@media (max-width: 768px) {
    .container-how .how-heading {
        font-size: 1.9rem;
    }

    .how-box {
        width: 100%;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-icon {
        font-size: 1.8rem;
    }

    .step-desc {
        font-size: 0.9rem;
    }
}




.note{
    text-align: center;
    width: 60%;
    font-size: 11px;
    background-color: black;
}