/* GLOBAL FONT */
body {
    font-family: var(--font-primary);
}

.page-content {
    min-height: calc(100vh - 160px);
    background-color: var(--color-surface);
}


.page-content-dark {
    /* padding-top: 80px; */
    min-height: calc(100vh - 160px);
    /* Adjust based on header and footer height */
    background-color: var(--color-black);
}

.main-header {
    width: 100%;
    padding: var(--space-md) 0;
    position: fixed;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(6px);
    /* background: var(--color-primary-light); */
    /* background: rgba(0, 0, 0, 0.25);     */
    background: var(--color-black);

    transition: background-color 0.3s ease;
}


.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text);
}

.site-logo,
.site-logo-dark {
    height: 35px;
}

/* logo switching */
.site-logo-dark {
    display: none;
}

:root.dark .site-logo {
    display: none;
}

:root.dark .site-logo-dark {
    display: block;
}


:root.dark .header-light {
    background: var(--color-surface);
}

:root.dark .header-light:hover {
    background-color: #ccc;
}




/* :root.dark .main-header .header-nav .header-link {
    color: var(--color-secondary);
} */




.header-link {
    margin: 0 10px;
    /* color: var(--color-surface-hover-light); */
    /* color: var(--color-white); */
    color: var(--color-secondary);
    opacity: 0.8;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 8px;
    text-decoration: none;
    border-radius: 5px;
}


.header-link.active {
    /* color: var(--color-primary); */
    font-weight: bold;
}

.header-light {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-black);
}

.login-btn {
    font-size: 11px !important;
    background: var(--color-white);
    padding: 8px 18px !important;
    border: 1px solid var(--color-border) !important;
}

.donate-now-btn {
    font-size: 11px !important;
    background: var(--color-secondary);
    padding: 8px 18px !important;
    border: 1px solid var(--color-secondary) !important;
    color: var(--color-black) !important;
}

.donate-now-btn:hover {
    opacity: 0.8;
}

.login-btn-submit {
    font-size: 11px !important;
    background: var(--color-secondary);
    padding: 8px 18px !important;
    color: var(--color-black);
    font-weight: 600;
    border: 1px solid var(--color-secondary) !important;
}

.login-btn-submit:hover {
    background: var(--color-secondary-dark);
    color: var(--color-black);
}

:root.dark .login-btn {
    backdrop-filter: blur(6px);
    background: transparent;
}


:root.dark .login-btn-submit {
    backdrop-filter: blur(6px);
    background: var(--color-secondary);
    font-weight: 600;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text);
}


.header-light .header-link {
    margin: 0 10px;
    /* color: var(--color-surface-hover-light); */
    color: #888;
    /* color: var(--color-secondary); */
    opacity: 0.8;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 8px;
    text-decoration: none;
    border-radius: 5px;
}

.header-light .header-link.active {
    color: var(--color-primary);
    font-weight: bold;
}


:root.dark .header-link {
    color: var(--color-secondary);
}

:root.dark .header-light .header-link.active {
    color: var(--color-secondary-dark);
    font-weight: bold;
}



.header-link:hover {
    opacity: 1;
    color: var(--color-black);
    background-color: var(--color-surface-hover-light);
}


.header-nav .header-link.dropdown-toggle {
    background-color: transparent;
    border: none;
    outline: none;
}

.header-nav .header-link.dropdown-toggle:hover {
    opacity: 1;    
    background-color: var(--color-surface-hover-light);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    min-width: 120px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 1000;
    padding: 5px;

    transform: translateY(10px);
    transition: all 1.3s ease;
}

.dropdown-menu a {
    padding: 10px 16px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
}

.dropdown-menu a:hover {
    background: var(--color-surface-hover-light);
}

/* Show dropdown */
.dropdown-menu.show {
    display: flex;
    transform: translateY(0);
}



:root.dark .header-link:hover {
    background-color: #333;
}


/* .main-header:hover {    
    background-color: #ccc; 
} */

/* .main-header:hover .header-link{    
    color: var(--color-black);
} */


/* .header-link:hover{
    color: var(--color-black);
    background-color: #e8e8e8;
} */
.header-right {
    display: flex;
    align-items: center;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.theme-toggle-btn:hover {
    background: var(--color-border);
}

:root.dark .theme-toggle-btn {
    background: #333;
    color: #fff;
}

.theme-toggle-btn i {
    font-size: 18px;
    pointer-events: none;
}



.language-dropdown {
    position: relative;
}

.language-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    right: 0;
    background: var(--color-surface);
    border-radius: 10px;
    padding: 6px 0;
    min-width: 130px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
}


.language-dropdown .gt_float_switcher {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
}

.language-dropdown .gt_float_switcher a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 14px !important;
    color: #000;
    border-radius: 6px;
}

.language-dropdown .gt_float_switcher a:hover {
    background: #f2f2f2;
}

.language-dropdown .gt_float_switcher img {
    width: 20px !important;
    height: 14px !important;
    object-fit: cover;
}

.gt_float_switcher .gt-selected {
    padding: 0 !important;
}




#gt_float_wrapper{
    position: unset !important;
    width: 100% !important;
    background: var(--color-surface) !important;
}


.gt_float_switcher .gt_options a{
    color: var(--color-text) !important;
}

.gt_float_switcher .gt_options a:hover{
    background: var(--color-surface-hover-light) !important;    
}

.gt_float_switcher .gt-selected .gt-current-lang{
    padding: 0 15px !important;
    color: var(--color-text) !important;
    font-size: 16px !important;
    background: var(--color-surface) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}



.mobile-language {
    position: relative;
    cursor: pointer;
}

.mobile-language-dropdown {
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    display: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.mobile-language:hover .mobile-language-dropdown {
    display: block;
}

.mobile-language.open .mobile-language-dropdown {
    display: block;
}


/* GTranslate clean */
.mobile-language .gt_float_switcher {
    background: transparent !important;
    box-shadow: none !important;
}

.mobile-language .gt_float_switcher a {
    padding: 10px 14px !important;
    font-size: 14px;
}







/* 
.login-btn {
    background: var(--btn-login-bg);
    color: var(--btn-login-text);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-lg);
    font-size: 14px;
    cursor: pointer;
    margin-right: var(--space-md);
} */

.submit-btn {
    background: var(--btn-submit-bg);
    color: var(--btn-submit-text);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: bold;
    text-decoration: none;
}

.submit-btn:hover {
    opacity: 0.85;
}


/* footer style  start*/

.main-footer {
    background: var(--color-primary-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

/* Logo */
.footer-logo {
    height: 42px;
    margin-bottom: 15px;
}

/* Description */
.footer-desc {
    max-width: 100% !important;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-social a {
    color: white;
    margin-right: 12px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}

/* Subscribe */
.footer-subscribe h3,
.footer-contact h3 {
    margin-bottom: 10px;
}

.footer-input {
    width: 100%;
    padding: 12px;
    background: #283C5A;
    border: 1px solid #3A4F6A;
    border-radius: 6px;
    color: white;
    margin-top: 10px;
}

.footer-btn {
    background: var(--btn-submit-bg);
    color: var(--btn-submit-text);
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    margin-top: 12px;
    cursor: pointer;
}

.footer-btn:hover {
    opacity: 0.85;
}

/* Divider line */
.footer-line {
    width: 90%;
    margin: 25px auto;
    border-color: rgba(255, 255, 255, 0.25);
}

/* Bottom bar */
.footer-bottom {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: white;
    margin-left: 20px;
}

/* footer style end */


/* -----------------------
   HERO BANNER SECTION
-------------------------*/

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 10px);
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 2%;
    z-index: 10;
    color: white;
    max-width: 550px;
    transform: translateY(-50%);
}

.yellow-line {
    width: 80px;
    height: 5px;
    background: #F9B000;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-block-end: .9rem;
    margin-block-start: 0;
}

.hero-btn {
    display: inline-block;
    background: #F9B000;
    color: #000;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 17px;
}

.hero-btn i {
    margin-left: 6px;
}

/* Scroll indicator */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    color: white;
    text-align: center;
    font-size: 15px;
    opacity: 0.9;
}

.scroll-indicator i {
    margin-top: 5px;
    font-size: 18px;
}

.animate-jump {
    animation: jump 2s ease-in-out infinite;
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* ------------------------------
   Webinar Section
------------------------------ */

.webinar-section {
    background: transparent;
}

/* Section Title */
.section-title {
    color: var(--color-text);
    font-weight: 500;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 15px;
}

/* Webinar Cards */
.webinar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 16px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: 0.25s ease;
}

:root.dark .webinar-card {
    background: #111;
    border-color: #222;
}

.webinar-card:hover {
    transform: translateY(-3px);
}

/* Card Left Section */
.webinar-left {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.webinar-icon {
    font-size: 28px;
    color: var(--color-primary);
    margin-top: 4px;
}

.webinar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 3px;
}

.webinar-meta {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Register Button */
.webinar-btn {
    font-size: 14px;
    padding: 6px 16px;
}

/* ------------------------------
   INFO CARDS (Right Column)
------------------------------ */

.webinar-info-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 24px;

    transition: 0.25s ease;
}

:root.dark .webinar-info-card {
    background: #111;
    border-color: #222;
}

.webinar-info-card:hover {
    transform: translateY(-4px);
}

.info-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
}

.info-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 6px 0 18px 0;
}

/* ------------------------------
   PARTNERS SECTION
------------------------------ */

.partners-section {
    background: #071a69;
    /* adjust for your theme */
    text-align: center;
}

:root.dark .partners-section {
    background: #041040;
}

.partners-title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.partners-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 1100px;
    margin: 10px auto 30px;
    font-size: 15px;
}

/* ------------------------------
   SLIDER WRAPPER
------------------------------ */
.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-track-wrapper {
    overflow: hidden;
    /* Ensures slider stays inside container */
}

/* Infinite sliding track */
.partners-track {
    display: flex;
    gap: 30px;
}

/* Partner card appearance */
.partner-card {
    min-width: 250px;
    height: 120px;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.partner-card img {
    /* max-height: 70px; */
    object-fit: contain;
}

/* ------------------------------
   Slide Animation
------------------------------ */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* language css */

.language-dropdown {
    position: relative;
}

.language-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    right: 0;
    background: var(--color-surface);
    border-radius: 10px;
    padding: 6px 0;
    min-width: 130px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
}

.language-dropdown .gt_float_switcher {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
}

.language-dropdown .gt_float_switcher a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 14px !important;
    color: #000;
    border-radius: 6px;
}

.language-dropdown .gt_float_switcher a:hover {
    background: #f2f2f2;
}

.language-dropdown .gt_float_switcher img {
    width: 20px !important;
    height: 14px !important;
    object-fit: cover;
}

.gt_float_switcher .gt-selected {
    padding: 0 !important;
}

#gt_float_wrapper{
    position: unset !important;
    width: 100% !important;
    background: var(--color-surface) !important;
}

.gt_float_switcher .gt_options a{
    color: var(--color-text) !important;
}

.gt_float_switcher .gt_options a:hover{
    background: var(--color-surface-hover-light) !important;    
}

.gt_float_switcher .gt-selected .gt-current-lang{
    padding: 0 15px !important;
    color: var(--color-text) !important;
    font-size: 16px !important;
    background: var(--color-surface) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.mobile-language {
    position: relative;
    cursor: pointer;
}

.mobile-language-dropdown {
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    display: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.mobile-language:hover .mobile-language-dropdown {
    display: block;
}

.mobile-language.open .mobile-language-dropdown {
    display: block;
}

/* GTranslate clean */
.mobile-language .gt_float_switcher {
    background: transparent !important;
    box-shadow: none !important;
}

.mobile-language .gt_float_switcher a {
    padding: 10px 14px !important;
    font-size: 14px;
}

.footer-logos {
    display: flex;
    align-items: center;  
    gap: 0px; 
    flex-wrap: nowrap;
}

.footer-logos img {
    max-height: 100px;  
    width: auto;
    width: 150px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.footer-about{
    flex:1;
    min-width:400px;
}

.footer-right{
    flex:1;
    min-width:300px;
    display:flex;
    flex-direction:column;
    gap:20px;
}
.footer-contact p{
    margin-bottom:0rem !important;
}
.footer-subscribe p{
    margin-bottom:0rem !important;
}

/* Mobile responsive */
@media(max-width:768px){

    .footer-container{
        flex-direction:column;
    }

    .footer-right{
        gap:30px;
    }

}

/* language css */
.language-dropdown {
    position: relative;
}

.language-dropdown .dropdown-menu {
    padding: 6px 10px;
    min-width: 120px;
}

.language-dropdown .gt_float_switcher {
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.language-dropdown .gt_float_switcher a {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding: 6px 8px !important;
}

.language-dropdown .gt_float_switcher img {
    width: 20px !important;
    height: auto !important;
}

.gt_float_switcher .gt-selected {
    padding: 0 !important;
}

.language-dropdown{
    display:inline-block;
}

.gtranslate_wrapper{
    background:transparent !important;
}

.gtranslate_wrapper select{
    background:transparent;
    border:none;
    color:#fff;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    padding:4px 6px;
}

.gtranslate_wrapper img{
    margin-right:6px;
}

.gt_float_switcher .gt_options {
    top: calc(100% + 5px) !important;
    bottom: auto !important;
    transform: none !important;
}

.gt_float_switcher {
    position: relative !important;
}

.gt_float_switcher .gt_options a {
    left: 0 !important;
}

.gt_float_switcher .gt_options[style] {
    top: 100% !important;
    bottom: auto !important;
    transform: none !important;
}
.gt_float_switcher.gt-bottom .gt_options {
    top: 100% !important;
    bottom: auto !important;
}
/* language css end */