* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, 
        rgba(236, 254, 255, 0.95) 0%, 
        rgba(224, 242, 254, 0.9) 25%, 
        rgba(220, 252, 231, 0.95) 50%, 
        rgba(191, 219, 254, 0.9) 75%, 
        rgba(240, 253, 250, 0.95) 100%);
    min-height: 100vh;
    color: #1f2937;
    overflow-x: hidden;
    position: relative;
}

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

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.bubble-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #34d399, #60a5fa);
    left: 10%;
    top: 20%;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    left: 85%;
    top: 15%;
}

.bubble-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(90deg, #34d399, #60a5fa);
    left: 70%;
    top: 60%;
}

.bubble-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(225deg, #60a5fa, #34d399);
    left: 5%;
    top: 70%;
}

.bubble-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(180deg, #34d399, #60a5fa);
    left: 40%;
    top: 10%;
}

.bubble-6 {
    width: 50px;
    height: 50px;
    background: linear-gradient(315deg, #60a5fa, #34d399);
    left: 60%;
    top: 85%;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

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

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

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.pulse-animation {
    animation: pulse 3s ease-in-out infinite;
}

/* Slide up animation for all elements */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass effect */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    border-radius: 16px;
}

.glass-card-no-hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    border-radius: 16px;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(45deg, #1e3a8a, #064e3b);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: -1rem;
    margin-top: -0.5rem;
}

.logo-image {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #059669, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
    margin-top: 0.25rem;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #059669, #1d4ed8);
    transition: width 0.3s ease;
}

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

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

.nav-cta-button {
    margin-left: 1.5rem;
    padding: 0.6rem 1.25rem;
    background: #1e3a8a;
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.3);
    border: none;
    cursor: pointer;
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.5);
    background: #1e40af;
    color: white !important;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d1d5db;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-cta-button {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0;
    position: relative;
    background-image: 
        linear-gradient(135deg, 
            rgba(236, 254, 255, 0.4) 0%, 
            rgba(224, 242, 254, 0.35) 25%, 
            rgba(220, 252, 231, 0.4) 50%, 
            rgba(191, 219, 254, 0.35) 75%, 
            rgba(240, 253, 250, 0.4) 100%),
        url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2139&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(1.6rem, 6vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    letter-spacing: 0.8px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #374151;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 4rem);
    }
    .hero .subtitle {
        font-size: clamp(1.8rem, 5.5vw, 3rem);
        text-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
        letter-spacing: 1px;
    }
    .hero p {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(45deg, #059669, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #059669;
    border: 2px solid #059669;
}

.btn-secondary:hover {
    background: #059669;
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Grid layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cards */
.card {
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.3);
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.03);
}

.team-member:hover .member-image {
    transform: scale(1.1) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.team-member:hover::before {
    left: 100%;
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #059669, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.member-image:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.member-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.member-role {
    background: rgba(5, 118, 105, 0.15);
    color: #047857;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 600;
}

.member-bio {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #047857;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #374151;
    font-weight: 600;
}

/* Add achievement item hover effects */
.achievement-item {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
    color: #059669;
    transition: all 0.3s ease;
}

/* Stats styling without hover effects */
.stat {
    text-align: center;
}

/* Events and Gallery */
.event-card,
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.event-card:hover,
.gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.event-card::before,
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-card:hover::before,
.gallery-item:hover::before {
    opacity: 1;
}

.event-image,
.gallery-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #10b981, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.event-card:hover .event-image,
.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.event-card:hover .event-image i,
.gallery-item:hover .gallery-image i {
    transform: rotateY(180deg) scale(1.2);
    transition: transform 0.6s ease;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    color: #10b981;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.event-description {
    color: #4b5563;
    line-height: 1.5;
}

/* Blog */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid #d1d5db;
    background: rgba(255, 255, 255, 0.7);
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #10b981, #3b82f6);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before {
    left: 0;
}

.filter-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.filter-btn.active {
    background: linear-gradient(45deg, #10b981, #3b82f6);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #10b981, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-card:hover .blog-image i {
    transform: rotate(360deg) scale(1.3);
    transition: transform 0.8s ease;
}

.blog-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-content {
    transform: translateY(-5px);
}

.blog-meta {
    display: flex;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.blog-excerpt {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
    transition: left 0.6s ease;
    z-index: 1;
}

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

.testimonial-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.quote-icon {
    color: #059669;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #059669, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 500;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    color: #047857;
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: scale(1.2);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
}

.contact-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

select.form-input {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #374151;
}

select.form-input:focus {
    background-color: rgba(255, 255, 255, 0.95);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

select.form-input option {
    background: white;
    color: #1f2937;
    padding: 0.5rem;
}

select.form-input option:first-child {
    color: #9ca3af;
}

/* Placeholder styling for select */
select.form-input:invalid {
    color: #9ca3af;
}

/* Testimonial Submission Section */
.testimonial-submission-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .testimonial-submission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.testimonial-form-container {
    padding: 2.5rem;
}

.testimonial-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-form-icon {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-form-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.testimonial-textarea {
    min-height: 120px;
    resize: vertical;
}

.character-count {
    text-align: right;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Star Rating */
.rating-container {
    margin-bottom: 0.5rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1.5rem;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star:hover,
.star.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.star.hover {
    color: #fbbf24;
}

.rating-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #059669;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
    cursor: pointer;
    font-weight: normal;
}

.testimonial-submit-btn {
    width: auto;
    min-width: 180px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Form Messages */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    color: #059669;
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.success-message h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #dc2626;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.error-message h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Guidelines Panel */
.testimonial-guidelines {
    padding: 2rem;
    height: fit-content;
}

.guidelines-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guideline-icon {
    color: #059669;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.guideline-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.guideline-item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.testimonial-examples {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.testimonial-examples h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-examples ul {
    list-style: none;
    padding: 0;
}

.testimonial-examples li {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.testimonial-examples li::before {
    content: "•";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

#submitBtn:disabled:hover {
    background: linear-gradient(45deg, #10b981, #3b82f6);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f3460 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3rem 0 1rem;
    color: #e2e8f0;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: #10b981;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    color: #cbd5e1;
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
}

/* Utility classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none; }
