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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c7a2c 0%, #4a9d4a 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    object-fit: cover;
    object-position: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 122, 44, 0.8), rgba(74, 157, 74, 0.8)),
                url('images/Yam.jpg') center/cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.conference-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.detail-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #2c7a2c;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: white;
    color: #2c7a2c;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.organizers h3 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
}

.organizer-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #2c7a2c;
}

.organizer-item h4 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.organizer-item p {
    color: #666;
}

/* Sessions Section */
.sessions {
    background: #f8f9fa;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.session-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.session-category h3 {
    font-size: 1.3rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.session-category ul {
    list-style: none;
}

.session-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.session-category li:last-child {
    border-bottom: none;
}

/* Speakers Section */
.speakers {
    background: white;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.speaker-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.speaker-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2c7a2c;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.3);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.speaker-info h3 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.speaker-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
}

.speaker-role {
    color: #666;
    font-size: 0.9rem;
}

/* Registration Section */
.registration {
    background: #f8f9fa;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.registration-fees h3,
.payment-info h3 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
}

.fee-cards {
    display: grid;
    gap: 1rem;
}

.fee-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-3px);
}

.fee-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a2c;
}

.payment-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.payment-details p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.payment-details strong {
    color: #2c7a2c;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.office-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #2c7a2c;
}

.office-section h3 {
    font-size: 1.8rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.office-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.office-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c7a2c, #ffd700);
}

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

.main-office {
    border-left: 4px solid #2c7a2c;
}

.annex-office {
    border-left: 4px solid #ffd700;
}

.office-card h4 {
    font-size: 1.4rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-card h4 i {
    font-size: 1.2rem;
    color: #ffd700;
}

.office-info {
    margin-bottom: 1.5rem;
}

.office-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.office-info i {
    color: #2c7a2c;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    min-width: 15px;
}

.office-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-tag {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-tag:hover {
    transform: scale(1.05);
}

.feature-tag i {
    font-size: 0.8rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #ffd700;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

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

.enquiry-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #2c7a2c;
    position: relative;
    overflow: hidden;
}

.enquiry-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(44, 122, 44, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 0 0 0 100%;
}

.enquiry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left-color: #ffd700;
}

.enquiry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.enquiry-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.3);
    flex-shrink: 0;
}

.enquiry-title h4 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.enquiry-role {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.enquiry-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(44, 122, 44, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-detail:hover {
    background: rgba(44, 122, 44, 0.1);
}

.contact-detail i {
    color: #2c7a2c;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-detail span {
    color: #333;
    font-size: 0.95rem;
}

.contact-info h3,
.contact-details h3 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
}

.contact-info h4 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.contact-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #2c7a2c;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item strong {
    color: #2c7a2c;
}

.contact-item a {
    color: #2c7a2c;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.office-image {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c7a2c;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #1a5a1a;
    text-decoration: none;
}

.map-link i {
    color: #ffd700;
}

/* Footer */
.footer {
    background: #2c7a2c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text h3 {
        font-size: 1.2rem;
    }
    
    .conference-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content,
    .registration-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-text h3 {
        font-size: 1rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(44, 122, 44, 0.8), rgba(74, 157, 74, 0.8)),
                url("images/present1.jpeg") center/cover;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-intro {
    background: white;
    padding: 80px 0;
}

.about-intro .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-intro h3 {
    font-size: 2rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Membership Grades Section */
.membership-grades {
    background: #f8f9fa;
    padding: 80px 0;
}

.membership-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.membership-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.membership-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #f0f0f0;
}

.membership-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.premium .membership-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c7a2c;
}

.professional .membership-icon {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
}

.entry .membership-icon {
    background: linear-gradient(135deg, #4a9d4a, #6fb86f);
}

.corporate .membership-icon {
    background: linear-gradient(135deg, #1a5a1a, #2c7a2c);
}

.student .membership-icon {
    background: linear-gradient(135deg, #6fb86f, #8fd68f);
}

.membership-header h3 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.membership-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: #f0f0f0;
    color: #666;
}

.premium .membership-badge {
    background: #fff3cd;
    color: #856404;
}

.membership-content {
    padding: 2rem;
}

.membership-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.membership-content h4 {
    font-size: 1.1rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.membership-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.membership-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.membership-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c7a2c;
    font-weight: bold;
}

.benefits {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2c7a2c;
}

.benefits h4 {
    font-size: 1rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.benefits p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Membership Card Section */
.membership-card-section {
    background: white;
    padding: 80px 0;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.card-info h3 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.card-field {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c7a2c;
}

.card-field i {
    color: #2c7a2c;
    font-size: 1.2rem;
}

.card-benefits h3 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    flex-direction: column;
}

.benefit-item i {
    color: #2c7a2c;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-item span {
    font-size: 0.9rem;
    color: #555;
}

.card-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #2c7a2c;
}

.card-validity p {
    color: #555;
    margin: 0;
}

.cta-button .btn {
    background: #2c7a2c;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button .btn:hover {
    background: #1a5a1a;
    transform: translateY(-2px);
}

/* Navigation Active State */
.nav a.active {
    color: #ffd700;
}

/* Training Page Styles */
.training-hero {
    background: linear-gradient(rgba(44, 122, 44, 0.8), rgba(74, 157, 74, 0.8)),
                url('images/Agric-tech-edit.jpg') center/cover;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.training-intro {
    background: white;
    padding: 80px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h3 {
    font-size: 2rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c7a2c;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Training Month Sections */
.training-month {
    background: #f8f9fa;
    padding: 80px 0;
}

.training-month:nth-child(even) {
    background: white;
}

.month-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.month-header h2 {
    font-size: 2.5rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.month-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.program-card.featured {
    border: 2px solid #ffd700;
}

.program-card.intensive {
    border: 2px solid #ff6b6b;
}

.program-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: #ffd700;
    color: #2c7a2c;
}

.program-card.intensive .program-badge {
    background: #ff6b6b;
    color: white;
}

.program-header h3 {
    font-size: 1.4rem;
    color: #2c7a2c;
    margin: 0;
    line-height: 1.3;
}

.program-content {
    padding: 2rem;
}

.program-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.program-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(44, 122, 44, 0.05);
    border-radius: 8px;
}

.highlight-item i {
    color: #2c7a2c;
    font-size: 1.2rem;
}

.highlight-item span {
    color: #555;
    font-size: 0.95rem;
}

.program-modules,
.program-target,
.program-market,
.program-curriculum,
.program-opportunities,
.program-description {
    margin-bottom: 1.5rem;
}

.program-modules h4,
.program-target h4,
.program-market h4,
.program-curriculum h4,
.program-opportunities h4,
.program-description h4 {
    font-size: 1.1rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.program-modules ul,
.program-curriculum ul {
    list-style: none;
    margin: 0;
}

.program-modules li,
.program-curriculum li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.program-modules li::before,
.program-curriculum li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c7a2c;
    font-weight: bold;
}

.program-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item i {
    color: #2c7a2c;
    font-size: 1rem;
}

.detail-item span {
    color: #555;
    font-size: 0.95rem;
}

.detail-item strong {
    color: #2c7a2c;
}

.program-cta {
    text-align: center;
}

.program-cta .btn {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.program-cta .btn:hover {
    background: linear-gradient(135deg, #1a5a1a, #2c7a2c);
    transform: translateY(-2px);
}

/* Training Contact Section */
.training-contact {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    color: white;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-actions .btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffd700;
    color: #2c7a2c;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: white;
    color: #2c7a2c;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

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

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

.contact-item span {
    color: white;
    line-height: 1.6;
}

/* Responsive Design for Training Page */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-actions .btn {
        width: 200px;
        justify-content: center;
    }
}

/* Governing Council Page Styles */
.council-hero {
    background: linear-gradient(rgba(44, 122, 44, 0.8), rgba(74, 157, 74, 0.8)),
                url('images/present2.jpeg') center/cover;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.governance-intro {
    background: white;
    padding: 80px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text h3 {
    font-size: 2rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

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

.governance-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #2c7a2c;
}

.governance-item:hover {
    transform: translateY(-3px);
}

.governance-item i {
    font-size: 2.5rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.governance-item h4 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.governance-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.tenure-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tenure-card {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 122, 44, 0.3);
}

.tenure-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tenure-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tenure-details p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Council Members Section */
.council-members {
    background: #f8f9fa;
    padding: 80px 0;
}

.search-section {
    margin-bottom: 3rem;
}

.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-input-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #2c7a2c;
    font-size: 1.2rem;
}

#councilSearch {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

#councilSearch::placeholder {
    color: #999;
}

/* Council Table */
.council-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.table-responsive {
    overflow-x: auto;
}

.council-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.council-table th {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.council-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.council-table tr:last-child td {
    border-bottom: none;
}

.council-table tr:hover {
    background: rgba(44, 122, 44, 0.05);
}

.designation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}

.designation-badge.president {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c7a2c;
}

.designation-badge.vice-president {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
}

.designation-badge.deputy-vice-president {
    background: linear-gradient(135deg, #4a9d4a, #6fb86f);
}

.member-info h4 {
    font-size: 1.1rem;
    color: #2c7a2c;
    margin: 0;
    font-weight: 600;
}

.member-details {
    color: #666;
    line-height: 1.6;
}

/* Council Cards (Mobile View) */
.council-cards {
    display: none;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.council-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.council-card:hover {
    transform: translateY(-3px);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
}

.serial-number {
    background: #2c7a2c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-body {
    padding: 1.5rem;
}

.card-body h4 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.card-body .member-details {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Leadership Values Section */
.leadership-values {
    background: white;
    padding: 80px 0;
}

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

.value-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #2c7a2c;
    box-shadow: 0 15px 40px rgba(44, 122, 44, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(44, 122, 44, 0.3);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Council Page */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .governance-features {
        grid-template-columns: 1fr;
    }
    
    .council-table-container {
        display: none;
    }
    
    .council-cards {
        display: grid;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .tenure-card {
        flex-direction: column;
        text-align: center;
    }
}

/* New Comprehensive Homepage Styles */
.main-hero {
    background: linear-gradient(rgba(44, 122, 44, 0.8), rgba(74, 157, 74, 0.8)),
                url('images/Yam-Farming.jpg') center/cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.main-hero h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-hero h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Side-by-Side Conference Comparison Styles */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.conference-column {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.conference-column:hover {
    transform: translateY(-5px);
}

.conference-column.agriculture {
    border: 3px solid #ffd700;
}

.conference-column.hospitality {
    border: 3px solid #4a9d4a;
}

.conference-header-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #eee;
}

.conference-header-section h3 {
    font-size: 1.8rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.conference-header-section h4 {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.conference-content {
    padding: 2rem;
}

.conference-theme {
    margin: 2rem 0;
}

.conference-theme h5 {
    font-size: 1.1rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.conference-theme p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.sub-themes-preview {
    margin: 2rem 0;
}

.sub-themes-preview h5 {
    font-size: 1.1rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.themes-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.theme-category h6 {
    font-size: 0.9rem;
    color: #2c7a2c;
    margin-bottom: 0.8rem;
    text-align: center;
}

.theme-category ul {
    list-style: none;
}

.theme-category li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    color: #555;
    font-size: 0.85rem;
}

.theme-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c7a2c;
    font-weight: bold;
    font-size: 0.7rem;
}

.conference-contact {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c7a2c;
}

.conference-contact h5 {
    font-size: 1rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.conference-contact p {
    margin: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}

.conference-contact strong {
    color: #2c7a2c;
}

.conference-action {
    margin-top: 2rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Tab System Styles */
.additional-info {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.info-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #2c7a2c;
    background: white;
    color: #2c7a2c;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #f8f9fa;
}

.tab-btn.active {
    background: #2c7a2c;
    color: white;
}

.tab-content {
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.conference-details-full h4 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
    text-align: center;
}

.key-contacts {
    margin: 2rem 0;
}

.key-contacts h5 {
    font-size: 1.1rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.contacts-grid {
    display: grid;
    gap: 1rem;
}

.contact-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #2c7a2c;
    color: #555;
    font-size: 0.9rem;
}

.full-comparison {
    text-align: center;
    padding: 2rem;
}

.full-comparison h4 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.full-comparison p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.comparison-cta {
    text-align: center;
}

/* Responsive Design for Side-by-Side Layout */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .themes-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .info-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .conference-column {
        margin-bottom: 2rem;
    }
}

/* Update existing conference announcement styles */
.conference-announcement {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 80px 0;
    border-bottom: 2px solid #2c7a2c;
}

.announcement-content {
    max-width: 1400px;
    margin: 0 auto;
}

.announcement-content h2 {
    font-size: 2.5rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
    text-align: center;
}

.announcement-content p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.conference-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c7a2c;
}

.detail-item i {
    color: #2c7a2c;
    font-size: 1.2rem;
}

/* Sub-themes Section */
.sub-themes {
    margin: 3rem 0;
}

.sub-themes h4 {
    font-size: 1.8rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.sub-themes h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.theme-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2c7a2c;
}

.theme-category h5 {
    font-size: 1.3rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.theme-category ul {
    list-style: none;
}

.theme-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #eee;
}

.theme-category li:last-child {
    border-bottom: none;
}

.theme-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c7a2c;
    font-weight: bold;
}

/* Registration Section */
.registration-info {
    margin: 3rem 0;
}

.registration-info h4 {
    font-size: 1.8rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.registration-info h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

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

.fee-item {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.fee-item:hover {
    transform: translateY(-3px);
}

.fee-category {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.fee-amount {
    font-size: 1.8rem;
    font-weight: 700;
}

.payment-details,
.important-dates {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2c7a2c;
    margin-bottom: 2rem;
}

.payment-details h5,
.important-dates h5 {
    font-size: 1.3rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.payment-details p,
.important-dates p {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Submission Guidelines */
.submission-guidelines {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    margin: 3rem 0;
}

.submission-guidelines h4 {
    font-size: 1.5rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
}

.submission-guidelines ul {
    list-style: none;
}

.submission-guidelines li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.submission-guidelines li::before {
    content: '📄';
    position: absolute;
    left: 0;
}

.submission-guidelines a {
    color: #2c7a2c;
    text-decoration: none;
}

.submission-guidelines a:hover {
    text-decoration: underline;
}

/* Conference Objectives */
.conference-objectives {
    background: linear-gradient(135deg, rgba(44, 122, 44, 0.05), rgba(74, 157, 74, 0.05));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #2c7a2c;
}

.conference-objectives h4 {
    font-size: 1.3rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.conference-objectives p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Target Participants */
.target-participants {
    margin: 3rem 0;
}

.target-participants h4 {
    font-size: 1.8rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.target-participants h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

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

.participant-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c7a2c;
    transition: transform 0.3s ease;
}

.participant-group:hover {
    transform: translateY(-2px);
}

.participant-group i {
    font-size: 1.5rem;
    color: #2c7a2c;
    min-width: 30px;
    text-align: center;
}

.participant-group span {
    color: #555;
    font-size: 0.95rem;
}

/* Responsive Design for Enhanced Conference Section */
@media (max-width: 768px) {
    .conference-item {
        padding: 2rem 1.5rem;
    }
    
    .conference-item h2 {
        font-size: 2rem;
    }
    
    .conference-item h3 {
        font-size: 1.2rem;
    }
    
    .conference-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .detail-item {
        width: 100%;
        justify-content: center;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
    
    .fees-grid {
        grid-template-columns: 1fr;
    }
    
    .participants-grid {
        grid-template-columns: 1fr;
    }
}

/* About ISANRRC Section */
.about-isanrrc {
    background: white;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c7a2c;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #2c7a2c;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

/* Training Preview Section */
.training-preview {
    background: #f8f9fa;
    padding: 80px 0;
}

.training-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.program-month {
    margin-bottom: 3rem;
}

.program-month h3 {
    font-size: 1.8rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.program-month h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

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

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.program-card.featured {
    border: 2px solid #ffd700;
}

.program-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: #ffd700;
    color: #2c7a2c;
}

.program-header h4 {
    font-size: 1.2rem;
    color: #2c7a2c;
    margin: 0;
    line-height: 1.3;
}

.program-content {
    padding: 1.5rem;
}

.program-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.program-details {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.program-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-details i {
    color: #2c7a2c;
}

.training-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Council Preview Section */
.council-preview {
    background: white;
    padding: 80px 0;
}

.council-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

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

.leader-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.leader-card.president {
    border: 2px solid #ffd700;
}

.leader-card.vice-president {
    border: 2px solid #2c7a2c;
}

.leader-card.deputy {
    border: 2px solid #4a9d4a;
}

.leader-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.leader-card.president .leader-image {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c7a2c;
}

.leader-card.vice-president .leader-image {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
}

.leader-card.deputy .leader-image {
    background: linear-gradient(135deg, #4a9d4a, #6fb86f);
}

.leader-info h4 {
    font-size: 1.3rem;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.leader-title {
    font-weight: 600;
    color: #2c7a2c;
    margin-bottom: 0.5rem;
}

.leader-details {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.council-values {
    text-align: center;
    margin-bottom: 3rem;
}

.council-values h3 {
    font-size: 1.8rem;
    color: #2c7a2c;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.value-item i {
    font-size: 2rem;
    color: #2c7a2c;
}

.value-item span {
    font-weight: 600;
    color: #555;
}

.council-cta {
    text-align: center;
}

/* Membership Preview Section */
.membership-preview {
    background: #f8f9fa;
    padding: 80px 0;
}

.membership-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

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

.grade-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.grade-card.premium {
    border: 2px solid #ffd700;
}

.grade-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.grade-card.premium .grade-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c7a2c;
}

.grade-card.professional .grade-icon {
    background: linear-gradient(135deg, #2c7a2c, #4a9d4a);
}

.grade-card.entry .grade-icon {
    background: linear-gradient(135deg, #4a9d4a, #6fb86f);
}

.grade-card.corporate .grade-icon {
    background: linear-gradient(135deg, #1a5a1a, #2c7a2c);
}

.grade-card h3 {
    font-size: 1.3rem;
    color: #2c7a2c;
    margin-bottom: 1rem;
}

.grade-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.grade-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.grade-requirements span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

.membership-cta {
    text-align: center;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Design for New Homepage */
@media (max-width: 768px) {
    .main-hero h2 {
        font-size: 2.5rem;
    }
    
    .main-hero h3 {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-grades {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .conference-details {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}
