:root {
    /* Premium Light Theme Palette */
    --primary: #0f172a;
    /* Deep Navy for text */
    --secondary: #fe0000;
    /* Coral Theme */
    --accent: #f59e0b;
    /* Amber/Gold accent */
    --bg-main: #f8fafc;
    /* Light Slate Gray-Blue background */
    --bg-card: #ffffff;
    /* White cards */
    --text-head: #0f172a;
    --text-body: #1e293b;
    /* Daha koyu ve keskin bir metin rengi */
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.7);
    --border: rgba(15, 23, 42, 0.08);
    /* Subtle dark border */
    --theme-blue: #3e478e;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --ease: cubic-bezier(0.85, 0, 0.15, 1);
}

.bg-primary {
    background-color: var(--theme-blue) !important;
}

.text-primary,
.accordion-button:not(.collapsed) {
    color: var(--theme-blue) !important;
}

.btn-primary {
    background-color: var(--theme-blue) !important;
    border-color: var(--theme-blue) !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--theme-blue) !important;
    border-color: var(--theme-blue) !important;
}

.btn-outline-primary:hover {
    background-color: var(--theme-blue) !important;
    color: #fff !important;
}

.bg-onoder {
    background-color: var(--theme-blue) !important;
    color: #ffffff !important;
}

.text-onoder {
    color: var(--theme-blue) !important;
}

.btn-onoder {
    background-color: var(--theme-blue) !important;
    color: #ffffff !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-onoder:hover {
    background-color: #2d346b !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 71, 142, 0.3);
}

.btn-outline-onoder {
    color: var(--theme-blue) !important;
    border: 2px solid var(--theme-blue) !important;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-onoder:hover {
    background-color: var(--theme-blue) !important;
    color: #ffffff !important;
}

/* Utility overrides for consistency */
.text-secondary {
    color: var(--secondary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

/* Custom Scrollbar - Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 14px;
    /* Increased width */
    height: 14px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #fe0000 !important;
    border-radius: 10px;
    border: 3px solid #f1f5f9;
    /* Adds padding look */
}

::-webkit-scrollbar-thumb:hover {
    background: #d1432f !important;
}

/* Firefox Support */
html {
    scrollbar-width: auto;
    /* 'auto' is wider than 'thin' */
    scrollbar-color: #fe0000 #f1f5f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-main);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden !important;
    -webkit-font-smoothing: subpixel-antialiased;
    /* Windows'ta daha keskin görünüm için */
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    /* Harf sınırlarını netleştirir */
    font-weight: 400;
}

a {
    color: #fd0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #cc0000;
    text-decoration: none;
}

/* Background Effects - Light Version */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 15s infinite alternate ease-in-out;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    top: -200px;
    left: -100px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -100px;
    right: -100px;
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(50px, 50px);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-head);
    font-weight: 800;
    letter-spacing: 0;
    /* Negatif harf boşluğu bulanıklığa sebep olabilir, sıfırlandı */
}

.section-padding {
    padding: 80px 0;
}

.page-section {
    padding: 80px 0;
}

/* Top Bar Styling */
.top-bar {
    background: #f8f8f8;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1001;
}

.top-social a {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-right: 18px;
    transition: all 0.3s var(--ease);
    display: inline-block;
}

.top-social a:hover {
    color: var(--secondary);
    transform: translateY(-3px) scale(1.1);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 5px 15px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}

.search-box:hover,
.search-box:focus-within {
    background: #fff;
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.1);
}

.search-box input {
    width: 120px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-head);
    transition: width 0.3s var(--ease);
}

.search-box input:focus {
    width: 180px;
}

.search-box button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    transition: 0.3s;
}

.search-box button:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text-head);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.lang-switcher {
    display: flex;
    gap: 5px;
    /* Butonların birbirine olan mesafesi (5px) */
    align-items: center;
}



.lang-btn:hover {
    background: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Google Translate Widget UI Gizleme */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
iframe.goog-te-banner-frame,
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.goog-te-menu-value {
    display: none !important;
}

/* Sayfa çevrildiğinde Google'ın eklediği üst boşluğu kapatmak için */
.skiptranslate {
    display: none !important;
    height: 0 !important;
}

#google_translate_element {
    position: absolute;
    top: -9999px;
    left: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
}







/* Navbar Style - Sticky Version for Non-overlapping Slider */
.navbar-custom {
    padding: 15px 0;
    transition: var(--ease) all 0.5s;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.breadcrumb {
    font-size: 0.85rem;
    padding: 0;
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f054" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.5;
    padding-right: 15px;
}

.nav-logo {
    max-height: 80px;
    /* Reduced from 55px */
    transition: 0.3s;
}

/* Darken logo when scrolled on light theme */
.navbar-custom.scrolled .nav-logo {
    filter: none;
}

.navbar-custom .nav-link {
    color: var(--text-head) !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0em;
    padding: 8px 8px !important;
    text-transform: uppercase;
    opacity: 0.85;
    transition: all 0.3s var(--ease);
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    border: 1px solid transparent;
    border-radius: 5px;
}

/* Sadece İngilizceye çevrildiğinde menüyü sığdırmak için daraltma */
html.translated-ltr .navbar-custom .nav-link {
    font-size: 0.74rem;
    /* Yazıyı hafifçe daraltır */
    padding: 8px 8px !important;
    /* Araları daraltır */
    letter-spacing: -0.015em;
    /* Harfleri birbirine yaklaştırır */
}


.navbar-custom .dropdown-toggle::after {
    display: none !important;
}



@media (max-width: 1400px) {
    .nav-logo {
        max-height: 55px !important;
    }

}



@media (max-width: 1300px) {
    .nav-logo {
        max-height: 50px !important;
    }

    .navbar-custom .nav-link {
        padding: 8px 2px !important;
        font-size: 0.70rem;
    }
}




@media (min-width: 992px) {
    .navbar-custom .navbar-nav {
        margin-top: 35px;
    }
}


.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active,
.navbar-custom .nav-link.show,
.navbar-custom .nav-link[aria-expanded="true"] {
    opacity: 1;
    color: var(--secondary) !important;
    border-color: var(--secondary);
}

/* Elegant Dropdown Styling */
.navbar-custom .dropdown-menu {
    border: none;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    margin-top: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.4s var(--ease);
    min-width: 250px;
    /* Menülerin çok daralmaması için */
}

/* En sağdaki menülerin sola doğru açılması için */
.navbar-custom .dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
}


@media (min-width: 992px) {
    .navbar-custom .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile Navbar Adjustments */
@media (max-width: 991.98px) {
    .navbar-custom {
        padding: 10px 0;
    }

    .nav-logo {
        max-height: 80px;
    }

    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border);
    }

    .navbar-custom .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 10px;
        margin: 5px 0 15px;
        padding: 5px;
    }

    .navbar-custom .dropdown-menu.show {
        display: block;
    }

    .navbar-custom .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link.active {
        background: rgba(254, 0, 0, 0.05);
    }

    .navbar-custom .dropdown-item {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .navbar-custom .navbar-nav {
        margin-top: 0 !important;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        width: 1.25em;
        height: 1.25em;
    }
}

.navbar-custom .dropdown-item {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    color: var(--text-body);
    border-radius: 5px;
    transition: 0.3s;
    text-transform: none;
    /* Keep natural casing */
    border: 1px solid transparent;
}

.navbar-custom .dropdown-item:hover {
    background: transparent;
    color: var(--secondary);
    padding-left: 25px;
    border-color: var(--secondary);
}

.navbar-custom .dropdown-item.active {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary) !important;
    padding-left: 25px;
    font-weight: 600;
}

.navbar-custom .dropdown-header {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: 800;
    color: #94a3b8;
    padding: 15px 20px 5px;
}

.btn-outline-cyan {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.93rem;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline-cyan:hover {
    background: var(--secondary);
    color: #fff;
}

/* Full Width Slider Section */
.main-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-main);
}

.main-slider .carousel-item img {
    width: 100%;
    height: auto;
    /* Natural height based on image */
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: 0.3s;
}

.main-slider:hover .carousel-control-prev,
.main-slider:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background-size: 50%;
}

.btn-cyan {
    background: var(--secondary);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 18px 40px;
    border-radius: 4px;
    transition: 0.3s;
    border: none;
}

.btn-cyan:hover {
    background: #ff6347;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 0, 0, 0.2);
}

.btn-outline-dark {
    border: 2px solid var(--primary);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.3s;
    color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: #fff;
}

/* News Section - Light Theme */
.news-modern {
    background: #fff;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2rem);
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 6px solid var(--secondary);
}

.section-title span {
    color: var(--secondary);
}

.btn-link-modern {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-link-modern:hover {
    gap: 15px;
}

/* News Cards - Light Theme */
.news-tech-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    /* Faster and more immediate */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.news-tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--secondary);
}

.news-tech-img {
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 25px;
}

.news-tech-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tech-body h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-head);
}

.news-tech-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 25px;
}

.read-more-tech {
    color: var(--secondary);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bento Section - Parliament Blue & Animated Background */
.info-bento {
    background: #050a1f;
    position: relative;
    overflow: hidden;
    padding: 80px 0 !important;
    /* Reduced section padding */
}

.bento-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bento-blob {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 84, 61, 0.4), transparent 70%);
    filter: blur(120px);
    border-radius: 50%;
    animation: bentoFloat 8s infinite alternate ease-in-out;
    /* Speeded up from 20s */
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.8;
}

.bento-blob-1 {
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(230, 84, 61, 0.5), transparent 70%);
}

.bento-blob-2 {
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.6), transparent 70%);
    animation-duration: 9s;
    animation-delay: -3s;
}

.bento-blob-3 {
    top: 30%;
    left: 40%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(254, 0, 0, 0.35), transparent 70%);
    animation-duration: 12s;
    /* Speeded up from 30s */
    animation-delay: -4s;
}

@keyframes bentoFloat {
    0% {
        transform: translate(-20%, -20%) scale(1);
    }

    33% {
        transform: translate(30%, 40%) scale(1.2);
    }

    66% {
        transform: translate(-40%, 20%) scale(0.8);
    }

    100% {
        transform: translate(20%, -30%) scale(1.1);
    }
}

.info-bento .section-title {
    color: #fff;
    position: relative;
    z-index: 5;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    /* Reduced from 340px */
    gap: 20px;
    position: relative;
    z-index: 5;
}

.bento-item {
    background: rgba(15, 23, 42, 0.75);
    border-radius: 8px;
    /* Slightly smaller radius */
    padding: 30px;
    /* Reduced from 40px */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    /* Faster and more responsive */
    will-change: transform, opacity;
    z-index: 1;
}

/* Dark navy gradient overlay for text readability */
.bento-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    transition: 0.4s ease;
}

.bento-item:hover::after {
    height: 85%;
    background: linear-gradient(to top, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.5) 50%, transparent 100%);
}

.bento-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border-color: var(--secondary);
    z-index: 10;
}

.bento-item h3 {
    font-size: 1.5rem;
    /* Reduced from 1.8rem */
    margin-bottom: 8px;
    position: relative;
    z-index: 5;
    color: #fff;
    letter-spacing: -0.02em;
}

.bento-item p {
    position: relative;
    z-index: 5;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 90%;
}

.bento-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    /* Made clear from the start */
    transition: all 0.4s ease-out;
    pointer-events: none;
}

.bento-item:hover img {
    opacity: 1;
    /* Fully net on hover */
    transform: scale(1.05);
}

.bento-item.bento-coral {
    background: linear-gradient(135deg, rgba(230, 84, 61, 0.95), rgba(230, 84, 61, 0.8));
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-item.bento-coral img {
    opacity: 0.8;
    /* Keep coral items clear too */
}

.bento-item.bento-coral:hover img {
    opacity: 0.6;
}

.bento-main {
    grid-column: span 2;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.bento-tall {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

/* Footer */
.main-footer {
    background-color: #0f172a;
    color: white;
    padding: 80px 0 80px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.footer-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    /* Sharper glow */
    animation: footerFloat 7s infinite alternate ease-in-out;
    opacity: 0.95;
}

.footer-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 84, 61, 0.5) 0%, transparent 75%);
    top: -150px;
    right: 5%;
}

.footer-blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.45) 0%, transparent 75%);
    bottom: 100px;
    left: -10%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.footer-blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(230, 84, 61, 0.35) 0%, transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: footerPulse 6s infinite alternate ease-in-out;
}

@keyframes footerFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(160px, 140px) scale(1.4) rotate(45deg);
    }
}

@keyframes footerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.65);
        opacity: 0.35;
    }

    100% {
        transform: translate(-35%, -35%) scale(1.35);
        opacity: 0.95;
    }
}

.container-footer {
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.footer-logo img {
    height: 80px;
    margin: 0;
}

.footer-logo h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-links h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li i {
    color: var(--secondary);
}

.footer-follow-text {
    font-family: 'Satisfy', cursive;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-left: 15px;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    /* More subtle glass basis */
    backdrop-filter: blur(5px);
    /* Added glass blur */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 10px 20px rgba(230, 84, 61, 0.3);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Inner Page Specific - Light Theme */
.inner-hero {
    padding: 180px 0 100px;
    background: var(--bg-main);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

/* Premium Calendar Popover Styles */
.premium-calendar-popover {
    border: none !important;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15) !important;
    border-radius: 16px !important;
    overflow: hidden;
    max-width: 300px !important;
}

.premium-calendar-popover .popover-header {
    background: #f8fafc !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 15px 20px !important;
}

.popover-title-custom {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.3;
}

.premium-calendar-popover .popover-body {
    padding: 18px 20px !important;
    color: var(--text-body) !important;
}

.calendar-popover-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popover-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
}

.popover-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-body);
}

.popover-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    display: flex;
    align-items: center;
}

/* Event Calendar Section - Light */
.calendar-container {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fc-toolbar-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--primary);
}

.fc-button-group {
    gap: 8px;
    /* Space between buttons */
}

.fc-button-primary {
    background-color: var(--secondary) !important;
    /* Use coral color */
    border-color: var(--secondary) !important;
    border-radius: 5px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    transition: 0.3s !important;
    border: none !important;
}

.fc-button-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 84, 61, 0.3);
}

.fc-button-primary:focus {
    box-shadow: none !important;
}

.fc-today-button {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.fc-daygrid-day-number {
    color: var(--text-head) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 10px !important;
}

.fc-col-header-cell-cushion {
    color: var(--secondary) !important;
    /* Use coral for day headers */
    text-transform: uppercase;
    font-size: 0.75rem !important;
    letter-spacing: 1px;
    text-decoration: none !important;
    font-weight: 800 !important;
}

.fc-day-today {
    background-color: rgba(230, 84, 61, 0.05) !important;
    /* Subtle coral tint for today */
}

.old-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.old-news-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.old-news-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(230, 84, 61, 0.15);
    /* More prominent coral shadow */
}

.old-news-date-badge {
    background: linear-gradient(135deg, var(--secondary), #ff7b6b);
    /* Use coral gradient */
    color: white;
    min-width: 65px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 84, 61, 0.2);
}

.old-news-date-badge .day {
    font-size: 1.25rem;
    font-weight: 800;
}

.old-news-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

.old-news-date-badge .year {
    font-size: 0.6rem;
    opacity: 0.6;
}

.old-news-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-head);
    margin-bottom: 5px;
}

.old-news-content p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 60px;
    position: relative;
    z-index: 20;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
}

.message-content h1 {
    color: var(--text-head);
    border-left: 6px solid var(--secondary);
    padding-left: 20px;
    margin-bottom: 40px;
    font-size: 2rem;
}

.message-content p {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .hero-split {
        flex-direction: column-reverse;
    }

    .hero-visual-side {
        width: 100%;
        height: 50vh;
        position: relative;
        clip-path: none;
    }

    .hero-text-side {
        width: 100%;
        padding: 60px 20px;
        background: #fff;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-wide,
    .bento-main {
        grid-column: span 1;
    }
}

/* --- Premium Login Slide-in (Right) --- */
.modal#loginModal .modal-dialog {
    margin: 0;
    margin-left: auto;
    height: 100%;
    max-width: 500px;
    width: 100%;
}

@media (max-width: 576px) {
    .modal#loginModal .modal-dialog {
        max-width: 100%;
    }
}

.login-modal-content {
    background: #ffffff;
    border: none;
    border-radius: 0;
    height: 100%;
}

.login-card {
    background: #ffffff;
    height: 100%;
    padding: 80px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-close {
    position: absolute;
    top: 40px;
    right: 40px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 50%;
    z-index: 10;
    transition: 0.4s var(--ease);
}

.login-close:hover {
    background: #f1f5f9;
    transform: rotate(90deg) scale(1.1);
}

.modal-backdrop.show {
    opacity: 0.4;
    backdrop-filter: blur(8px);
}

.modal#loginModal.fade .modal-dialog {
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.32, 1, 0.2, 1);
}

.modal#loginModal.show .modal-dialog {
    transform: translateX(0);
}

.login-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-head);
    letter-spacing: -0.03em;
    margin-bottom: 15px;
}

.login-logo {
    max-height: 80px;
    margin-bottom: 2.5rem;
    object-fit: contain;
}

.login-form .form-floating>.form-control {
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    padding-left: 20px;
}

.login-form .btn-cyan {
    border-radius: 15px;
    transition: 0.4s var(--ease);
}

.login-form .btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 0, 0, 0.3);
}


/* Slide animation handled in .modal-dialog */

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 20px rgba(254, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.3);
    color: white;
}

/* Board of Directors Styles */
.board-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

.board-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.board-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.board-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    width: 200px;
    text-align: center;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.board-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #f1f5f9;
}

.board-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-head);
    font-weight: 700;
}

.board-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 600;
}

.board-title-line {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    position: relative;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.board-title-line span {
    background: var(--bg-main);
    padding: 0 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
}

@media (max-width: 992px) {
    .board-card {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .board-row {
        gap: 20px;
    }

    .board-card {
        width: 160px;
    }
}