:root {
            --ficci-blue: #0056a4;
            --ficci-orange: #f26522;
            --ficci-light: #f8f9fa;
            --ficci-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--ficci-dark);
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--ficci-blue);
        }
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 86, 164, 0.08);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
        .navbar-brand img {
            height: 60px;
            transition: transform 0.3s ease;
        }
        .navbar-brand:hover img {
            transform: scale(1.03);
        }
        .nav-link {
            color: var(--ficci-blue) !important;
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: var(--ficci-blue);
        }
        .nav-link:hover::after, .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 20%;
            width: 60%;
            height: 3px;
            background-color: var(--ficci-orange);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 164, 0.85), rgba(242, 101, 34, 0.8)), url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            margin-top: 76px;
        }
        .hero-section h1 {
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .btn-ficci {
            background-color: var(--ficci-orange);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            border: 2px solid var(--ficci-orange);
            transition: all 0.3s ease;
        }
        .btn-ficci:hover {
            background-color: transparent;
            color: var(--ficci-orange);
            border-color: var(--ficci-orange);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
        }
        .btn-ficci-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-ficci-outline:hover {
            background-color: white;
            color: var(--ficci-blue);
            transform: translateY(-3px);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--ficci-orange);
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 86, 164, 0.15);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--ficci-blue);
            margin-bottom: 1.5rem;
        }
        .stats-section {
            background-color: var(--ficci-blue);
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--ficci-orange);
            line-height: 1;
        }
        .news-card {
            border-left: 5px solid var(--ficci-orange);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            border-left-color: var(--ficci-blue);
            background-color: rgba(0, 86, 164, 0.03);
        }
        .flink {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            background-color: #f8f9fa;
            border-radius: 6px;
            color: var(--ficci-dark);
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--ficci-blue);
            color: white;
            border-color: var(--ficci-blue);
            transform: translateY(-3px);
        }
        .footer {
            background-color: #1a365d;
            color: #cbd5e0;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        .footer a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--ficci-orange);
        }
        .copyright {
            border-top: 1px solid #2d3748;
            padding-top: 1.5rem;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--ficci-orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--ficci-blue);
            color: white;
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                margin-top: 66px;
            }
            .navbar-brand img {
                height: 50px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .ficci-badge {
            background-color: rgba(242, 101, 34, 0.1);
            color: var(--ficci-orange);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.5rem;
        }
        .ficci-accordion .accordion-button {
            font-weight: 600;
            color: var(--ficci-blue);
            background-color: rgba(0, 86, 164, 0.05);
        }
        .ficci-accordion .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 164, 0.1);
            color: var(--ficci-blue);
        }
        .ficci-accordion .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 86, 164, 0.25);
        }
        .partner-logo {
            height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
