* {
     font-family: 'Inter', sans-serif;
}

.font-poppins {
     font-family: 'Poppins', sans-serif;
}

html {
     scroll-behavior: smooth;
}

/* Custom Gradient */
.gradient-green {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
}

.gradient-orange {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

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

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

@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@keyframes slideInLeft {
     from {
          opacity: 0;
          transform: translateX(-30px);
     }

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

@keyframes slideInRight {
     from {
          opacity: 0;
          transform: translateX(30px);
     }

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

@keyframes scaleIn {
     from {
          opacity: 0;
          transform: scale(0.9);
     }

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

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

.animate-fadeIn {
     animation: fadeIn 1s ease-out;
}

.animate-slideInLeft {
     animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
     animation: slideInRight 0.8s ease-out;
}

.animate-scaleIn {
     animation: scaleIn 0.6s ease-out;
}

/* Top Bar */
.top-bar {
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
     padding: 0.75rem 0;
     color: white;
     font-size: 0.875rem;
}

.top-bar a {
     color: white;
     margin: 0 1rem;
     transition: all 0.3s ease;
}

.top-bar a:hover {
     color: #fbbf24;
}

/* Navbar */
.navbar {
     background: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
}

.navbar.scrolled {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-link {
     position: relative;
     padding: 0.5rem 0;
     font-weight: 600;
     color: #1f2937;
     transition: color 0.3s ease;
}

.nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #2c5f2d, #f97316);
     transition: width 0.3s ease;
}

.nav-link:hover {
     color: #2c5f2d;
}

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

/* Page Header */
.page-header {
     position: relative;
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     padding: 8rem 0 6rem;
     overflow: hidden;
}

.page-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
          radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-header::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     right: 0;
     height: 100px;
     background: white;
     clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Story Section */
.story-card {
     background: white;
     border-radius: 1.5rem;
     padding: 3rem;
     box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
}

.story-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 6px;
     height: 100%;
     background: linear-gradient(180deg, #2c5f2d 0%, #f97316 100%);
}

/* Mission Vision Cards */
.mv-card {
     background: white;
     border-radius: 1.5rem;
     padding: 2.5rem;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mv-card::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(44, 95, 45, 0.05) 0%, transparent 70%);
     transition: transform 0.6s ease;
     transform: scale(0);
}

.mv-card:hover::before {
     transform: scale(1);
}

.mv-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.icon-circle {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     transition: all 0.4s ease;
}

.mv-card:hover .icon-circle {
     transform: scale(1.1) rotateY(360deg);
}

/* Value Cards */
.value-card {
     background: white;
     border-radius: 1.5rem;
     padding: 2.5rem 2rem;
     transition: all 0.4s ease;
     text-align: center;
     position: relative;
     overflow: hidden;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: linear-gradient(90deg, #2c5f2d, #f97316);
     transform: scaleX(0);
     transition: transform 0.4s ease;
}

.value-card:hover::before {
     transform: scaleX(1);
}

.value-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.value-icon {
     width: 90px;
     height: 90px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     transition: all 0.4s ease;
}

.value-card:hover .value-icon {
     transform: rotateY(360deg);
}

/* Timeline Section */
.timeline-item {
     position: relative;
     padding-left: 3rem;
     padding-bottom: 3rem;
}

.timeline-item::before {
     content: '';
     position: absolute;
     left: 0.75rem;
     top: 2rem;
     bottom: 0;
     width: 2px;
     background: linear-gradient(180deg, #2c5f2d 0%, #f97316 100%);
}

.timeline-item:last-child::before {
     display: none;
}

.timeline-dot {
     position: absolute;
     left: 0;
     top: 0.5rem;
     width: 2.5rem;
     height: 2.5rem;
     border-radius: 50%;
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: bold;
     box-shadow: 0 4px 10px rgba(44, 95, 45, 0.3);
     z-index: 1;
}

.timeline-content {
     background: white;
     border-radius: 1rem;
     padding: 1.5rem;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
}

.timeline-content:hover {
     transform: translateX(10px);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Stats Counter */
.stat-card {
     background: white;
     border-radius: 1.5rem;
     padding: 2.5rem 2rem;
     text-align: center;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
}

.stat-card:hover::before {
     opacity: 1;
}

.stat-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.stat-number {
     font-size: 3.5rem;
     font-weight: 900;
     background: linear-gradient(135deg, #2c5f2d 0%, #f97316 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     line-height: 1;
     margin-bottom: 0.5rem;
}

/* Button Styles */
.btn-modern {
     position: relative;
     padding: 0.875rem 2rem;
     border-radius: 0.75rem;
     font-weight: 700;
     transition: all 0.3s ease;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-size: 0.875rem;
}

.btn-primary-modern {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(44, 95, 45, 0.3);
}

.btn-primary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(44, 95, 45, 0.4);
     transform: translateY(-2px);
}

.btn-secondary-modern {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-secondary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
     transform: translateY(-2px);
}

/* Section Pattern */
.section-pattern {
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Mobile Menu */
.mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 300px;
     height: 100vh;
     background: white;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 2000;
     overflow-y: auto;
     padding: 2rem;
}

.mobile-menu.active {
     right: 0;
}

.mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1999;
}

.mobile-overlay.active {
     opacity: 1;
     visibility: visible;
}

.hamburger {
     width: 30px;
     height: 24px;
     position: relative;
     cursor: pointer;
}

.hamburger span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #2c5f2d;
     border-radius: 3px;
     transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
     top: 0;
}

.hamburger span:nth-child(2) {
     top: 50%;
     transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
     bottom: 0;
}

.hamburger.active span:nth-child(1) {
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
     bottom: 50%;
     transform: translateY(50%) rotate(-45deg);
}

/* Footer Redesign - Premium Aesthetic */
.footer-modern {
     background-color: #111827; /* Deep midnight for premium contrast */
     background-image: 
        radial-gradient(at 0% 0%, rgba(21, 128, 61, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
     color: white;
     padding: 6rem 0 3rem;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-modern::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     pointer-events: none;
}

.footer-modern h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.footer-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #16a34a, #f97316);
    border-radius: 2px;
}

.footer-link {
     color: rgba(255, 255, 255, 0.6);
     font-weight: 500;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     align-items: center;
     gap: 8px;
}

.footer-link:hover {
     color: white;
     transform: translateX(8px);
}

.footer-link i {
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(21, 128, 61, 0.3);
    transform: translateY(-2px);
}

.footer-logo-container {
    background: white;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll to Top - Modernized */
.scroll-top {
     position: fixed;
     bottom: 2.5rem;
     right: 2.5rem;
     width: 48px;
     height: 48px;
     background: #111827;
     color: white;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     z-index: 1000;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.scroll-top.active {
     opacity: 1;
     visibility: visible;
}

.scroll-top:hover {
     transform: translateY(-8px);
     background: #16a34a;
     border-color: transparent;
     box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
     .top-bar {
          display: none;
     }

     .page-header {
          padding: 5rem 0 3rem;
     }

     .stat-number {
          font-size: 2.5rem;
     }
}

/* Custom Gradient */
.gradient-green {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
}

.gradient-orange {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

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

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

@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

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

.animate-fadeIn {
     animation: fadeIn 1s ease-out;
}

/* Top Bar */
.top-bar {
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
     padding: 0.75rem 0;
     color: white;
     font-size: 0.875rem;
}

.top-bar a {
     color: white;
     margin: 0 1rem;
     transition: all 0.3s ease;
}

.top-bar a:hover {
     color: #fbbf24;
}

/* Navbar */
.navbar {
     background: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
}

.navbar.scrolled {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-link {
     position: relative;
     padding: 0.5rem 0;
     font-weight: 600;
     color: #1f2937;
     transition: color 0.3s ease;
}

.nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #2c5f2d, #f97316);
     transition: width 0.3s ease;
}

.nav-link:hover {
     color: #2c5f2d;
}

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

/* Page Header */
.page-header {
     position: relative;
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     padding: 8rem 0 6rem;
     overflow: hidden;
}

.page-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-header::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     right: 0;
     height: 100px;
     background: white;
     clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Contact Info Cards */
.contact-info-card {
     background: white;
     border-radius: 1.5rem;
     padding: 2rem;
     transition: all 0.4s ease;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     border: 2px solid transparent;
}

.contact-info-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
     border-color: #f97316;
}

.contact-icon {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
     transform: rotateY(360deg) scale(1.1);
}

/* Form Styles */
.form-card {
     background: white;
     border-radius: 2rem;
     padding: 3rem;
     box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
     position: relative;
     overflow: hidden;
}

.form-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 6px;
     background: linear-gradient(90deg, #2c5f2d 0%, #f97316 100%);
}

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

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

.form-input {
     width: 100%;
     padding: 0.875rem 1rem;
     border: 2px solid #e5e7eb;
     border-radius: 0.75rem;
     font-size: 0.875rem;
     transition: all 0.3s ease;
     background: #f9fafb;
}

/* Flatpickr Premium Styling */
.flatpickr-calendar {
    background: #ffffff !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 1rem !important;
    font-family: 'Inter', sans-serif !important;
    padding: 0.5rem !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.prevMonthDay.selected, 
.flatpickr-day.nextMonthDay.selected {
    background: #15803d !important;
    border-color: #15803d !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(21, 128, 61, 0.3) !important;
}

.flatpickr-day:hover {
    background: #f0fdf4 !important;
    border-color: #15803d !important;
}

.flatpickr-months .flatpickr-month {
    color: #111827 !important;
    font-weight: 700 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
}

.flatpickr-weekday {
    color: #9ca3af !important;
    font-weight: 600 !important;
}

.flatpickr-day.today {
    border-color: #f97316 !important;
    color: #f97316 !important;
}

.flatpickr-day.today:hover {
    background: #fff7ed !important;
    color: #f97316 !important;
}

.flatpickr-next-month:hover svg, 
.flatpickr-prev-month:hover svg {
    fill: #15803d !important;
}

.date-wrapper {
    position: relative;
    cursor: pointer;
}

.date-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: color 0.3s ease;
}

.date-wrapper:hover i {
    color: #15803d;
}

.form-input.datepicker {
    cursor: pointer;
    caret-color: transparent;
}


.form-input:focus {
     outline: none;
     border-color: #2c5f2d;
     background: white;
     box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.form-input::placeholder {
     color: #9ca3af;
}

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

/* Social Media Icons */
.social-icon-lg {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     font-size: 1.25rem;
}

.social-icon-lg:hover {
     transform: translateY(-5px) scale(1.1);
     box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
.btn-modern {
     position: relative;
     padding: 0.875rem 2rem;
     border-radius: 0.75rem;
     font-weight: 700;
     transition: all 0.3s ease;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-size: 0.875rem;
     display: inline-block;
}

.btn-primary-modern {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(44, 95, 45, 0.3);
}

.btn-primary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(44, 95, 45, 0.4);
     transform: translateY(-2px);
}

.btn-secondary-modern {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-secondary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
     transform: translateY(-2px);
}

/* Section Pattern */
.section-pattern {
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Map Container */
.map-container {
     border-radius: 1.5rem;
     overflow: hidden;
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
     border: 8px solid white;
}

/* FAQ Section */
.faq-item {
     background: white;
     border-radius: 1rem;
     padding: 1.5rem;
     margin-bottom: 1rem;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     cursor: pointer;
     transition: all 0.3s ease;
}

.faq-item:hover {
     box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     color: #1f2937;
}

.faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     color: #6b7280;
     padding-top: 0;
}

.faq-item.active .faq-answer {
     max-height: 500px;
     padding-top: 1rem;
}

.faq-icon {
     transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
     transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 300px;
     height: 100vh;
     background: white;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 2000;
     overflow-y: auto;
     padding: 2rem;
}

.mobile-menu.active {
     right: 0;
}

.mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1999;
}

.mobile-overlay.active {
     opacity: 1;
     visibility: visible;
}

.hamburger {
     width: 30px;
     height: 24px;
     position: relative;
     cursor: pointer;
}

.hamburger span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #2c5f2d;
     border-radius: 3px;
     transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
     top: 0;
}

.hamburger span:nth-child(2) {
     top: 50%;
     transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
     bottom: 0;
}

.hamburger.active span:nth-child(1) {
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
     bottom: 50%;
     transform: translateY(50%) rotate(-45deg);
}

/* Footer Redesign - Premium Aesthetic */
.footer-modern {
     background-color: #111827; /* Deep midnight for premium contrast */
     background-image: 
        radial-gradient(at 0% 0%, rgba(21, 128, 61, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
     color: white;
     padding: 6rem 0 3rem;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-modern::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     pointer-events: none;
}

.footer-modern h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.footer-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #16a34a, #f97316);
    border-radius: 2px;
}

.footer-link {
     color: rgba(255, 255, 255, 0.6);
     font-weight: 500;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     align-items: center;
     gap: 8px;
}

.footer-link:hover {
     color: white;
     transform: translateX(8px);
}

.footer-link i {
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(21, 128, 61, 0.3);
    transform: translateY(-2px);
}

.footer-logo-container {
    background: white;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll to Top - Modernized */
.scroll-top {
     position: fixed;
     bottom: 2.5rem;
     right: 2.5rem;
     width: 48px;
     height: 48px;
     background: #111827;
     color: white;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     z-index: 1000;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.scroll-top.active {
     opacity: 1;
     visibility: visible;
}

.scroll-top:hover {
     transform: translateY(-8px);
     background: #16a34a;
     border-color: transparent;
     box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
     .top-bar {
          display: none;
     }

     .page-header {
          padding: 5rem 0 3rem;
     }

     .form-card {
          padding: 2rem;
     }
}

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

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

@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@keyframes heartbeat {

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

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

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

.animate-fadeIn {
     animation: fadeIn 1s ease-out;
}

.animate-heartbeat {
     animation: heartbeat 1.5s ease-in-out infinite;
}

/* Top Bar */
.top-bar {
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
     padding: 0.75rem 0;
     color: white;
     font-size: 0.875rem;
}

.top-bar a {
     color: white;
     margin: 0 1rem;
     transition: all 0.3s ease;
}

.top-bar a:hover {
     color: #fbbf24;
}

/* Navbar */
.navbar {
     background: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
}

.navbar.scrolled {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-link {
     position: relative;
     padding: 0.5rem 0;
     font-weight: 600;
     color: #1f2937;
     transition: color 0.3s ease;
}

.nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #2c5f2d, #f97316);
     transition: width 0.3s ease;
}

.nav-link:hover {
     color: #2c5f2d;
}

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

/* Page Header */
.page-header {
     position: relative;
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     padding: 8rem 0 6rem;
     overflow: hidden;
}

.page-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
          radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-header::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     right: 0;
     height: 100px;
     background: white;
     clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Donation Amount Buttons */
.donation-amount-btn {
     background: white;
     border: 3px solid #e5e7eb;
     border-radius: 1.5rem;
     padding: 2rem 1.5rem;
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
}

.donation-amount-btn::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
}

.donation-amount-btn:hover::before {
     opacity: 1;
}

.donation-amount-btn:hover {
     border-color: #f97316;
     transform: translateY(-8px);
     box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.3);
}

.donation-amount-btn.active {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     border-color: #f97316;
     color: white;
     box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.4);
     transform: translateY(-8px);
}

.donation-amount-btn.active::before {
     display: none;
}

/* Payment Method Buttons */
.payment-method-btn {
     background: white;
     border: 3px solid #e5e7eb;
     border-radius: 1rem;
     padding: 2rem 1.5rem;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: #6b7280;
}

.payment-method-btn:hover {
     border-color: #2c5f2d;
     color: #2c5f2d;
     transform: translateY(-5px);
     box-shadow: 0 10px 20px -5px rgba(44, 95, 45, 0.2);
}

.payment-method-btn.active {
     background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
     border-color: #2c5f2d;
     color: #2c5f2d;
     box-shadow: 0 10px 20px -5px rgba(44, 95, 45, 0.2);
}

/* Form Styles */
.form-card {
     background: white;
     border-radius: 2rem;
     padding: 3rem;
     box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
     position: relative;
     overflow: hidden;
}

.form-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 6px;
     background: linear-gradient(90deg, #2c5f2d 0%, #f97316 100%);
}

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

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

.form-input {
     width: 100%;
     padding: 0.875rem 1rem;
     border: 2px solid #e5e7eb;
     border-radius: 0.75rem;
     font-size: 0.875rem;
     transition: all 0.3s ease;
     background: #f9fafb;
}

.form-input:focus {
     outline: none;
     border-color: #2c5f2d;
     background: white;
     box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.form-input::placeholder {
     color: #9ca3af;
}

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

/* Impact Cards */
.impact-card {
     background: white;
     border-radius: 1.5rem;
     padding: 2.5rem 2rem;
     text-align: center;
     transition: all 0.4s ease;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     border: 2px solid transparent;
}

.impact-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     border-color: #f97316;
}

.impact-icon {
     width: 90px;
     height: 90px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     transition: all 0.4s ease;
}

.impact-card:hover .impact-icon {
     transform: rotateY(360deg) scale(1.1);
}

/* Trust Badges */
.trust-badge {
     background: white;
     border-radius: 1rem;
     padding: 1.5rem;
     display: flex;
     align-items: center;
     gap: 1rem;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
}

.trust-badge:hover {
     box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
     transform: translateY(-3px);
}

/* Button Styles */
.btn-modern {
     position: relative;
     padding: 0.875rem 2rem;
     border-radius: 0.75rem;
     font-weight: 700;
     transition: all 0.3s ease;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-size: 0.875rem;
     display: inline-block;
}

.btn-primary-modern {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(44, 95, 45, 0.3);
}

.btn-primary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(44, 95, 45, 0.4);
     transform: translateY(-2px);
}

.btn-secondary-modern {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-secondary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
     transform: translateY(-2px);
}

/* Section Pattern */
.section-pattern {
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Mobile Menu */
.mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 300px;
     height: 100vh;
     background: white;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 2000;
     overflow-y: auto;
     padding: 2rem;
}

.mobile-menu.active {
     right: 0;
}

.mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1999;
}

.mobile-overlay.active {
     opacity: 1;
     visibility: visible;
}

.hamburger {
     width: 30px;
     height: 24px;
     position: relative;
     cursor: pointer;
}

.hamburger span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #2c5f2d;
     border-radius: 3px;
     transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
     top: 0;
}

.hamburger span:nth-child(2) {
     top: 50%;
     transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
     bottom: 0;
}

.hamburger.active span:nth-child(1) {
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
     bottom: 50%;
     transform: translateY(50%) rotate(-45deg);
}

/* Footer Redesign - Premium Aesthetic */
.footer-modern {
     background-color: #111827; /* Deep midnight for premium contrast */
     background-image: 
        radial-gradient(at 0% 0%, rgba(21, 128, 61, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
     color: white;
     padding: 6rem 0 3rem;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-modern::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     pointer-events: none;
}

.footer-modern h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.footer-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #16a34a, #f97316);
    border-radius: 2px;
}

.footer-link {
     color: rgba(255, 255, 255, 0.6);
     font-weight: 500;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     align-items: center;
     gap: 8px;
}

.footer-link:hover {
     color: white;
     transform: translateX(8px);
}

.footer-link i {
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(21, 128, 61, 0.3);
    transform: translateY(-2px);
}

.footer-logo-container {
    background: white;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll to Top - Modernized */
.scroll-top {
     position: fixed;
     bottom: 2.5rem;
     right: 2.5rem;
     width: 48px;
     height: 48px;
     background: #111827;
     color: white;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     z-index: 1000;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.scroll-top.active {
     opacity: 1;
     visibility: visible;
}

.scroll-top:hover {
     transform: translateY(-8px);
     background: #16a34a;
     border-color: transparent;
     box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
     .top-bar {
          display: none;
     }

     .page-header {
          padding: 5rem 0 3rem;
     }

     .form-card {
          padding: 2rem;
     }
}

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

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

@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@keyframes pulse {

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

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

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

.animate-fadeIn {
     animation: fadeIn 1s ease-out;
}

.animate-pulse-slow {
     animation: pulse 2s ease-in-out infinite;
}

/* Top Bar */
.top-bar {
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
     padding: 0.75rem 0;
     color: white;
     font-size: 0.875rem;
}

.top-bar a {
     color: white;
     margin: 0 1rem;
     transition: all 0.3s ease;
}

.top-bar a:hover {
     color: #fbbf24;
}

/* Navbar */
.navbar {
     background: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
}

.navbar.scrolled {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-link {
     position: relative;
     padding: 0.5rem 0;
     font-weight: 600;
     color: #1f2937;
     transition: color 0.3s ease;
}

.nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #2c5f2d, #f97316);
     transition: width 0.3s ease;
}

.nav-link:hover {
     color: #2c5f2d;
}

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

/* Page Header */
.page-header {
     position: relative;
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     padding: 8rem 0 6rem;
     overflow: hidden;
}

.page-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
          radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-header::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     right: 0;
     height: 100px;
     background: white;
     clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Event Card Modern */
.event-card-modern {
     background: white;
     border-radius: 1.5rem;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     position: relative;
}

.event-card-modern::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: linear-gradient(90deg, #2c5f2d 0%, #f97316 100%);
     transform: scaleX(0);
     transition: transform 0.4s ease;
}

.event-card-modern:hover::before {
     transform: scaleX(1);
}

.event-card-modern:hover {
     transform: translateY(-12px);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.event-date-box {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     padding: 2rem 1.5rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     min-width: 150px;
     position: relative;
     overflow: hidden;
}

.event-date-box::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.event-date-day {
     font-size: 3.5rem;
     font-weight: 900;
     line-height: 1;
     margin-bottom: 0.5rem;
}

.event-date-month {
     font-size: 1.5rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
}

.event-date-year {
     font-size: 0.875rem;
     opacity: 0.8;
     margin-top: 0.25rem;
}

.event-category-badge {
     position: absolute;
     top: 1.5rem;
     right: 1.5rem;
     padding: 0.5rem 1rem;
     border-radius: 2rem;
     font-size: 0.75rem;
     font-weight: 700;
     color: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

/* Past Event Cards */
.past-event-card {
     background: white;
     border-radius: 1.5rem;
     overflow: hidden;
     transition: all 0.4s ease;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.past-event-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.past-event-img {
     position: relative;
     overflow: hidden;
     height: 220px;
}

.past-event-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
}

.past-event-card:hover .past-event-img img {
     transform: scale(1.1);
}

.past-event-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 1.5rem;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
     color: white;
}

/* Button Styles */
.btn-modern {
     position: relative;
     padding: 0.875rem 2rem;
     border-radius: 0.75rem;
     font-weight: 700;
     transition: all 0.3s ease;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-size: 0.875rem;
     display: inline-block;
}

.btn-primary-modern {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(44, 95, 45, 0.3);
}

.btn-primary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(44, 95, 45, 0.4);
     transform: translateY(-2px);
}

.btn-secondary-modern {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-secondary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
     transform: translateY(-2px);
}

.btn-outline-modern {
     border: 2px solid #2c5f2d;
     color: #2c5f2d;
     background: transparent;
}

.btn-outline-modern:hover {
     background: #2c5f2d;
     color: white;
     transform: translateY(-2px);
}

/* Section Pattern */
.section-pattern {
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Filter Buttons */
.filter-btn {
     padding: 0.75rem 1.5rem;
     border-radius: 2rem;
     font-weight: 600;
     transition: all 0.3s ease;
     border: 2px solid #e5e7eb;
     background: white;
     color: #6b7280;
     cursor: pointer;
}

.filter-btn:hover {
     border-color: #2c5f2d;
     color: #2c5f2d;
     transform: translateY(-2px);
}

.filter-btn.active {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     border-color: #2c5f2d;
}

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

.stat-box {
     background: white;
     border-radius: 1rem;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
}

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

.stat-number {
     font-size: 3rem;
     font-weight: 900;
     background: linear-gradient(135deg, #2c5f2d 0%, #f97316 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     line-height: 1;
     margin-bottom: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 300px;
     height: 100vh;
     background: white;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 2000;
     overflow-y: auto;
     padding: 2rem;
}

.mobile-menu.active {
     right: 0;
}

.mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1999;
}

.mobile-overlay.active {
     opacity: 1;
     visibility: visible;
}

.hamburger {
     width: 30px;
     height: 24px;
     position: relative;
     cursor: pointer;
}

.hamburger span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #2c5f2d;
     border-radius: 3px;
     transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
     top: 0;
}

.hamburger span:nth-child(2) {
     top: 50%;
     transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
     bottom: 0;
}

.hamburger.active span:nth-child(1) {
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
     bottom: 50%;
     transform: translateY(50%) rotate(-45deg);
}

/* Footer Redesign - Premium Aesthetic */
.footer-modern {
     background-color: #111827; /* Deep midnight for premium contrast */
     background-image: 
        radial-gradient(at 0% 0%, rgba(21, 128, 61, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
     color: white;
     padding: 6rem 0 3rem;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-modern::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     pointer-events: none;
}

.footer-modern h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.footer-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #16a34a, #f97316);
    border-radius: 2px;
}

.footer-link {
     color: rgba(255, 255, 255, 0.6);
     font-weight: 500;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     align-items: center;
     gap: 8px;
}

.footer-link:hover {
     color: white;
     transform: translateX(8px);
}

.footer-link i {
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(21, 128, 61, 0.3);
    transform: translateY(-2px);
}

.footer-logo-container {
    background: white;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll to Top - Modernized */
.scroll-top {
     position: fixed;
     bottom: 2.5rem;
     right: 2.5rem;
     width: 48px;
     height: 48px;
     background: #111827;
     color: white;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     z-index: 1000;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.scroll-top.active {
     opacity: 1;
     visibility: visible;
}

.scroll-top:hover {
     transform: translateY(-8px);
     background: #16a34a;
     border-color: transparent;
     box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
     .top-bar {
          display: none;
     }

     .page-header {
          padding: 5rem 0 3rem;
     }

     .event-date-box {
          min-width: 100%;
          padding: 1.5rem;
     }

     .stat-number {
          font-size: 2rem;
     }
}


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

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

@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@keyframes slideInRight {
     from {
          opacity: 0;
          transform: translateX(30px);
     }

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

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

.animate-fadeIn {
     animation: fadeIn 1s ease-out;
}

.animate-slideInRight {
     animation: slideInRight 0.8s ease-out;
}

/* Custom Styles */
.top-bar {
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
     padding: 0.75rem 0;
     color: white;
     font-size: 0.875rem;
}

.top-bar a {
     color: white;
     margin: 0 1rem;
     transition: all 0.3s ease;
}

.top-bar a:hover {
     color: #fbbf24;
}

.navbar {
     background: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
}

.navbar.scrolled {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-link {
     position: relative;
     padding: 0.5rem 0;
     font-weight: 600;
     color: #1f2937;
     transition: color 0.3s ease;
}

.nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #2c5f2d, #f97316);
     transition: width 0.3s ease;
}

.nav-link:hover {
     color: #2c5f2d;
}

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

/* Hero Section */
.hero-modern {
     position: relative;
     background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
     padding: 4rem 0;
     overflow: hidden;
}

.hero-modern::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 50%;
     height: 100%;
     background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
     clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-badge {
     display: inline-flex;
     align-items: center;
     padding: 0.5rem 1.25rem;
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     border-radius: 2rem;
     font-size: 0.875rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     box-shadow: 0 4px 6px -1px rgba(44, 95, 45, 0.3);
}

.hero-title {
     font-size: 3.5rem;
     font-weight: 900;
     line-height: 1.1;
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 50%, #f97316 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 1.5rem;
}

/* Card Styles */
.modern-card {
     background: white;
     border-radius: 1rem;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     border: 1px solid #f3f4f6;
     height: 100%;
}

.modern-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     border-color: #2c5f2d;
}

.card-image-wrapper {
     position: relative;
     overflow: hidden;
     height: 220px;
}

.card-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover .card-image-wrapper img {
     transform: scale(1.1);
}

.card-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 2rem;
     font-size: 0.75rem;
     font-weight: 700;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.4);
}

/* Leader Card */
.leader-card-modern {
     background: white;
     border-radius: 1.5rem;
     overflow: hidden;
     transition: all 0.4s ease;
     position: relative;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.leader-card-modern::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 6px;
     background: linear-gradient(90deg, #2c5f2d 0%, #f97316 100%);
     transform: scaleX(0);
     transition: transform 0.4s ease;
}

.leader-card-modern:hover::before {
     transform: scaleX(1);
}

.leader-card-modern:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.leader-img-wrapper {
     position: relative;
     overflow: hidden;
     height: 280px;
     background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.leader-img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.5s ease;
}

.leader-card-modern:hover .leader-img-wrapper img {
     transform: scale(1.05);
}

/* CTA Cards */
.cta-card {
     background: white;
     border-radius: 1.5rem;
     padding: 2.5rem 2rem;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     border: 2px solid transparent;
}

.cta-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
}

.cta-card:hover::before {
     opacity: 1;
}

.cta-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     border-color: #2c5f2d;
}

.cta-icon {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     transition: all 0.4s ease;
}

.cta-card:hover .cta-icon {
     transform: rotateY(360deg);
}

/* Stats Section */
.stats-card {
     background: white;
     border-radius: 1rem;
     padding: 2rem;
     text-align: center;
     transition: all 0.3s ease;
     border-left: 4px solid transparent;
}

.stats-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
     border-left-color: #f97316;
}

/* Button Styles */
.btn-modern {
     position: relative;
     padding: 0.875rem 2rem;
     border-radius: 0.75rem;
     font-weight: 700;
     transition: all 0.3s ease;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-size: 0.875rem;
}

.btn-primary-modern {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(44, 95, 45, 0.3);
}

.btn-primary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(44, 95, 45, 0.4);
     transform: translateY(-2px);
}

.btn-secondary-modern {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-secondary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
     transform: translateY(-2px);
}

.btn-outline-modern {
     border: 2px solid #2c5f2d;
     color: #2c5f2d;
     background: transparent;
}

.btn-outline-modern:hover {
     background: #2c5f2d;
     color: white;
     transform: translateY(-2px);
}

/* Section Backgrounds */
.section-pattern {
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Mobile Menu */
.mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 300px;
     height: 100vh;
     background: white;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 2000;
     overflow-y: auto;
     padding: 2rem;
}

.mobile-menu.active {
     right: 0;
}

.mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1999;
}

.mobile-overlay.active {
     opacity: 1;
     visibility: visible;
}

.hamburger {
     width: 30px;
     height: 24px;
     position: relative;
     cursor: pointer;
}

.hamburger span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #2c5f2d;
     border-radius: 3px;
     transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
     top: 0;
}

.hamburger span:nth-child(2) {
     top: 50%;
     transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
     bottom: 0;
}

.hamburger.active span:nth-child(1) {
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
     bottom: 50%;
     transform: translateY(50%) rotate(-45deg);
}

/* Gallery Hover Effect */
.gallery-item-modern {
     position: relative;
     overflow: hidden;
     border-radius: 1rem;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     cursor: pointer;
}

.gallery-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(44, 95, 45, 0.9) 0%, rgba(249, 115, 22, 0.9) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.4s ease;
}

.gallery-item-modern:hover .gallery-overlay {
     opacity: 1;
}

.gallery-item-modern img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
}

.gallery-item-modern:hover img {
     transform: scale(1.15);
}

/* Media Hub Cards */
.media-card {
     background: white;
     border-radius: 1rem;
     padding: 2rem;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
}

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

.press-item {
     padding: 1.5rem;
     border-left: 4px solid #f97316;
     background: #fffbeb;
     border-radius: 0.5rem;
     margin-bottom: 1.5rem;
     transition: all 0.3s ease;
}

.press-item:hover {
     background: #fef3c7;
     transform: translateX(5px);
}

/* Video Container */
.video-container {
     position: relative;
     padding-bottom: 56.25%;
     height: 0;
     overflow: hidden;
     border-radius: 1rem;
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

/* Footer */
.footer-modern {
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
     color: white;
     padding: 4rem 0 2rem;
     position: relative;
     overflow: hidden;
}

.footer-modern::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
          radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
}

.footer-link {
     color: rgba(255, 255, 255, 0.8);
     transition: all 0.3s ease;
     display: inline-block;
}

.footer-link:hover {
     color: #fbbf24;
     transform: translateX(5px);
}

/* Scroll to Top Button */
.scroll-top {
     position: fixed;
     bottom: 2rem;
     right: 2rem;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1000;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.scroll-top.active {
     opacity: 1;
     visibility: visible;
}

.scroll-top:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
     .hero-title {
          font-size: 2.5rem;
     }

     .top-bar {
          display: none;
     }
}

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

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

@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@keyframes float {

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

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

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

.animate-fadeIn {
     animation: fadeIn 1s ease-out;
}

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

/* Top Bar */
.top-bar {
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
     padding: 0.75rem 0;
     color: white;
     font-size: 0.875rem;
}

.top-bar a {
     color: white;
     margin: 0 1rem;
     transition: all 0.3s ease;
}

.top-bar a:hover {
     color: #fbbf24;
}

/* Navbar */
.navbar {
     background: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
}

.navbar.scrolled {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-link {
     position: relative;
     padding: 0.5rem 0;
     font-weight: 600;
     color: #1f2937;
     transition: color 0.3s ease;
}

.nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #2c5f2d, #f97316);
     transition: width 0.3s ease;
}

.nav-link:hover {
     color: #2c5f2d;
}

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

/* Page Header */
.page-header {
     position: relative;
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     padding: 8rem 0 6rem;
     overflow: hidden;
}

.page-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-header::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     right: 0;
     height: 100px;
     background: white;
     clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Leader Card Modern */
.leader-card-modern {
     background: white;
     border-radius: 1.5rem;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.leader-card-modern::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 6px;
     background: linear-gradient(90deg, #2c5f2d 0%, #f97316 100%);
     transform: scaleX(0);
     transition: transform 0.4s ease;
}

.leader-card-modern:hover::before {
     transform: scaleX(1);
}

.leader-card-modern:hover {
     transform: translateY(-12px);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.leader-img-wrapper {
     position: relative;
     overflow: hidden;
     height: 320px;
     background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.leader-img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.5s ease;
}

.leader-card-modern:hover .leader-img-wrapper img {
     transform: scale(1.08);
}

.leader-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 2rem;
     font-size: 0.75rem;
     font-weight: 700;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.4);
}

.leader-content {
     padding: 2rem;
     position: relative;
}

.social-icons {
     display: flex;
     gap: 0.75rem;
     margin-top: 1rem;
}

.social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     font-size: 0.875rem;
}

.social-icon.facebook {
     background: #1877f2;
     color: white;
}

.social-icon.twitter {
     background: #1da1f2;
     color: white;
}

.social-icon.linkedin {
     background: #0a66c2;
     color: white;
}

.social-icon:hover {
     transform: translateY(-3px) scale(1.1);
     box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.2);
}

/* Featured Leader Card */
.featured-leader {
     background: white;
     border-radius: 2rem;
     overflow: hidden;
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
     position: relative;
}

.featured-leader::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 8px;
     background: linear-gradient(90deg, #2c5f2d 0%, #f97316 100%);
}

/* Button Styles */
.btn-modern {
     position: relative;
     padding: 0.875rem 2rem;
     border-radius: 0.75rem;
     font-weight: 700;
     transition: all 0.3s ease;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-size: 0.875rem;
}

.btn-primary-modern {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(44, 95, 45, 0.3);
}

.btn-primary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(44, 95, 45, 0.4);
     transform: translateY(-2px);
}

.btn-secondary-modern {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-secondary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
     transform: translateY(-2px);
}

/* Section Pattern */
.section-pattern {
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Mobile Menu */
.mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 300px;
     height: 100vh;
     background: white;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 2000;
     overflow-y: auto;
     padding: 2rem;
}

.mobile-menu.active {
     right: 0;
}

.mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1999;
}

.mobile-overlay.active {
     opacity: 1;
     visibility: visible;
}

.hamburger {
     width: 30px;
     height: 24px;
     position: relative;
     cursor: pointer;
}

.hamburger span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #2c5f2d;
     border-radius: 3px;
     transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
     top: 0;
}

.hamburger span:nth-child(2) {
     top: 50%;
     transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
     bottom: 0;
}

.hamburger.active span:nth-child(1) {
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
     bottom: 50%;
     transform: translateY(50%) rotate(-45deg);
}

/* Department Cards */
.department-card {
     background: white;
     border-radius: 1.5rem;
     padding: 2rem;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     border: 2px solid transparent;
}

.department-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
     border-color: #f97316;
}

.department-icon {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     transition: all 0.4s ease;
}

.department-card:hover .department-icon {
     transform: rotateY(360deg);
}

/* Footer Redesign - Premium Aesthetic */
.footer-modern {
     background-color: #111827; /* Deep midnight for premium contrast */
     background-image: 
        radial-gradient(at 0% 0%, rgba(21, 128, 61, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
     color: white;
     padding: 6rem 0 3rem;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-modern::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     pointer-events: none;
}

.footer-modern h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.footer-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #16a34a, #f97316);
    border-radius: 2px;
}

.footer-link {
     color: rgba(255, 255, 255, 0.6);
     font-weight: 500;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     align-items: center;
     gap: 8px;
}

.footer-link:hover {
     color: white;
     transform: translateX(8px);
}

.footer-link i {
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(21, 128, 61, 0.3);
    transform: translateY(-2px);
}

.footer-logo-container {
    background: white;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll to Top - Modernized */
.scroll-top {
     position: fixed;
     bottom: 2.5rem;
     right: 2.5rem;
     width: 48px;
     height: 48px;
     background: #111827;
     color: white;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     z-index: 1000;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.scroll-top.active {
     opacity: 1;
     visibility: visible;
}

.scroll-top:hover {
     transform: translateY(-8px);
     background: #16a34a;
     border-color: transparent;
     box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.5);
}

/* Quote Section */
.quote-card {
     background: white;
     border-radius: 1.5rem;
     padding: 3rem;
     box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
}

.quote-card::before {
     content: '"';
     position: absolute;
     top: 1rem;
     left: 2rem;
     font-size: 8rem;
     color: #f97316;
     opacity: 0.1;
     font-family: Georgia, serif;
     line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
     .top-bar {
          display: none;
     }

     .page-header {
          padding: 5rem 0 3rem;
     }

     .leader-img-wrapper {
          height: 280px;
     }
}

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

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

@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@keyframes zoomIn {
     from {
          opacity: 0;
          transform: scale(0.8);
     }

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

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

.animate-fadeIn {
     animation: fadeIn 1s ease-out;
}

.animate-zoomIn {
     animation: zoomIn 0.3s ease-out;
}

/* Top Bar */
.top-bar {
     background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 100%);
     padding: 0.75rem 0;
     color: white;
     font-size: 0.875rem;
}

.top-bar a {
     color: white;
     margin: 0 1rem;
     transition: all 0.3s ease;
}

.top-bar a:hover {
     color: #fbbf24;
}

/* Navbar */
.navbar {
     background: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
}

.navbar.scrolled {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-link {
     position: relative;
     padding: 0.5rem 0;
     font-weight: 600;
     color: #1f2937;
     transition: color 0.3s ease;
}

.nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, #2c5f2d, #f97316);
     transition: width 0.3s ease;
}

.nav-link:hover {
     color: #2c5f2d;
}

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

/* Page Header */
.page-header {
     position: relative;
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     padding: 8rem 0 6rem;
     overflow: hidden;
}

.page-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
          radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-header::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     right: 0;
     height: 100px;
     background: white;
     clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Filter Buttons */
.filter-btn {
     padding: 0.75rem 1.75rem;
     border-radius: 2rem;
     font-weight: 600;
     transition: all 0.3s ease;
     border: 2px solid #e5e7eb;
     background: white;
     color: #6b7280;
     cursor: pointer;
     font-size: 0.875rem;
}

.filter-btn:hover {
     border-color: #2c5f2d;
     color: #2c5f2d;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     border-color: #2c5f2d;
     box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

/* Gallery Item */
.gallery-item {
     position: relative;
     border-radius: 1rem;
     overflow: hidden;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     height: 300px;
}

.gallery-item:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
     transform: scale(1.15);
}

.gallery-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(44, 95, 45, 0.9) 0%, rgba(249, 115, 22, 0.9) 100%);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
     opacity: 1;
}

.gallery-category {
     position: absolute;
     top: 1rem;
     left: 1rem;
     padding: 0.5rem 1rem;
     border-radius: 2rem;
     font-size: 0.75rem;
     font-weight: 700;
     color: white;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
     z-index: 10;
}

/* Lightbox Modal */
.lightbox {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.95);
     z-index: 9999;
     display: none;
     align-items: center;
     justify-content: center;
     padding: 2rem;
}

.lightbox.active {
     display: flex;
}

.lightbox-content {
     position: relative;
     max-width: 90vw;
     max-height: 90vh;
     animation: zoomIn 0.3s ease-out;
}

.lightbox-content img {
     max-width: 100%;
     max-height: 90vh;
     object-fit: contain;
     border-radius: 0.5rem;
}

.lightbox-close {
     position: absolute;
     top: -3rem;
     right: 0;
     width: 50px;
     height: 50px;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
}

.lightbox-close:hover {
     background: #f97316;
     color: white;
     transform: rotate(90deg);
}

.lightbox-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
}

.lightbox-nav:hover {
     background: #2c5f2d;
     color: white;
     transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
     left: 2rem;
}

.lightbox-next {
     right: 2rem;
}

/* Stats Section */
.stats-card {
     background: white;
     border-radius: 1.5rem;
     padding: 2.5rem 2rem;
     text-align: center;
     transition: all 0.4s ease;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stats-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.stats-number {
     font-size: 3rem;
     font-weight: 900;
     background: linear-gradient(135deg, #2c5f2d 0%, #f97316 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     line-height: 1;
     margin-bottom: 0.5rem;
}

/* Button Styles */
.btn-modern {
     position: relative;
     padding: 0.875rem 2rem;
     border-radius: 0.75rem;
     font-weight: 700;
     transition: all 0.3s ease;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-size: 0.875rem;
     display: inline-block;
}

.btn-primary-modern {
     background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(44, 95, 45, 0.3);
}

.btn-primary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(44, 95, 45, 0.4);
     transform: translateY(-2px);
}

.btn-secondary-modern {
     background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
     color: white;
     box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-secondary-modern:hover {
     box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
     transform: translateY(-2px);
}

/* Section Pattern */
.section-pattern {
     background-image:
          radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Mobile Menu */
.mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 300px;
     height: 100vh;
     background: white;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 2000;
     overflow-y: auto;
     padding: 2rem;
}

.mobile-menu.active {
     right: 0;
}

.mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1999;
}

.mobile-overlay.active {
     opacity: 1;
     visibility: visible;
}

.hamburger {
     width: 30px;
     height: 24px;
     position: relative;
     cursor: pointer;
}

.hamburger span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #2c5f2d;
     border-radius: 3px;
     transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
     top: 0;
}

.hamburger span:nth-child(2) {
     top: 50%;
     transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
     bottom: 0;
}

.hamburger.active span:nth-child(1) {
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
     bottom: 50%;
     transform: translateY(50%) rotate(-45deg);
}

/* Footer Redesign - Premium Aesthetic */
.footer-modern {
     background-color: #111827; /* Deep midnight for premium contrast */
     background-image: 
        radial-gradient(at 0% 0%, rgba(21, 128, 61, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
     color: white;
     padding: 6rem 0 3rem;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-modern::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     pointer-events: none;
}

.footer-modern h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.footer-modern h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #16a34a, #f97316);
    border-radius: 2px;
}

.footer-link {
     color: rgba(255, 255, 255, 0.6);
     font-weight: 500;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     align-items: center;
     gap: 8px;
}

.footer-link:hover {
     color: white;
     transform: translateX(8px);
}

.footer-link i {
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(21, 128, 61, 0.3);
    transform: translateY(-2px);
}

.footer-logo-container {
    background: white;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll to Top - Modernized */
.scroll-top {
     position: fixed;
     bottom: 2.5rem;
     right: 2.5rem;
     width: 48px;
     height: 48px;
     background: #111827;
     color: white;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     z-index: 1000;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.scroll-top.active {
     opacity: 1;
     visibility: visible;
}

.scroll-top:hover {
     transform: translateY(-8px);
     background: #16a34a;
     border-color: transparent;
     box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.5);
}

/* Hide/Show Gallery Items */
.gallery-item.hidden {
     display: none;
}

/* Responsive */
@media (max-width: 768px) {
     .top-bar {
          display: none;
     }

     .page-header {
          padding: 5rem 0 3rem;
     }

     .gallery-item {
          height: 250px;
     }

     .stats-number {
          font-size: 2.5rem;
     }

     .lightbox-nav {
          width: 40px;
          height: 40px;
     }

     .lightbox-prev {
          left: 1rem;
     }

     .lightbox-next {
          right: 1rem;
     }
}