/* Main CSS for WISDOM FOUNDATION Website */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #ff5722;
    --accent-color: #00a8ff;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --text-color: #333;
    --text-light: #6c757d;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background-color: #0055b3;
    border-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Header Styles */
.top-bar {
    font-size: 14px;
    background-color: var(--dark-color) !important;
    color: #fff;
    padding: 10px 0;
}

.top-bar a, .top-bar span {
    color: #fff;
}

.top-bar .news-ticker {
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
    margin-right: 10px;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 100;
    transition: var(--transition);
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

header h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header p {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

.logo img {
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation Styles */
.navbar {
    padding: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0055b3 100%);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

/* Mega Menu Styles */
.mega-menu {
    position: static !important;
}

.mega-menu .dropdown-menu {
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    padding: 30px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    animation: fadeIn 0.3s ease;
    left: 0;
    right: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-menu-column {
    padding: 0 15px;
}

.mega-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.mega-menu-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.mega-menu-list li {
    margin-bottom: 8px;
}

.mega-menu-list li a {
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.mega-menu-list li a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    transition: var(--transition);
}

.mega-menu-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mega-menu-list li a:hover:before {
    color: var(--secondary-color);
}

.mega-menu-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.mega-menu-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.mega-menu-image:hover img {
    transform: scale(1.05);
}

.mega-menu-description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.mega-menu-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    transition: var(--transition);
}

.mega-menu-button:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.mega-menu-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.mega-menu-social-icon:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Mobile Mega Menu */
@media (max-width: 991.98px) {
    .mega-menu .dropdown-menu {
        padding: 15px;
        max-height: 400px;
        overflow-y: auto;
    }

    .mega-menu-column {
        margin-bottom: 20px;
    }

    .mega-menu-image {
        display: none;
    }
}

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

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slider .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-slider .carousel-caption {
    text-align: left;
    left: 10%;
    right: auto;
    bottom: 50%;
    transform: translateY(50%);
    max-width: 600px;
    padding: 0;
    background-color: transparent;
}

.hero-slider h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-slider .btn {
    animation: fadeInUp 1.5s ease;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1;
}

.hero-slider .carousel-indicators {
    bottom: 30px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Links Section */
.quick-links {
    margin: 0;
    padding: 50px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 10;
}

.quick-link-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    background-color: #fff;
    border-bottom: 5px solid transparent;
}

.quick-link-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--primary-color);
}

.quick-link-box i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.quick-link-box:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.quick-link-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.quick-link-box .btn {
    margin-top: 15px;
    transition: var(--transition);
}

/* Apply for Membership Button */
.quick-links .btn-lg {
    padding: 12px 30px;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.4s ease;
}

.quick-links .btn-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
}

.quick-links .btn-lg i {
    font-size: 20px;
    vertical-align: middle;
}

/* About Section */
.about-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Team Section */
.team-section {
    padding: 70px 0;
    background-color: var(--light-color);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" /></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
}

.team-card {
    text-align: center;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: #fff;
    position: relative;
    z-index: 1;
}

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

.team-card img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 25px 20px;
    position: relative;
}

.team-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--dark-color);
}

.team-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

/* News & Updates Section */
.news-section {
    padding: 70px 0;
    background-color: #f9f9f9;
    position: relative;
}

.news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

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

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .card-img-top {
    transform: scale(1.05);
}

.news-card .card-body {
    padding: 20px;
    position: relative;
}

.news-date {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
}

.news-card .card-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.news-card:hover .card-title {
    color: var(--primary-color);
}

.news-card .card-text {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.news-card .btn {
    margin-top: auto;
}

/* News Detail Page */
.news-detail-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.news-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.news-meta {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.news-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.social-share {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.share-buttons {
    margin-top: 10px;
}

.share-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebar-widget {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.recent-news-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-news-item h6 {
    font-size: 16px;
    margin-bottom: 5px;
}

.recent-news-item h6 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.recent-news-item h6 a:hover {
    color: var(--primary-color);
}

/* Membership Form */
.membership-section {
    background-color: #f9f9f9;
}

.membership-section .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.membership-section .card-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-bottom: none;
}

.membership-section .card-title {
    margin-bottom: 0;
    font-weight: 600;
}

.membership-section .form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.membership-section .text-danger {
    font-weight: bold;
}

.membership-section .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.membership-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

/* Gallery Section */
.gallery-section {
    padding: 70px 0;
    background-color: #fff;
    position: relative;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.03), transparent);
    pointer-events: none;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Donate Section */
.donate-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.donate-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.donate-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.donate-section .lead {
    font-size: 18px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.donate-box {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    transform: translateY(0);
}

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

.donate-box h3 {
    color: var(--dark-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.donate-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.donate-section .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.donate-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.donate-section .card-body {
    padding: 30px;
    text-align: center;
}

.donate-section .card i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #fff;
    transition: var(--transition);
}

.donate-section .card:hover i {
    transform: scale(1.1);
}

.donate-section .card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.donate-section .btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    transition: var(--transition);
}

.donate-section .btn-light:hover {
    background-color: var(--dark-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

footer::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

footer h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

footer ul {
    padding-left: 0;
}

footer ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: var(--transition);
    list-style: none;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

footer ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
}

footer ul li a:hover {
    color: #fff;
    padding-left: 20px;
}

footer ul li a:hover::before {
    opacity: 1;
    left: 0;
}

footer .social-icons {
    margin-top: 20px;
}

footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
    color: #fff;
}

footer .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Mobile Quick Actions */
.mobile-quick-actions {
    background-color: var(--primary-color);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.quick-action-link {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    transition: var(--transition);
}

.quick-action-link i {
    font-size: 20px;
    margin-bottom: 5px;
}

.quick-action-link span {
    font-size: 12px;
}

.quick-action-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 10px 0;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .hero-slider .carousel-item {
        height: 400px;
    }

    .hero-slider h2 {
        font-size: 28px;
    }

    .hero-slider p {
        font-size: 16px;
    }

    .container {
        padding-bottom: 60px; /* Add space for mobile quick actions */
    }

    footer {
        margin-bottom: 50px; /* Add space for mobile quick actions */
    }
}

@media (max-width: 767px) {
    header h1 {
        font-size: 24px;
    }

    .hero-slider .carousel-item {
        height: 300px;
    }

    .hero-slider h2 {
        font-size: 24px;
    }

    .hero-slider p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .team-card, .gallery-item, .quick-link-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
    }

    .top-bar .social-icons {
        margin-bottom: 5px;
    }

    header h1 {
        font-size: 20px;
    }

    header p {
        font-size: 12px;
    }

    .hero-slider .carousel-item {
        height: 250px;
    }

    .hero-slider h2 {
        font-size: 20px;
    }

    .hero-slider p {
        font-size: 12px;
    }

    .btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}
