/* 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);
    border-bottom: 1px solid var(--border-light);
}

.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 .main-header {
    background: var(--color-surface);
    border-bottom-color: var(--color-surface);
}

:root.dark .main-header .header-nav .header-link {
    color: var(--color-secondary);
}
    
   


.header-link {
    margin: 0 18px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.header-link:hover {
    opacity: 0.7;
}

.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;
}



.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: 300px;
    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: 15px;
}

.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 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 15px;
    opacity: 0.9;
}

.scroll-indicator i {
    margin-top: 5px;
    font-size: 18px;
}

/* ------------------------------
   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: 650px;
    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;
    animation: scroll-left 20s linear infinite;
}

/* 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%); }
}




