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

        :root {
            --candy-red: #FF4757;
            --sky-blue: #70A1FF;
            --sunny-yellow: #FFA502;
            --white: #FFFFFF;
            --light-pink: #FFE0E6;
            --light-blue: #E8F4FF;
            --light-yellow: #FFF5E0;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        body {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-blue) 30%, var(--light-yellow) 60%, var(--light-pink) 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Advanced Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            animation: floatAdvanced 8s ease-in-out infinite;
            opacity: 0.7;
        }

        .floating-element:nth-child(1) { top: 10%; left: 5%; font-size: 3rem; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 20%; right: 10%; font-size: 2.5rem; animation-delay: 2s; }
        .floating-element:nth-child(3) { bottom: 30%; left: 15%; font-size: 2rem; animation-delay: 4s; }
        .floating-element:nth-child(4) { bottom: 20%; right: 20%; font-size: 2.8rem; animation-delay: 1s; }
        .floating-element:nth-child(5) { top: 50%; left: 80%; font-size: 2.2rem; animation-delay: 3s; }
        .floating-element:nth-child(6) { top: 70%; left: 10%; font-size: 1.8rem; animation-delay: 5s; }

        @keyframes floatAdvanced {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
                opacity: 0.7; 
            }
            25% { 
                transform: translateY(-30px) translateX(20px) rotate(5deg) scale(1.1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translateY(-60px) translateX(-10px) rotate(-3deg) scale(0.9); 
                opacity: 0.6; 
            }
            75% { 
                transform: translateY(-20px) translateX(15px) rotate(8deg) scale(1.05); 
                opacity: 0.8; 
            }
        }

        /* Sparkle Effect */
        .sparkles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--sunny-yellow);
            border-radius: 50%;
            animation: sparkle 3s linear infinite;
        }

        @keyframes sparkle {
            0% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(0); }
        }

        /* Navigation Bar */
       /* Navbar Base */
.navbar {
  width: 100%;
  background: linear-gradient(90deg, #60a5fa, #f9a8d4, #fde68a); /* light blue → light pink → soft yellow */
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 5px 0;
}

/* Hover Gradient Underline */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #f9a8d4, #fde68a);
  border-radius: 5px;
  transition: width 0.4s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover {
  transform: translateY(-2px);
}

/* CTA Button */
.cta-btn {
  padding: 10px 20px;
  background: linear-gradient(45deg, #60a5fa, #f9a8d4, #fde68a);
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Scale Now Navigation Button */
.scale-nav-btn {
    background: linear-gradient(45deg, #60a5fa, #fde68a) !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.3) !important;
    display: inline-block !important;
}

.scale-nav-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4) !important;
}

.scale-nav-btn::after {
    display: none !important;
}

/* User Info Display */
.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--candy-red), var(--sunny-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.logout-btn {
    background: linear-gradient(45deg, #ff4757, #ff3838) !important;
    color: #ffffff;
    border: none !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3) !important;
}

.logout-btn:hover {
    background: linear-gradient(45deg, #ff3838, #ff2d2d) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4) !important;
}
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 4rem 2rem;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--candy-red), var(--sky-blue), var(--sunny-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            animation: heroAnimation 3s ease-out;
        }

        @keyframes heroAnimation {
            0% { 
                opacity: 0; 
                transform: translateY(50px) scale(0.8); 
            }
            100% { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        /* Section Cards */
        .section-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .section-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 71, 87, 0.1), transparent);
            animation: rotate 20s linear infinite;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .section-card:hover::before {
            opacity: 1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .section-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section-icon {
            font-size: 3rem;
            margin-right: 1rem;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--candy-red);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .section-content {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        /* Contributors Section */
.contributors {
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}
.img{
    font-size:xx-large;
}
.contributor-card h3{
    text-decoration: underline;
}

.xyz {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contributor-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contributor-card {
  background: #fafafa;
  border-radius: 15px;
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contributor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.contributor-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #ff6ec4;
}

.contributor-card h3 a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.contributor-card p {
  font-size: 14px;
  color: #666;
}


        /* Problem List */
        .problem-list {
            list-style: none;
            padding: 0;
        }

        .problem-item {
            background: rgba(255, 71, 87, 0.1);
            border-left: 4px solid var(--candy-red);
            padding: 1rem 1.5rem;
            margin-bottom: 1rem;
            border-radius: 0 15px 15px 0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .problem-item::before {
            content: '⚠️';
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .problem-item:hover {
            background: rgba(255, 71, 87, 0.2);
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(255, 71, 87, 0.2);
        }

        /* How It Works Steps */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .step-card {
            background: linear-gradient(135deg, rgba(112, 161, 255, 0.1), rgba(255, 165, 2, 0.1));
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, var(--sky-blue), var(--sunny-yellow), var(--candy-red));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .step-card:hover::before {
            opacity: 1;
        }

        .step-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(112, 161, 255, 0.2);
        }

        .step-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--sky-blue);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .step-description {
            color: #666;
            font-size: 1rem;
        }

        /* Creator Section */
        .creator-section {
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(112, 161, 255, 0.1));
            border-radius: 30px;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .creator-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--candy-red), var(--sky-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            margin: 0 auto 2rem;
            animation: avatarFloat 3s ease-in-out infinite;
            position: relative;
        }

        .creator-avatar::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sunny-yellow), var(--candy-red), var(--sky-blue));
            z-index: -1;
            animation: avatarGlow 4s ease-in-out infinite;
        }

        @keyframes avatarFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes avatarGlow {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        .creator-name {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--candy-red);
            margin-bottom: 1rem;
        }

        .creator-title {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--sky-blue);
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(112, 161, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.6s ease;
            z-index: 0;
        }

        .social-link:hover::before {
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(112, 161, 255, 0.4);
        }

        .social-link span {
            position: relative;
            z-index: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

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

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

            .section-card {
                padding: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .creator-avatar {
                width: 120px;
                height: 120px;
                font-size: 3rem;
            }

            .creator-name {
                font-size: 2rem;
            }
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--candy-red), var(--sky-blue));
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--sky-blue), var(--sunny-yellow));
        }


        
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer h2 {
    color: #ff7f50;
}

.footer h3 {
    margin-bottom: 10px;
    color: #ff7f50;
}

.footer p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ff7f50;
}

.footer-newsletter input {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}

.footer-newsletter button {
    background-color: #ff7f50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-newsletter button:hover {
    background-color: #ff956b;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: transform 0.3s, opacity 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* Specific brand colors */
.social-icon.linkedin { background: #0077b5; }
.social-icon.github   { background: #6e5494; }
.social-icon.twitter  { background: #1da1f2; }
.social-icon.email    { background: #ff8800; }

.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}
