 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #ffffff;
            color: #d3af37;
            overflow-x: hidden;
            background-size: cover;
            background-attachment: fixed;
            background-blend-mode: overlay;
            background-color: rgba(255, 255, 255, 0.9);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 9%;
            background: #6c0115;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 99;
            border-bottom: 1px solid ffffff;
        }

        .logo {
            height: 50px;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 140%;
            width: auto;
            object-fit: contain;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            font-size: 18px;
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            margin-left: 40px;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: #ffffff;
        }

        /* Projects Page Hero */
        .projects-hero {
            position: relative;
            height: 60vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            margin-top: 80px;
        }

        .projects-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
            opacity: 0.8;
        }

        .projects-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(191, 32, 38, 0.6);
            z-index: -1;
        }

        .projects-hero-content {
            max-width: 1000px;
            padding: 0 20px;
            z-index: 1;
        }

        .projects-hero-content h1 {
            font-size: 4rem;
            color: #d3af37;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .projects-hero-content p {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Projects Gallery Section */
        .projects-gallery {
            padding: 100px 9%;
            background-color: #f9f9f9;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: #bf2026;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .projects-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 8px 20px;
            background: transparent;
            border: 2px solid #d3af37;
            color: #d3af37;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: #d3af37;
            color: #6c0115;
        }

        /* Country Header Section */
        .country-header {
            text-align: center;
            margin: 40px 0;
        }

        .country-header h2 {
            font-size: 2.5rem;
            color: #bf2026;
            margin-bottom: 15px;
        }

        .country-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .country-projects-container {
            margin-bottom: 60px;
        }

        .country-project {
            margin-bottom: 50px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .country-project-header {
            padding: 20px;
            background: #6c0115;
            color: #d3af37;
        }

        .country-project-header h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .country-project-header p {
            font-size: 1rem;
            opacity: 0.9;
            color: #d3af37;
        }

        /* Image Slider Styles */
        .image-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin: 20px 0;
        }

        .image-slider {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .slider-image-container {
            min-width: calc(100% / 3);
            padding: 0 10px;
            box-sizing: border-box;
        }

        .slider-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .slider-image:hover {
            transform: scale(1.05);
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background-color: #bf2026;
            transform: scale(1.2);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .slider-arrow {
            color: white;
            font-size: 30px;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-arrow:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }

        .slider-arrow.prev-slide {
            left: 20px;
        }

        .slider-arrow.next-slide {
            right: 20px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Footer Styles */
        .footer {
            background-color: #670819;
            color: #d3af37;
            padding: 50px 9% 20px;
            position: relative;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo img {
            height: 60px;
            margin-bottom: 15px;
        }

        .footer-logo + p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(191, 140, 33, 0.2);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: rgba(191, 140, 33, 0.5);
            transform: translateY(-3px);
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #d3af37;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #d3af37;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-column ul li a {
            color: #d3af37;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #d3af37;
            padding-left: 5px;
        }

        .footer-column.contact-info ul li {
            align-items: center;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(191, 140, 33, 0.3);
            font-size: 14px;
        }

        /* Burger Menu Styles */
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            z-index: 101;
        }

        .burger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #d3af37;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 70%;
            height: 100vh;
            background-color: #6c0115;
            padding: 80px 30px;
            z-index: 100;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav a {
            display: block;
            color: #d3af37;
            font-size: 18px;
            margin: 20px 0;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            color: #d3af37;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            color: #d3af37;
            font-size: 24px;
            cursor: pointer;
        }

        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 99;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            display: block;
            opacity: 1;
        }

        /* Image Modal */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: -40px;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow: auto;
        }

        .modal-content {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 20px;
        }

        .modal-content img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #d3af37;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .close-modal:hover {
            color: #d3af37;
        }

        /* Navigation arrows */
        .modal-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .modal-nav span {
            color: #d3af37;
            font-size: 50px;
            font-weight: bold;
            cursor: pointer;
            padding: 10px 20px;
            transition: 0.3s;
        }

        .modal-nav span:hover {
            color: #d3af37;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .slider-image-container {
                min-width: calc(100% / 2);
            }
            
            .slider-image {
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .projects-hero {
                height: 50vh;
                margin-top: 70px;
            }
            
            .projects-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .projects-hero-content p {
                font-size: 1rem;
            }
            
            .section-header h2, .country-header h2 {
                font-size: 2.2rem;
            }
            
            .section-header p, .country-header p {
                font-size: 1rem;
            }
            
            .projects-filter {
                margin-bottom: 30px;
            }
            
            .filter-btn {
                padding: 6px 15px;
                font-size: 0.9rem;
            }
            
            .projects-gallery {
                padding: 80px 5%;
            }
            
            .burger-menu {
                display: flex;
            }
            
            nav {
                display: none;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .slider-image-container {
                min-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .projects-hero {
                height: 40vh;
            }
            
            .projects-hero-content h1 {
                font-size: 2rem;
            }
            
            .section-header h2, .country-header h2 {
                font-size: 1.8rem;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-column {
                min-width: 100%;
            }
            
            .footer-bottom {
                font-size: 12px;
            }
            
            .slider-arrow {
                width: 30px;
                height: 30px;
                font-size: 20px;
            }
        }

        /* View More Button */
        .primary-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #6c0115;
            color: #d3af37;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #bf2026;
            text-align: center;
            margin-top: 30px;
        }

        .primary-btn:hover {
            background: transparent;
            color: #bf2026;
        }

        .view-more-projects {
            text-align: center;
            margin-top: 50px;
        }