@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #004d4d;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --light-bg: #f4f7f6;
    --gradient-primary: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
    --box-shadow: rgb(0 0 0 / 10%);
    --jordan-color: #e74c3c;
}

a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 0;
}

/* Navigation */
.navbar {
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

    .navbar.scrolled {
        padding: 10px 0;
        background: var(--gradient-primary);
    }

.navbar-brand {
    font-weight: 700;
    color: var(--text-light) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-light) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--secondary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* Hero Slider */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 990px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.2;
}

.jordan-text {
    color: var(--jordan-color);
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.jordan-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--jordan-color);
    border-radius: 2px;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--gradient-secondary);
        border-radius: 2px;
    }

/* Cards */
.sector-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    text-align: center; /* Added this to center all content */
}

    .sector-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-secondary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .sector-card:hover::before {
        transform: scaleX(1);
    }

    .sector-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.sector-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px; /* Centered horizontally */
    transition: all 0.3s ease;
    text-align: center;
}

    .sector-icon img {
        width: 55px;
        filter: brightness(0) saturate(100%) invert(1);
    }

    .sector-icon i {
        font-size: 1.8rem;
        color: var(--text-light);
    }


.indicator-icon img {
    height: 65px;
    filter: brightness(0) saturate(100%) invert(1);
}

.sector-card:hover .sector-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--gradient-secondary);
    color: #000;
}

    .sector-card:hover .sector-icon img {
        filter: brightness(0) saturate(100%) invert(1);
    }

.sector-card h5 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sector-title-custom {
    height: 45px;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-primary-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-secondary);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .btn-primary-custom:hover::before {
        left: 0;
    }

    .btn-primary-custom:hover {
        color: var(--text-light);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--box-shadow);
    }

.btn-secondary-custom {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px;
}

    .btn-secondary-custom:hover {
        background: var(--primary-color);
        color: var(--text-light);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 90, 156, 0.3);
    }

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .dashboard-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, var(--box-shadow), transparent 70%);
        transition: all 0.5s ease;
    }

    .dashboard-card:hover::after {
        top: -30%;
        right: -30%;
    }

    .dashboard-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

        .dashboard-card:hover .sector-icon {
            background: var(--gradient-secondary);
            transition: all 0.3s ease;
        }

    .dashboard-card .sector-icon {
        margin: 0 auto !important;
    }
/* Indicator Cards */
.indicator-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    color: #374859;
    display: block;
}

    .indicator-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--box-shadow), transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 15px;
    }

    .indicator-card:hover::before {
        opacity: 1;
    }

    .indicator-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px var(--box-shadow);
    }

.indicator-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

    .indicator-icon i {
        font-size: 2.5rem;
        color: #fff;
    }

.indicator-card:hover .indicator-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Year Links */
.year-links {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .year-links:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .year-links h5 {
        color: var(--primary-color);
        padding-bottom: 10px;
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }


    .year-links a {
        display: block;
        margin-bottom: 10px;
        color: var(--text-dark);
        text-decoration: none;
        padding: 8px 0;
        border-left: 3px solid transparent;
        padding-left: 15px;
        transition: all 0.3s ease;
    }

        .year-links a:hover {
            color: var(--primary-color);
            border-left-color: var(--secondary-color);
            padding-left: 20px;
        }

/* Partner Cards */
.partner-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .partner-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-secondary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .partner-card:hover::after {
        transform: scaleX(1);
    }

    .partner-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .partner-logo img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        transition: all 0.3s ease;
    }

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

.partner-abbr {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partner-name {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    min-height: 50px;
}

.partner-link {
    display: inline-block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .partner-link:hover {
        color: var(--primary-color);
    }

    .partner-link i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .partner-link:hover i {
        transform: translateX(5px);
    }

/* Team Cards */
.team-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 90, 156, 0.05) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-card:hover::before {
        opacity: 1;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

    .team-avatar i {
        font-size: 2.5rem;
        color: var(--text-light);
    }

.team-card:hover .team-avatar {
    transform: scale(1.1);
    background: var(--gradient-secondary);
}

    .team-card:hover .team-avatar i {
        color: var(--text-dark);
    }

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.team-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    min-height: 50px;
}

.team-email {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .team-email:hover {
        color: var(--secondary-color);
    }

    .team-email i {
        margin-right: 8px;
    }

/* Contact Section */
.contact-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .contact-item:hover {
        background: var(--light-bg);
        transform: translateX(5px);
    }

    .contact-item i {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        color: var(--text-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        font-size: 1.2rem;
    }

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 400px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Footer */
footer {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
        background-size: cover;
    }

.footer-logos {
    padding: 0 100px;
}

.footer-logo {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    text-align: center;
}

    .footer-logo:nth-child(2) {
        animation-delay: 0.2s;
    }

    .footer-logo:nth-child(3) {
        animation-delay: 0.4s;
    }

    .footer-logo img {
        height: 24px;
        margin-right: 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .footer-logo:hover img {
        transform: scale(1.1);
    }

    .footer-logo span {
        font-size: 0.9rem;
        font-weight: 500;
    }

.footer-divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
    position: relative;
}

    .footer-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 2px;
        background: var(--secondary-color);
    }

/* Background Patterns */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="%23000" stroke-width="1"/></svg>');
    pointer-events: none;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

    .loader.hidden {
        opacity: 0;
        pointer-events: none;
    }

.loader-circle {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-bg);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1.1rem !important;
        padding: 0 20px;
    }

    /* Section Spacing Mobile */
    .section {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
        text-align: center;
        width: 100%;
        margin-top: 50px;
    }

        .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

    /* Navigation Mobile */
    .navbar-brand {
        font-size: 1.2rem !important;
    }

    .nav-link {
        margin: 5px 10px !important;
        font-size: 0.9rem;
    }

    /* Cards Mobile */
    .sector-card,
    .team-card,
    .partner-card,
    .indicator-card,
    .dashboard-card {
        margin-bottom: 25px !important;
        padding: 20px !important;
    }

    .sector-icon {
        margin: 0 auto 15px !important; /* Keep centered on mobile */
    }

    .team-avatar {
        width: 60px !important;
        height: 60px !important;
    }

        .sector-icon i,
        .team-avatar i {
            font-size: 1.5rem !important;
        }

    .indicator-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto;
    }

    .indicator-card h5 {
        text-align: center;
        margin-top: 10px;
    }

    .indicator-card p {
        text-align: center;
    }

    .indicator-card img {
        height: 45px;
    }

    .indicator-icon i {
        font-size: 1.8rem !important;
    }

    /* Team Cards Mobile */
    .team-name {
        font-size: 1.1rem !important;
    }

    .team-title {
        font-size: 0.9rem !important;
        min-height: auto !important;
    }

    .team-email {
        font-size: 0.85rem !important;
        flex-direction: column;
        text-align: center;
    }

        .team-email i {
            margin-right: 0 !important;
            margin-bottom: 5px;
        }

    /* Partner Cards Mobile */
    .partner-logo {
        height: 80px !important;
        margin-bottom: 15px !important;
    }

    .partner-abbr {
        font-size: 1.2rem !important;
    }

    .partner-name {
        font-size: 0.9rem !important;
        min-height: auto !important;
        margin-bottom: 10px !important;
    }

    .partner-link {
        font-size: 0.9rem !important;
    }

    /* Buttons Mobile */
    .btn-primary-custom {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        margin-top: 10px !important;
    }

    .btn-secondary-custom {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
        margin: 3px !important;
    }

    /* Year Links Mobile */
    .year-links {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }

        .year-links h5 {
            font-size: 1.1rem !important;
        }

        .year-links a {
            font-size: 0.85rem !important;
            padding: 6px 0 !important;
        }

    /* Contact Section Mobile */
    .contact-info {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 15px !important;
    }

        .contact-item i {
            margin-right: 0 !important;
            margin-bottom: 10px;
        }

    .map-container {
        height: 300px !important;
    }

    /* Dashboard Cards Mobile */
    .dashboard-card {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }

        .dashboard-card .sector-icon {
            width: 50px !important;
            height: 50px !important;
            margin-bottom: 15px !important;
        }

            .dashboard-card .sector-icon i {
                font-size: 1.3rem !important;
            }

        .dashboard-card h5 {
            font-size: 1rem !important;
        }

        .dashboard-card p {
            font-size: 0.9rem !important;
        }

    /* Footer Mobile */
    footer {
        padding: 40px 0 20px !important;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px !important;
    }

        .footer-logo img {
            margin-right: 0 !important;
            margin-bottom: 10px;
        }

        .footer-logo span {
            font-size: 0.9rem !important;
        }

    /* Images Mobile */
    .img-fluid {
        margin-bottom: 20px;
        border-radius: 10px;
    }

    /* Lead paragraphs mobile */
    .lead {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
        text-align: center;
        color: var(--text-dark);
    }

    /* Regular paragraphs mobile */
    p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }

    /* Flex containers mobile */
    .d-flex {
        justify-content: center !important;
    }

    /* Row spacing mobile */
    .row {
        margin-bottom: 20px;
    }

    /* Column spacing mobile */
    .col-md-4,
    .col-md-6,
    .col-lg-3,
    .col-lg-4,
    .col-lg-8 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .sector-title-custom {
        height: auto !important;
    }
    /* Extra small mobile */
    .hero-title {
        font-size: 2rem !important;
    }

    .section {
        padding: 40px 0 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .navbar-brand {
        font-size: 1rem !important;
    }

    .partner-card,
    .team-card {
        padding: 15px !important;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        font-size: 0.8rem !important;
        padding: 8px 15px !important;
        width: 100%;
        text-align: center;
    }
}

.text-right {
    text-align: right !important;
}


.quick-access-card {
    display: block;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .quick-access-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .quick-access-card:hover::before {
        opacity: 1;
    }

    .quick-access-card:hover {
        transform: translateY(-15px) scale(1.02);
        text-decoration: none;
        color: inherit;
    }

.quick-access-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

    .quick-access-icon::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: var(--gradient-secondary);
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

.quick-access-card:hover .quick-access-icon::after {
    opacity: 1;
    transform: scale(1);
}

.quick-access-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.quick-access-card:hover .quick-access-icon {
    transform: rotate(360deg) scale(1.1);
}

    .quick-access-card:hover .quick-access-icon i {
        color: var(--text-light);
    }

.quick-access-card h5 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.quick-access-card:hover h5 {
    color: var(--accent-color);
}

.quick-access-card p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.quick-access-card:hover p {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quick-access-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .quick-access-icon {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 20px !important;
    }

        .quick-access-icon i {
            font-size: 2rem !important;
        }

    .quick-access-card h5 {
        font-size: 1.1rem !important;
    }

    .quick-access-card p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .quick-access-card {
        padding: 25px 15px;
    }

    .quick-access-icon {
        width: 70px !important;
        height: 70px !important;
    }

        .quick-access-icon i {
            font-size: 1.8rem !important;
        }
}

.contact-item a {
    color: #374859;
}

.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fab-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .fab-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    .fab-button:active {
        transform: scale(0.95);
    }

.fab-icon {
    width: 28px;
    height: 28px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.fab-button:hover .fab-icon {
    transform: rotate(180deg);
}

.fab-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.875rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fab-container:hover .fab-tooltip {
    opacity: 1;
}

.scheme-name-display {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

    .scheme-name-display.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

@media (max-width: 640px) {


    .fab-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .fab-button {
        width: 56px;
        height: 56px;
    }

    .fab-icon {
        width: 24px;
        height: 24px;
    }
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 480px) {
    .text-justify {
        text-align: center !important;
        
    }
}
