/* Navbar Styling */
.navbar {
        padding: 0px;
    background-color: #293780; /* Dark blue */
    transition: background-color 0.3s ease, top 0.3s ease; /* Smooth transition */
}

.navbar-nav {
    display: flex;
    justify-content: center; /* Center the items */
    gap: 30px; /* Add spacing between items */
    width: 100%;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #a9afcc;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: Ubuntu, Sans-Serif;
}

.navbar-nav .nav-link:hover {
    color: white; /* Hover effect */
}

.nav-link.active {
    color: white;
    font-weight: bold;
}

/* Section Styling */
.section {
    min-height: 100vh;
    padding: 60px 15px;
}

#section1 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 170px;
    display: flex;
    justify-content: center;
    color: white;
    position: relative;
}

.floating-card {
    background-color: rgba(0, 11, 39, 0.75);
    border-radius: 20px;
    /*padding: 50px;*/
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    /*width: 100%;*/
    /*max-width: 97%;*/
    /*margin: 0px 15px;*/
}

.header-1 {
    font-size: 18px;
    color: #e8ff00;
    font-weight: 700;
    padding-bottom: 5px;
}

.header-2 {
    font-size: 36px;
    color: white;
    font-weight: 650;
    padding-bottom: 5px;
}

.content-1 {
    font-size: 16px;
    color: white;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.btn-heading {
    background-color: #e65644;
    font-size: 14px;
    color: white;
    font-weight: 700;
    padding: 10px;
    border-radius: 0px;
}

/* Adjust for Mobile */
@media (max-width: 768px) {
    .section {
        padding: 30px 15px;
    }


    .col-md-4 {
        margin-bottom: 20px;
    }

    .header-1 {
        font-size: 16px;
    }

    .header-2 {
        font-size: 28px;
    }
}


        .language-style {
            color: #145ae2;
            font-size: 16px;
            font-weight: 500;
        }

        .me-3{
            padding: 0px;
            margin: 0px;
        }
        /* Language selection bar */
        .language-bar {
            background-color: #e1e8ed; /* Light background for the language selector */
            padding: 18px 0px ;
            margin: 0; /* Remove any default margins */
            text-align: right;
            transition: top 0.3s ease;
        }

        /* Remove any margin between language bar and navbar */
        body, html {
            margin: 0;
            padding: 0;
        }

        .navbar.scrolled {
            top: 0; /* Move the navbar to the top when scrolling */
            background-color: rgba(41, 55, 128, 0.511);/*sparent dark blue when scrolled*/
        }

        .language-bar.hidden {
            top: -60px; /* Hide the language bar when scrolling */
        }
        
        .section h1 {
            font-size: 2.5rem;
        }
        .section p {
            font-size: 1.25rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section h1 {
                font-size: 2rem;
            }
            .section p {
                font-size: 1rem;
            }

            .col-md-8 {
                width: 100%; /* Ensure the text content takes up the full width */
            }

        }
        
        @media (max-width: 700px) {
            .card-body {
                margin: 0 !important;
                padding: 30px !important;/* Remove the margin in mobile view */
            }
        }
        
        
        #section1 .container {
            z-index: 1; /* Bring the content above the background */
        }

        #section2 {
            background-color: #f2f5f7;
        }

        /* Optional: Add text shadow for better readability on dark background */
        .floating-card h1, .floating-card p {
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            text-align: center; /* Center the text */
        }

        /* Dark overlay for background */
        #section1::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
            z-index: 0;
        }

        .content-2{
            font-size: 24px;
            color: black;
            font-weight: 700;
            letter-spacing: 0.2px;
        }

        
        .content-2-sub{
            margin-top: 20px;
            text-align: justify;
            font-size: 16px;
            color: #757575;
            letter-spacing: 0.2px;
        }
        
        .accordion-header{
            background-color: transparent;
        }

        .accordion-item{
            background-color: transparent; 
        }

        /* Remove default hover effect and border highlight */
        .accordion-button {
            font-family: sans-serif;
            background-color: transparent !important; /* Remove background */
            color: #000; /* Default text color */
            border: none; /* Remove border */
            font-size: 1.2rem; /* Increase font size */
            font-weight: 700; /* Make the text bold */
            transition: none; /* Remove default transition effects */
            box-shadow: none; /* Remove box-shadow */
        }

        /* Change text color and arrow color when accordion is open */
        .accordion-button:not(.collapsed) {
            color: #61ce70; /* Change text color to green when open */
            background-color: transparent; /* Ensure background stays transparent */
        }

        /* Change arrow color when accordion is open */
        .accordion-button:not(.collapsed)::after {
            color: #61ce70; /* Change arrow color to green */
        }

        /* Reset hover effect to avoid sticking issue */
        .accordion-button:hover {
            color: #61ce70; /* Keep the hover color consistent */
            background-color: transparent; /* Ensure background stays transparent */
        }

        .accordion-body {
            background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background for the answer */
            color: #757575; /* Answer text color */
            font-size: 15px;
            border: none; /* Remove borders */
            padding: 10px;
            box-shadow: none; /* Remove shadow */
            z-index: 1; /* Ensure content appears above the overlay */
        }
        /* Remove the default focus effect (highlighted border) */
        .accordion-button:focus {
            box-shadow: none;
            outline: none;
        }

        /* Add additional styles to customize arrow when open */
        .accordion-button.collapsed::after {
            transform: rotate(90deg); /* Rotate the arrow to the right when closed */
        }

        #section3 {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed; /* Make background image static */
            min-height: 120vh; /* Ensure the background covers both cards */
            /*margin-top: 100px;*/
            display: flex;
            justify-content: center;
            color: white;
            position: relative;
            margin: 0px 10px;
            font-family: Ubuntu, Sans-Serif;
            z-index: 1; /* Keep this in front of the overlay */
        }

        /* White overlay */
        #section3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
            z-index: -1; /* Push the overlay behind the content */
        }

        /* Footer styling */
        .footer {
        background-color: #f8f9fa;
        padding: 40px 0;
        position: relative;
        bottom: 0;
        width: 100%;
        color: #333;
        }

        .footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        }

        .footer .row {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        }

        .footer-col {
        flex: 1;
        margin: 10px 0;
        padding: 0 15px;
        }

        .footer-col h4 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #333;
        }

        .footer-col ul {
        list-style: none;
        padding: 0;
        }

        .footer-col ul li {
        margin-bottom: 10px;
        }

        .footer-col ul li a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
        }

        .footer-col ul li a:hover {
        color: #007bff;
        }

        .footer-col p {
        font-size: 14px;
        line-height: 24px;
        color: #666;
        }

        .footer-bottom {
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid #e7e7e7;
        margin-top: 20px;
        }

        .footer-bottom p {
        font-size: 14px;
        color: #666;
        }

        .footer .social-links {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        }

        .footer .social-links a {
        font-size: 18px;
        color: #333;
        transition: color 0.3s;
        }

        .footer .social-links a:hover {
        color: #007bff;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .footer .row {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-col {
                margin: 20px 0;
                text-align: center;
            }
        }

   
