 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

        body {
            font-family: 'Inter', system-ui, sans-serif;
        }

        .heading-font {
            font-family: 'Playfair Display', sans-serif;
        }

        /* Premium title style */
        .site-title {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 0.6px;
            color: #0b2e6b;
            text-transform: uppercase;

            /* subtle modern effect */
            font-family: "Segoe UI", "Poppins", "Roboto", sans-serif;
            position: relative;
        }

        /* underline effect */
        .site-title::after {
            content: "";
            display: block;
            width: 120px;
            height: 3px;
            margin: 8px auto 0;
            background: linear-gradient(to right, #f59e0b, #1e3a8a);
            border-radius: 10px;
        }

        /* subtitle improvement */
        .subtitle {
            font-size: 0.85rem;
            color: #b45309;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 0.3px;
        }

        .hero-bg {
            background: linear-gradient(rgba(0, 0, 50, 0.85), rgba(0, 0, 50, 0.85)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c83137?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
        }

        .nav-link {
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #f59e0b;
            transform: translateY(-2px);
        }

        .logo-img {
            height: 65px;
            width: auto;
        }

        .logo-wrapper {
            background: linear-gradient(145deg, #ffffff, #f3f4f6);
            padding: 10px;
            border-radius: 14px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Bigger logos */
        .logo-wrapper img {
            height: 72px;
            /* increased size */
            width: auto;
            transition: transform 0.3s ease;
        }

        /* Hover effect */
        .logo-wrapper:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        }

        .logo-wrapper:hover img {
            transform: scale(1.05);
        }

        /* Container */
        .photo-slider {
            overflow: hidden;
            position: relative;
        }

        /* Track */
        .photo-track {
            display: flex;
            width: max-content;
            animation: scrollLeft 18s linear infinite;
        }

        /* Pause on hover */
        .photo-slider:hover .photo-track {
            animation-play-state: paused;
        }

        /* Slide */
        .photo-item {
            position: relative;
            flex: 0 0 auto;
        }

        .photo-item img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        /* Caption */
        .photo-caption {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            padding: 6px 12px;
            font-size: 14px;
            border-radius: 6px;
        }

        /* Animation */
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

         .file-item {
            display: block;
            background: white;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #e5e7eb;

            color: #1e3a8a;
            font-weight: 600;
            font-size: 14px;

            text-decoration: none;

            transition: all 0.25s ease;
        }

        /* PDF icon */
        .file-item::before {
            content: "📄 ";
        }

        /* Hover effect */
        .file-item:hover {
            background: #1e3a8a;
            color: white;
            transform: translateX(5px);
        }