html {
    scroll-padding-top: 100px; /* Adjust this value based on your navbar height */
}
/********************************************************************************
/* Hover Effect */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
html {
    scroll-padding-top: 100px; /* Adjust this value based on your navbar height */
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right , #00368A,#0077ae);
    padding: 15px 30px;
    position:fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 45px; /* Adjust this size based on your logo */
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    /* font-family: 'Fredoka One', cursive;*/
    font-family: Arial, sans-serif;
    position: relative; /* Necessary for the underline effect */
    transition: background-color 0.3s ease-in;
}

/********************************************************************************
/* Hover Effect */
.nav-links li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px; /* Positions the underline below the text */
    left: 0;
    background-color: #fbb923; /* The underline color */
    transition: width 0.1s ease-in-out; /* Animation for underline */
}

/* When hovered */
.nav-links li a:hover {
    color: #fbb923; /* Change text color on hover */
}

.nav-links li a:hover::before {
    width: 100%; /* Animate the underline to full width */
}
/***********************************************************************

/* Burger Menu for Mobile */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #333;
        width: 100%;
        text-align: center;

        
    }

    .nav-links a:hover {
        color: #0077ae;
        background: transparent;
    }
    .nav-links li a::before {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -5px; /* Positions the underline below the text */
        left: 0;
        background-color:hsla(9, 100%, 64%, 0); /* The underline color */
        transition: width 0.1s ease-in-out; /* Animation for underline */
    }

    .nav-links.nav-active {
        display: flex;
    }

    .burger {
        display: block;
    }
    .nav-links li {
        margin-top: 15px;
        margin-bottom:10px;
    }
    .logo img {
        height: 30px; /* Adjust this size based on your logo */
        display: block;
    }
}
/*********************************************************************************/
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
            text-align: center;
        }

        .container {
            max-width: 900px;
            height: auto;
            margin: 100px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 2.5rem;
            color: #00AEFF;
            margin-bottom: 20px;
        }

        p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }

        iframe {
            width: 100%;

            border: 0;
            margin-bottom: 20px;
            width: 100%;
    height: 80vh; /* Adjust to be less than 100% of the viewport height */

        }

        .cta-button {
            background-color: #FBB923;
            color: #fff;
            padding: 15px 25px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #ff9800;
        }

/************************************  footer   ****************************************************/
/************************************  footer   ****************************************************/
/* ************************** footer css ********************************************/
.footer {
    background: linear-gradient(to right , #00368A,#0077ae);
    color: #fff;
    padding: 40px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background:#00368A;

}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
 
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    font-size: 1.4rem;
    color: #FBB923;
    margin-bottom: 15px;
}

.footer p, .footer a {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00AEFF;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.footer-column a {
    display: inline-block;
    margin-right: 10px;
    color: #ddd;
    font-size: 1rem;
}

.footer-column a:hover {
    color: #00AEFF;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 20px;
    }
}
.lang i  {

    margin-right: 5px;
} 