body {
    background-color: #010d0f;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; 
    padding: 20px;
}



html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.white-text
{
color: #FFF;
text-align: center;
font-family: "Satoshi Variable";
font-size: 80px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 10px;
    }
}


.vertical-separator {
    width: 1px;
    height: 300px;
    background: linear-gradient(to top, transparent, yellow, transparent), 
                linear-gradient(to bottom, transparent, yellow, transparent);
    margin: 0 15px;
} 
.middle-heading
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #031114;
    color: rgb(86, 86, 86);
    font-size: 18px;
    font-weight: bold;
    border: 2px solid gray;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0 auto;
    text-align: center;
    transition: 0.3s ease-in-out;
    width: fit-content;
    margin-top: 1vh;
    margin-bottom: 1vh;
}

/* ----------------------------------------------------------- */
.footer-container {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    background: #031317;
    text-align: center;
    color: white;
}

/* Footer Heading */
.footer-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Footer Navigation Links */
.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

.footer-nav {
    margin-bottom: 15px;
}

/* Social Media Icons */
.social-icons-footer {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 15px; 
    margin-top: 10px;
}

/* Icon Styling */
.social-icons-footer img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1) sepia(100%) saturate(5000%) hue-rotate(10deg);
    transition: transform 0.3s ease;
}

/* Hover Effect */
.social-icons-footer img:hover {
    transform: scale(1.1);
}


/* Copyright Section */
.copyright {
    margin-top: 10px;
    font-size: 14px;
    
}























/* General Reset
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.navbar-right{
margin-top: 1px;
margin-left: 5vh;
}
.navbar-center{
    margin-top: 10px;
}
.navbar-brand{
    background-color: red;

}
.navbar {
    background: #031114;
    border: none;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #dee1b1;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 24px;
    color: #ffc107 !important;
    text-decoration: none;
    font-weight: bold;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.navbar-nav li {
    padding: 0 10px;
}

.navbar-nav li a {
    color: white !important;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar-nav li a:hover {
    color: lightgray !important;
}

.navbar-btn {
    background: #ffc107;
    color: black;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.navbar-btn:hover {
    background: #e0a800;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: #010d0f;
    padding-top: 60px;
    transition: right 0.4s ease-in-out;
    box-shadow: -2px 0 5px rgba(208, 203, 203, 0.5);
    z-index: 1000;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav h3 {
    color: white;
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav li {
    padding: 15px;
}

.mobile-nav a {
    color: white !important;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: background 0.3s ease;
}

.mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: white;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.icon-bar {
    background: white;
    width: 25px;
    height: 3px;
    margin: 5px;
    display: block;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-brand {
        margin-right: auto;
    }

    .mobile-nav ul {
        padding-left: 0;
    }

    .mobile-nav ul li:last-child {
        padding-top: 20px;
    }

    .navbar-btn {
        position: absolute;
        right: 20px;
        top: 15px;
    }
} */



/* Dynamic scroll offset */


/* Make sure the navbar items are centered on larger screens */
    .navbar-nav.navbar-center {
        text-align: center;
        margin: 0 auto;
    }

    /* Mobile Navbar */
    .navbar-toggle {
        border-color: transparent;
    }

    .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    .navbar-default {
        background-color: #031114;
        border: none;
        font-family: Arial, sans-serif;
    }

    .navbar-default .navbar-nav > li > a {
        color: #b4b6b9;
        font-weight: 400;
        font-size: 16px;
    }

    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li.active > a {
        color: #f0c808;
        background-color: transparent;
    }

    .navbar-default .navbar-brand {
        color: #fff;
        font-size: 24px;
    }

    .navbar-default .navbar-brand:hover {
        color: #f0c808;
    }

    /* For sticky navbar */
    body {
        padding-top: 60px; /* Give space for the navbar */
    }

    /* Mobile Sidebar Style */
    .mobile-nav {
        display: none;
    }

    /* Show the sidebar when it's active */
    @media (max-width: 767px) {
        .mobile-nav {
            display: block;
            background-color: #031114;
            position: fixed;
            top: 0;
            right: 0;
            width: 250px;
            height: 100%;
            box-shadow: -2px 0px 6px rgba(0, 0, 0, 0.1);
            z-index: 9999;
        }

        .mobile-nav ul {
            list-style-type: none;
            padding: 20px;
        }

        .mobile-nav ul li {
            padding: 10px;
            text-align: center;
        }

        .mobile-nav ul li a {
            color: #fff;
            font-size: 18px;
            text-decoration: none;
        }

        .mobile-nav ul li a:hover {
            color: #f0c808;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 36px;
            color: #fff;
            cursor: pointer;
        }
    }


