﻿
/* ========== CSS VARIABLES ========== */
:root {
    --primary-color: #d79a2a;
    --primary-dark: #f7931e;
    --secondary-color: #0d463f;
    --secondary-dark: #041d1a;
    --accent-color: #f7931e;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    /*--shadow: 0 10px 40px rgba(0,0,0,0.08);*/
    --transition: all 0.3s ease;
    --border-color: #e0e0e0;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --sidebar-width: 280px;
}

/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    background: var(--white);
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========== TYPOGRAPHY ENHANCEMENTS ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.btn-transparent 
{
    background-color: transparent;
    padding: 10px 20px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 5px;
    cursor:pointer;
}
.btn-transparent:hover
{
    background-color: var(--primary-color);
    transition: all 0.3s;
    transform: translateY(-2px);
    border-color: White;
}
        
.btn-primary-custom {
    background-color: #ffd700;
    color: #0a3d62;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}
        
.btn-primary-custom:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Register Button */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}
        
.btn:hover {
    background-color: var(--secondary-color);
    color: white;
}
        
/* Social Links */
.social-links {
    padding: 20px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
        
.social-links .list-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
}
        
.social-links .list-wrap li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}
        
.social-links .list-wrap li a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/*============================
        Header Top Bar  
=============================*/
.header-top
{
    /* background: transparent; var(--secondary-color); */
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    z-index: 999;
   
    /*padding: 8px 0px;*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
}


.header-top .container
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact
{
    display: flex;
    gap: 30px;
}

.header-contact span
{
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social
{
    display: flex;
    gap: 15px;
}

.header-social a
{
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.header-social a:hover
{
    background: var(--primary-color);
    transform: translateY(-2px);
}


/*============================
        Main Header - RTL  
=============================*/
.header-height {
    position: relative;
}
        
.header__area {
    padding: 0;
    background: transparent;
}
        
.transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
        
.z-index-999 {
    z-index: 999;
}
        
.logo img {
    width: 280px;
    margin: 0 5px;
}
        
/* Desktop Navigation Menu */
.menu__navbar-wrap > ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.menu__navbar-wrap > ul > li {
    position: relative;
    list-style: none;
}

.menu__navbar-wrap > ul > li > a {
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
    padding: 25px 0;
    margin: 0 14px;
    display: flex;
    align-items: center;
    position: relative;
}

.menu__navbar-wrap > ul > li > a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    transition: all 0.6s ease;
}

.menu__navbar-wrap > ul > li > a:hover::before {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.menu__navbar-wrap > ul > li > a:hover {
    color: var(--primary-color);
}

/* Desktop Submenu */
.menu__navbar-wrap .sub-menu {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 240px;
    background: var(--white);
    margin: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.5s ease;
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    padding: 18px 0;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}
        
.menu__navbar-wrap > ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
        
.menu__navbar-wrap .sub-menu li {
    display: block;
}
        
.menu__navbar-wrap .sub-menu li a {
    padding: 6px 15px 12px 25px;
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}
        
.menu__navbar-wrap .sub-menu li:hover > a {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.menu-offcanvas-open-btn {
    line-height: 0;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
}
        
.menu-offcanvas-open-btn span {
    height: 2px;
    width: 34px;
    background-color: var(--white);
    display: block;
    border-radius: 6px;
}
        
.menu-offcanvas-open-btn span:not(:last-child) {
    margin-bottom: 6px;
}

/* Mobile Menu Styles */
.mobile__menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 350px;
    max-width: 100%;
    height: 100%;
    z-index: 9991;
    background: var(--white);
    transition: all 0.5s ease;
    transform: translateX(101%);
    overflow-y: auto;
}
        
.mobile-menu-visible .mobile__menu {
    transform: translateX(0);
}
        
.mobile__menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
        
.mobile-menu-visible .mobile__menu-backdrop {
    opacity: 1;
    visibility: visible;
}
        
.mobile__menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    font-size: 23px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    background: transparent;
    border: none;
}
        
.mobile__menu .nav-logo {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
        
.mobile__menu .nav-logo img {
    width: 150px;
}
        
/* Mobile Navigation */
.mobile__menu .navigation {
    display: block;
    width: 100%;
    background: var(--white);
}
        
.mobile__menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    font-weight: bold;
}
        
.mobile__menu .navigation li.active > a {
    color: var(--primary-color);
}
        
.mobile__menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 20px;
    top: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    cursor: pointer;
    z-index: 5;
    border: none;
    border-radius: 0;
    transition: all 500ms ease;
}
        
.mobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
    width: 12px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 500ms ease;
}
        
.mobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
    width: 2px;
    height: 12px;
    background-color: var(--primary-color);
    transition: all 500ms ease;
}
        
.mobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
    background-color: var(--primary-color);
}
        
.mobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
    background-color: var(--white);
}
        
.mobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
    display: none;
}
        
.mobile__menu .navigation li > a {
    position: relative;
    display: block;
    padding: 10px 60px 10px 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    transition: all 500ms ease;
    border: none;
}
        
.mobile__menu .navigation li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    transition: all 500ms ease;
    width: 2px;
    background: var(--primary-color);
    pointer-events: none;
}
        
.mobile__menu .navigation li > a:hover {
    color: var(--primary-color);
}
        
.mobile__menu .navigation li > ul {
    display: none;
    background: var(--white);
    margin-right: 30px;
}
        
.mobile__menu .navigation li .sub-menu {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    padding: 0;
    background: var(--white);
    display: none;
    transition: none;
}
        
.mobile__menu .navigation li .sub-menu.active {
    display: block;
}
        
.mobile__menu .navigation li .sub-menu li a {
    padding: 8px 25px 8px 40px;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
        
.mobile__menu .navigation:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
        
.mobile__menu .navigation > li.active > a::before {
    height: 100%;
}

/* Mobile Search Form */
.mobile__search {
    padding: 0 20px 25px 25px;
}
        
.mobile__search form {
    position: relative;
}
        
.mobile__search input {
    border: 1px solid #d9e1e1;
    border-radius: 8px;
    width: 100%;
    height: 50px;
    background: var(--white);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    padding-right: 50px;
    color: var(--text-dark);
}
        
.mobile__search input:focus {
    border-color: var(--primary-color);
}
        
.mobile__search input::placeholder {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--text-dark);
}
        
.mobile__search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 0;
    right: 20px;
    line-height: 1;
    background: transparent;
    color: var(--text-dark);
}
/* Sticky Header */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: var(--white);
    box-shadow: 0px 1px 3px 0px rgba(18, 20, 32, 0.14);
    backdrop-filter: blur(10px);
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    padding: 0;
}
        
.header-sticky .menu__navbar-wrap > ul > li > a {
    padding: 15px 0;
    color: var(--text-dark);
}
        
.header-sticky .menu__navbar-wrap > ul > li > a::before {
    bottom: 10px;
}
        
.header-sticky .logo-2 {
    display: block !important;
}
        
.header-sticky .logo-sticky-none {
    display: none;
}
        
.header-sticky .menu-offcanvas-open-btn span {
    background: var(--text-dark);
}
        
@keyframes headerSlideDown {
    0% { margin-top: -150px; }
    100% { margin-top: 0; }
}

/* ========== FOOTER STYLES ========== */
.main-footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget {
    color: #ccc;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

/* About Widget - RTL */
.footer-about {
    padding-left: 20px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-about .footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-left: 12px;
}

.footer-about .footer-logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Quick Links - RTL */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.footer-links ul li a::before 
{
    font-family: "Font Awesome 6 Free";
        font-weight: 900;
    content: "\f053"; /* The Unicode for chevron-left */    /*  '←';*/
    margin-left: 10px;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(10px);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Event Info - RTL */
.event-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-info .info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 18px;
    flex-shrink: 0;
}

.event-info .info-content h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-info .info-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Newsletter - RTL */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--primary-color); /* rgba(255, 255, 255, 0.2);*/
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    text-align: right;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.newsletter-form button {
    width: 50px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
       
/* Footer Bottom - RTL */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #ccc;
    font-size: 14px;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Back to Top Button - RTL */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1199px) {
    .menu__nav {
        display: none;
    }
            
    /* Prevent desktop hover effects on mobile */
    .menu__navbar-wrap .sub-menu {
        display: none !important;
    }
            
    .menu__navbar-wrap > ul > li:hover > .sub-menu {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }

    .footer-widget:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
    }
}

@media (max-width: 992px) {
              
    .social-icons {
        display: none;
    }
            
    .top-icons {
        text-align: right;
    }
            
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) 
{
    .contact-icons {
        display: none;
    }     
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about {
        padding-left: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
           
    /* .section {
        padding: 60px 0;
    }*/
            
    .card-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
            
    .logo img {
        width: 200px;
    }
            
    .mobile__menu {
        width: 100%;
    }
            
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-content {
        padding: 0 15px;
    }

    .footer-top {
        gap: 30px;
    }

    .footer-bottom-links {
        gap: 20px;
    }
            
    .section-title {
        font-size: 1.8rem;
    }
            
    .card-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Hide mobile-specific elements on desktop */
@media (min-width: 1200px) {
    .dropdown-btn {
        display: none !important;
    }
            
    .mobile__menu {
        display: none !important;
    }
            
    .mobile__menu-backdrop {
        display: none !important;
    }
            
    .menu__main-menu .navigation > li.menu-item-has-children > a::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f078";
        margin-right: 6px;
        font-size: 12px;
        display: inline-block;
        vertical-align: middle;
    }
}

/* Show mobile menu when active */
.mobile-menu-visible .mobile__menu {
    display: block !important;
}
        
.mobile-menu-visible .mobile__menu-backdrop {
    display: block !important;
}

/* ===============================
    Newsletter Section 
   =============================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--white);
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}


/*============================
        Hero Section  
=============================*/

.hero-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    padding-top: 200px;
    margin-top: -60px;
}
        
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}
        
.hero-content {
    position: relative;
    z-index: 1;
}
        
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}
        
.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
     

/* ====================================
        Home Page Style
   ==================================== */
   
 /* ------------ SLIDER STYLES ----------- */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: -60px;
}
        
.slider {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    width: 100%;
}
        
.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}
        
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
        
.slide-content {
    max-width: 1200px;
    width: 90%;
    color: white;
    text-align: center;
    padding: 100px 2rem 2rem 2rem;
    z-index: 2;
}
        
.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}
        
.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
        
.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
        
.slide-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}
        
.slide-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
    margin-bottom: 2rem;
}
        
.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.5);
}
        
.slide-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
        
.slider-nav {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}
        
.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
        
.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}
        
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
        
.slider-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}
        
.slider-btn.prev {
    right: 2.5rem;
}
        
.slider-btn.next {
    left: 2.5rem;
}
        
.slide-counter {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    z-index: 10;
    backdrop-filter: blur(10px);
}
        
/* Animation for slide content */
.slide-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
        
.slide.active .slide-content > * {
    opacity: 1;
    transform: translateY(0);
}
        
.slide.active .slide-badge {
    transition-delay: 0.2s;
}
        
.slide.active .slide-title {
    transition-delay: 0.3s;
}
        
.slide.active .slide-subtitle {
    transition-delay: 0.4s;
}
        
.slide.active .slide-description {
    transition-delay: 0.5s;
}
        
.slide.active .slide-btn {
    transition-delay: 0.6s;
}
        
.slide.active .social-links {
    transition-delay: 0.7s;
}

/* =============================
        CONTENT SECTIONS 
   ============================= */
   
/*.section {
    padding: 80px 0;
}*/

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/*  ========================= 
        CONTENT AREA 
    ========================= */
/* Content Styles */
.section {
    width: 100%;
    padding: 80px 3rem;
    margin: 50px 2rem !important;
    scroll-margin-top: 30px;
}

.content-block {
    margin-bottom: 3rem;
}

.content-area {
    flex: 1;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
    margin-bottom: 40px;
}
/*.content-block h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}*/
        
.content-block h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}
        
.content-block p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: justify;
}
        
.content-block ul {
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}
        
.content-block li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
    padding-right: 1.5rem;
}
        
.content-block li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    right: 0;
}
        
.content-section:last-child {
    margin-bottom: 0;
}
/*
.section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
*/
/* Unified Section Titles */
.unified-section {
    padding: 80px 3rem;
    /*max-width:80%;
    margin: 0 auto;*/
}

.unified-section-alt {
    background: var(--bg-light);
}

.unified-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.unified-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.unified-title h2::before,
.unified-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transform: translateY(-50%);
}

.unified-title h2::before {
    right: -80px;
}

.unified-title h2::after {
    left: -80px;
}

.unified-title p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* =============================
        Cards Grid 
   ============================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
    position: absolute;
    top: 10px;
    right: 10px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.card-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* =============================
        Stats Grid 
   ============================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* =============================
        objective Cards
   ============================= */      
        .objective-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .objective-card:hover {
            transform: translateY(-5px);
        }
        
        .objective-card h4 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .objective-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
/* =============================
        Achievement Cards
   ============================= */

.achievement-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.achievement-icon i {
    color: white;
    font-size: 2rem;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-text {
    color: var(--text-light);
    margin: 0;
}

/* ============================
    STRATEGY PAGE STYLES
   ============================*/

/* Values Section */
.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-card:hover::before {
    opacity: 0.05;
}

.value-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.value-card:hover h3 {
    color: var(--primary-color);
}

.value-card p {
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* =============================
     Strategic Pillars Section
   ============================= */

.strategic-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pillar-card:hover::before {
    opacity: 0.05;
}

.pillar-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pillar-card:hover h4 {
    color: var(--primary-color);
}

.pillar-card i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.pillar-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
}

.pillar-card ul {
    position: relative;
    z-index: 2;
}

.pillar-card li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
    padding-right: 1.5rem;
    transition: all 0.3s ease;
}

.pillar-card li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
}

.pillar-card:hover li:before {
    transform: scale(1.3);
}

.pillar-objectives {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px dashed #eaeaea;
    position: relative;
    z-index: 2;
}

.pillar-objectives h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-objectives h5::before {
    content: '🎯';
    font-size: 1.3rem;
}

/* =============================
        Animation Classes
   ============================= */
   
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-animation.animated > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation.animated > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation.animated > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation.animated > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation.animated > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation.animated > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation.animated > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-animation.animated > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-animation.animated > *:nth-child(8) { transition-delay: 0.8s; }

/* Responsive Design for Strategy Page */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .unified-title h2 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .unified-title h2::before,
    .unified-title h2::after {
        width: 30px;
    }
    
    .unified-title h2::before {
        right: -40px;
    }
    
    .unified-title h2::after {
        left: -40px;
    }
    
    .unified-title p {
        font-size: 1.1rem;
    }
    
    .values-container,
    .strategic-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card,
    .pillar-card {
        padding: 2rem 1.5rem;
    }
    
    .value-card:hover,
    .pillar-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* ===============================
        SIDEBAR
   ===============================*/

.sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    position: sticky;
    top: 30px;
    align-self: flex-start;
    z-index: 100;
}

.mobile-sidebar-toggle {
    display: none;
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    box-shadow: var(--shadow);
}

.sidebar-content {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 15px 20px;
}

.sidebar-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-content .nav {
    padding: 10px 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.sidebar-content .nav-link {
    padding: 12px 20px;
    color: var(--text-dark);
    border-radius: 0;
    border-right: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-content .nav-link i {
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.sidebar-content .nav-link:hover,
.sidebar-content .nav-link.active {
    background-color: rgba(215, 154, 42, 0.1);
    color: var(--primary-dark);
    border-right-color: var(--primary-color);
}


/* ===========================
        LISTS 
   =========================== */
.numbered-list {
    counter-reset: item;
    padding-right: 20px;
}

.numbered-list > li {
    margin-bottom: 15px;
    position: relative;
    padding-right: 25px;
}

.numbered-list > li:before {
    counter-increment: item;
    content: counter(item) ".";
    position: absolute;
    right: -25px;
    top: 0;
    font-weight: bold;
    color: var(--primary-color);
}

.numbered-list .numbered-list {
    margin-top: 10px;
    padding-right: 25px;
}

.numbered-list .numbered-list > li:before {
    content: counter(item, lower-alpha) ".";
    right: -35px;
}

/*  ========================
        TABLES STYLE
    ======================== */
.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.definition-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.definition-table th {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 12px 15px;
    text-align: right;
    font-weight: 600;
}

.definition-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.definition-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.definition-table tr:hover {
    background-color: rgba(215, 154, 42, 0.05);
}

/* ========== HIGHLIGHT TEXT ========== */
.highlight {
    background-color: rgba(215, 154, 42, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--primary-dark);
    font-weight: 600;
}

/* =========================
        RESPONSIVE STYLES 
   ======================== */
   
@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    
    .mobile-sidebar-toggle {
        display: block;
    }
    
    .sidebar-content {
        display: none;
    }
    
    .sidebar-content.show {
        display: block;
    }
    
    .content-area {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header h3 {
        font-size: 20px;
    }
    
    .content-area {
        padding: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .definition-table {
        font-size: 13px;
    }
    
    .definition-table th,
    .definition-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header h3 {
        font-size: 18px;
    }
    
    .content-area {
        padding: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .numbered-list > li {
        padding-right: 20px;
    }
    
    .numbered-list > li:before {
        right: -20px;
    }
}