 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #000000 100%);
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
        }

        /* Palestinian Flag Pattern Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%),
                repeating-linear-gradient(
                    90deg,
                    rgba(206, 17, 38, 0.05) 0px,
                    rgba(206, 17, 38, 0.05) 2px,
                    transparent 2px,
                    transparent 20px,
                    rgba(255, 255, 255, 0.03) 20px,
                    rgba(255, 255, 255, 0.03) 22px,
                    transparent 22px,
                    transparent 40px,
                    rgba(0, 122, 61, 0.05) 40px,
                    rgba(0, 122, 61, 0.05) 42px,
                    transparent 42px,
                    transparent 60px
                );
            z-index: -1;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, #ce1126, #ffffff, #007a3d, #000000) 1;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
            .flag-logo {
            position: relative;
            width: 80px;
            height: 60px;
            margin-right: 20px;
            transform: rotate(-8deg);
            transform-origin: center;
            animation: flutter 3s ease-in-out infinite;
        }

        .flag {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .flag-stripe {
            width: 100%;
            height: 33.33%;
            position: relative;
        }

        .flag-stripe.black {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        }

        .flag-stripe.white {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .flag-stripe.green {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }

        .flag-triangle {
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 30px 0 30px 35px;
            border-color: transparent transparent transparent #dc3545;
            background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
            z-index: 10;
        }

        .flag-triangle::before {
            content: '';
            position: absolute;
            left: -35px;
            top: -30px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 30px 0 30px 35px;
            border-color: transparent transparent transparent #e74c3c;
        }
        .flag-glow {
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #dc3545, #28a745, #ffffff, #1a1a1a);
            border-radius: 12px;
            opacity: 0;
            animation: glow 4s ease-in-out infinite;
            z-index: -1;
        }
        @keyframes flutter {
            0%, 100% {
                transform: rotate(-18deg) scale(1);
            }
            25% {
                transform: rotate(-16deg) scale(1.02) translateY(-2px);
            }
            50% {
                transform: rotate(16deg) scale(0.98) translateY(1px);
            }
            75% {
                transform: rotate(18deg) scale(1.01) translateY(-1px);
            }
        }
       .profile-pic2 {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 2px solid transparent;
            background: linear-gradient(45deg, #ce1126, #007a3d);
            padding: 2px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .profile-pic2:hover {
            transform: scale(1.1);
            box-shadow: 0 25px 50px rgba(78, 245, 56, 0.3);
        }

       .profile-pic2 img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            background: darkgray;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ce1126, #ffffff, #007a3d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .logo::after {
            content: '🇵🇸';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-links a:hover {
            color: #007a3d;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ce1126, #007a3d);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ce1126, #ffffff, #007a3d, #000000);
            background-size: 400% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: palestineGradient 4s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(206, 17, 38, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            color: #f0f0f0;
            line-height: 1.7;
        }

        .hero p::before {
            content: '✨ ';
            color: #007a3d;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 2.5rem;
            background: linear-gradient(45deg, #ce1126, #007a3d);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(206, 17, 38, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(206, 17, 38, 0.5);
        }

        /* Palestinian-themed floating elements */
        .floating-element {
            position: absolute;
            animation: float 8s ease-in-out infinite;
            opacity: 0.6;
        }

        .floating-element:nth-child(1) { 
            top: 15%; left: 10%; animation-delay: 0s; 
            content: '🕊️'; font-size: 2rem;
        }
        .floating-element:nth-child(2) { 
            top: 70%; left: 85%; animation-delay: 2s; 
            content: '🌿'; font-size: 1.5rem;
        }
        .floating-element:nth-child(3) { 
            top: 40%; left: 80%; animation-delay: 4s; 
            content: '⭐'; font-size: 1.8rem;
        }
        .floating-element:nth-child(4) { 
            top: 80%; left: 15%; animation-delay: 6s; 
            content: '🏛️'; font-size: 1.6rem;
        }

        .floating-element::after {
            content: attr(data-symbol);
            font-size: 2rem;
        }

        /* Sections */
        section {
            padding: 5rem 0;
            position: relative;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(45deg, #ce1126, #ffffff, #007a3d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ce1126, #007a3d);
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .skill-tag {
            padding: 0.7rem 1.2rem;
            background: rgba(206, 17, 38, 0.1);
            border: 2px solid rgba(206, 17, 38, 0.3);
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            color: #ffffff;
        }

        .skill-tag:hover {
            background: rgba(0, 122, 61, 0.2);
            border-color: #007a3d;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 122, 61, 0.3);
        }

        .about-image {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ce1126, #000000, #007a3d);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            margin: 0 auto;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 0 0 5px rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, #ce1126, #ffffff, #007a3d, #000000, #ce1126);
            animation: rotate 10s linear infinite;
            z-index: -1;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .project-card {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 20px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            border: 2px solid transparent;
            background-clip: padding-box;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #ce1126, #007a3d, #ce1126);
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover::before {
            opacity: 1;
        }

        .project-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .project-card:hover::after {
            left: 100%;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(206, 17, 38, 0.2);
        }

        .project-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: #007a3d;
            font-weight: 600;
        }

        .project-card p {
            opacity: 0.85;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .project-links {
            display: flex;
            gap: 1rem;
        }

        .project-link {
            padding: 0.7rem 1.5rem;
            background: linear-gradient(45deg, #ce1126, #007a3d);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(206, 17, 38, 0.4);
        }

        /* Contact Section */
        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }

        .form-group {
            display: grid;
            gap: 0.8rem;
            text-align: left;
        }

        .form-group label {
            font-weight: 600;
            color: #007a3d;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 1.2rem;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(206, 17, 38, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #007a3d;
            box-shadow: 0 0 0 3px rgba(0, 122, 61, 0.2);
            background: rgba(0, 0, 0, 0.7);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        .pl{
            background: linear-gradient(45deg, #ce1126, #ffffff, #007a3d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .submit-btn {
            padding: 1.2rem 3rem;
            background: linear-gradient(45deg, #ce1126, #007a3d);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            margin: 1rem auto 0;
            max-width: 400px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(206, 17, 38, 0.4);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 3rem 0;
            text-align: center;
            border-top: 3px solid transparent;
            border-image: linear-gradient(90deg, #ce1126, #ffffff, #007a3d) 1;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-link {
            color: #ffffff;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 50px 50px 50px 50px;
        }

        .social-link:hover {
           
            box-shadow: 0 25px 50px rgba(78, 245, 56, 0.3);
            transform: translateY(-5px) scale(1.1);
        }

        /* Palestinian Cultural Elements */
        .cultural-element {
            position: fixed;
            font-size: 1.2rem;
            opacity: 0.3;
            animation: culturalFloat 12s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        .cultural-element:nth-child(1) { top: 10%; right: 5%; animation-delay: 0s; }
        .cultural-element:nth-child(2) { bottom: 20%; left: 3%; animation-delay: 4s; }
        .cultural-element:nth-child(3) { top: 60%; right: 8%; animation-delay: 8s; }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes palestineGradient {
            0%, 100% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 200% 50%; }
            75% { background-position: 300% 50%; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(5deg); }
            66% { transform: translateY(-10px) rotate(-3deg); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes culturalFloat {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
            50% { transform: translateY(-20px) scale(1.1); opacity: 0.6; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .logo::after {
                right: -25px;
                font-size: 1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }
                    .flag-logo {
                margin-right: 0;
            }
            .submit-btn{
                max-width: 300px;
            }
            .profile-pic2{
                width: 300px;
                height: 300px;
                margin-left: auto;
                margin-right: auto;
            }
                     .social-links{
            gap: 1rem;
        }
                      .nav-container{
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }
            @media  (max-width: 480px) {
                    .social-links{
            gap: 0rem;
            margin-bottom: 1rem;
        }
            footer p{
            font-size: 12px;
        }          
        }

