/* Events Section with Scroll-Triggered Green Effects */
.events-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(22, 163, 74, 0.02));
    transition: background 0.15s ease;
}

.events-section.scroll-active {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.08));
}

.events-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 600px; /* Ensure minimum height for timeline */
    padding: 40px 0 120px 0; /* Add extra bottom padding for view all button */
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 200px; /* Stop before the view all button */
    width: 4px;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.6), rgba(22, 163, 74, 0.8));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    transition: all 0.15s ease;
}

.events-section.scroll-active .timeline-line {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 1));
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    width: 6px;
}

.event-item {
    position: relative;
    margin: 50px 0;
    width: 45%;
}

.event-item:nth-child(odd) {
    left: 0;
}

.event-item:nth-child(even) {
    left: 55%;
}

.event-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.15s ease;
    overflow: hidden;
}

.event-glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.events-section.scroll-active .event-glass-card {
    border-color: rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.08) 0%, 
        rgba(22, 163, 74, 0.05) 50%, 
        rgba(16, 185, 129, 0.08) 100%
    );
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.events-section.scroll-active .event-glass-card:hover {
    transform: translateY(-15px);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
}

.event-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.15s ease;
}

.nexus-icon { 
    background: linear-gradient(135deg, #667eea, #764ba2); 
}
.sci-fari-icon { 
    background: linear-gradient(135deg, #f093fb, #f5576c); 
}
.cascade-icon { 
    background: linear-gradient(135deg, #4facfe, #00f2fe); 
}
.jashn-icon { 
    background: linear-gradient(135deg, #6fed99, #38f9d7); 
}
.gantantra-icon { 
    background: linear-gradient(135deg, #ea507e, #fee140); 
}
.sih-icon { 
    background: linear-gradient(135deg, #ff9a56, #ffa726); 
}

/* Green scroll effects for icons */
.events-section.scroll-active .nexus-icon { 
    background: linear-gradient(135deg, #34d399, #16a34a); 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}
.events-section.scroll-active .sci-fari-icon { 
    background: linear-gradient(135deg, #34d399, #059669); 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}
.events-section.scroll-active .cascade-icon { 
    background: linear-gradient(135deg, #22c55e, #15803d); 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}
.events-section.scroll-active .jashn-icon { 
    background: linear-gradient(135deg, #16a34a, #14532d); 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}
.events-section.scroll-active .gantantra-icon { 
    background: linear-gradient(135deg, #10b981, #047857); 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}
.events-section.scroll-active .sih-icon { 
    background: linear-gradient(135deg, #0ea5e9, #0369a1); 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.event-title {
    font-family: 'Pattanakarn', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    transition: color 0.15s ease;
    letter-spacing: 0.5px;
}

.events-section.scroll-active .event-title {
    color: #ffffff;
}

.event-description {
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

.event-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.tubelight-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.15s;
}

.event-glass-card:hover .tubelight-effect {
    left: 100%;
}

/* Workshops Section - Teal/Cyan Theme */
.workshops-section {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(6, 182, 212, 0.02));
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.workshops-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.workshops-grid::-webkit-scrollbar {
    height: 8px;
}

.workshops-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.workshops-grid::-webkit-scrollbar-thumb {
    background: rgba(17, 89, 138, 0.6);
    border-radius: 10px;
    transition: background 0.15s ease;
}

.workshops-grid::-webkit-scrollbar-thumb:hover {
    background: rgb(50, 181, 190);
}

.workshop-card {
    background: rgba(20, 184, 166, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    min-width: 280px;
    flex-shrink: 0;
}

.workshop-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
    background: rgba(20, 184, 166, 0.12);
}

.workshop-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.workshop-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.15s;
}

.workshop-card:hover .workshop-icon::before {
    left: 100%;
}

.workshop-card h3 {
    font-family: 'Pattanakarn', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.workshop-card p {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Rajdhani', sans-serif;
}

.workshop-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.workshop-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #ffffff;
}

.workshop-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
}

.workshop-btn:hover {
    background: #14b8a6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(20, 184, 166, 0.4);
}

/* Gallery Section - Blue/Navy Theme */
.gallery-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(29, 78, 216, 0.02));
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    aspect-ratio: 3/2 !important;
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 250px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.gallery-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-placeholder {
    text-align: center;
    color: #ffffff;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
    color: #ffffff;
}

/* Teams Section - Green/Emerald Theme */
.teams-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.02));
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

/* Teams Section - Batch-based Design */
.team-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: start;
}

.batch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.batch-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.batch-card::before {
    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.15s ease;
}

.batch-card:hover::before {
    left: 100%;
}

.batch-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.batch-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.batch-card:hover .batch-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.batch-card h3 {
    font-family: 'Pattanakarn', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.batch-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
}

.batch-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Quotes Carousel */
.quotes-carousel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    height: 600px; /* Portrait mode - increased height */
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.carousel-header h3 {
    font-family: 'Pattanakarn', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-btn.prev-btn:hover {
    transform: scale(1.1) rotate(-15deg);
}

.carousel-btn.next-btn:hover {
    transform: scale(1.1) rotate(15deg);
}

.quotes-stack {
    position: relative;
    height: 450px; /* Increased height for portrait */
    perspective: 1000px;
    flex: 1;
    overflow: hidden;
}

.quote-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px; /* Portrait card height */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    opacity: 0;
    transform: translate(-50%, -50%) rotateZ(-8deg) translateY(30px);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quote-card:nth-child(2) {
    transform: translate(-50%, -50%) rotateZ(3deg) translateY(15px);
    opacity: 0.6;
    z-index: 2;
}

.quote-card:nth-child(3) {
    transform: translate(-50%, -50%) rotateZ(-2deg) translateY(8px);
    opacity: 0.3;
    z-index: 1;
}

.quote-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) rotateZ(0deg) translateY(0px);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.quote-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.quote-content p {
    font-family: 'Pattanakarn', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.quote-author {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
}

/* Contact Section - Slate/Steel Theme */
.contact-section {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.05), rgba(51, 65, 85, 0.02));
    border-top: 1px solid rgba(71, 85, 105, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.contact-info {
    background: rgba(71, 85, 105, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 85, 105, 0.15);
    border-radius: 20px;
    padding: 40px;
}

.contact-info h3 {
    font-family: 'Pattanakarn', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.2rem;
    color: #ffffff;
    width: 20px;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Pattanakarn', sans-serif;
}

.contact-item p {
    color: #ffffff;
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.15s ease;
    backdrop-filter: blur(10px);
}

.contact-social-links a:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Platform-specific hover colors */
.contact-social-links a[title="Instagram"]:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: #e1306c;
    color: #e1306c;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.contact-social-links a[title="LinkedIn"]:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077b5;
    color: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.contact-social-links a[title="X (Twitter)"]:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1da1f2;
    color: #1da1f2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.contact-social-links a[title="WhatsApp Channel"]:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    color: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-social-links a[title="Facebook"]:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877f2;
    color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section .social-links {
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
}

/* Animation Classes */
[data-aos] {
    transition-duration: 0.15s;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
}

/* Notifications Page Styles */

/* Light Theme Styles */
body.light-theme .notifications-page {
    background: #F8F9FA;
    padding: 120px 0 2rem 0;
}

body.light-theme .notifications-header h1 {
    font-size: 3rem;
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

body.light-theme .notifications-header h1 i {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

body.light-theme .notifications-subtitle {
    color: #6B7280 !important;
    margin-bottom: 1.5rem;
}

/* Dark Theme Styles */
.notifications-page {
    background: #0D0D10;
    padding: 120px 0 2rem 0;
}

.notifications-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.notifications-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.notifications-header h1 i {
    color: #ffffff;
}

.notifications-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.notifications-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

/* Notification Cards - Light Theme */
body.light-theme .notification-item {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(72, 187, 120, 0.2);
    border-radius: 20px;
    color: #2F855A;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-theme .notification-item:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(72, 187, 120, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 16px 40px rgba(72, 187, 120, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

body.light-theme .notification-item.unread {
    border-left: 4px solid rgba(72, 187, 120, 0.8);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 20px rgba(72, 187, 120, 0.1);
}

body.light-theme .notification-item:hover {
    background: #E6FFFA;
    border-color: #38A169;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.2);
}

body.light-theme .notification-item.unread {
    border-left: 4px solid #38A169;
    background: #E6FFFA;
}

body.light-theme .notification-item.unread::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    background: rgba(72, 187, 120, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(72, 187, 120, 0.5);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(72, 187, 120, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

body.light-theme .notification-icon {
    width: 50px;
    height: 50px;
    background: rgba(72, 187, 120, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(72, 187, 120, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 4px 16px rgba(72, 187, 120, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.light-theme .notification-icon i {
    font-size: 1.2rem;
    color: #48BB78;
    filter: drop-shadow(0 0 8px rgba(72, 187, 120, 0.3));
}

body.light-theme .notification-content h3 {
    color: #2F855A !important;
}

body.light-theme .notification-content p {
    color: #2F855A !important;
}

body.light-theme .notification-time {
    color: #38A169 !important;
}

/* Notification Cards - Dark Theme */
.notification-item {
    background: rgba(26, 54, 49, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(104, 211, 145, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: #B2F5EA;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.notification-item:hover {
    background: rgba(26, 54, 49, 0.4);
    border-color: rgba(104, 211, 145, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 16px 40px rgba(104, 211, 145, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.notification-item.unread {
    border-left: 4px solid rgba(104, 211, 145, 0.8);
    background: rgba(26, 54, 49, 0.35);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 20px rgba(104, 211, 145, 0.1);
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    background: rgba(104, 211, 145, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(104, 211, 145, 0.5);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(104, 211, 145, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

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

.notification-icon {
    width: 50px;
    height: 50px;
    background: rgba(104, 211, 145, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(104, 211, 145, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 4px 16px rgba(104, 211, 145, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.notification-icon i {
    font-size: 1.2rem;
    color: #68D391;
    filter: drop-shadow(0 0 8px rgba(104, 211, 145, 0.3));
}

.notification-content {
    flex: 1;
    padding: 1rem 0 3rem;
}

.notifications-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-content h3 {
    color: #B2F5EA;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.notification-content p {
    color: #B2F5EA;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.notification-link {
    color: #68D391;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.15s ease;
}

.notification-link:hover {
    color: #68D391;
    border-bottom-color: #68D391;
    text-shadow: 0 0 5px rgba(104, 211, 145, 0.3);
}

.notification-time {
    font-size: 0.85rem;
    color: #68D391;
    margin-top: 0.5rem;
    display: block;
}

.notification-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notifications-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #B2F5EA;
}

.notifications-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    color: #68D391;
}

.notifications-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #B2F5EA;
}

/* Light theme empty notifications */
body.light-theme .notifications-empty {
    color: #2F855A;
}

body.light-theme .notifications-empty i {
    color: #38A169;
}

body.light-theme .notifications-empty h3 {
    color: #2F855A;
}

/* Responsive Design for Notifications */
@media (max-width: 768px) {
    .notifications-page {
        padding-top: 80px;
    }
    
    .notifications-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notification-item {
        flex-direction: column;
        text-align: center;
    }
    
    .notification-icon {
        align-self: center;
    }
}

/* Glass Button with Water Fill Effect */
.view-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.15s ease;
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    z-index: 1;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(64, 224, 208, 0.3) 0%,
        rgba(72, 209, 204, 0.4) 50%,
        rgba(64, 224, 208, 0.3) 100%);
    transition: right 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: 50px;
}

.view-more-btn:hover::before {
    right: 0;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(64, 224, 208, 0.4);
    color: #fff;
    text-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

.view-more-btn::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.15s ease;
}

.view-more-btn:hover::after {
    transform: translateX(3px);
}

.gallery-actions {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 0;
}

.events-actions {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 0;
}

/* Responsive Styles for Team Section and Quotes Carousel */
@media (max-width: 1024px) {
    .team-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quotes-carousel {
        height: 500px;
    }
    
    .quote-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .team-layout {
        margin-top: 40px;
    }
    
    .quotes-carousel {
        height: 450px;
        padding: 20px;
    }
    
    .quotes-stack {
        height: 350px;
    }
    
    .quote-card {
        height: 280px;
        padding: 20px;
    }
    
    .quote-content p {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .quotes-carousel {
        height: 400px;
        padding: 15px;
    }
    
    .quotes-stack {
        height: 300px;
    }
    
    .quote-card {
        height: 250px;
        padding: 15px;
    }
    
    .quote-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .carousel-header h3 {
        font-size: 1.1rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

/* Workshop Modal Styles */
.workshop-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-modal.active {
    opacity: 1;
    visibility: visible;
}

.workshop-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.workshop-modal-content {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(37, 99, 235, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(59, 130, 246, 0.2);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-modal.active .workshop-modal-content {
    transform: scale(1) translateY(0);
}

.workshop-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workshop-modal-header h4 {
    font-family: 'Pattanakarn', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    opacity: 1;
    transform: scale(1.1);
    color: #ff6b6b;
}

.workshop-modal-body {
    text-align: center;
}

.workshop-modal-icon {
    margin-bottom: 20px;
}

.workshop-modal-icon i {
    font-size: 3rem;
    color: #60a5fa;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#workshopModalDescription {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #e5e7eb;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Theme variations for workshop modal */
body.light-theme .workshop-modal-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

body.light-theme .workshop-modal-header h4 {
    color: #1f2937;
}

body.light-theme .close-modal {
    color: #6b7280;
}

body.light-theme .close-modal:hover {
    color: #ef4444;
}

body.light-theme #workshopModalDescription {
    color: #4b5563;
}

/* Responsive design for workshop modal */
@media (max-width: 768px) {
    .workshop-modal-content {
        padding: 25px 20px;
        max-width: 95%;
    }
    
    .workshop-modal-header h4 {
        font-size: 1.3rem;
    }
    
    .workshop-modal-icon i {
        font-size: 2.5rem;
    }
    
    #workshopModalDescription {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .workshop-modal-content {
        padding: 20px 15px;
        margin: 20px;
    }
    
    .workshop-modal-header h4 {
        font-size: 1.2rem;
    }
    
    .close-modal {
        font-size: 1.5rem;
        width: 25px;
        height: 25px;
    }
}

/* Team Group Photo Styles */
.team-group-photo {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(37, 99, 235, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.team-group-photo:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.group-photo-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
    aspect-ratio: 16/10;
}

.team-group-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
}

.team-group-photo:hover .team-group-image {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    padding: 40px 25px 25px;
    transform: translateY(60%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-group-photo:hover .photo-overlay {
    transform: translateY(0);
}

.photo-caption {
    text-align: center;
    color: white;
}

.photo-caption h3 {
    font-family: 'Pattanakarn', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.photo-caption p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Image loading state */
.team-group-image {
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(37, 99, 235, 0.05) 100%);
}

/* Fallback for missing image */
.team-group-image:not([src]),
.team-group-image[src=""] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

.team-group-image:not([src])::before,
.team-group-image[src=""]::before {
    content: "📷\ATeam Photo\AComing Soon";
    white-space: pre;
    line-height: 1.6;
}

/* Theme variations for team group photo */
body.light-theme .team-group-photo {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 100%);
    border-color: rgba(59, 130, 246, 0.15);
}

body.light-theme .team-group-photo:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(59, 130, 246, 0.1);
}

/* Responsive design for team group photo */
@media (max-width: 768px) {
    .group-photo-container {
        aspect-ratio: 4/3;
    }
    
    .photo-caption h3 {
        font-size: 1.5rem;
    }
    
    .photo-caption p {
        font-size: 1rem;
    }
    
    .photo-overlay {
        padding: 30px 20px 20px;
        transform: translateY(50%);
    }
}

@media (max-width: 480px) {
    .team-group-photo {
        padding: 15px;
    }
    
    .group-photo-container {
        aspect-ratio: 1/1;
    }
    
    .photo-caption h3 {
        font-size: 1.3rem;
    }
    
    .photo-caption p {
        font-size: 0.95rem;
    }
    
    .photo-overlay {
        padding: 25px 15px 15px;
        transform: translateY(40%);
    }
}

/* About Section SEO Optimized Styles */
.about-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.02));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section .section-title h2 {
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-text h3 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.highlight-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.highlight-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.about-image .glass-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-overlay h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-section .section-title h2 {
        font-size: 2.5rem;
    }
    
    .about-text h3 {
        font-size: 1.7rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-img {
        height: 250px;
    }
    
    .image-overlay {
        padding: 15px;
    }
    
    .image-overlay h4 {
        font-size: 1.1rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
}
