body {
    font-family: 'Poppins', sans-serif;
    /* background-color: #ffffff;*/
    margin: 0;
    padding: 0;
    color: #333;

    overflow-x: hidden;
    background-image: url('back_astro.jpeg');
    /* Replace with your image URL */
    background-size: cover;
    /* Ensures the image covers the entire screen */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    background-attachment: fixed;
    /* Keeps the image fixed during scroll */


}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: rgb(255, 255, 255);
    /* Semi-transparent black */
    backdrop-filter: blur(2px);
    /* Apply the blur effect */

}



.title {
    font-size: 15px;
    display: inline-block;
    white-space: nowrap;
    font-weight: 800;
    margin-right: 50px;
    font-family: 'Poppins', sans-serif;
    color: rgb(27, 133, 233);

}
.menu a {
    margin-left: 10px;
}
.container1 {
    padding: 10px;


}

.im {
    background-color: rgba(230, 245, 239, 0.815);
    background-size: cover;
    /* Make sure the background covers the entire page */
    background-position: center;
    /* Center the background image */
    background-repeat: no-repeat;
    /* Prevent repeating if the image is small */

}

.left-column,
.right-column {
    flex: 1;
    padding: 20px;
    margin-left: 40px;
}

.left-column {
    display: flex;
    width: 50%;
    flex-direction: column;

}



.left-column .btn {
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    width: 150px;

    border: none;
    align-items: end;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    background-color: #28c93d;
    color: white;
}

.left-column .btn:hover {
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    width: 150px;

    border: none;
    align-items: end;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    background-color: #a7daae;
    color: white;
}

.left-column .btn1 {
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    width: 150px;
    border-color: rgb(28, 180, 207);


    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    background-color: rgb(236, 246, 248);
    ;
    color: rgb(17, 117, 134);
}

.left-column .btn1:hover {
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    width: 150px;
    border-color: rgb(28, 180, 207);
    border-width: 5px;

    align-items: end;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    background-color: rgb(29, 76, 85);
    ;
    color: rgb(17, 117, 134);
}

.left-column .description {
    color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    /* Apply the blur effect */

}

.success-stories,
.clients {
    padding: 20px;
    background-color: #f4f4f4;
    margin: 20px 0;
    border-radius: 10px;
}

.success-stories h2,
.clients h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card-view {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: calc(33.333% - 20px);
}
.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #2a8fca;
    /* Dark text color */
    
}
.clients-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    flex-wrap: wrap;

    gap: 10px;
    margin: 30px;
    align-items: center;
    flex-direction: row;

}

.clients {
    display: flex;
    margin-top: 50px;
    width: auto;

    flex-direction: row;
    background-color: #93b92900;
}

.client {
    width: 170px;
    align-items: center;
    background-color: rgba(62, 201, 97, 0.37);
    padding: 10px;
    border-radius: 15px;

    height: auto;

}

.clients-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1 fr;
        /* 2 equal-width columns */

        gap: 15px;
        margin: 30px;
        margin-left: 50px;
        margin-top: 0px;
        align-items: center;
        flex-direction: row;

    }
footer {
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before,
footer::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.1);
    top: -100%;
    left: -100%;
    z-index: 1;
    transform: rotate(45deg);
    animation: animate 20s linear infinite;
}

footer::after {
    animation-delay: -10s;
}

@keyframes animate {
    0% {
        transform: rotate(45deg) translate(0, 0);
    }

    100% {
        transform: rotate(45deg) translate(200%, 200%);
    }
}



.statistics-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px;
    background-color: #ffffff00;
    /* Use your desired color */
    padding: 30px;
    border-radius: 15px;
    background-image: url('path-to-your-background-image');
    /* Add your background pattern image */
    background-size: cover;
    background-position: center;
}

.stat-card {
    background-color: white;
    border-radius: 50%;
    text-align: center;
    padding: 20px;
    width: 150px;
    height: 150px;
    margin: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #8B2A2A;
}

.stat-card p {
    margin: 5px 0 0 0;
    font-size: 16px;
    color: #333;
}

.zodiac-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.zodiac-section h2 {
    font-size: 28px;
    color: #8B2A2A;
    /* Match the theme color */
    margin-bottom: 10px;
}

.zodiac-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.zodiac-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.zodiac-card {
    text-align: center;
    margin: 10px;
    flex: 1 1 20%;
    max-width: 150px;
}

.zodiac-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.zodiac-card p {
    font-size: 16px;
    color: #8B2A2A;
    font-weight: 600;
    margin: 0;
}


.whatsapp-logo {
    width: 40px;
    /* Adjust size as needed */
    height: auto;
    /* Maintain aspect ratio */
    margin-right: 60px;
}

.maintitle {
    font-size: 30px;
    color: rgb(27, 133, 233);

    border-radius: 50px;
    width: auto;
}



.left-column1 {
    flex: 1;
    padding-right: 20px;
}

.left-column1 .video-card1 {

    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-card1 {

    border-radius: 10px;
    /* Rounded corners for the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for card effect */
    overflow: hidden;
    width: 500px;
    margin: 30px;
    height: 300px;
}

.video-card1 iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.right-column1 {
    flex: 1;
    display: flex;

    flex-direction: column;
    justify-content: center;

}

.right-column1 .title {
    font-size: 12px;

    color: #4CAF50;
    margin-bottom: 10px;
}

.right-column1 .description {
    font-size: 18px;
    margin: 0;
}

.right-column1 .title {
    font-size: 40px;
    padding: 10px;
    display: flex;
}

.feedback-section {
    padding: 40px;
    flex-direction: column;
    background-color: #cee9ee13;
    /* White background for the section */
    background-color: rgba(230, 245, 239, 0.815);

}



.feedback-list {
    display: flex;
    flex: 2;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.feedback-item {
    display: flex;
    padding: 20px;
    align-items: center;
    background-color: #f9f9f9;
    /* Light background for each feedback item */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */

}

.feedback-item img {
    width: 170px;
}

.lottie-container {
    width: 60px;
    /* Size of the Lottie animation container */
    height: 60px;
    /* Size of the Lottie animation container */
}


.feedback-text {
    font-size: 15px;
    margin: 0 0 10px;
    margin-top: 10px;
    margin-left: 20px;
    color: #555;
    /* Dark gray text color */
}

.feedback-author {
    font-weight: bold;
    margin: 0;
    margin-left: 20px;
}

.feedback-role {
    font-style: italic;
    margin-left: 20px;
    margin-top: 10px;
    color: #777;
    /* Light gray text color */
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    /* White background for the modal content */
    margin: 15% auto;
    /* 15% from the top and center horizontally */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Width of the modal */
    max-width: 600px;
    /* Maximum width of the modal */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
}

input,
select,
textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

.connect-button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.connect-button:hover {
    background-color: #218838;
}

/* Basic Reset */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafc;
}

ul {
    list-style: none;
    /* Remove bullet points */
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    /* Remove underline */
    color: #333;
    font-size: 14px;
    margin-left: 10px;
    font-style: normal;
}

a:hover {
    color: #597cff;
}

/* Header Styling */
/* Header Styling */
.header {
    display: flex;
    flex-direction: row;
    /* Mobile-first approach */
    align-items: center;
    /* Vertically center items */
    justify-content: space-between;
    /* Space between logo and menu */
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    /* To position dropdown properly */
    width: 100%;
    /* Makes the header span the full width */
    box-sizing: border-box;
    /* Ensures padding is included within the width */
}

/* Menu Styling */
.menu {
    margin-left: auto;
    /* Push menu to the far right */
    display: flex;

}

/* Example menu item styling */
.menu-item {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}



/* Logo Section */

.logo {
    display: flex;
    flex-direction: row;
}

.logo img {

    height: 50px;

}

.logo span {
    font-size: 20px;
    margin-top: 12px;
    font-weight: bold;

    color: #597cff;
}

/* Menu Styling */


.menu ul {
    display: flex;
    flex-direction: row;

}

#menu ul li {
    position: relative;
}

#menu ul li a {

    transition: color 0.3s, background-color 0.3s;
    display: block;
    /* Ensure full clickable area */
}

#menu ul li a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}


/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    width: 250px;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.dropdown-content a {
    display: block;
    margin: 5px 0;
    color: #333;
    text-decoration: none;
    /* Remove underline from dropdown links */
}

.dropdown-content a:hover {
    color: #597cff;
}

/* Show classes */
.dropdown-content.show {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.sub-dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    width: 250px;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.sub-dropdown-content.show {
    display: block;
}



.nav-menu {
    display: none;
    /* Hide hamburger in desktop */
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 375px) {
.container1 {
    padding: 0px;    
}
.left-column .description {

    font-size: 10px;
}

@media (max-width: 767px) {



    .header {
        padding: 15px;
        position: relative;
    }

    .logo {
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    #menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 1000;
        padding: 15px;
    }

    #menu.show {
        display: block;
    }

    #menu ul {
        flex-direction: column;
        padding: 0;
    }

    #menu li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        display: none;
    }

    .dropdown-content.show {
        display: block !important;
    }

    .sub-dropdown-content {
        position: static;
        width: 100%;
        padding-left: 25px;
        display: none;
    }

    .sub-dropdown-content.show {
        display: block !important;
    }

    .dropdown-submenu > a:after {
        content: ' ►';
        float: right;
    }

    .dropdown-content.show .dropdown-submenu > a:after {
        content: ' ▼';
    }
    .maintitle {
        margin-top: 0px;
        font-size: 25px;
    }

    .container {
        display: flex;
        flex-direction: column;
    }

    .right-column {
        display: none;
    }

    .left-column {
        width: 300px;
    }

    .left-column .btn {
        font-size: 15px;
        width: 100px;
        margin-right: 10px;

    }

    .left-column .btn1 {
        font-size: 12px;
        width: 100px;
    }

    .left-column .btn:hover {
        font-size: 15px;
        width: 100px;
    }

    .left-column .btn1:hover {
        font-size: 12px;
        width: 100px;
    }

    .statistics-section {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        background-color: #ffffff00;
        /* Use your desired color */
        margin: 10px;
        border-radius: 15px;
        background-size: cover;
        background-position: center;
    }

    .stat-card {
        background-color: white;
        border-radius: 50%;
        text-align: center;
        width: 150px;
        height: 150px;
        display: flex;
        flex-direction: column;
        margin-top: 5px;

        margin-right: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .stat-card h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #8B2A2A;
    }

    .stat-card p {
        margin: 5px 0 0 0;
        font-size: 16px;
        color: #333;
    }

    


    

    .clients-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 equal-width columns */

        gap: 15px;
        margin: 30px;
        margin-left: 50px;
        margin-top: 0px;
        align-items: center;
        flex-direction: row;

    }

    .feedback-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        background-color: #f9f9f9;
        /* Light background for each feedback item */
        border-radius: 8px;
        /* Rounded corners */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        /* Subtle shadow */

    }

    .clients {
        display: flex;
        margin-top: 50px;
        width: auto;

        flex-direction: row;
        background-color: #93b92900;
    }

    .client {
        width: 100px;
        align-items: center;
        background-color: rgba(62, 201, 97, 0.37);
        padding: 10px;
        border-radius: 15px;

        height: auto;

    }

    .left-column .btn1 {
        padding: 10px;
        font-size: 15px;
        cursor: pointer;
        width: 150px;
        border-color: rgb(28, 180, 207);
        margin-top: 15px;

        font-family: 'Poppins', sans-serif;
        border-radius: 10px;
        background-color: rgb(236, 246, 248);
        ;
        color: rgb(17, 117, 134);
    }



.b {
    background-color: rgba(60, 107, 67, 0);
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    /* Apply the blur effect */
    border-radius: 180px;
}

.intro_image {
    width: 350px;
    height: 350px;
    margin-right: 20px;
}
}
/* Responsive styling */
@media (max-width: 780px) {
    .header {
        display: flex;
        flex-direction: column;
    }


    .title {
        font-size: 10px;
    }

}


.titles {
    font-size: 34px;
    color: #1fa83f;
    margin: 50px;
}

.descriptions {
    font-size: 17px;
    margin: 50px;
}

.menu a {
    font-size: 14px;
    padding: 10px;
    color: black;
}

.menu a:hover {
    color: blue;
}