    :root {
        --saffron: #FF9933;
        --white: #FFFFFF;
        --green: #138808;
        --navy: #000080;
        --light-gray: #F8F8F8;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

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

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: var(--light-gray);
        overflow-x: hidden;
    }

    /* Header Section */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, var(--saffron) 0%, var(--white) 50%, var(--green) 100%);
        overflow: hidden;
        color: white;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/eb09cad6-1daf-406d-8d31-ffbba46388c4.png');
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 20px;
        max-width: 800px;
    }

    .hero h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 1rem;
        text-transform: uppercase;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        color: var(--navy);
        animation: fadeInUp 0.8s ease-out;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0;
        animation: fadeIn 1s ease-out 0.3s forwards;
    }

    .btn {
        display: inline-block;
        padding: 15px 30px;
        background-color: var(--green);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        opacity: 0;
        animation: fadeIn 1s ease-out 0.6s forwards;
    }

    /* .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        background-color: #0d7006;
    } */

    /* Tribute Options Section */
    .section {
        padding: 80px 20px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

    .section-title h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        color: var(--navy);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 4px;
        background: linear-gradient(90deg, var(--saffron), var(--green));
        bottom: -8px;
        left: 25%;
    }

    .tribute-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tribute-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        transform: translateY(20px);
        opacity: 0;
        animation: fadeInUp 0.5s ease-out forwards;
    }

    .tribute-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .tribute-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .tribute-card:nth-child(3) {
        animation-delay: 0.6s;
    }

    .tribute-card:nth-child(4) {
        animation-delay: 0.8s;
    }

    .tribute-card:nth-child(5) {
        animation-delay: 1.0s;
    }

    .tribute-card:nth-child(6) {
        animation-delay: 1.2s;
    }

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

    .tribute-icon {
        height: 350px;
        overflow: hidden;
        position: relative;
    }

    .tribute-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .tribute-card:hover .tribute-icon img {
        transform: scale(1.05);
    }

    .tribute-details {
        padding: 20px;
        text-align: center;
    }

    .tribute-details h3 {
        font-family: 'Montserrat', sans-serif;
        color: var(--navy);
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

    /* Upload Section */
    .upload-section {
        background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(19, 136, 8, 0.1) 100%);
        position: relative;
    }

    .upload-container {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: var(--shadow);
        position: relative;
        z-index: 1;
    }

    .upload-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group label {
        font-weight: 600;
        color: var(--navy);
    }

    .form-group input,
    .form-group select {
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--saffron);
        box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
    }

    .file-upload {
        position: relative;
        margin: 20px 0;
    }

    .file-upload-label {
        display: block;
        padding: 40px 20px;
        border: 2px dashed #ccc;
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .file-upload-label:hover {
        border-color: var(--saffron);
        background-color: rgba(255, 153, 51, 0.05);
    }

    .file-upload-label i {
        font-size: 2.5rem;
        color: var(--saffron);
        margin-bottom: 10px;
    }

    .file-upload input {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }

    .file-upload-preview {
        display: none;
        max-width: 100%;
        max-height: 200px;
        margin: 10px auto;
        border-radius: 8px;
        border: 1px solid #eee;
    }

    /* Recent Uploads Section - Fancy Carousel */
    .recent-section {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .recent-slider {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 15px;
        padding: 40px 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .slider-item {
        position: relative;
        transition: all 0.5s ease;
        flex: 0 0 220px;
        height: 250px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    /* Position and scale items */
    .slider-item:nth-child(1),
    .slider-item:nth-child(5) {
        opacity: 0.5;
        height: 180px;
    }

    .slider-item:nth-child(2),
    .slider-item:nth-child(4) {
        height: 220px;
        flex: 0 0 260px;
    }

    .slider-item:nth-child(3) {
        height: 280px;
        flex: 0 0 300px;
        transform: scale(1.1);
        z-index: 2;
    }

    .slider-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider-info {
        padding: 15px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        color: white;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    /* Wall of Salutes Section */
    .wall-section {
        background-color: var(--navy);
        color: white;
    }

    .wall-section .section-title h2 {
        color: white;
    }

    .filters {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 8px 20px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--saffron);
    }

    .wall-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .salute-item {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        position: relative;
        transition: all 0.3s ease;
    }

    .salute-item:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .salute-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .salute-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .salute-item:hover .salute-info {
        opacity: 1;
    }

    .salute-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .salute-info p {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* Share Section */
    .share-section {
        text-align: center;
        padding: 60px 20px;
    }

    .share-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .share-content h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2rem;
        color: var(--navy);
        margin-bottom: 1.5rem;
    }

    .share-content p {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

    .social-share {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--saffron);
        color: white;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .social-btn:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .whatsapp {
        background-color: #25D366;
    }

    .facebook {
        background-color: #3b5998;
    }

    .instagram {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    /* Certificate Section */
    .certificate-section {
        background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(19, 136, 8, 0.1) 100%);
        padding: 80px 20px;
        text-align: center;
    }

    .certificate {
        margin: 40px auto;
        max-width: 800px;
        background: white;
        border-radius: 15px;
        box-shadow: var(--shadow);
        padding: 40px;
        position: relative;
        border: 10px solid transparent;
        border-image: linear-gradient(45deg, var(--saffron), var(--white), var(--green));
        border-image-slice: 1;
    }

    .certificate h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2rem;
        color: var(--navy);
        margin-bottom: 1rem;
    }

    .certificate p {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        color: #555;
    }

    .btn-download {
        background-color: var(--navy);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-download:hover {
        background-color: var(--green);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }



    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1rem;
        }

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

        .tribute-options {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }

        .upload-container {
            padding: 25px;
        }

        .wall-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 2rem;
        }

        .btn {
            padding: 12px 25px;
            font-size: 1rem;
        }

        .section {
            padding: 50px 20px;
        }

        .filters {
            gap: 10px;
        }

        .filter-btn {
            padding: 6px 15px;
            font-size: 0.9rem;
        }

        .wall-grid {
            grid-template-columns: 1fr;
        }

        .certificate {
            padding: 30px 20px;
        }
    }
