*{

margin: 0;
padding: 0;
box-sizing: border-box;
}

/* body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
} */



/* navbar */


.pricing-container {
text-align: center;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.pricing-containers {
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
.pricing-container h1 {
font-size: 28px;
color: #d32f2f;
margin-bottom: 30px;
}

.pricing-containers h1 {
    font-size: 28px;
    color: #d32f2f;
    margin-bottom: 30px;
    }

.pricing-plans {
display: flex;
justify-content: center;
gap: 20px;
width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card {
width: 300px;
background-color:#8282c0;
color: #fff;
border-radius: 8px;
padding: 20px;
position: relative;
}

.pricing-card h2 {
font-size: 24px;
margin-bottom: 10px;
}

.price {
font-size: 36px;
font-weight: bold;
margin: 10px 0;
}

.price span {
font-size: 14px;
display: block;
margin-top: 5px;
}

.description {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
}

.validity {
font-size: 14px;
color: #ffccbc;
margin-bottom: 20px;
}

.trial-button {
background-color: #fff;
color: #d32f2f;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-bottom: 20px;
font-size: 16px;
}

.trial-button:hover {
background-color: #ffccbc;
color: #d32f2f;
}

ul {
list-style: none;
padding: 0;
}

ul li {
font-size: 14px;
margin-bottom: 8px;
}

/* Elite Membership specific styling */
.elite {
background-color: #212121;
}

.elite .badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background-color: #d32f2f;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
font-size: 12px;
}

/* Pro Membership specific styling */
.pro {
background-color: #d32f2f;
background-color: #8282c0;
}

.pro ul li {
font-size: 14px;
margin-bottom: 8px;
}

/* 00 */
/* Basic Plus Membership Card */
.basic-plus {
background-color: #f3e5f5;
color: #6a1b9a;
}

.basic-plus .price {
color: #8e24aa;
}

.basic-plus .trial-button {
background-color: #6a1b9a;
color: #fff;
}

.basic-plus .trial-button:hover {
background-color: #4a148c;
}

/* Elite Plus Membership Card */
.elite-plus {
background-color: #e3f2fd;
color: #1e88e5;
border: 2px solid #1e88e5;
}

.elite-plus .price {
color: #1565c0;
}

.elite-plus .trial-button {
background-color: #1e88e5;
color: #fff;
}

.elite-plus .trial-button:hover {
background-color: #0d47a1;
}

/* Pro Plus Membership Card */
.pro-plus {
background-color: #fff3e0;
color: #ef6c00;
}

.pro-plus .price {
color: #e65100;
}

.pro-plus .trial-button {
background-color: #ef6c00;
color: #fff;
}

.pro-plus .trial-button:hover {
background-color: #bf360c;
}

/* General styling for new badges */
.badge {
position: absolute;
top: 10px;
right: 10px;
background-color: #ff5722;
color: white;
padding: 5px 10px;
font-size: 0.8em;
border-radius: 5px;
}

/* General Styles for Mobile */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 10px;
        text-align: center;
    }
    /* body{
        width: 200px;
    } */

    .navbar-container {
        flex-direction: column;
    }

    .nav-menu {
        flex-direction: column;
        display: none; /* Hidden initially */
    }

    .nav-menu.active {
        display: flex;
        background-color: black;
        padding: 10px 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        margin: auto;
    }

    .menu-toggle .bar {
        width: 30px;
        height: 3px;
        margin: 5px auto;
        background-color: white;
    }

    /* Pricing Cards */
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
        margin-bottom: 20px;
        height: 90vh;
    }

    .section-1{
        width: 358px;
        height: 795px;
        margin-top: 511px;
    }

    .section-2{
        height: 625px;
        margin-top: 554px0; ;
    }

    /* Modal */
    .modal-content {
        width: 90%;
    }
/* 
    /* Footer */
    /* .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-middle ul li a,
    .footer-right ul li a {
        font-size: 16px;
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-icons img {
        width: 30%;
        height: auto;
    } */ 

    /* Social Media Icons */
    .social-media a {
        display: inline-block;
        margin: 5px;
    }
}












/* Modal styles */
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border-radius: 10px;
width: 400px;
position: relative;
text-align: center;
}

.modal-content h2 {
margin-bottom: 10px;
color: #d32f2f;
}

.modal-content p {
font-size: 18px;
margin-bottom: 20px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
font-size: 24px;
cursor: pointer;
color: #d32f2f;
}

.modal-content form label {
display: block;
margin: 10px 0 5px;
font-weight: bold;
font-size: 14px;
}

.modal-content form input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
}

.submit-button {
background-color: #d32f2f;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
width: 100%;
}

.submit-button:hover {
background-color: #b71c1c;
}



/* footer */
footer {
   
    background-color:#0f1f50;
    color: #fff;
    padding: 20px 0;
    /* margin-top: 10px; */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

.footer-left,
.footer-middle,
.footer-right {
    width: 22%;
}

.footer-left h2 {
    color: white;
}

.footer-left p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-left button {
    background-color: #ffa500;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
}

.footer-middle h3,
.footer-right h3 {
    margin-bottom: 10px;
    color:white;
    color: blueviolet;
    font-size: 30px;
}

.footer-middle ul,
.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li,
.footer-right ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a,
.footer-right ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
}

.footer-right p {
    margin: 5px 0;
}

.footer-right .social-media a {
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding: 10px 50px;
    background-color: #0f1f50;
    text-align: center;
    ;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .payment-icons img {
    margin-right: 10px;
}
.link{
    width: 11%;
    height: 100%;
}
.face{
    width: 11%;
    height: 100%;
}
.social{
    width: 12%;
    height: 100%;
}
.twitt{
    width: 11%;
    height: 100%;
}
.youtube{
    width: 11%;
    height: 100%;
}
.visa{
    width: 19%;
    height: 42%;
}
.master{
    width: 30%;
    height: 42%;
}
.discover{
    width: 40px;
    object-fit: contain;
}
.paypal{
   /* width: 19%;
    height: 42%;*/
    width: 31%;
    height: 42%;
    padding-top: 13px;
}
.payment-icons{
    display: flex;
    width: 20%;
    height: 20%;
}
.email{
    width: 8%;
    display: none;
}
.tele{
    width: 8%;
    display: none;
}
.clock{
    width: 8%;
    display: none;
}
.accept{
    padding-top: 18px;
    padding-left: 424px;
}
.crystal{
    padding-top: 20px;
}
.Emailfirst{
    
    display: flex;
    align-items: center;
    justify-content: flex-start;

}
.clockthird{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.telephonesecond{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.li{
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.li img{
   
    border-radius: 30px;
    box-shadow: 10px ;
}
.li1{
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.li1 img{
    width: 80%;
    height: 200%;
    border-radius: 30px;
    box-shadow: 10px ;
}
.li img{
    width: 80%;
    height: 200%;
} 
.block{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.aboutus{
    font-size: 30px;
    font-weight: bold;
    font-family: sans-serif;
    margin: 0px;
}
.outer-section{
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 3px 0px;
}
/* Mobile View for Footer */
@media (max-width: 768px) {
    footer {
        padding: 10px 0;
        transform: translateY(346PX);
    }

    .footer-container {
        flex-direction: column; /* Stacks sections vertically */
        padding: 10px 20px;
        align-items: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%; /* Full width for better spacing */
        margin-bottom: 20px; /* Adds spacing between sections */
        text-align: center; /* Centers content */
    }

    .footer-left h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-left p {
        font-size: 12px;
    }

    .footer-left button {
        width: 80%; /* Adjusts button width for smaller screens */
        padding: 8px;
        font-size: 14px;
    }

    .footer-middle h3,
    .footer-right h3 {
        font-size: 24px;
    }

    .footer-middle ul,
    .footer-right ul {
        padding: 0;
        text-align: center;
    }

    .footer-middle ul li,
    .footer-right ul li {
        margin-bottom: 8px;
    }

    .footer-middle ul li a,
    .footer-right ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column; /* Stacks elements vertically */
        padding: 10px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .payment-icons {
        justify-content: center; /* Centers payment icons */
        width: 100%;
        margin-top: 10px;
    }

    .payment-icons img {
        width: 40px;
        height: auto; /* Maintains aspect ratio */
        margin-right: 5px;
    }

    .social-media a {
        width: 30px;
        height: 30px;
        display: inline-block;
    }

    /* Adjustments for additional sections */
    .block {
        width: 100%;
        margin-bottom: 10px;
    }

    .aboutus {
        font-size: 24px;
        text-align: center;
    }

    .outer-section {
        height: auto;
        flex-direction: column;
    }
}