/* Main content */
.content {
    display: flex;
    font-size: 18px;
}

.description {
    padding-top: 75px;
    width: 40%;
}

.description p {
    text-align: left;
}
.comment-input {
    width: 100%; /* Full width */
    max-width: 400px; /* Optional: maximum width for better layout */
    height: 40px; /* Increased height */
    padding: 10px; /* Padding for comfort */
    margin-bottom: 10px; /* Space below the input */
    border: 1px solid #ccc; /* Border for visibility */
    border-radius: 4px; /* Rounded corners */
    font-size: 16px; /* Font size */
}

.icon_button, .show-comments {
    padding: 20px 60px; /* Increased horizontal padding for a much wider button */
    font-size: 18px; /* Keep the font size */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */
    border: none; /* Remove border */
    cursor: pointer; /* Change cursor to pointer */
    display: inline-flex; /* Align text center */
    align-items: center; /* Center text vertically */
    justify-content: center; /* Center text horizontally */
    text-align: center; /* Center text */
}


.circle-background {
    margin-left: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(170, 72, 223, 0.5), rgba(81, 28, 124, 0.2), transparent);
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: -1;
}

.ctu-buddy {
    background: linear-gradient(to right, #7500c3, #8e30c4, #b72ed2);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-us-container {
    padding-top: 50px;
}

.image-container {
    justify-content: center;
    width: 60%;
}

#about-us-button {
    width: 250px;
    border-radius: 15px;
    height: 60px;
}

#laptop {
    width: 1000px;
}

/* Hero Section */

.hero h1 {
    font-size: 3rem;
}

.hero p {
    margin: 20px 0;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    background: #160330;
    color: #fff;
}

.feature-container {
    display: flex;
    padding: 50px;
    overflow: hidden;
    justify-content: center;
}

.feature-container img {
    margin: 30px;
    border-radius: 50px;
    border-style: solid;
    border-color: #c445fe;
    border-width: 8px;
    width: 350px;
    height: auto;
}

.mid {
    padding-top: 40px;
}

.mid img {
    width: 250px;
}

.img-div figcaption {
    font-size: 30px;
    font-family: inherit;
    text-align: center;
}

/* Video Sections */
.vid-sections {
    color: #fff;
    font-family: inherit;
    padding: 40px;
}

.vid-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #160330;
    border-radius: 20px;
    margin: 20px 0;
}

.dream-container,
.academic-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

.dream-content,
.academic-content {
    flex: 1;
    padding: 20px;
}

.dream-title,
.academic-title {
    margin-left: -80px;
    font-size: 50px;
    color: #ffffff;
    margin-bottom: -30px;
    text-align: left;
}

.dream-title .ctu-buddy,
.academic-title .ctu-buddy {
    color: #7500c3;
}

.dream-content p,
.academic-content p {
    margin-left: -80px;
    padding-top: 45px;
    text-align: left;
    font-size: 20px;
    color: white;
}

.button {
    margin-left: -90px;
    margin-top: 30px;
    width: 175px;
    border-radius: 30px; /* This sets the border radius */
    height: 50px;
    font-size: 22px;
    background: linear-gradient(to right, #7500c3, #8e30c4, #b72ed2);
    color: #fff;
    padding: 10px;
    border: 0;
    cursor: pointer; /* Add cursor pointer for better UX */
}

.button:hover {
    background: linear-gradient(to left, #7500c3, #8e30c4, #b72ed2);
}

.dream-img,
.academic-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    margin-right: 300px;
    max-width: 70%;
    height: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.academic-container video {
    margin-left: 300px; /* Increase this value to move it more to the right */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dream-container,
    .academic-container {
        flex-direction: column;
    }

    .dream-content,
    .academic-content {
        text-align: center;
        padding: 20px;
    }

    .dream-title,
    .academic-title,
    .dream-content p,
    .academic-content p,
    .button {
        margin-left: 0;
    }

    .dream-img,
    .academic-img {
        margin-top: 20px;
    }

    video {
        margin-right: 0;
        margin-left: 0;
        max-width: 100%;
        height: auto;
    }

    .academic-container video {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .content {
        flex-direction: column;
    }

    .description,
    .image-container {
        width: 100%;
    }

    .circle-background {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }

    #laptop {
        width: 100%;
        max-width: 600px;
    }

    .feature-container {
        flex-direction: column;
    }

    .feature-container img {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .icon_button, .show-comments {
        padding: 15px 40px;
        font-size: 16px;
    }

    #about-us-button {
        width: 200px;
        height: 50px;
    }

    .dream-title,
    .academic-title {
        font-size: 40px;
    }

    .dream-content p,
    .academic-content p {
        font-size: 18px;
    }

    .button {
        width: 150px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .feature-container img {
        width: 100%;
        max-width: 250px;
    }

    .img-div figcaption {
        font-size: 24px;
    }

    .dream-title,
    .academic-title {
        font-size: 32px;
    }

    .dream-content p,
    .academic-content p {
        font-size: 16px;
    }

    .button {
        width: 130px;
        height: 40px;
        font-size: 16px;
    }
}

/* ... existing code ... */
post_container .user_icons {
        top:20px;
        }

/* Footer Styles */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #160330; /* Adjust this to match your design */
    color: #fff; /* Adjust this to match your design */
}

.footer-top,
.footer-middle,
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-navlinks {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

.left-links,
.right-links {
    display: flex;
    flex-direction: column;
}

.footer-navlinks a {
    color: #fff; /* Adjust this to match your design */
    text-decoration: none;
    margin-bottom: 10px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.socials a {
    color: #fff; /* Adjust this to match your design */
    font-size: 24px; /* Adjust as needed */
}

.copy {
    text-align: center;
}

/* Laptop and larger screens */
@media (min-width: 1024px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 40px 80px;
    }

    .footer-top,
    .footer-middle,
    .footer-bottom {
        width: auto;
        margin-bottom: 0;
    }

    .footer-top {
        order: 1;
    }

    .footer-middle {
        order: 2;
    }

    .footer-bottom {
        order: 3;
        flex-direction: column;
        align-items: flex-end;
    }

    .footer-navlinks {
        justify-content: flex-start;
        gap: 60px;
    }

    .socials {
        justify-content: flex-end;
    }
}

/* Tablet and mobile screens */
@media (max-width: 1023px) {
    .footer-navlinks {
        flex-direction: column;
        align-items: center;
    }

    .left-links,
    .right-links {
        align-items: center;
        margin-bottom: 10px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .socials {
        flex-wrap: wrap;
    }
}

/* ... rest of the styles ... */
