

html body {
margin: 0;
padding: 0;
height: 100%;




}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;

    background-size: cover;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
    padding: 20px;
}

header {
    /* position: fixed; */
    /* top: 0;
    left: 0; */
    /* width: 100%; */
    z-index: 1000;
    padding: 15px 20px;

    background: linear-gradient(135deg, #2c2d2f, #8AAAE5);
    color: #fff;
    padding: 30px 20px;
    border-bottom: 2px solid #e9e7e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

.logo h1, .logo p {
    margin: 0;
}

.logo:hover {
    color: #aacffa;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

nav u{
    color: #555;
    background-color: #ccc;

}
/*---------------------------Success section---------------------------*/

.our-success {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.success-content {
    flex: 1;
    padding-right: 20px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.success-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.success-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
/*-----------------------Services section css------------------------*/
.services-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.our-services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: #f5f5f5;
}

.service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.service-info h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.service-info p {
    font-size: 0.9em;
    color: #666;
}
.container {
    margin-top:50px;
    max-width: 800px;
    margin: 20px auto 0; /* Added margin at the top */
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.terms-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.terms-container h2, .terms-container h3 {
    color: #2c2d2f;
}

.terms-container p {
    margin: 10px 0;
    line-height: 1.6;
}

.terms-container a {
    color: #8AAAE5;

}

/*terms and conditions button*/

/* General Footer Styling */
footer {
    background: linear-gradient(135deg, #2c2d2f, #8AAAE5);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* align-items: center; */
    flex-wrap: wrap;
}

/* Footer Left Section */
.footer-left {
    align-self: flex-start;
    align-items: center;
}

/* Terms Button */
.terms-button {
    /* background-color: #2c2d2f; */
    color: #fff;
    padding: 10px 20px;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    text-decoration: none;
    display: inline-block;
}

.terms-button:hover {
    cursor: pointer;
}

/* Footer Right Section */
.footer-right {
    text-align: right;
    flex-grow: 1;
}

.footer-right p {
    margin: 5px 0; /* Space between items */
}

.footer-right a {
    color: #fff;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}
.footer-center {
    text-align: center;
    margin-top: 10px;
    width: 100%;
}
.w-full{
    width: 100%;
}

/* Responsive Styling */
@media (max-width: 767px) {
    footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-right {
        text-align: center;
        margin-top: 20px;
    }

    .footer-left {
        margin-block: 10px;
    }
    .mobile-hide{
        display: none;
    }
}

/* Mobile Screens (max-width: 767px) */
@media (min-width: 768px) {
    .desktop-hide{
        display: none;
    }
}
    @media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    header {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .logo {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .our-success {
        flex-direction: column;
        padding: 15px;
    }

    .success-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 15px;
    }

    .success-image {
        margin-top: 15px;
    }

    .our-services {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .service-box {
        width: 100%;
        margin: 0;
        padding: 15px;
        box-sizing: border-box;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-info {
        margin-bottom: 15px;
        width: 100%;
    }

    .footer-contacts p {
        margin: 5px 0;
    }
}

