
.index-page .header {
        height: 250px; /* Adjust this value to match the desired height of your header */
        overflow: hidden; /* Ensures no overflow */
        padding: 0; /* Removes padding */
        margin: 0; /* Removes margin */
        position: relative; /* Allows absolute positioning inside */
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
   

/* Existing styles for other elements */
.header {
    padding: 15px 0px;
    background: #000;
    color: #ffffff;
}

.content {
    padding: 16px;
}

.sticky {
    position: fixed;
    top: 50px;
    width: 100%;
}

.sticky + .content {
    padding-top: 0px;
}

.container {
    width: 80%;
    margin: 0 auto; /* Center the DIV horizontally */
}

.fixed-header, .fixed-footer {
    width: 100%;
    position: fixed;
    background: #333;
    padding: 0px 0px;
    color: #fff;
}

.fixed-header {
    top: 0;
}

.fixed-footer {
    bottom: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 14px 50px;
    display: inline-block;
}

.container p {
    line-height: 200px; /* Create scrollbar to test positioning */
}

.fixed-footer {
    position: bottom;
    min-height: 40px;
}

.fixed-footer-content {
    position: absolute;
    padding: 50;
    left: 0;
}

*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #0855ae;
}

.popup {
    background-color: #ffffff;
    width: 420px;
    padding: 30px 40px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
}

.popup button {
    display: block;
    margin: 0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #ffffff;
    background: #03549a;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

.popup h2 {
    margin-top: -20px;
}

.popup p {
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
}

.footer-content-right {
    display: flex;
    justify-content: center;  /* Centers the content horizontally */
    align-items: center;      /* Centers the content vertically */
    flex-wrap: nowrap;        /* Ensures the items wrap on smaller screens */
    height: 75px;             /* Adjust as needed for footer height */
}

.icon-style {
    margin: 0 12px;           /* Adds spacing between icons */
	margin-top:-15px;         /* THIS PUSHES THE ICON TO THE TOP OF THE FOOTER */
}

.footer-content-right {
    width: 100%;               /* Make the footer span the full width */
    background-color: #333;     /* Adjust background color */
    color: white;               /* Text color */
    display: flex;
    justify-content: space-around; /* Space content evenly */
    align-items: center;        /* Align content vertically */
    padding: 20px 10;            /* Adjust padding for spacing */
    box-sizing: border-box;     /* Ensure padding doesn't affect width */
}

p {
    margin: 0.7em 0;
    padding-left: 5px;
    padding-right: 5px;
}

.logo {
    display: block;
    width: 100%;
}

.v1col { width: 100%; }
.v2col { width: 60%; }
.v3col { width: 75%; }
.v4col { width: 80%; }
.v5col { width: 40%; }
.v6col { width: 90%; }
.v7col { width: 95%; }
.v8col { width: 90%; }
.v9col { width: 94%; }

.categoriesSelect {
    padding: 7px;
}

body {
    margin: 0;
    font-family: sans-serif;
}

.icon-style {
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s ease-in-out;
}

.icon-style:hover {
    opacity: 1;
    transform: scale(1.1);
}

.icon-style.active {
    opacity: 1; /* Keep it bright when active */
}

.menu-icon {
    width: auto; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    opacity: 0.7; /* Keep the default opacity lower */
    transition: opacity 0.3s, transform 0.3s ease-in-out;
}

.menu-icon:hover, .menu-icon.active {
    opacity: 1; /* Brighten when hovered or active */
    transform: scale(1.05);
}

.menu-icon {
    opacity: 0.9;
}

.v6col {
    opacity: 1; /* Default brightness */
    transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

.v6col:hover {
    opacity: 0.8; /* Slight dimming on hover (adjust as needed) */
}

.v6col {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.v6col:hover {
    opacity: 0.8;
}

.v7col {
    opacity: 1; /* Default brightness */
    transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

.v7col:hover {
    opacity: 0.8; /* Slight dimming on hover (adjust as needed) */
}

.v7col {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.v7col:hover {
    opacity: 0.8;
}

.icon-style {
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.icon-style.active {
    opacity: 1; /* Bright when active */
}

.back-arrow {
    position: absolute;
    left: 7px;
    top: -29px;
    font-size: 75px;
    color: #fff;
    text-decoration: none;
}


@media screen and (min-width: 768px) {
  .fixed-header,
  .header {
    width: 390px;
    margin: 0 auto;
    background-color: #000;
  }
}


/* Add this to your css/styles.css file */
body.subscribed-user #subscribeGraphic {
    display: none !important; /* Use !important here for maximum override */
}


