body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #c7dfeb;
        /* Main background color */
    color: #333333;
        /* Text color */
}
/* Navbar Styles */

.navbar {
    /* background-color: rgba(52, 73, 94, 0.8); */
    background-color: transparent;
    /* Transparent background with color from the scheme */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 100;
    /* Ensure navbar appears above other content */
    /* backdrop-filter: blur(10px); */
    /* Add a subtle blur effect */
}

.navbar .logo {
    margin-left: 20px;
}

.navbar .logo img {
    width: 10%;
    margin-top: -10px;
    margin-right: 20px;
}

.nav-links {
    margin-right: 20px;
}

.nav-links a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease-in-out;
    /* Smooth color transition on hover */
}

.nav-links a:hover {
    color: #00BFA5;
    /* Accent color on hover */
}
.right-section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12vh;
}

.right-section h2 {
    color: #fff;
    font-size: 4.5em;
    text-align: center !important;
    position: absolute;
}

.right-section h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px #093c72;
}

.right-section h2:nth-child(2) {
    color: #093c72;
    animation: animate 4s ease-in-out infinite;
}

@keyframes animate {

    0%,
    100% {
        clip-path: polygon(0% 45%,
                16% 44%,
                33% 50%,
                54% 60%,
                70% 61%,
                84% 59%,
                100% 52%,
                100% 100%,
                0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%,
                15% 65%,
                34% 66%,
                51% 62%,
                67% 50%,
                84% 45%,
                100% 46%,
                100% 100%,
                0% 100%);
    }
}

.video-container {
    text-align: center;
    margin-top: 0px;
    background-color: #c7dfeb;
}

.video {
    max-width: 100%;
    width: 100%;
}

.footer {
    background-color: #263238;
    color: white;
    text-align: center;
    padding: 20px;
}

.about-twitter-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #c7dfeb;
}

.about-section {
    width: 50%;
    padding-right: 20px;
}

.about-section h3 {
    color: #333333;
    font-size: 24px;
}

.about-section p {
    color: #555555;
    font-size: 20px;
    text-align: justify;
}

.twitter-feed {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.twitter-feed h3 {
    color: #333333;
    font-size: 24px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide the navigation links */
        flex-direction: column;
        /* Stack the items vertically */
        position: absolute;
        background-color: rgba(52, 73, 94, 0.8);
        /* Background color for the dropdown */
        top: 70px;
        /* Adjust the top position as needed */
        right: 0;
    }

    .nav-links.show {
        display: flex;
        /* Show the navigation links when the hamburger menu is active */
    }

    .navbar .logo {
        margin: 20px;
    }

    .navbar .logo img {
        display: none;
        /* Hide the logo for small screens */
    }

    .navbar .menu-icon {
        display: block;
        /* Display the hamburger menu icon */
        font-size: 24px;
        cursor: pointer;
        margin-right: 20px;
    }

        .right-section {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 8vh;
        }
    
        .right-section h2 {
            color: #fff;
            font-size: 2.3em;
            text-align: center !important;
            position: absolute;
        }
.about-section {
    width: 100%;
}
.twitter-feed {
    width: 100%;
    display: flex;
}
.about-twitter-section {
    display: flex;
    flex-direction: column;
}
}