/* ===== ROOT VARIABLES ===== */
:root {
    --green-primary: #4A7F61;
    --green-dark: #3d5d51;
    --green: #5a9a75;
    --green-light: #6fa391;
    --brown: #6e5a4d;
    --bg-light: #f5f5f5;
    /* Accent Colors */
    --gold: #D4A853;
    --gold-dark: #B8923F;
    --coral: #E07B54;
    --coral-dark: #C96842;
    --teal: #3D8B8B;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== NAVBAR ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s;
}

.logo a:hover img {
    transform: scale(1.02);
}

nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #555;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--green-primary);
    background: rgba(74, 127, 97, 0.08);
}

.nav-links a.active {
    color: var(--green-primary);
    background: rgba(74, 127, 97, 0.12);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--green-primary);
    border-radius: 2px;
}

.nav-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(224, 123, 84, 0.3);
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 123, 84, 0.4);
    background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 100%);
}

.nav-contact-btn i {
    font-size: 12px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--green-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #4A7F61 0%, #5d6d5e 50%, #6e5a4d 100%);
    color: #fff;
    padding: 45px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    min-height: 65vh;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

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

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

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text .subtitle {
    font-size: 20px;
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-text p {
    font-size: 19px;
    font-weight: 400;
    max-width: 480px;
    line-height: 1.6;
}

/* Hero CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--green-primary);
    border-color: #fff;
    transform: translateY(-3px);
}

/* ===== PROCESS IMAGE ===== */
.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.process-image {
    max-width: 100%;
    width: 550px;
    height: auto;
}

/* ===== PAGE HEADER (Contact page) ===== */
.page-header {
    background: linear-gradient(135deg, #4A7F61 0%, #5d6d5e 50%, #6e5a4d 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== UPCOMING WEBINARS ===== */
.upcoming-webinars {
    padding: 80px 0;
    background: #fff;
}

.upcoming-webinars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.upcoming-webinars .section-header h2 {
    color: var(--green-primary);
}

.upcoming-webinars .section-header p {
    color: #666;
}

.upcoming-webinars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.upcoming-webinar-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.upcoming-webinar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.webinar-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.webinar-icon.gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
}

.webinar-icon.coral {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    box-shadow: 0 8px 25px rgba(224, 123, 84, 0.4);
}

.webinar-icon.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #2d7a7a 100%);
    box-shadow: 0 8px 25px rgba(61, 139, 139, 0.4);
}

.webinar-icon.green {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    box-shadow: 0 8px 25px rgba(74, 127, 97, 0.4);
}

.webinar-content {
    flex: 1;
}

.webinar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(74, 127, 97, 0.1);
    color: var(--green-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.webinar-badge i {
    font-size: 11px;
}

.webinar-content h3 {
    color: var(--green-primary);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.webinar-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.webinar-meta {
    margin-bottom: 18px;
}

.webinar-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 13px;
}

.webinar-time i {
    color: var(--coral);
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(224, 123, 84, 0.3);
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(224, 123, 84, 0.4);
    background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 100%);
}

.empty-webinars {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: 20px;
}

.empty-webinars .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(74, 127, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-webinars .empty-icon i {
    font-size: 36px;
    color: var(--green-primary);
    opacity: 0.6;
}

.empty-webinars h3 {
    color: var(--green-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-webinars p {
    color: #666;
    font-size: 15px;
}

/* Upcoming Webinars Responsive */
@media (max-width: 1024px) {
    .upcoming-webinars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .upcoming-webinars-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-webinar-card {
        flex-direction: column;
        text-align: center;
    }

    .webinar-icon {
        margin: 0 auto;
    }

    .webinar-badge {
        justify-content: center;
    }

    .webinar-time {
        justify-content: center;
    }

    .register-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Legacy webinars support */
.webinars {
    padding: 80px 0;
    background: var(--bg-light);
}

.webinars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.webinars h2 {
    color: var(--green-primary);
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    border: 2.5px solid #d4c4b0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
    color: var(--green-primary);
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.date {
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 18px;
    font-size: 15px;
}

.card p {
    font-size: 13px;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(224, 123, 84, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 123, 84, 0.4);
}

/* ===== PAST WEBINARS SECTION ===== */
.past-webinars {
    padding: 80px 0;
    background: #fff;
}

.past-webinars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.past-webinars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.past-webinar-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.past-webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.past-webinar-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.past-webinar-icon.gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.past-webinar-icon.coral {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}

.past-webinar-icon.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #2d7a7a 100%);
}

.past-webinar-icon.green {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
}

.past-webinar-content {
    flex: 1;
}

.past-webinar-content h3 {
    color: var(--green-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.past-webinar-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.past-webinar-date i {
    color: var(--gold);
}

.past-webinar-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #FF0000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.watch-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.recording-pending {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(136, 136, 136, 0.1);
    color: #888;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

/* Past Webinars Responsive */
@media (max-width: 1024px) {
    .past-webinars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .past-webinars-grid {
        grid-template-columns: 1fr;
    }

    .past-webinar-card {
        flex-direction: column;
        text-align: center;
    }

    .past-webinar-icon {
        margin: 0 auto;
    }

    .past-webinar-date {
        justify-content: center;
    }
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    text-decoration: none;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 127, 97, 0.25);
    background: var(--green-primary);
    color: #fff;
}

/* Past Webinars Page */
.past-webinars-page {
    padding: 60px 0 80px;
    background: #fff;
}

.past-webinars-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services {
    padding: 80px 0;
    background: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--green-primary);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Service icon color variations */
.service-icon.gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.service-icon.coral {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}

.service-icon.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #2D6B6B 100%);
}

.service-icon.green {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green) 100%);
}

.service-card h3 {
    color: var(--green-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SERVICES ACCORDION ===== */
.services-accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-accordion-item {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-accordion-header:hover {
    background: rgba(74, 127, 97, 0.05);
}

.service-accordion-header .service-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0;
    flex-shrink: 0;
}

.service-accordion-header h3 {
    flex: 1;
    color: var(--green-primary);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-arrow {
    color: var(--green-primary);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.service-accordion-item.active .service-accordion-content {
    max-height: 200px;
}

.service-accordion-content p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    color: var(--green-primary);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.about-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    color: var(--green-primary);
    font-size: 20px;
}

.about-feature span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--green-primary);
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--green-primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: #ddd;
    font-size: 14px;
    margin-right: 2px;
}

.testimonial-rating i.active {
    color: var(--gold);
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    color: var(--green-primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info span {
    color: #888;
    font-size: 12px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* Contact Info */
.contact-info {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    color: var(--green-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.contact-info>p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--green-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

.info-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--green-primary);
}

/* Social Links */
.social-links {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.social-links h3 {
    color: var(--green-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons .social-icon {
    background: var(--green-primary);
}

.social-icons .social-icon:hover {
    background: var(--green);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    color: var(--green-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-form-wrapper>p {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(74, 127, 97, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.btn-submit {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--teal) 0%, #2D6B6B 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(61, 139, 139, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2D6B6B 0%, var(--teal) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 139, 139, 0.4);
}

/* ===== REGISTER PAGE ===== */
.register-section {
    padding: 60px 0 80px;
    background: #fff;
}

.register-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.webinar-selection h2,
.register-form-wrapper h2 {
    font-size: 22px;
    color: var(--green-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

/* Webinar Options */
.webinar-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.webinar-option {
    cursor: pointer;
}

.webinar-option input[type="radio"] {
    display: none;
}

.webinar-option-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.webinar-option input[type="radio"]:checked+.webinar-option-content {
    border-color: var(--green-primary);
    background: #fff;
    box-shadow: 0 5px 20px rgba(74, 127, 97, 0.15);
}

.webinar-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.webinar-option-icon.gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.webinar-option-icon.coral {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}

.webinar-option-icon.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #2D6B6B 100%);
}

.webinar-option-details {
    flex: 1;
}

.webinar-option-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.webinar-date,
.webinar-time {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.webinar-date i,
.webinar-time i {
    width: 16px;
    color: var(--green-primary);
    margin-right: 5px;
}

.webinar-desc {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.webinar-check {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: var(--green-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.webinar-option input[type="radio"]:checked+.webinar-option-content .webinar-check {
    opacity: 1;
    transform: scale(1);
}

/* Registration Form */
.register-form-wrapper {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 35px;
}

.register-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.register-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.register-form input,
.register-form select,
.register-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(74, 127, 97, 0.1);
}

.register-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

/* Checkbox styling */
.checkbox-group {
    margin-bottom: 15px !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: 13px !important;
    color: #555 !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--green-primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Register Button */
.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 123, 84, 0.3);
    margin-top: 10px;
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 123, 84, 0.4);
}

/* Registration Info */
.register-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

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

.info-item i {
    width: 20px;
    color: var(--green-primary);
    font-size: 16px;
}

/* Register page responsive */
@media (max-width: 900px) {
    .register-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .register-form .form-row {
        grid-template-columns: 1fr;
    }

    .register-form-wrapper {
        padding: 25px 20px;
    }

    .webinar-option-content {
        flex-wrap: wrap;
    }

    .webinar-option-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #4A7F61, var(--brown));
    color: #fff;
    padding: 35px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.footer-contact {
    text-align: left;
}

.footer-contact p {
    margin-bottom: 5px;
}

.footer-email {
    text-align: center;
}

.footer-email p {
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    font-size: 16px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

.logo-footer {
    width: 45px;
    height: 45px;
    margin-left: 15px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 25px 20px 0;
}

.footer-copyright {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright p {
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto;
    }

    .cards,
    .services-grid,
    .services-accordion,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 16px;
    }

    /* Mobile Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero adjustments */
    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text .subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 25px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 13px;
    }

    .hero-container {
        min-height: auto;
    }

    /* Page header adjustments */
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    /* Section adjustments */
    .services,
    .about,
    .testimonials,
    .webinars,
    .contact-section {
        padding: 60px 0;
    }

    .section-header h2,
    .about-content h2 {
        font-size: 26px;
    }

    /* About stats */
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    /* Footer adjustments */
    footer {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 55px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .section-header h2,
    .about-content h2 {
        font-size: 22px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* ===== DISCOVERIES SECTION ===== */
.discoveries {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.discoveries .section-header h2 {
    color: #fff;
}

.discoveries .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.discoveries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Carousel Wrapper */
.discoveries-carousel-wrapper {
    position: relative;
    margin: 40px 0 30px;
}

.discoveries-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.discoveries-carousel::-webkit-scrollbar {
    display: none;
}

/* Discovery Slide */
.discovery-slide {
    flex: 0 0 calc(50% - 15px);
    min-width: 400px;
    max-width: 600px;
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
}

.discovery-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s, box-shadow 0.4s;
}

.discovery-slide:hover .discovery-image-wrapper {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.discovery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.discovery-slide:hover .discovery-image-wrapper img {
    transform: scale(1.1);
}

.discovery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green) 100%);
}

.discovery-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.5);
}

/* Discovery Overlay */
.discovery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 30px 30px;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.discovery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.discovery-slide:hover .discovery-badge {
    background: var(--green);
}

.discovery-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--green-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--green-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
    background: var(--green-primary);
    transform: scale(1.2);
}

.empty-discoveries {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.empty-discoveries i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.empty-discoveries p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* ===== QUICK LINKS SECTION ===== */
.quick-links {
    padding: 80px 0;
    background: var(--bg-light);
}

.quick-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.quick-link-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quick-link-card.research-studio {
    border-top-color: #FF0000;
}

.quick-link-card.project-topics {
    border-top-color: var(--teal);
}

.quick-link-card.research-assistant {
    border-top-color: var(--green-primary);
}

.quick-link-card.coming-soon {
    border-top-color: var(--gold);
}

.quick-link-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.research-studio .quick-link-icon {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

.project-topics .quick-link-icon {
    background: rgba(61, 139, 139, 0.1);
    color: var(--teal);
}

.research-assistant .quick-link-icon {
    background: rgba(74, 127, 97, 0.1);
    color: var(--green-primary);
}

.coming-soon .quick-link-icon {
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold);
}

.quick-link-content h3 {
    color: var(--green-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-link-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quick-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--green-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.research-studio .quick-link-btn {
    background: #FF0000;
}

.project-topics .quick-link-btn {
    background: var(--teal);
}

.quick-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* ===== REGISTRATION SECTION ===== */
.registration-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.registration-info h2 {
    color: var(--green-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 30px;
    color: var(--green-primary);
    flex-shrink: 0;
}

.info-card h3 {
    color: var(--green-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.registration-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.registration-form label {
    display: block;
    color: var(--green-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.registration-form .required {
    color: var(--coral);
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(74, 127, 97, 0.1);
}

.registration-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.registration-form .error-message {
    color: var(--coral);
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
}

/* ===== TOPICS SECTION ===== */
.topics-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.topics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.topics-filters {
    margin-bottom: 40px;
}

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

.search-form .search-box {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-form .search-box i {
    padding: 16px 0 16px 20px;
    color: #999;
}

.search-form .search-box input {
    flex: 1;
    padding: 16px;
    border: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.search-form .search-box input:focus {
    outline: none;
}

.search-form .search-btn {
    padding: 16px 30px;
    background: var(--green-primary);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form .search-btn:hover {
    background: var(--green-dark);
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-tag {
    padding: 10px 20px;
    background: #fff;
    color: var(--green-primary);
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-tag:hover,
.category-tag.active {
    background: var(--green-primary);
    color: #fff;
}

.topics-count {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.topic-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.topic-header {
    margin-bottom: 10px;
}

.topic-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(74, 127, 97, 0.1);
    color: var(--green-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.topic-title {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
}

.topic-description {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.topic-footer {
    margin-top: auto;
}

.topic-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.topic-link:hover {
    color: var(--green);
}

.empty-topics {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
}

.empty-topics i {
    font-size: 60px;
    color: var(--green-primary);
    opacity: 0.4;
    margin-bottom: 20px;
}

.empty-topics h3 {
    color: var(--green-primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.empty-topics p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.topics-cta {
    text-align: center;
    padding: 50px;
    background: #fff;
    border-radius: 16px;
}

.topics-cta h3 {
    color: var(--green-primary);
    font-size: 22px;
    margin-bottom: 10px;
}

.topics-cta p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .quick-links-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .quick-links-container {
        grid-template-columns: 1fr;
    }

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

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

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

    .registration-form .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form-container {
        padding: 30px 20px;
    }
}

/* ===== ADMIN ADDITIONAL STYLES ===== */
.discovery-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.discovery-cell,
.topic-cell,
.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discovery-cell .discovery-info,
.topic-cell {
    display: flex;
    flex-direction: column;
}

.discovery-cell .discovery-info strong,
.topic-cell strong {
    color: #333;
    font-size: 14px;
}

.discovery-cell .discovery-info small,
.topic-cell small {
    color: #888;
    font-size: 12px;
}

.discovery-cell .discovery-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.link-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(74, 127, 97, 0.1);
    color: var(--green-primary);
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.link-badge:hover {
    background: var(--green-primary);
    color: #fff;
}

.category-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(61, 139, 139, 0.1);
    color: var(--teal);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.large-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.btn-success {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-outline-danger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
}

.detail-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
}

.link-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-primary);
    word-break: break-all;
}

/* ===== FEATURE ROWS SECTION ===== */
.feature-rows {
    background: #fff;
}

.feature-row {
    padding: 100px 0;
}

.feature-row:nth-child(even) {
    background: var(--bg-light);
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-row.alternate .feature-container {
    direction: rtl;
}

.feature-row.alternate .feature-container>* {
    direction: ltr;
}

.feature-visual {
    position: relative;
    height: 400px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.research-studio-visual {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.topics-visual {
    background: linear-gradient(135deg, var(--teal) 0%, #2d7a7a 100%);
}

.assistant-visual {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
}

.feature-icon-wrapper {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.feature-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
}

.deco-1 {
    top: 10%;
    left: 10%;
    animation: orbit 8s linear infinite;
}

.deco-2 {
    top: 15%;
    right: 15%;
    animation: orbit 10s linear infinite reverse;
}

.deco-3 {
    bottom: 15%;
    left: 20%;
    animation: orbit 12s linear infinite;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(20px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(20px) rotate(-360deg);
    }
}

.feature-content {
    padding: 20px 0;
}

.feature-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(74, 127, 97, 0.1);
    color: var(--green-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.feature-content h2 {
    color: var(--green-primary);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 15px;
    margin-bottom: 12px;
}

.feature-list li i {
    color: var(--green-primary);
    font-size: 18px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.youtube-btn {
    background: #FF0000;
    color: #fff;
}

.youtube-btn:hover {
    background: #CC0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.teal-btn {
    background: var(--teal);
    color: #fff;
}

.teal-btn:hover {
    background: #2d7a7a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(61, 139, 139, 0.3);
}

.green-btn {
    background: var(--green-primary);
    color: #fff;
}

.green-btn:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 127, 97, 0.3);
}

/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.coming-soon-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-content {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.coming-soon-content h2 {
    color: var(--gold);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.coming-soon-description {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.upcoming-courses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.course-preview {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.course-preview h3 {
    color: var(--green-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-preview p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.notify-section {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.notify-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.notify-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.notify-section .btn-primary {
    background: #fff;
    color: var(--green-primary);
}

.notify-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Feature Rows Responsive */
@media (max-width: 1024px) {
    .feature-container {
        gap: 50px;
    }

    .feature-content h2 {
        font-size: 28px;
    }

    .feature-visual {
        height: 350px;
    }

    .feature-icon-wrapper {
        width: 120px;
        height: 120px;
        font-size: 55px;
    }
}

@media (max-width: 768px) {
    .feature-row {
        padding: 60px 0;
    }

    .feature-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row.alternate .feature-container {
        direction: ltr;
    }

    .feature-visual {
        height: 280px;
        order: -1;
    }

    .feature-content h2 {
        font-size: 26px;
    }

    .feature-btn {
        width: 100%;
        justify-content: center;
    }

    .coming-soon-content {
        padding: 40px 25px;
    }

    .upcoming-courses {
        grid-template-columns: 1fr;
    }

    .course-preview {
        text-align: center;
    }

    .course-icon {
        margin: 0 auto 20px;
    }
}

/* Mobile Navigation Responsive */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        gap: 20px;
    }

    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 20px;
        font-size: 15px;
        border-radius: 10px;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-contact-btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        padding: 16px 24px;
        font-size: 14px;
    }

    .hamburger {
        display: flex;
    }
}