/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #38a169 0%, #68d391 25%, #9ae6b4 50%, #c6f6d5 75%, #f0fff4 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    padding: 1.5rem 0;
    text-align: center;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.tagline {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 400;
}

/* Main Content */
.main-content {
    padding: 0.5rem 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #2d3748;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

/* Demo Info */
.demo-info {
    margin: 1.5rem 0;
}

.demo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(56, 161, 105, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(56, 161, 105, 0.4);
    position: relative;
    overflow: hidden;
}

.highlight-card {
    background: linear-gradient(135deg, #38a169, #68d391, #9ae6b4);
    color: white;
    border: 3px solid #2f855a;
    box-shadow: 0 25px 50px rgba(56, 161, 105, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: pulse-glow 2s infinite;
    position: relative;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 25px 50px rgba(56, 161, 105, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 30px 60px rgba(56, 161, 105, 0.6);
        transform: scale(1.02);
    }
}

.highlight-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}



.demo-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.demo-note {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid #2f855a;
}

.demo-note a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.demo-note a:hover {
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Award Header Styles */
.award-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.award-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 3;
}

.award-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.award-subtitle {
    font-size: 1rem;
    color: #000000;
    margin: 0.3rem 0 0 0;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

.award-description {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border-left: 5px solid #2f855a;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.award-description p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Project Status Styles */
.project-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.status-item {
    display: flex;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.status-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
}

.status-item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(15deg);
    font-size: 8rem;
    opacity: 0.2;
    z-index: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)) brightness(1.2);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.status-item:first-child::before {
    content: '🚀';
}

.status-item:last-child::before {
    content: '🤝';
}

.status-item:hover::before {
    transform: translateY(-50%) rotate(15deg) scale(1.2);
    opacity: 0.3;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2)) brightness(1.3);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}


.status-content {
    position: relative;
    z-index: 3;
}

.status-content h4 {
    color: #000000;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.3rem 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.status-content p {
    color: #000000;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.1px;
}

.contact-email {
    margin-top: 0.5rem;
    position: relative;
    z-index: 3;
    color: #000000;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2px;
}

.contact-email a {
    color: #000000;
    text-decoration: none;
    font-weight: 800;
    background: #38a169;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.8rem;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    border: 2px solid #2f855a;
    letter-spacing: 0.2px;
}

.contact-email a:hover {
    background: #2f855a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.demo-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}


/* Features Preview */
.features-preview {
    margin: 1.5rem 0;
    text-align: center;
}

.features-preview h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(56, 161, 105, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(56, 161, 105, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(56, 161, 105, 0.3);
    border-color: rgba(56, 161, 105, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: left;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.5rem 0;
    color: #4a5568;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px 20px 0 0;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(56, 161, 105, 0.2);
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(56, 161, 105, 0.1);
    animation: float 8s ease-in-out infinite;
    border: 2px solid rgba(56, 161, 105, 0.2);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(56, 161, 105, 0.1), rgba(104, 211, 145, 0.1));
}

.shape-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(104, 211, 145, 0.1), rgba(154, 230, 180, 0.1));
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    background: linear-gradient(45deg, rgba(154, 230, 180, 0.1), rgba(198, 246, 213, 0.1));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .demo-card {
        padding: 2rem 1.5rem;
    }
    
    .features-preview h3 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .status-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .demo-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Detailed Features Section */
.detailed-features {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(56, 161, 105, 0.2);
    box-shadow: 0 10px 25px rgba(56, 161, 105, 0.1);
}

.detailed-features h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-align: center;
}

.feature-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-detail {
    background: rgba(56, 161, 105, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(56, 161, 105, 0.1);
}

.feature-detail h4 {
    color: #1a202c;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.feature-detail ul {
    list-style: none;
    padding: 0;
}

.feature-detail li {
    color: #4a5568;
    margin: 0.6rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.feature-detail li::before {
    content: "🌱";
    color: #38a169;
    font-weight: bold;
    position: absolute;
    left: 0;
}


/* Enhanced Feature Cards */
.feature-card p {
    color: #4a5568;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Ideathon Recognition Section */
.ideathon-section {
    margin: 2rem 0;
    text-align: center;
}

.ideathon-section h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.ideathon-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #e2e8f0;
}

.ideathon-content h4 {
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ideathon-content p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.ideathon-link {
    margin-top: 1.5rem;
}

.ideathon-link a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    background: #38a169;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #2f855a;
}

.ideathon-link a:hover {
    background: #2f855a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .detailed-features {
        padding: 1.5rem;
    }
    
    .feature-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        text-align: center;
    }
    
    .project-status {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .award-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .award-icon {
        font-size: 2.5rem;
    }
    
    .status-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .status-icon {
        font-size: 1.8rem;
    }
}