/* Menu sec */
.full-screen-image {
    height: 100%;          
    overflow: hidden;        
}

.full-screen-image img {
    width: 100%;           
    object-fit: cover;    
    padding-bottom: 30px;   
}
.menu-section {
    width: 100%;    
    height: auto;   
    background-color: #EBF6EE; 
    padding-top: 8%;
}
@media screen and ( max-width: 576px) {
    .menu-section{
        padding-top: 28% !important;
    }
}
/* Styles for the nav container */
.nav-container2 {
    background-color: white; 
    border-radius: 14px; 
    display: inline-block; 
    height: -webkit-fill-available;
    width: 245px;
}

.hover-rectangle2 {
    font-family: "Manrope", sans-serif;
    height: auto;
    position: relative;
    display: inline-flex;
    padding: 0px 40px !important; 
    transition: color 0.3s ease;
    z-index: 1;
    text-align: center;
    color: #005659 !important; 
    font-size: 20px !important;
    min-width: 100px; 
    text-decoration: none;
}

.hover-rectangle2:hover {
    color: white !important;
}

.hover-rectangle2::after {
    content: '';
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #005659; 
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    z-index: -1;
    height: 60px;
    width: calc(100% - -10px); 
}

.hover-rectangle2:hover::after {
    opacity: 1;
}

.nav-link2.active::after {
    opacity: 1; 
    background-color: #005659; 
}

.nav-link2.active {
    color: white !important; 
}

.nav-link2.active:hover {
    color: white !important; 
}

.nav-pills {
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #2BAE9D !important;
    --bs-border-radius: 30px; 
}

.nav-pills .nav-link2.active, .nav-pills .show>.nav-link2 {
    color: var(--bs-nav-pills-link-active-color);
    background-color: none !important;
}

.nav-item2 {
    margin: 0; 
}

.nav-fill .nav-item2, .nav-fill>.nav-link2 {
    flex: 1 1 auto;
    text-align: center;
    border: solid;
    border-width: 6px;
    border-color: #2BAE9D;
    border-radius: 14px;
    height: 70px;
    align-content: center;
    width: 258px;
    align-content: center;
}

.border-container {
    background-color: #2BAE9D;
    /* border: 2px solid black; */
    /* padding: 16px; */
    width: 100%;
    /* height: 86px; */
    /* border-radius: 8px; */
}


/* navbar-3 */

.unique-container {
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 175px;
    padding-right: 175px;
    overflow-x: auto; /* Allows horizontal scrolling if content overflows */
}

.unique-inner-container {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap; /* Keeps items in a single row */
}

.unique-nav {
    display: flex;
    gap: 10px; /* Adds space between items */
    padding: 0;
    margin: 0;
}

.unique-nav-item {
    display: inline-flex; /* Makes items appear side by side */
}

.unique-nav-container {
    background-color: white;
    border-radius: 30px;
    padding: 5px;
    margin: 5px;
    display: inline-flex;
    height: 44px;
}

.unique-hover-rectangle {
    font-family: "Manrope", sans-serif;
    height: auto;
    position: relative;
    display: inline-flex;
    padding: 0px 12px !important;
    transition: color 0.3s ease;
    z-index: 1;
    text-align: center;
    color: #005659 !important;
    font-size: 20px !important;
    min-width: 100px;
    text-decoration: none;
}

.unique-hover-rectangle:hover {
    color: white !important;
}

.unique-hover-rectangle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2BAE9D;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    z-index: -1;
    height: 44px;
    width: calc(100% - -5px);
}

.unique-hover-rectangle:hover::after {
    opacity: 1;
}

.unique-nav-link.unique-active::after {
    opacity: 1;
    background-color: #2BAE9D;
}

.unique-nav-link.unique-active {
    color: white !important;
}

.unique-nav-link.unique-active:hover {
    color: white !important;
}

/* Base styles for unique-nav-pills */
.unique-nav-pills {
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #2BAE9D !important;
    --bs-border-radius: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px; /* Space between nav items */
}

/* Active link styling */
.unique-nav-pills .unique-nav-link.unique-active, 
.unique-nav-pills .show > .unique-nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg) !important;
    border-radius: var(--bs-border-radius);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* General nav-link styling */
.unique-nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 25px !important;
    text-align: center;
    text-decoration: none;
    color: #2BAE9D;
    font-family: "Manrope", sans-serif;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: var(--bs-border-radius);
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect for nav-link
.unique-nav-link:hover {
    color: #fff;
    background-color: #2BAE9D;
    border-color: #2BAE9D;
} */

/* Unique nav item styling */
.unique-nav-item {
    margin: 0;
}

/* Styling for nav-fill */
.unique-nav-fill .unique-nav-item {
    flex: 0 1 auto;
    text-align: center;
}

.unique-nav-fill .unique-nav-item .unique-nav-link {
    /* border: solid 6px #2BAE9D; */
    /* height: 70px;
    width: 258px; */
    border-radius: 14px;
    align-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.agm-text-container {
    /* flex: 1; Take up space to push dropdown to the right */
    text-align: left; /* Align text to the left */
}

.agm-text {
    font-size: 30px;
    font-family: 'Manrope', sans-serif;
    color: #005659;
    padding-left: 125px;
}


/* table */

.table-container {
    width: 1202px;
    height: auto;
    overflow: auto; /* Enables scrolling if content overflows */
    margin: 20px auto; /* Center the table horizontally */
    border-radius: 20px;
}

.custom-table {
    width: 100%; /* Full width of the container */
    border-collapse: collapse; /* Removes space between cells */
    text-align: left;
    font-family: 'Manrope', sans-serif;
}

.custom-table colgroup .category-column {
    width: 90%; /* Increase the width of the Category column */
}

.custom-table colgroup .shares-column {
    width: 25%; /* Adjust width of No. of Shares column */
}

.custom-table colgroup .percent-column {
    width: 25%; /* Adjust width of % of Held Shares column */
}

.custom-table thead th {
    font-size: 20px;
    /* border-top: 1px solid black; */
    background-color: white;
    color: #005659;
    padding: 10px;
    text-align: left;
    font-weight: 400;
    /* border-right: 1px solid black; */
}

.custom-table tbody td {
    font-size: 20px;
    color: #005659;
    padding: 10px; /* Adds spacing inside cells */
    border-top: 1px solid #005659;
    /* border-right: 1px solid #005659; */
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Alternating row color */
}

.custom-table tbody tr:nth-child(even) {
    background-color: #ffffff; /* Alternating row color */
}

.custom-table tbody tr:hover {
    background-color: #f1f1f1; /* Highlight row on hover */
}



.download-btn2 {
    width: 138.24px;
    height: 63px;
    background-color: #1FFFD9;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    cursor: pointer;
    /* display: flex; */
    align-items: center;
}

.download-btn2:hover {
    background-color: #00E6C7; /* Darker shade on hover */
}

.download-icon {
    margin-right: 5px;  /* Adds some space between the icon and the text */
}

.download-icon {
    width: 20px;  /* Adjust image width */
    height: 20px; /* Adjust image height */
    margin-left: 10px;  /* Adds some space between the icon and the text */
}



.footer-rectangle {
    width: 100%; 
    height: 300px; 
    background-color: #005659; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 20px; 
    position: relative; 
    /* margin-top: 40px; */
}

/* Logo */
.logo {
    height: 79.91px; 
    width: 351px; 
    object-fit: contain; 
}

/* Contact Info */
.contact-info {
    font-size: 21.98px; 
    line-height: 35.2px; 
    color: white; 
    margin-right: 20px; 
    text-align: right; 
}










@media (max-width: 576px) {
    .custom-hover {
        padding: 3px 8px; 
        height: 50px;
        padding: 10px 25px !important;
    }
    .custom-hover::after {
        border-radius: 25px; 
    }

    /* menu sec */
    .full-screen-image img {
        width: 100%;  
        object-fit: contain;       

    }
    .nav-container2 {
        width: 100%;         /* Full width for small screens */
        height: auto;        /* Adjust height to fit content */
        padding: 10px;       /* Padding for spacing */
        border-radius: 10px;
    }

    .hover-rectangle2 {
        font-size: 16px !important;   /* Smaller font size */
        padding: 0px 107px !important;
    }

    .nav-fill .nav-item2, .nav-fill > .nav-link2 {
        width: 100%;        /* Full width for each item */
        height: auto;       /* Auto height for collapsed view */
        border-width: 4px;  /* Thinner border for small screens */
        margin-bottom: 10px; /* Spacing between items */
    }

    .nav-container2 {
        display: flex;
        flex-direction: column; /* Stack items vertically on mobile */
        align-items: center;
    }

    .hover-rectangle2::after {
        height: 65px;
        width: calc(100% - 20px);
        top: 50%;
        left: 50%;
    }

    /* Navbar container adjustments */
    .unique-container {
        flex-direction: column;
        padding: 1rem;
        padding-bottom: 20px;
        padding-top: 10px;
    }

    .unique-inner-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .unique-nav {
        flex-direction: column;
        width: 100%;
    }

    .unique-nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .unique-nav-link {
        font-size: 16px;
        padding: 0.8rem 1rem;
        text-align: center;
    }

    .unique-nav-container {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-container3 {
        width: 100%;         /* Full width for small screens */
        height: auto;        /* Adjust height to fit content */
        padding: 10px;       /* Padding for spacing */
        border-radius: 10px;
    }

    .hover-rectangle3 {
        font-size: 16px !important;   /* Smaller font size */
        padding: 0px 107px !important;
    }

    .nav-fill .nav-item3, .nav-fill > .nav-link3 {
        width: 100%;        /* Full width for each item */
        height: auto;       /* Auto height for collapsed view */
        border-width: 4px;  /* Thinner border for small screens */
        margin-bottom: 10px; /* Spacing between items */
    }

    .nav-container3 {
        display: flex;
        flex-direction: column; /* Stack items vertically on mobile */
        align-items: center;
    }

    .hover-rectangle3::after {
        height: 65px;
        width: calc(100% - 20px);
        top: 50%;
        left: 50%;
    }

    .agm-text-container {
        text-align: center; /* Center align text */
        margin-bottom: 10px; /* Add spacing below AGM text */
    }

    .agm-text {
        font-size: 24px; /* Reduce font size */
        padding-left: 0;
    }
    

     /* Table */
     .table-container {
        width: 100%;          /* Full width for small screens */
        overflow-x: auto;     /* Enable horizontal scrolling */
        padding: 10px; 
        padding-top: 10px;       /* Add padding around the table */
        border-radius: 8px;   /* Reduced border radius */
    }

    .custom-table {
        font-size: 14px;       /* Smaller font size for better readability */
        width: 100%;           /* Ensure table spans container */
    }

    .custom-table thead th {
        font-size: 16px;       /* Adjusted font size for headers */
        padding: 8px;          /* Reduced padding for compactness */
    }

    .custom-table tbody td {
        font-size: 14px;       /* Adjusted font size for table cells */
        padding: 6px;          /* Reduced padding */
    }

    .custom-table colgroup .category-column {
        width: 60%;            /* Larger width for the category column */
    }

    .custom-table colgroup .shares-column,
    .custom-table colgroup .percent-column {
        width: 20%;            /* Proportional adjustment for other columns */
    }

       /* Images and Media */
    .full-screen-image img {
        padding-bottom: 15px; /* Reduce bottom padding */
    }

    .menu-section {
        padding: 10px; /* Add padding for smaller screens */
    }

    /* General Padding Adjustments */
    .Padding-container {
        padding-left: 20px;
        padding-bottom: 20px;
    }

    /* footer */

    .footer-rectangle {
        height: auto; 
        flex-direction: column; 
        justify-content: center; 
        padding: 10px;
    }
    
    /* Logo */
    .logo {
        width: 200px; 
        height: auto; 
        margin-bottom: 20px; 
    }
    
    /* Contact Info */
    .contact-info {
        font-size: 18px; 
        line-height: 28px; 
        text-align: center; 
        margin-right: 0; 
    }

}