body, html {
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
}

:root {
    --main-color: #AD002D;
    --second-color: #626262;
}

@font-face {
    font-family: "Nll";
    src: url('../fonts/Nll.otf');
}

.text-secondary {
    color: var(--second-color) !important;
}

.text-primary {
    color: var(--main-color) !important;
}

.btn-primary {
    background-color: var(--main-color) !important;
    border: 0 !important;
}

.display-15 {
    font-size: 2.4rem;
}

#header{
    border-bottom: 1px solid #7d878a;
    position: relative;
    z-index: 100;
    transition: all 0.5s ease 0s;
    color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

#header:not(.scrolled) .logo-fixed{
    display: none;
}

#header.scrolled{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    transition: all 0.2s ease 0s;
    animation: .95s ease 0s normal forwards 1 running headerAnimate;
    color: black;
    border: 0;
}

#header.scrolled .logo-white{
    display: none;
}

body.scrolled{
    padding-top: 85px;
}

@keyframes headerAnimate {
    0% {
        margin-top: -150px
    }

    100% {
        margin-top: -1px
    }
}
/* General Navbar Styling */
.navbar {
    height: 65px;
}

.navbar .logo img {
    width: 200px;
}

.navbar-nav > li {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav > li > a, .navbar-nav > li > span {
    display: block;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
}

.language-switcher > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-switcher .dropdown {
    left: auto;
    right: 0;
    min-width: 120px;
}

/* User Menu Icon Styling */
.user-menu-item {
    position: relative;
}

.user-icon-btn {
    background: transparent;
    border: 2px solid currentColor;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: inherit;
    font-size: 16px;
}

.user-icon-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}

#header.scrolled .user-icon-btn {
    border-color: #495057;
    color: #495057;
}

#header.scrolled .user-icon-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    padding: 8px 0;
    z-index: 1000;
}

.user-dropdown.show {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown li {
    list-style: none;
}

.user-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    text-transform: none;
}

.user-dropdown li a:hover {
    background: #f8f9fa;
    color: var(--main-color);
}

.user-dropdown li a i {
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.user-dropdown .user-info {
    padding: 12px 20px;
}

.user-dropdown .user-name {
    font-weight: 600;
    color: #212529;
    font-size: 14px;
    margin-bottom: 4px;
}

.user-dropdown .user-email {
    font-size: 12px;
    color: #6c757d;
}

.user-dropdown .divider {
    height: 1px;
    background: #e9ecef;
    margin: 8px 0;
}

.navbar-nav > li > a:hover, .navbar-nav > li > span:hover {
    color: var(--main-color);
}

/* Dropdown Menu Styling */
@media screen and (min-width: 768px) {
    .navbar-nav > li:hover > .dropdown {
        display: block;
    }
}

/* Dropdown Menu Styling */
.navbar-nav > li > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    border-radius: 5px;
    color: black;
    list-style: none;
    padding: 10px 5px;
    min-width: 200px;
   
    
}

.navbar-nav > li > .dropdown > li > a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 12px;
}

.navbar-nav > li > .dropdown > li > a:hover {
    color: var(--main-color);
}

#navbar > li > .dropdown > li > a:hover {
    color: var(--main-color);
}

#navbar li .dropdown {
    white-space: nowrap;
}


#navbarmobile .dropdown {
    display: none;
}

#navbarmobile .dropdown.open {
    display: block;
}

#navbarmobile .chevron-mobile {
    float: right;
    margin-right: 10px;
    transition: transform 0.35s ease;
}



.navbar-nav li a i {
    font-size: 12px;
}

.page-hero-section{
    margin-top: -86px;
    padding: 190px 0 100px;
    width: 100%;
    background-image: url('/src/images/slider-hero-home-02.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.page-hero-section:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #142F43;
    opacity: 0.7;
}

.page-hero-section h1{
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    position: relative;
    max-width: 100%;
}

.page-hero-section h1:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 5px;
    width: 100px;
    background: var(--main-color);
    border-radius: 50px;
}

.btn-alliances{
    background-color: var(--main-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.btn-alliances:hover{
    color: #fff;
    background-color: #690303;
}

.btn-sites {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 14px !important;
    color: #fff !important;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    padding: 15px 32px !important;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
    background-color: var(--main-color);
    letter-spacing: 1.6px;
    border: none;
}

.btn-sites:hover {
    color: #fff;
}

.btn-sites:hover:before {
    top: -40%;
}

.btn-sites:before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    background-color: var(--second-color);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.page-section{
    padding: 50px 0;
}

#our-values{
    margin-bottom: -100px;
}

.p-heading {
    font-weight: 600;
    font-size: 24px;
    position: relative;
    margin-bottom: 35px;
}

.p-heading:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 5px;
    width: 100px;
    background: var(--main-color);
    border-radius: 50px;
}

#toggle-nav {
    display: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

#toggle-nav:hover {
    background-color: var(--main-color);
    color: white;
    transform: scale(1.05);
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.show {
    display: block;
    opacity: 1;
}

.page-heading{
    color: var(--main-color);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 992px) {
    #toggle-nav {
        display: block;
        transition: all 0.3s ease;
    }
    
    #toggle-nav:hover {
        transform: scale(1.05);
    }
    
    #navbarmobile{
        position: fixed;
        right: 0;
        top: 84px;
        width: 40%;
        height: calc(100vh - 84px);
        background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }
    #navbarmobile:not(.show){
        display: none !important;
    }
}

@media screen and (max-width: 992px) {
    #navbarmobile{
        width: 70%;
    }
    #navbarmobile .dropdown {
        position: static !important;
    }
    #navbarmobile .dropdown.open {
        display: block !important;
    }
    .breadcrumb {
        margin-top: 30px;
    }
    .page-heading, .p-heading{      
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .navbar .logo img {
        width: 150px;
    }
    #navbarmobile{
        width: 100% !important;
    }
}

#navbarmobile > li > span > .chevron-mobile {
    margin-left: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    opacity: 0.7;
}

#navbarmobile > li > span:hover > .chevron-mobile {
    opacity: 1;
}

#navbarmobile > li > span > .chevron-mobile.open {
    transform: rotate(-90deg);
    color: var(--main-color);
    opacity: 1;
}

#navbarmobile {
    position: fixed;
    right: 0;
    top: 84px;
    width: 70%;
    height: calc(100vh - 84px);
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    padding: 0;
    border-left: 1px solid #e0e0e0;
    display: none;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

/* Custom scrollbar for mobile nav */
#navbarmobile::-webkit-scrollbar {
    width: 6px;
}

#navbarmobile::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#navbarmobile::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 3px;
}

#navbarmobile::-webkit-scrollbar-thumb:hover {
    background: #690303;
}

#navbarmobile.show {
    display: block;
    animation: slideInFromRight 0.3s ease;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

#navbarmobile > li {
    padding: 0;
    display: block;
    border-bottom: 1px solid #e8eaed;
    position: relative;
    transition: all 0.3s ease;
    margin: 0;
}

#navbarmobile > li:last-child {
    border-bottom: none;
}

#navbarmobile > li:hover {
    background-color: #f1f3f5;
    border-left: 4px solid var(--main-color);
    padding-left: 0;
}

#navbarmobile > li > span {
    text-shadow: none !important;
    color: #2c3e50 !important;
    font-size: 16px !important;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 20px 24px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

#navbarmobile > li > span:hover {
    color: var(--main-color) !important;
    padding-left: 28px;
}

#navbarmobile > li > span i.fa-user {
    font-size: 16px;
    margin-right: 12px;
}

#navbarmobile .dropdown {
    display: none;
    padding: 8px 0;
    position: relative;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

#navbarmobile .dropdown.open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

#navbarmobile .dropdown li {
    border-bottom: none;
}

#navbarmobile .dropdown li a {
    padding: 14px 24px 14px 48px;
    color: #5a6c7d;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.2px;
}

#navbarmobile .dropdown li a:hover {
    color: var(--main-color);
    background-color: #e9ecef;
    padding-left: 52px;
    font-weight: 500;
}

#navbarmobile .dropdown li a i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

#navbarmobile .chevron-mobile {
    float: right;
    margin-right: 10px;
    transition: transform 0.35s ease;
}

#navbarmobile .chevron-mobile.open {
    transform: rotate(-90deg);
}

/* User menu styling for mobile */
#navbarmobile .user-menu-item-mobile {
    background-color: #fff;
    border-top: 2px solid #e8eaed;
    margin-top: auto;
}

#navbarmobile .user-menu-item-mobile > span {
    background-color: #f8f9fa;
    font-weight: 600;
}

#navbarmobile .user-menu-item-mobile .user-info {
    padding: 16px 24px 16px 48px;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 8px;
}

#navbarmobile .user-menu-item-mobile .user-name {
    font-weight: 600;
    color: #212529;
    font-size: 15px;
    margin-bottom: 4px;
}

#navbarmobile .user-menu-item-mobile .user-email {
    font-size: 13px;
    color: #6c757d;
    font-weight: 400;
}


.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb a{
    color: #fff !important;
    padding: 0 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.breadcrumb ul li:after {
    content: "";
    width: 9px;
    height: 9px;
    background-color: var(--main-color);
    margin: 0px 1px 0 2px;
    display: inline-block;
    border-radius: 2px;
}

.breadcrumb ul li:last-child a {
    color: var(--main-color) !important;
}

.breadcrumb ul li:last-child:after {
    content: none
}

.read-more{
    color: #575a7b;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
}



.president-name {
    font-size: 16px;
    color: var(--second-color);
}

.president-name span{
    font-weight: 600;
    color: var(--main-color);
}

.history-image-hover {
    transition: all .3s ease-out;
    position: relative;
}

.history-image-hover:hover{
    transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
}

.history-image {
    width: 100%;
    border-radius: 10px;
   
    object-fit: cover;
    object-position: top;
}

.couvernance-image-hover {
    transition: all .3s ease-out;
    position: relative;
}

.couvernance-image-hover:hover{
    transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
}

.couvernance-image {
    width: 200px;
    border-radius: 10px;
    height: 450px;
    object-fit: cover;
    object-position: top;
}

footer{
    background-color: var(--main-color);
}
.footer-logo{
    width: 100%;
    max-width: 200px;
}
.footer-logo img{
    width: 100%;
}
.footer-bar{
    padding: 20px 0;
    border-top: 1px solid #ffffff33;
    margin-top: 50px;
}
.footer-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}
.footer-list {
    padding: 0;
    list-style: none;
    margin-top: 15px;
}
.footer-list li {
    margin-bottom: 10px;
}
.footer-list a {
    color: #fff;
    font-size: 15px;
}
.footer-menu {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}
.footer-menu li {
    display: inline-block;
}
.footer-menu li a {
    color: #ffffff;
}
.footer-menu li:not(.last):after {
    content: '|';
    margin: 0 15px;
    top: 0;
    margin-top: -2px;
    color: rgba(255, 255, 255, 0.5);
    height: auto;
    width: auto;
}

