/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
}

header {
    background-color: #4c4c4c;
    backdrop-filter: blur(4px); 
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 20px;
}

header h1 {
    font-size:20px;
    margin: 0;
}

.language-button {
    background-color: #a5d515; /* Green color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: absolute;
    left: 15%; /* Adjust positioning */
    top: 50%;
    transform: translateY(-50%);
}

.language-button:hover {
    background-color: #218838;
}
.nav-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 800px; /* Set a max width for the nav */
    background-color: white;
    border-radius: 25px;
    padding: 2px;
}

nav a {
    color: black;
    text-decoration: none;
    font-size:18px;
    padding: 10px 15px;
    transition: font-weight 0.3s ease;
}

nav a.active {
    font-weight: bold;
}

section {
    padding: 50px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.form-container {
    position: relative;
    top: 30%;
    transform: translateY(-50%);
    text-align: center;
    width: 600px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input, button, textarea {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons img {
    width: 30px; /* Adjust as needed */
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.social-icons a {
    color: rgb(252, 0, 0);
    text-decoration: none;
    font-size: 1.5rem;
}

.gradient {
    background-color: #7ee8fa; background-image: linear-gradient(315deg, #7ee8fa 0%, #80ff72 74%);
}

#signup.gradient {
    background-color: #f7b42c; background-image: linear-gradient(315deg, #f7b42c 0%, #fc575e 74%);
}
#testimonials.gradient {
    background-color: #f7b42c; background-image: linear-gradient(315deg, #f7b42c 0%, #fc575e 74%);
}

#manage.gradient {
    background: rgb(0,71,171); background: linear-gradient(159deg, rgba(0,71,171,1) 0%, rgba(28,169,201,1) 100%);
}

#contact.gradient {
    background-color: #f6f0c4; background-image: linear-gradient(315deg, #f6f0c4 0%, #d99ec9 74%);
}

.page-title {
    position: absolute;
    left: 40px;
    top: 8%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    font-weight: bold;
    font-size:60px;
}

.circle-content {
    position: absolute;
    left: 54.5%;
    width: 40%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.63); /* Semi-transparent white */
    padding: 35px;
    top: 53%;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}
.square-content {
    position: absolute;
    top: 28%;
    left: 54%;
    width: 40%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.63); /* Semi-transparent white */
    padding: 40px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.home-image {
    transform: scale(0.60);
    transform-origin: left;
    position: absolute;
    padding: 20px;
    top: 10%;
    right: 10%;
    text-align: center; /* Centers the image and caption */
    }
.home-image video {
        width: 100%; /* Adjust as needed */
        height: auto;
        border-radius: 10px; /* Optional: style */
    }
    
.image-caption {
    font-size: 40px; /* Adjust size as needed */
    font-weight: bold; /* Makes it stand out */
    color: #333; /* Darker color for better readability */
    text-align: center;
}
.signup-image {
    transform: scale(0.45);
    transform-origin: left;
    position: absolute;
    left: 2%;
    }
.signup-content {
    left: 20%;
    max-width: 800px;
    margin: 0 auto;
    text-align:center;
    color: #333;
    background-color: rgba(255, 255, 255, 0.63); /* Semi-transparent white */
    padding: 20px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}
.header-box {
    background-color: #cdc9c9; /* Light gray background */
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px; /* Space between elements */
    border-top: 1px solid #ddd; /* Subtle line to separate it */
    margin-top: 80px; /* Pushes it below the header */
    position: relative;
    top: 0;
    width: 100%;
    margin-left: -20px;
}
.testimonials-image {
    width: 50%; /* Adjust as needed */
    max-width: 500px;
    float: right; /* Aligns the image to the left */
    position: absolute;
    left: 0;
}
.testimonials {
    text-align: center;
    padding: 20px 20px;
    background-color: #ffffff;
}

.testimonials h1 {
    font-size: 50px;
    color: #0ec235;
    margin-bottom: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto); /* 2 rows */
    gap: 15px; /* Space between items */
    max-width: 900px;
    margin: 0 auto;
}

.testimonial img {
    width: 100%;
    max-width: 180px; /* Adjust image size */
    height: auto;
}

.testimonial h3 {
    font-size: 18px;
    margin-top: 10px;
}

.testimonial p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}
.video-section {
    text-align: center;
    padding: 40px;
    background: #f7b42c;
    background-image: linear-gradient(315deg, #f7b42c 0%, #fc575e 74%);
    color: #fff;
}
.pricing-section {
    text-align: center;
    padding: 40px;
    background: #f7b42c;
    background-image: linear-gradient(315deg, #f7b42c 0%, #fc575e 74%);
    color: #fff;
}

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

.pricing-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.small {
    font-size: 16px;
}

ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

ul li {
    margin: 5px 0;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}
.big-title {
    text-align: center; 
    font-size: 35px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff6347, #6a5acd); /* Change gradient colors */
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    margin: 0 auto;
    padding: 100px 0;
    margin-bottom: 40%;
    margin-top: 30px; /* Adjust for larger shift */
    position: relative; 
    top: 15px; /* Fine-tune small shifts */
    
}
    /* Modal Styling */
    .modal {
        display: none; /* Hidden by default */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    }

    .modal-content {
        background-color: white;
        margin: 10% auto;
        padding: 10px;
        width: 600px; /* Modal width */
        border-radius: 8px;
        position: relative;
        text-align: center;
    }

    /* Input Fields in Modal */
    .modal-content input[type="email"], 
    .modal-content input[type="password"] {
        width: 80%; /* Adjust the width to make them narrower */
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    /* Button Styling */
    .modal-content button {
        width: 25%; /* Button width consistent with inputs */
        padding: 10px;
        background-color: #767676;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
    }

    .modal-content button:hover {
        background-color: #1e8336;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }

    /* Open Modal Button Styling */
    .open-modal-btn {
        cursor: pointer;
        background-color: #28a745; /* Green color */
        color: white;
        padding: 10px 5px;
        font-size: 1rem;
        border-radius: 5px;
        font-weight: bold;
        position: absolute;
        right: 80px; 
        top: 35%;
        transform: translateY(-50%);
        width: 180px;
    }
    .arrow-image {
        transform: scale(0.15);
        transform-origin: left;
        position: absolute;
        left: 70%;
        top: 25%;
        }
        .yt {
            width: 100%;
            max-width: 1200px; /* Optional: controls max width */
            margin: 0 auto 40px auto; /* Centers the container and adds spacing below */
        }
        
        .yt iframe {
            width: 100%;
            height: 500px;
            border-radius: 0; /* Keeps sharp edges as requested */
        }
        
        @media (max-width: 768px) {
            .yt iframe {
                height: 300px; /* Responsive height for smaller screens */
            }
        }

</style>