html {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #58cced;
}




/* header section */
.header-bar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: transparent;
    padding: 10px 20px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 1000;
    max-height: 120px;
    background-color:#58cced;
}

.header-bar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    transform: translateY(20px);
    margin-left: -10px;
   
}

.nav-bar {
    display: flex;
    flex-direction: row;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-bar a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.header-bar ul {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: none;
    list-style: none;
    display: flex;
    align-items: right;
    margin: 0;
    padding: 0;
    top: 80%;
    right: 2%;
    position: absolute;
}

.header-bar li {
    margin: 0 10px;
    display: inline-block;
    position: relative;
}
.nav-link {
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 15px;
}

.pricing-section {
    text-align: center;
    padding: 10px;
    padding-bottom: 30px;
}

.pricing-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    border: 2px solid #58cced;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #ff5733;
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 10px 0;
}

.price-desc {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #a8ff7a;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #8cff5a;
    transform: scale(1.05);
}

.plan-details {
    font-size: 14px;
    color: #555555;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    font-size: 14px;
    color: #333333;
    margin-bottom: 10px;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    margin: 0 auto 20px auto; /* Center horizontally */
    gap: 10px;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.billing-option {
    background-color: #ffffff;
    border: 2px solid #58cced;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #58cced;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-option.active {
    background-color: #58cced;
    color: #ffffff;
}

.billing-option:hover {
    background-color: #a8e4f7;
    color: #ffffff;
}

.billing-option-container {
    position: relative;
    display: inline-block;
}

.save-feature {
    position: absolute;
    top: 120%; /* Adjust this value to move it down */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background-color: #ff5733; /* Bright red background */
    padding: 5px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Mobile menu styles */
.menu-button {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.nav-bar {
    display: flex;
    flex-direction: row;
}

.nav-bar ul {
    display: flex;
    gap: 20px;
     font-family: "Inter", sans-serif;
}

@media (max-width: 768px) {
    .menu-button {
        display: block;
    }

    .nav-bar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background-color: #58cced;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-bar.active {
        right: 0;
    }

    .nav-bar ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        font-size: 18px;
        color: #000;
        text-decoration: none;
    }
}

/* Footer Section */

footer {
    background-color: #002b38;
    color: #ffffff;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 200px;
  }
  
  .footer-logo {
    max-height: 150px;
    object-fit: cover;
    width: 200px;
    height: auto;
    margin-right: 30px;
    margin-top: -30px;
    align-items: left;
  }
  .social-links h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    margin-right: 20px;
    font-weight: 800;
    text-align: left;
    align-items: left;
    margin-bottom: -15px;
    padding-left: 40px;
  }
  
  .social-links ul {
    display: flex;
    gap: 18px;
    height: 150px;
    width: 150px;
  }
  
  .social-links li {
    list-style: none;
    width: 100px; 
    height: 100px;
  }
  
  .social-links li img {
    width: 100%; 
    height: 100%;
    object-fit: contain; 
  }
