:root {
    --primary-gradient: linear-gradient(135deg, #2E8B57 0%, #228B22 100%);
    --secondary-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --success-gradient: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    --primary-color: #2E8B57;
    --secondary-color: #FF6B35;
    --accent-color: #F7931E;
}

html, body { 
    overflow-x: hidden; 
}

.container, .container-fluid { 
    /* max-width: 100%;  */
}

.row { 
    /* margin-left: 0; 
    margin-right: 0;  */
}

.col, [class*="col-"] { 
    padding-left: 15px; 
    padding-right: 15px; 
}

.gradient-bg { 
    background: var(--primary-gradient); 
}

.gradient-text { 
    background: var(--primary-gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.text-primary { 
    color: var(--primary-color) !important; 
}

.btn-primary { 
    background: var(--primary-gradient); 
    border: none; 
}

.btn-outline-primary { 
    border-color: var(--primary-color); 
    color: var(--primary-color); 
}

.btn-outline-primary:hover { 
    background: var(--primary-color); 
    border-color: var(--primary-color); 
}

.card-hover { 
    transition: all 0.3s ease; 
}

.card-hover:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

.hero-section { 
    min-height: 100vh; 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%); 
    padding-top: 80px; 
}

.section-padding { 
    padding: 100px 0; 
}

.stats-counter { 
    font-size: 3rem; 
    font-weight: 700; 
}

.testimonial-card { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}

.team-card img { 
    width: 200px; 
    height: 200px; 
    object-fit: cover; 
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Modern Dropdown Styles */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    padding: 8px;
    margin-top: 8px;
    background: white;
    min-width: 200px;
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    margin: 2px 0;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #374151;
    border: none;
}

.dropdown-item:hover {
    background: #f3f4f6;
    color: var(--primary-color);
    transform: none;
}

/* Hover Dropdown - Desktop Only */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.navbar-nav .dropdown-menu {
    margin-top: 0;
    border-top: 3px solid var(--primary-color);
}

/* White Navbar Styling */
.navbar-light .navbar-brand {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-light .navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232E8B57' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Inner Page Containers */
.login-container,
.register-container {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(34, 139, 34, 0.1) 100%);
}

.navbar-toggler .icon-bar {
    margin: 7px;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: 0.5s ease;
}


/* Member Portal Sidebar */
.member-sidebar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 76px);
    border-right: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.sidebar-toggle {
    display: none;
    position: fixed;
    top: 90px;
    left: 15px;
    z-index: 1050;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

/* Mobile Responsive Sidebar */
@media (max-width: 767.98px) {
    .sidebar-toggle {
        display: block;
    }
    
    .member-sidebar {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 76px);
        z-index: 1045;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .member-sidebar.show {
        left: 0;
    }
    
    .sidebar-overlay.show {
        display: block;
    }
    
    .member-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .col-md-3 {
        width: auto;
    }
    
    .col-md-9 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.member-sidebar .list-group-item {
    border: none;
    background: transparent;
    padding: 1rem 1rem;
    /* margin: 0.25rem 0.75rem; */
    margin: 0.25rem 0rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
}

.member-sidebar .list-group-item:hover {
    background: white;
    color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
}

.member-sidebar .list-group-item.active {
    background: linear-gradient(135deg, var(--primary-color), #228B22);
    color: white;
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
    /* transform: translateX(5px); */
}

.member-sidebar .list-group-item i {
    width: 20px;
    text-align: center;
}

/* Sidebar Dropdown Submenu */
.sidebar-dropdown .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-dropdown .submenu.show {
    max-height: 230px;
}

.sidebar-dropdown .submenu-item {
    padding-left: 2.5rem;
    font-size: 0.9rem;
    margin: 0.1rem 0rem;
}

.sidebar-dropdown .submenu-item:last-child {
    margin-bottom: 0.5rem;
}

.sidebar-dropdown .fa-chevron-down,
.sidebar-dropdown .fa-chevron-up {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/*****************************************************/

.cursor-pointer { cursor: pointer; }
.h-100vh { height: 100vh; }
.min-h-100 { min-height: 100vh; }
.min-w-1200 { min-width: 1000px;}
.h-150 { height: 150px; }
.fs-10 { font-size: 10px;}
.fs-12 { font-size: 12px;}
.fs-13 { font-size: 13px;}
.fs-14 { font-size: 14px;}
.fs-20 { font-size: 20px;}
.fs-24 { font-size: 24px;}
.fw-600 { font-weight: 600;}
.lh-18 { line-height: 18px; }
.lh-24 { line-height: 24px; }
.bg-yellow { background: #fffa00; }
.btn-orange { background: #ff6b35; border: 2px solid #ff6b35; transition: all 0.3s ease; color: #ffffff !important; }
.btn-orange:hover { background: #ffffff; border: 2px solid #ff6b35; color: #ff6b35 !important; }
.w-60 { width: 60px;}
.border-grey { border: 1px solid #ced4da; }
.border-right-grey { border-right: 1px solid #ced4da; }
.bdr-radius-5 { border-radius: 5px; }
.innerpageHeroSection { min-height: 60vh; background-size: cover !important; background-position: center !important; }
.modal-close-btn { position: absolute; z-index: 1; right: -10px; top: -20px; background-color: #fff; padding: 10px; }
.member-navbar .dropdown-menu-end { right: 0px;}
.member-sidebar .list-group { height: 100vh; overflow-y: auto; }
.letterhead { min-width: 1015px; max-width: 2480px;}
#upload { opacity: 0;}
#upload-label { position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); }
.image-area { position: relative; min-height: 50px; }
.image-area::before { content: 'Preview'; color: #797979; text-transform: uppercase; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.8rem; z-index: 1; }
.image-area img { z-index: 2; position: relative; }
#upload2 { opacity: 0; }
#upload-label2 { position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); }
.image-area2 { position: relative; min-height: 50px; }
.image-area2::before { content: 'Preview'; color: #797979; text-transform: uppercase; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.8rem; z-index: 1; }
.image-area2 img { z-index: 2; position: relative;}
.awardCertificate { min-width: 1015px; max-width: 2480px; }
.donationReciept { min-width: 1015px; max-width: 2480px; }
.bannerTopLeftImages { position: absolute; top: 10px; left: 10px;}
.bannerTopRightImage { position: absolute; top: 10px; right: 10px;}


.dotted-line { flex-grow: 1; border-bottom: 1px dotted #000; height: 19px; margin-left: 8px; }

/*****************************************************/
.outer-border { border: 1px solid #222222; height: 99%; padding: 6px; margin: 0 auto; }
/* .mid-border { border: 6px solid #DE9B72; height: 100%; padding: 6px; margin: auto; }
.inner-border { position: relative; border: 2px solid #DE9B72; height: 100%; margin: auto; }
.corner-decoration { position: absolute; width: 3em; margin: -3px; }
.corner-decoration.corner-left-top { left: 0; top: 0; }
.corner-decoration.corner-right-top { top: 0; right: 0; -webkit-transform: scaleX(-1); transform: scaleX(-1); }
.corner-decoration.corner-right-bottom { right: 0; bottom: 0; -webkit-transform: scale(-1); transform: scale(-1); }
.corner-decoration.corner-left-bottom { left: 0; bottom: 0; -webkit-transform: scaleY(-1); transform: scaleY(-1); }
.vertical-decoration { position: absolute; left: 0; right: 0; margin: auto; width: 11em; }
.vertical-decoration.top { top: 0; }
.vertical-decoration.bottom { bottom: 0; -webkit-transform: scaleY(-1); transform: scaleY(-1); } */
/*****************************************************/


