:root {
            --primary-color: #1C4297 !important;
            --secondary-color: #f0f3fb !important;
            --accent-color: #1C4297;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
              --text-light: #4a5568;
            --white: #ffffff;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
        }

        
        .text-orange{
            color: #1C4297 !important;
        }
        .bg-orange{
            background-color: #1C4297 !important;

        }
        .bgorange{
            background-color: #f0f3fb !important;
        }


            /* Hero Section */
            .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--secondary-color), #f0f3fb);
            position: relative;
            overflow: hidden;
            }

            .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
            }

            .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-color);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 20px;
            }

            .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            }

            .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.6;
            }

            .hero-meta {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
            }

            .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 0.95rem;
            }

            .meta-item i {
            color: var(--primary-color);
            }

            .hero-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            }

            .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            }

            .btn-primary {
            background: var(--primary-color);
            color: white;
            box-shadow: var(--shadow);
            }

            .btn-primary:hover {
            background: #1C4297;
            transform: translateY(-2px);
            }

            .btn-secondary {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            }

            .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            }

            .hero-visual {
            animation: fadeInRight 0.8s ease-out;
            }

            .visual-card {
            position: relative;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: rotate(3deg);
            transition: transform 0.3s ease;
            }

            .visual-card:hover {
            transform: rotate(0deg) scale(1.02);
            }

            .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            }

            .visual-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            }

            /* Responsive */
            @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-meta {
                justify-content: center;
            }

            .hero-visual {
                order: -1;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }
            }

        .section-divider {
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            margin: 50px 0;
            border-radius: 2px;
        }

        .research-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(28, 66, 151, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid var(--primary-color);
        }

        .research-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(28, 66, 151, 0.15);
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

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

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .stats-section {
            background: var(--secondary-color);
            padding: 60px 0;
            margin: 50px 0;
            border-radius: 20px;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(28, 66, 151, 0.1);
            margin: 10px;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-3px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            display: block;
        }

        .methodology-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 40px 0;
        }

        .icon-feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--secondary-color);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .icon-feature:hover {
            transform: translateX(10px);
        }

        .icon-feature i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 20px;
            width: 50px;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(28, 66, 151, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(28, 66, 151, 0.4);
            color: white;
        }

        .highlight-text {
            color: var(--primary-color);
            font-weight: 600;
        }

        .research-timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline-item {
            position: relative;
            padding-left: 40px;
            margin-bottom: 30px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 5px;
            width: 10px;
            height: 10px;
            background: var(--primary-color);
            border-radius: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 15px;
            width: 2px;
            height: calc(100% + 15px);
            background: var(--secondary-color);
        }

        .timeline-item:last-child::after {
            display: none;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0 40px;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .research-card {
                padding: 20px;
            }
        }