/* static/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');




/* ========================================
   NAVBAR FIXES - Add to top of style.css
   ======================================== */

/* Force navbar to always be visible */
.navbar {
    padding: 1.5rem 0;
    background: #FFFFFF !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Ensure navbar container is visible */
.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo visibility */
.navbar-brand,
.logo-icon,
.logo-icon img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.navbar-brand {
    z-index: 10000 !important;
}

/* Nav links visibility */
.navbar-nav {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

.navbar-nav .nav-link {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Navbar actions visibility */
.navbar-actions {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

/* Desktop view - ensure everything is visible */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-basis: auto !important;
    }
    
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-nav {
        flex-direction: row !important;
        margin: 0 auto !important;
    }
    
    .navbar-actions {
        margin-left: auto !important;
    }
}

/* Mobile fixes */
@media (max-width: 991px) {
    body {
        padding-top: 80px !important;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    /* Make toggler always visible */
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10001 !important;
        position: relative !important;
        border: 2px solid #ed3407;
        color: #ed3407;
        background: transparent;
        padding: 0.5rem 0.75rem;
        font-size: 1.25rem;
        line-height: 1;
        border-radius: 0.25rem;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(136, 32, 12, 0.25);
    }
    
    .navbar-toggler:hover {
        background: rgba(136, 32, 12, 0.1);
    }
    
    /* Mobile menu */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 9998;
    }
    
    .navbar-collapse.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        padding: 0 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-actions {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .navbar-actions .cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo-icon {
        width: 250px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px !important;
    }
    
    .navbar {
        padding: 0.7rem 0;
    }
    
    .logo-icon {
        width: 180px;
        height: 30px;
    }
}

/* Dropdown fixes */
.navbar .dropdown-menu {
    position: absolute !important;
    z-index: 10002 !important;
    visibility: visible !important;
}

.navbar .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
}

/* User dropdown */
.user-account-dropdown {
    position: relative;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
}

.user-dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.user-account-dropdown:hover .user-dropdown-menu,
.user-account-btn:focus + .user-dropdown-menu,
.user-dropdown-menu:hover {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Notification dropdown */
[x-data] .dropdown-menu {
    display: none;
}

[x-data] .dropdown-menu[x-show="true"],
[x-data] .dropdown-menu[style*="display: block"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Scrolled state */
.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Bootstrap overrides */
.navbar > .container,
.navbar > .container-fluid {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row !important;
}

@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: column !important;
    }
}

/* Fix for Alpine.js conflicts */
[x-cloak] {
    display: none !important;
}

/* Debug helper - remove after fixing */
.navbar * {
    visibility: visible !important;
}



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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    padding-top: 90px;
}

/* Header Styles */
.navbar {
    padding: 1.5rem 0;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ed3407 !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 300px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.navbar-nav .nav-link {
    color: #424242 !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ed3407;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ed3407 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.cta-btn {
    background: #ed3407;
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 0.75rem 2rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.cta-btn:hover {
    background: #ed3407;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(136, 32, 12, 0.4);
}

.navbar-toggler {
    border: 2px solid #ed3407;
    color: #ed3407;
    margin-left: auto;
    position: relative;
    z-index: 1060;
    pointer-events: auto;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile navbar layout */
@media (max-width: 991px) {
    .navbar .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
        position: relative;
        z-index: 1050;
    }
    
    .navbar-brand {
        flex: 0 0 auto;
        z-index: 1050;
    }
    
    .d-flex.align-items-center.ms-auto {
        flex: 0 0 auto;
        margin-right: 0 !important;
        position: relative;
        z-index: 1060;
    }
    
    .navbar-toggler {
        margin-right: 0 !important;
        pointer-events: auto !important;
        z-index: 1070 !important;
        position: relative !important;
    }
    
    .collapse.navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1040;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-top: 0;
        width: 100%;
    }
    
    .navbar-collapse.collapsing {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }
}

/* Mobile navbar actions visibility */
@media (max-width: 991px) {
    .navbar-actions.d-flex.d-lg-none {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .logo-icon {
        width: 250px;
        height: 35px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.4rem 1rem !important;
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 0.65rem 1.5rem !important;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo-icon {
        width: 180px;
        height: 30px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.35rem 0.75rem !important;
        font-size: 0.85rem;
    }
    
    .cta-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem;
    }
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.user-account-dropdown {
    position: relative;
    display: inline-block;
}

.btn-gradient-green {
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #ed3407 0%, #a33318 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(136, 32, 12, 0.3);
}

.btn-clear {
    background: #f1f3f5;
    color: #495057;
    border: none;
    transition: all 0.2s ease;
}

.btn-clear:hover {
    background: #e9ecef;
    color: #212529;
}

.user-account-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ed3407;
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(136, 32, 12, 0.2);
}

.user-account-btn:hover {
    background: linear-gradient(135deg, #ed3407 0%, #6e361c 100%);
    box-shadow: 0 4px 16px rgba(136, 32, 12, 0.4);
    transform: scale(1.1);
}

.user-account-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(136, 32, 12, 0.2);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    border: 1px solid rgba(136, 32, 12, 0.1);
}

.user-account-dropdown:hover .user-dropdown-menu,
.user-account-btn:focus + .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 2px solid rgba(136, 32, 12, 0.1);
    margin-bottom: 4px;
}

.dropdown-header h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ed3407;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #424242;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    cursor: pointer;
}

.dropdown-item:first-of-type {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-of-type {
    border-radius: 0 0 8px 8px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: #ed3407;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(136, 32, 12, 0.08) 0%, rgba(136, 32, 12, 0.04) 100%);
    color: #ed3407;
    padding-left: 20px;
}

.dropdown-item:hover i {
    color: #ed3407;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .navbar-actions {
        gap: 1rem;
    }
    
    .user-account-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .user-dropdown-menu {
        min-width: 180px;
        margin-top: 10px;
    }
    
    .dropdown-item {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .navbar-actions {
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .cta-btn {
        padding: 0.55rem 1rem !important;
        font-size: 0.85rem;
    }
    
    .user-account-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .user-dropdown-menu {
        min-width: 150px;
        margin-top: 8px;
        right: -15px;
    }
    
    .dropdown-item {
        padding: 8px 10px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .dropdown-header {
        padding: 10px 12px;
    }
    
    .dropdown-header h6 {
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero-section {
    background: #E8F5E9;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: #ed3407;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: none;
}

.hero-theme {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.4;
    white-space: nowrap;
    color: #424242;
}

.hero-theme span {
    color: #ed3407;
    font-style: normal;
    font-weight: 900;
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ed3407;
    line-height: 1.1;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.title-line-1,
.title-line-2 {
    display: inline;
}

.title-line-3 {
    display: block;
}

.hero-underline {
    width: 200px;
    height: 6px;
    background: #ed3407;
    margin: 1.5rem 0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.hero-underline::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(46, 125, 50, 0.5);
    animation: shimmer 2s infinite;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: #ed3407;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    animation: rotate 20s linear infinite;
}

.hero-icon i {
    font-size: 2rem;
    color: white;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.hero-section .detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ed3407;
    animation: fadeInUp 1s ease;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transform: none !important;
}

.hero-section .detail-item i {
    font-size: 1.5rem;
    color: #ed3407;
    min-width: 24px;
    text-align: center;
    background: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    border-left: none !important;
    box-shadow: none !important;
    position: relative;
}

.hero-section .detail-item::before {
    display: none !important;
}

.detail-item i {
    font-size: 1.5rem;
    color: #ed3407;
    min-width: 24px;
    text-align: center;
}

.detail-item span {
    color: #a33318;
}

.register-now-btn {
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    color: white;
    border: 2px solid #ed3407;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(136, 32, 12, 0.3);
    animation: fadeInUp 1s ease;
    width: fit-content;
    text-decoration: none;
}

.register-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(136, 32, 12, 0.5);
    background: linear-gradient(135deg, #ed3407 0%, #a33318 100%);
}

.register-now-btn:active {
    transform: translateY(-1px);
}

.register-now-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.register-now-btn:hover i {
    transform: translateX(4px);
}

.buttons-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.schedule-meeting-btn {
    background: transparent;
    color: #ed3407;
    border: 2px solid #ed3407;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(136, 32, 12, 0.2);
    animation: fadeInUp 1s ease;
    width: fit-content;
    text-decoration: none;
}

.schedule-meeting-btn:hover {
    background: #ed3407;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(136, 32, 12, 0.4);
}

.schedule-meeting-btn:active {
    transform: translateY(-1px);
}

.schedule-meeting-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.schedule-meeting-btn:hover i {
    transform: rotate(10deg);
}

.hero-description {
    font-size: 1.2rem;
    color: #424242;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image-wrapper {
    position: relative;
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #a33318 0%, #a33318 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: blobAnimation 8s ease-in-out infinite;
}

.hero-img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.checkerboard {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: 
        linear-gradient(45deg, #ed3407 25%, transparent 25%),
        linear-gradient(-45deg, #ed3407 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ed3407 75%),
        linear-gradient(-45deg, transparent 75%, #ed3407 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.checkerboard-1 {
    top: 10%;
    right: -5%;
}

.checkerboard-2 {
    bottom: 10%;
    left: -5%;
}

.stats-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 3;
    animation: fadeInUp 1s ease 0.5s both;
    max-width: 280px;
}

.stats-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.stats-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
}

.stats-number {
    font-weight: 800;
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    line-height: 1;
}

.stats-label {
    font-weight: 600;
    color: #2D3436;
    font-size: 0.9rem;
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    50% {
        transform: translateY(-15px) rotateZ(5deg);
    }
}

.decorative-line {
    position: absolute;
    stroke: #ed3407;
    stroke-width: 3;
    fill: none;
    opacity: 0.3;
}

.line-1 {
    top: 20%;
    left: 10%;
    animation: draw 3s ease-in-out infinite;
}

.line-2 {
    bottom: 20%;
    right: 5%;
    animation: draw 3s ease-in-out infinite 1.5s;
}

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

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

@keyframes blobAnimation {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

@keyframes draw {
    0%, 100% {
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dashoffset: 300;
    }
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-partners {
    text-align: center;
    padding: 0.5rem 0 0.5rem;
    animation: fadeInUp 1s ease;
}

.partners-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s ease;
}

.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.2s both;
}

.partner-logo {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F8F6;
    border-radius: 18px;
    padding: 1rem;
    transition: all 0.3s ease;
    animation: bounceIn 0.8s ease;
    position: relative;
}

.partner-logo:nth-child(1) {
    animation: bounceIn 0.8s ease 0s, floatLogo 4s ease-in-out infinite 0.8s;
}

.partner-logo:nth-child(2) {
    animation: bounceIn 0.8s ease 0.1s, floatLogo 4s ease-in-out infinite 0.9s;
}

.partner-logo:nth-child(3) {
    animation: bounceIn 0.8s ease 0.2s, floatLogo 4s ease-in-out infinite 1s;
}

.partner-logo:nth-child(4) {
    animation: bounceIn 0.8s ease 0.3s, floatLogo 4s ease-in-out infinite 1.1s;
}

.partner-logo:hover {
    transform: scale(1.1) translateY(-10px);
    background: linear-gradient(135deg, #a33318 0%, #a33318 100%);
    box-shadow: 0 20px 40px rgba(136, 32, 12, 0.3);
}

.partner-logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .partners-carousel {
        gap: 1.5rem;
    }
    
    .partner-logo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .partners-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .partners-carousel {
        gap: 1rem;
    }
    
    .partner-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-partners {
        padding: 2rem 1rem;
    }
    
    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        margin-top: 2rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .partners-carousel {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partner-logo {
        width: 90px;
        height: 90px;
        flex: 0 0 calc(50% - 0.5rem);
        max-width: 120px;
    }
    
    .partner-logo img {
        width: 85%;
        height: 85%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 1.6rem;
        white-space: normal;
    }
    
    .title-line-1,
    .title-line-2 {
        display: inline;
    }
    
    .hero-theme {
        font-size: 0.8rem;
        white-space: normal;
    }
    
    .hero-blob {
        width: 400px;
        height: 400px;
    }
    
    .review-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        white-space: normal;
    }
    
    .title-line-1 {
        display: block;
    }
    
    .title-line-2,
    .title-line-3 {
        display: inline;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-theme {
        font-size: 0.75rem;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .checkerboard {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-theme {
        font-size: 0.7rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .event-details {
        gap: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .detail-item {
        font-size: 1rem;
    }
    
    .detail-item i {
        font-size: 1.3rem;
    }
    
    .hero-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .buttons-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .register-now-btn,
    .schedule-meeting-btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-card {
        max-width: 200px;
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .stats-label {
        white-space: nowrap;
    }
    
    .hero-underline {
        width: 150px;
    }
}

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

body {
    font-family: 'Georgia', serif;
}

.theme-section {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

.theme-content {
    position: relative;
    z-index: 10;
}

.theme-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 5px;
    animation: fadeInUp 1s ease;
}

.theme-icon {
    font-size: 1.8rem;
    margin: 10px 0;
    animation: float 3s ease-in-out infinite;
}

.theme-subtitle {
    font-size: 1.3rem;
    color: #000000;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
    white-space: nowrap;
}

/* Theme Background Elements */
.theme-bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.theme-bg-1 {
    width: 400px;
    height: 400px;
    background: #ed3407;
    top: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite;
}

.theme-bg-2 {
    width: 300px;
    height: 300px;
    background: #ed3407;
    bottom: -50px;
    right: -80px;
    animation: float 12s ease-in-out infinite 2s;
}

.theme-bg-3 {
    width: 250px;
    height: 250px;
    background: #a33318;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 14s ease-in-out infinite 4s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-section {
        padding: 60px 15px;
    }
    
    .theme-subtitle {
        white-space: normal;
        font-size: 1.1rem;
    }
    
    .theme-title {
        font-size: 1.6rem;
    }
    
    .theme-bg-1,
    .theme-bg-2,
    .theme-bg-3 {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .theme-section {
        padding: 60px 15px;
    }
    
    .theme-subtitle {
        font-size: 1.1rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .theme-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .theme-icon {
        font-size: 2rem;
        margin: 15px 0;
    }
}

/* Background Section */
.background-section {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.background-images {
    position: relative;
    animation: fadeInLeft 1s ease;
}

.background-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.leaf-decoration {
    position: absolute;
    top: 20px;
    left: -30px;
    font-size: 4rem;
    color: #a33318;
    z-index: 1;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.leaf-decoration i:nth-child(2) {
    animation: float 6s ease-in-out infinite 0.5s;
}

.main-circle {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a33318 0%, #a33318 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(136, 32, 12, 0.3), 0 0 0 15px rgba(255, 255, 255, 0.8);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

.main-circle .circle-img {
    border-radius: 50%;
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.small-circle {
    position: absolute;
    bottom: -30px;
    left: 30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    border: 8px solid #FFFFFF;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 3px #ed3407;
    z-index: 3;
    animation: fadeInUp 1s ease 0.3s both;
}

.small-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-content {
    animation: fadeInRight 1s ease;
    padding: 2rem;
    background: #FFFFFF;
    border-bottom: 5px solid #ed3407;
    border-radius: 12px;
}

.section-label {
    display: inline-block;
    color: #F59E0B;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    font-style: italic;
}

.section-label i {
    font-style: italic;
}

.background-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.1s both;
    letter-spacing: -0.5px;
}

.background-subtitle {
    font-size: 1.3rem;
    color: #ed3407;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.background-description {
    font-size: 1.05rem;
    color: #616161;
    line-height: 1.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
    font-weight: 500;
    text-align: justify;
}

.features-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.feature-box {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a33318;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #424242;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.benefits-list li i {
    color: #ed3407;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.discover-btn {
    display: inline-block;
    background: #ed3407;
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(136, 32, 12, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.discover-btn:hover {
    background: #ed3407;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(136, 32, 12, 0.4);
    color: white;
}

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

@media (max-width: 992px) {
    .background-title {
        font-size: 1.8rem;
    }
    
    .main-circle {
        width: 300px;
        height: 300px;
    }
    
    .features-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .background-section {
        padding: 3rem 0;
    }
    
    .background-images {
        margin-bottom: 3rem;
    }
    
    .background-image-wrapper {
        height: 400px;
    }
    
    .main-circle {
        width: 250px;
        height: 250px;
    }
    
    .small-circle {
        width: 120px;
        height: 120px;
    }
    
    .background-title {
        font-size: 2rem;
    }
    
    .background-content {
        padding: 1.5rem;
    }
    
    .background-description {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .background-subtitle {
        font-size: 1.1rem;
    }
    
    .features-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .background-section {
        padding: 3rem 0;
    }
    
    .background-image-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .main-circle {
        width: 200px;
        height: 200px;
    }
    
    .small-circle {
        width: 90px;
        height: 90px;
    }
    
    .background-content {
        text-align: center;
    }
    
    .background-title {
        font-size: 1.4rem;
    }
    
    .background-description {
        font-size: 0.9rem;
    }
    
    .leaf-decoration {
        font-size: 2.5rem;
    }
}

/* Objective & Target Audience Section */
.objective-section {
    position: relative;
    padding: 4rem 0;
    background:linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%), url("../img/back.5c2b188c95cf.avif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}


.objective-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3.5rem;
}

.objective-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    text-shadow: none;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.5px;
}

.objective-cards {
    position: relative;
    z-index: 2;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.objective-cards > div {
    display: flex;
    width: 100%;
}

.objective-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease 0.3s both;
    border-top: 6px solid #ed3407;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.objective-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(136, 32, 12, 0.4);
    background: rgba(255, 255, 255, 1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(136, 32, 12, 0.35);
    transition: all 0.3s ease;
}

.objective-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.card-content {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.card-content li {
    font-size: 0.92rem;
    color: #555555;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-content li:last-child {
    margin-bottom: 0;
}

.card-content li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ed3407;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.objective-card:hover .card-content li {
    padding-left: 2.2rem;
}

@media (max-width: 992px) {
    .objective-section {
        padding: 3.5rem 0;
    }
    
    .objective-title {
        font-size: 2rem;
    }
    
    .objective-header {
        margin-bottom: 3rem;
    }
    
    .objective-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .objective-section {
        padding: 2.5rem 0;
        background-attachment: scroll;
    }
    
    .objective-title {
        font-size: 1.8rem;
    }
    
    .objective-header {
        margin-bottom: 2.5rem;
    }
    
    .objective-cards {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .objective-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.2rem;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .card-content li {
        font-size: 0.88rem;
        margin-bottom: 0.9rem;
        padding-left: 1.8rem;
    }
}

@media (max-width: 480px) {
    .objective-section {
        padding: 3rem 0;
    }
    
    .objective-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .objective-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .objective-cards {
        gap: 1.5rem;
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .objective-card {
        padding: 2rem 1.5rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem auto;
    }
    
    .card-icon i {
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    .card-content li {
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
        padding-left: 2rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

/* Features Section */
.features-section {
    position: relative;
    padding: 5rem 0;
    background: #FFFFFF;
    overflow: hidden;
}

.features-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 10px,
        #FFFFFF 10px,
        #FFFFFF 20px
    );
    animation: slideStripes 2s linear infinite;
}

@keyframes slideStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 28px 0;
    }
}

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

.features-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.1s both;
    letter-spacing: -0.5px;
}

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

.feature-card {
    background: #000000;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: #FCD34D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-box i {
    font-size: 2.2rem;
    color: #000000;
    font-weight: 800;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 0.95rem;
    color: #FCD34D;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }
    
    .features-stripes {
        height: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-box {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon-box i {
        font-size: 1.8rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 2rem 0;
    }
    
    .features-stripes {
        height: 30px;
    }
    
    .section-label {
        font-size: 0.85rem;
    }
    
    .features-title {
        font-size: 1.4rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-box i {
        font-size: 1.6rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

/* Passion Section */
.passion-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.passion-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.star {
    position: absolute;
    color: #D0D0D0;
    opacity: 0.6;
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: 25%;
    font-size: 3rem;
    animation-delay: 0s;
}

.star-2 {
    top: 60%;
    right: 20%;
    font-size: 2rem;
    animation-delay: 1s;
}

.passion-content {
    z-index: 2;
    position: relative;
    animation: fadeInLeft 1s ease;
}

.section-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFC107;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50px;
    font-style: italic;
    font-family: 'Playwrite Norge', cursive;
}

.passion-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.passion-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 100%;
    letter-spacing: 0.3px;
}

.learn-more-btn {
    display: inline-block;
    background: #FFC107;
    color: #1B1B1B;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.learn-more-btn:hover {
    background: #FFB300;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
    color: #1B1B1B;
}

.passion-image-container {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

.passion-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.passion-curve-line {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 80px;
    border-top: 4px solid #ed3407;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
    animation: lineAnimation 8s ease-in-out infinite;
}

.passion-curve {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #ed3407 0%, #a33318 100%);
    border-radius: 50% 40% 40% 50% / 60% 50% 50% 40%;
    animation: curveAnimation 8s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(136, 32, 12, 0.3), inset -20px -20px 60px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 10px 30px rgba(136, 32, 12, 0.25));
}

.passion-img {
    position: absolute;
    z-index: 4;
    width: 65%;
    max-width: 350px;
    height: auto;
    border-radius: 20%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



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

@keyframes curveAnimation {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.02);
    }
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0px) translateZ(0px);
    }
    25% {
        transform: translateY(-20px) translateZ(20px);
    }
    50% {
        transform: translateY(-30px) translateZ(40px);
    }
    75% {
        transform: translateY(-20px) translateZ(20px);
    }
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes imageTilt {
    0%, 100% {
        transform: rotateX(5deg) rotateY(-5deg);
    }
    25% {
        transform: rotateX(-5deg) rotateY(5deg);
    }
    50% {
        transform: rotateX(5deg) rotateY(5deg);
    }
    75% {
        transform: rotateX(-5deg) rotateY(-5deg);
    }
}

@keyframes lineAnimation {
    0%, 100% {
        width: 500px;
        opacity: 1;
    }
    50% {
        width: 480px;
        opacity: 0.8;
    }
}

@media (max-width: 1024px) {
    .passion-title {
        font-size: 2.3rem;
    }
    
    .passion-image-wrapper {
        height: 400px;
    }
    
    .passion-curve-line {
        width: 400px;
    }
    
    .passion-curve {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .passion-section {
        padding: 4rem 0;
    }
    
    .passion-title {
        font-size: 2rem;
    }
    
    .passion-description {
        font-size: 1rem;
    }
    
    .passion-image-wrapper {
        height: 300px;
        margin-top: 2rem;
    }
    
    .passion-curve-line {
        width: 320px;
    }
    
    .passion-curve {
        width: 280px;
        height: 280px;
    }
    
    .about-paragraphs {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .about-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }
    
    .star-1, .star-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .passion-section {
        padding: 2rem 0;
    }
    
    .section-label {
        font-size: 0.85rem;
    }
    
    .passion-title {
        font-size: 1.4rem;
    }
    
    .passion-description {
        font-size: 0.95rem;
    }
    
    .passion-image-wrapper {
        height: 250px;
        margin-top: 1.5rem;
    }
    
    .passion-curve-line {
        width: 240px;
    }
    
    .passion-curve {
        width: 200px;
        height: 200px;
    }
    
    .passion-img {
        max-width: 100%;
    }
    
    .about-paragraphs {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .about-paragraph {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
    }
}

.expansion-full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #f9f9f9;
    padding: 3rem 0;
}

.about-paragraphs {
    margin-top: 2rem;
    padding-top: 0;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(136, 32, 12, 0.2);
}

.about-paragraph {
    font-size: 1.05rem;
    color: #555;
    line-height: 2;
    margin-bottom: 2.5rem;
    text-align: justify;
    animation: fadeInUp 1s ease;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.exhibition-profile-section {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F8F0 40%, #E8F5E9 100%);
    position: relative;
    overflow: hidden;
}

.exhibition-profile-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(136, 32, 12, 0.2) 0%, rgba(136, 32, 12, 0.08) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow: inset 0 0 100px rgba(136, 32, 12, 0.1);
}

.exhibition-profile-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 600"><defs><filter id="blur"><feGaussianBlur in="SourceGraphic" stdDeviation="0.5"/></filter></defs><g stroke="%23ed3407" stroke-width="1.2" fill="none" opacity="0.12" filter="url(%23blur)"><path d="M80,200 L120,150 L160,180 L200,140 L240,170 L280,130 L320,160" stroke-width="1.5"/><path d="M1300,220 L1320,160 L1340,190 L1360,150 L1380,180"/><path d="M100,80 L110,120 L120,80 L130,120 L140,80 L150,120 L160,80 L170,120 L180,80 L190,120"/><path d="M250,100 L260,140 L270,100 L280,140 L290,100 L300,140 L310,100 L320,140"/><path d="M1250,90 L1260,130 L1270,90 L1280,130 L1290,90 L1300,130"/><path d="M500,250 Q520,200 540,250" stroke-width="1.5"/><circle cx="520" cy="180" r="30" stroke-width="1"/><circle cx="520" cy="180" r="25"/><circle cx="520" cy="180" r="20"/><line x1="520" y1="150" x2="520" y2="210"/><line x1="490" y1="180" x2="550" y2="180"/><line x1="495" y1="165" x2="545" y2="195"/><line x1="495" y1="195" x2="545" y2="165"/><path d="M50,300 L80,280 L110,300 L140,280 L170,300 L200,280 L230,300 L260,280 L290,300 L320,280 L350,300 L380,280 L410,300"/><path d="M1200,320 L1230,300 L1260,320 L1290,300 L1320,320 L1350,300 L1380,320"/><path d="M700,350 L720,330 L740,350 L760,330 L780,350 L800,330 L820,350"/></g></svg>') no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

.exhibition-profile-section > .container {
    position: relative;
    z-index: 2;
}

.exhibition-profile-section > .container::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.15) 0%, rgba(46, 125, 50, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 80px rgba(46, 125, 50, 0.08);
}

.exhibition-profile-section > .container::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -8%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(136, 32, 12, 0.08) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: 5%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(136, 32, 12, 0.15) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 3%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.12) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ed3407;
    line-height: 1.2;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.1s both;
    letter-spacing: -0.5px;
}

.exhibition-paragraphs {
    padding: 1.5rem 0 2rem;
}

.exhibition-paragraph {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
    animation: fadeInUp 1s ease;
}

.exhibition-paragraph:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .exhibition-profile-section {
        padding: 2.5rem 0 2rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .exhibition-paragraphs {
        padding: 1rem 0 1.5rem;
    }
    
    .exhibition-paragraph {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .exhibition-grid {
        margin-top: 1.5rem;
        padding: 1rem 0;
        gap: 1.5rem 1rem;
    }
    
    .exhibition-profile-section::after {
        height: 250px;
    }
}

.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem 0;
    position: relative;
}

.exhibition-grid::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(136, 32, 12, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.exhibition-grid::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.exhibition-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(136, 32, 12, 0.08) 0%, rgba(129, 199, 132, 0.06) 100%);
    backdrop-filter: blur(10px);
    padding: 2.2rem 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(136, 32, 12, 0.15);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.exhibition-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(136, 32, 12, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.exhibition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(136, 32, 12, 0.15);
    border-color: rgba(136, 32, 12, 0.25);
    background: linear-gradient(135deg, rgba(136, 32, 12, 0.12) 0%, rgba(129, 199, 132, 0.1) 100%);
}

.hexagon-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hexagon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ed3407 0%, #45a049 50%, #ed3407 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(136, 32, 12, 0.25);
    position: relative;
}

.hexagon::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
}

.exhibition-card:hover .hexagon {
    background: linear-gradient(135deg, #ed3407 0%, #a33318 100%);
    box-shadow: 0 12px 32px rgba(136, 32, 12, 0.4);
    transform: scale(1.12) rotateY(10deg);
}

.exhibition-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #a33318;
    margin-bottom: 0.9rem;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 2;
}

.exhibition-card-description {
    font-size: 0.88rem;
    color: rgba(55, 100, 55, 0.85);
    line-height: 1.7;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .exhibition-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem 1.5rem;
        margin-top: 3rem;
    }

    .exhibition-card {
        padding: 2rem 1.5rem;
    }

    .hexagon-container {
        width: 68px;
        height: 68px;
    }

    .hexagon {
        font-size: 1.5rem;
    }

    .exhibition-card-title {
        font-size: 1.02rem;
    }

    .exhibition-card-description {
        font-size: 0.87rem;
    }
}



@media (max-width: 768px) {
    .exhibition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .exhibition-card {
        padding: 1.8rem 1.3rem;
    }

    .hexagon-container {
        width: 66px;
        height: 66px;
        margin-bottom: 1.2rem;
    }

    .hexagon {
        font-size: 1.4rem;
    }

    .exhibition-card-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .exhibition-card-description {
        font-size: 0.86rem;
    }
}

@media (max-width: 480px) {
    .exhibition-profile-section {
        padding: 2rem 0 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .exhibition-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .exhibition-card {
        padding: 1.4rem 1rem;
    }

    .hexagon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .hexagon {
        font-size: 1.2rem;
    }

    .exhibition-card-title {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .exhibition-card-description {
        font-size: 0.82rem;
        line-height: 1.5;
    }
}

/* Event Highlights Section */
.event-highlights-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.event-highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.event-highlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease;
    min-height: 280px;
    position: relative;
    align-items: stretch;
}

.event-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, currentColor 0%, transparent 100%);
    z-index: 10;
}

.event-highlight-card:nth-child(1)::before {
    background: linear-gradient(90deg, #a33318 0%, transparent 100%);
}

.event-highlight-card:nth-child(2)::before {
    background: linear-gradient(90deg, #004D40 0%, transparent 100%);
}

.event-highlight-card:nth-child(3)::before {
    background: linear-gradient(90deg, #D4AF37 0%, transparent 100%);
}

.event-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.event-highlight-card:nth-child(1) .highlight-content {
    background: #ed3407;
}

.event-highlight-card:nth-child(2) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.event-highlight-card:nth-child(2) .highlight-content,
.event-highlight-card:nth-child(2) .highlight-image {
    direction: ltr;
}

.event-highlight-card:nth-child(2) .highlight-content {
    background: #26A69A;
}

.event-highlight-card:nth-child(3) .highlight-content {
    background: #F4C430;
}

.highlight-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    min-height: 280px;
}

.event-highlight-card:nth-child(3) .highlight-content {
    color: #333;
}

.highlight-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.highlight-content > * {
    position: relative;
    z-index: 2;
}

.highlight-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-highlight-card:nth-child(3) .highlight-badge {
    color: rgba(51, 51, 51, 0.9);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
}

.event-highlight-card:nth-child(3) .highlight-title {
    color: #333;
}

.highlight-badge .agri-text {
    font-weight: 900;
    letter-spacing: 1px;
}

.event-highlight-card:nth-child(1) .agri-text {
    color: #a33318;
}

.event-highlight-card:nth-child(2) .agri-text {
    color: #004D40;
}

.event-highlight-card:nth-child(3) .agri-text {
    color: #D4AF37;
}

.highlight-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.75rem 0;
}

.highlight-description:last-of-type {
    margin-bottom: 0;
}

.event-highlight-card:nth-child(3) .highlight-description {
    color: #555;
}

.event-highlight-card:nth-child(3) .highlight-description:last-of-type {
    margin-bottom: 0;
}

.highlight-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    height: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    flex-shrink: 0;
}

.event-highlight-card:hover .highlight-image img {
    transform: scale(1.08);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .event-highlight-card {
        grid-template-columns: 1fr;
        min-height: auto;
        direction: ltr;
    }

    .event-highlight-card:nth-child(2) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        direction: ltr;
    }

    .event-highlight-card:nth-child(2) .highlight-content {
        order: 1;
    }

    .event-highlight-card:nth-child(2) .highlight-image {
        order: 2;
    }

    .highlight-image {
        height: 250px;
        width: 100%;
    }

    .highlight-content {
        padding: 2rem;
    }

    .highlight-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .highlight-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .event-highlights-section {
        padding: 2.5rem 0;
    }

    .event-highlights-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .event-highlight-card {
        grid-template-columns: 1fr;
        min-height: auto;
        direction: ltr;
    }

    .event-highlight-card:nth-child(2) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        direction: ltr;
    }

    .event-highlight-card:nth-child(2) .highlight-content {
        order: 1;
    }

    .event-highlight-card:nth-child(2) .highlight-image {
        order: 2;
    }

    .highlight-image {
        height: 220px;
        width: 100%;
    }

    .highlight-content {
        padding: 1.75rem;
    }

    .highlight-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 0.75rem;
    }

    .highlight-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .highlight-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .event-highlights-section {
        padding: 2rem 0;
    }

    .event-highlights-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .event-highlight-card {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .event-highlight-card:nth-child(2) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        direction: ltr;
    }

    .event-highlight-card:nth-child(2) .highlight-content {
        order: 1;
    }

    .event-highlight-card:nth-child(2) .highlight-image {
        order: 2;
    }

    .highlight-image {
        height: 180px;
        width: 100%;
    }

    .highlight-content {
        padding: 1.5rem;
    }

    .highlight-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.6rem;
    }

    .highlight-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .highlight-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #FAFAFA;
}

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

.sponsorship-section {
    padding: 5rem 0;
    background: #FAFAFA;
}

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

.sponsorship-section .section-title {
    font-size: 1.8rem;
    color: #ed3407;
    font-weight: 800;
}

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

.sponsorship-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, transparent 0%, #ed3407 100%);
}

.sponsorship-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.sponsorship-card.platinum {
    background: linear-gradient(180deg, #2E5090 0%, #ed3407 45%, #ed3407 100%);
}

.sponsorship-card.gold {
    background: linear-gradient(180deg, #FFD700 0%, #ed3407 45%, #ed3407 100%);
}

.sponsorship-card.silver {
    background: linear-gradient(180deg, #C0C0C0 0%, #ed3407 45%, #ed3407 100%);
}

.sponsorship-card.bronze {
    background: linear-gradient(180deg, #CD7F32 0%, #ed3407 45%, #ed3407 100%);
}

.sponsorship-badge-wrapper {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.sponsorship-badge {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

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

.sponsorship-card.platinum .sponsorship-badge {
    background: linear-gradient(135deg, #66BB6A 0%, #ed3407 100%);
    border: 6px solid #ed3407;
}

.sponsorship-card.gold .sponsorship-badge {
    background: linear-gradient(135deg, #FFE566 0%, #FFD700 100%);
    border: 6px solid #DAA520;
}

.sponsorship-card.silver .sponsorship-badge {
    background: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 100%);
    border: 6px solid #808080;
}

.sponsorship-card.bronze .sponsorship-badge {
    background: linear-gradient(135deg, #E8A76B 0%, #CD7F32 100%);
    border: 6px solid #8B4513;
}

.badge-text {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.2;
    padding: 0 10px;
}

.sponsorship-card.gold .badge-text {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 1.8rem;
}

.sponsorship-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: white;
    margin-bottom: 1rem;
}

.currency {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.amount {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.sponsorship-benefits {
    padding: 2.5rem 2rem;
    background: #ed3407;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sponsorship-benefits h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    color: #a33318;
}

.sponsorship-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sponsorship-benefits li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    padding-left: 2rem;
    position: relative;
}

.sponsorship-benefits li i {
    position: absolute;
    left: 0;
    color: #a33318;
    font-size: 1.1rem;
    top: 2px;
}

@media (max-width: 1200px) {
    .sponsorship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sponsorship-section {
        padding: 3rem 0;
    }

    .sponsorship-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .sponsorship-badge {
        width: 120px;
        height: 120px;
    }

    .badge-text {
        font-size: 1.2rem;
    }

    .sponsorship-card.gold .badge-text {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 1.5rem;
    }

    .sponsorship-benefits {
        padding: 2rem 1.5rem;
    }

    .sponsorship-benefits li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .sponsorship-section {
        padding: 2rem 0;
    }
    
    .sponsorship-section .section-title {
        font-size: 1.4rem;
    }
    
    .sponsorship-grid {
        gap: 1.5rem;
    }
    
    .sponsorship-badge {
        width: 100px;
        height: 100px;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .sponsorship-card.gold .badge-text {
        font-size: 1.3rem;
    }
    
    .currency {
        font-size: 0.8rem;
    }
    
    .amount {
        font-size: 1.3rem;
    }
    
    .sponsorship-badge-wrapper {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .sponsorship-benefits {
        padding: 1.5rem 1.2rem;
    }
    
    .sponsorship-benefits h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .sponsorship-benefits li {
        font-size: 0.8rem;
        padding-left: 1.8rem;
    }
}

.special-packages-section {
    padding: 5rem 0;
    background: #E8F5E9;
}

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

.special-packages-section .section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.special-packages-section .pricing-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    min-height: 700px;
    border: 1px solid rgba(136, 32, 12, 0.1);
}

.special-packages-section .pricing-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 24px 48px rgba(136, 32, 12, 0.2);
    border-color: rgba(136, 32, 12, 0.3);
}

.special-packages-section .pricing-card.featured {
    box-shadow: 0 16px 48px rgba(136, 32, 12, 0.2);
    z-index: 10;
    min-height: 700px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf7 100%);
    border-color: rgba(136, 32, 12, 0.3);
}

.special-packages-section .pricing-card.featured:hover {
    transform: translateY(-25px) scale(1.03);
    box-shadow: 0 32px 64px rgba(136, 32, 12, 0.3);
    border-color: rgba(136, 32, 12, 0.5);
}

.special-packages-section .pricing-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: none;
    background: linear-gradient(135deg, rgba(136, 32, 12, 0.05) 0%, rgba(46, 125, 50, 0.03) 100%);
}

.special-packages-section .pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: 0.3px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.3;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-packages-section .basic-card .pricing-title,
.special-packages-section .premium-card .pricing-title {
    color: #ed3407;
}

.special-packages-section .standard-card .pricing-title {
    color: #ed3407;
}

.special-packages-section .pricing-bar {
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    padding: 1rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.special-packages-section .price-text {
    color: white;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    white-space: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.special-packages-section .package-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
}

.special-packages-section .price-amount-large {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.special-packages-section .package-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-weight: 500;
}

.special-packages-section .benefits-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 1.2rem;
    margin-top: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(136, 32, 12, 0.2);
    text-align: center;
}

.special-packages-section .features-section {
    padding: 2.2rem 2rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf9 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-height: 0;
}

.special-packages-section .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.special-packages-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    color: #444;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
}

.special-packages-section .feature-item:hover {
    color: #ed3407;
    transform: translateX(4px);
}

.special-packages-section .feature-item i {
    font-size: 1.1rem;
    min-width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1px;
    flex-shrink: 0;
    color: #ed3407;
    transition: all 0.3s ease;
    background: rgba(136, 32, 12, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.special-packages-section .feature-item:hover i {
    background: rgba(136, 32, 12, 0.2);
    transform: scale(1.15);
}

.special-packages-section .feature-item.included i {
    color: #ed3407;
    background: rgba(136, 32, 12, 0.1);
}

.special-packages-section .feature-item.excluded i {
    color: #D32F2F;
    background: rgba(211, 47, 47, 0.1);
}

.special-packages-section .feature-item.excluded span {
    color: #999;
}

.special-packages-section .package-image {
    width: calc(100% + 2px);
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f6 100%);
    border-radius: 0 0 24px 24px;
    margin: 1.5rem -1px -1px -1px;
    margin-top: auto;
    flex-shrink: 0;
    box-shadow: inset 0 2px 8px rgba(136, 32, 12, 0.12);
}

.special-packages-section .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.special-packages-section .pricing-card:hover .package-image img {
    transform: scale(1.08) rotate(1deg);
}

.special-packages-section .cta-button {
    display: none;
}

/* Animation classes for scroll effects */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .special-packages-section .section-title {
        font-size: 2rem;
    }

    .special-packages-section .pricing-title {
        font-size: 1.3rem;
    }

    .special-packages-section .price-text {
        font-size: 1.4rem;
    }

    .special-packages-section .pricing-card.featured {
        box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
    }

    .special-packages-section .pricing-card.featured:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    }
}

@media (max-width: 768px) {
    .special-packages-section {
        padding: 3rem 0;
    }

    .special-packages-section .section-title {
        font-size: 1.8rem;
    }

    .special-packages-section .section-subtitle {
        font-size: 1rem;
    }

    .special-packages-section .pricing-card {
        min-height: 650px;
    }

    .special-packages-section .pricing-card.featured {
        min-height: 650px;
    }

    .special-packages-section .pricing-header {
        padding: 1.2rem 1.5rem;
    }

    .special-packages-section .pricing-title {
        font-size: 1.2rem;
    }

    .special-packages-section .pricing-bar {
        padding: 1rem 1.5rem;
    }

    .special-packages-section .price-text {
        font-size: 1.3rem;
    }

    .special-packages-section .features-section {
        padding: 1.5rem 1.5rem 0;
    }

    .special-packages-section .feature-item {
        font-size: 0.85rem;
    }

    .special-packages-section .package-image {
        width: 100%;
        height: 180px;
        margin: 0;
        margin-top: auto;
        margin-bottom: -1px;
        border-radius: 0 0 50px 50px;
    }

    .special-packages-section .pricing-card.featured {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .special-packages-section .pricing-card.featured:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 576px) {
    .special-packages-section .pricing-card {
        margin-bottom: 1.5rem;
        min-height: 580px;
    }

    .special-packages-section .pricing-card.featured {
        min-height: 580px;
    }

    .special-packages-section .pricing-header {
        padding: 1rem 1rem;
    }

    .special-packages-section .pricing-title {
        font-size: 1rem;
    }

    .special-packages-section .pricing-bar {
        padding: 0.9rem 1rem;
    }

    .special-packages-section .price-text {
        font-size: 1.2rem;
    }

    .special-packages-section .features-section {
        padding: 1.2rem 1rem 0;
    }

    .special-packages-section .package-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .special-packages-section .benefits-heading {
        font-size: 0.95rem;
    }

    .special-packages-section .feature-item {
        font-size: 0.8rem;
        gap: 0.6rem;
    }

    .special-packages-section .package-image {
        width: 100%;
        height: 160px;
        margin: 0;
        margin-top: auto;
        margin-bottom: -1px;
        border-radius: 0 0 40px 40px;
    }
}

.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F8F5 100%);
    z-index: 1;
}

.contact-section > .container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.contact-section > .container > .row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 3rem !important;
    flex-wrap: nowrap !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative;
    z-index: 2;
}

.contact-section .col-lg-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: #ed3407;
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.5px;
}

.text-yellow {
    color: #ed3407 !important;
}

.text-green {
    color: #ed3407 !important;
}

.map-container {
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.15);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100% !important;
    max-width: 100% !important;
}

.map-container iframe {
    width: 100% !important;
    height: 300px !important;
}

.contact-info {
    margin-top: 40px !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ed3407;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.08);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(136, 32, 12, 0.1), rgba(136, 32, 12, 0));
    border-radius: 50%;
    filter: blur(20px);
}

.contact-info .row {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
}

.contact-info .col-md-6 {
    flex: 1 !important;
    width: 50% !important;
    max-width: 50% !important;
    min-width: 0 !important;
}

.contact-item {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
    min-width: 0;
}

.contact-item:hover {
    transform: translateX(5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ed3407, #ed3407);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
    transition: all 0.3s ease;
}

.contact-item:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.35);
}

.phone-number, .email {
    color: #ed3407;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-container {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(46, 125, 50, 0.2);
    position: relative;
    border: 2px solid #a33318;
    width: 90% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    transition: all 0.4s ease;
}

.form-container:hover {
    box-shadow: 0 20px 70px rgba(46, 125, 50, 0.3);
    transform: translateY(-5px);
}

.form-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ed3407, #ed3407);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(15px);
}

.form-container::after {
    content: 'Send Us a Message';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ed3407;
    border: 2px solid #a33318;
    z-index: 10;
}

.form-container form .row {
    margin-left: -8px;
    margin-right: -8px;
}

.form-container form .col-6,
.form-container form .col-12 {
    padding-left: 8px;
    padding-right: 8px;
}

.form-input {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1rem;
    color: #424242;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ed3407;
    box-shadow: 0 0 0 3px rgba(136, 32, 12, 0.1);
    transform: translateY(-2px);
}

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

.btn-submit {
    background: linear-gradient(135deg, #ed3407, #ed3407);
    color: #FFFFFF;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.5);
    background: linear-gradient(135deg, #ed3407, #a33318);
    color: #FFFFFF;
}

/* Decorative Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

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

.bg-shape-left {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(136, 32, 12, 0.15), rgba(136, 32, 12, 0));
    left: -250px;
    top: 10%;
    opacity: 1;
    filter: blur(40px);
    animation-delay: 0s;
}

.bg-shape-right-top {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.12), rgba(46, 125, 50, 0));
    right: -150px;
    top: 5%;
    opacity: 1;
    filter: blur(50px);
    animation-delay: 1s;
}

.bg-shape-right-bottom {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(165, 214, 167, 0.1), rgba(165, 214, 167, 0));
    right: -250px;
    bottom: -200px;
    opacity: 1;
    filter: blur(60px);
    animation-delay: 2s;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-section > .container > .row {
        flex-direction: column;
    }
    
    .contact-section .col-lg-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 30px;
        margin-top: 40px;
    }
    
    .contact-section .row {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 25px;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .form-container form .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .contact-info .row {
        gap: 1rem;
        flex-direction: column;
    }
    
    .contact-info .col-md-6 {
        width: 100% !important;
    }
    
    .phone-number, .email {
        font-size: 0.9rem;
    }
    
    .bg-shape-left,
    .bg-shape-right-top,
    .bg-shape-right-bottom {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .form-container {
        padding: 20px;
        margin-top: 30px;
    }
    
    .form-container::after {
        font-size: 0.8rem;
        padding: 4px 15px;
        top: -12px;
    }
    
    .form-container form .row {
        margin-left: -6px;
        margin-right: -6px;
    }
    
    .form-container form .col-6,
    .form-container form .col-12 {
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .form-input {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 12px 40px;
        font-size: 0.95rem;
    }
    
    .icon-circle {
        width: 45px;
        height: 45px;
    }
    
    .icon-circle i {
        font-size: 1.2rem;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-details {
        gap: 0.2rem;
    }
    
    .phone-number, .email {
        font-size: 0.85rem;
    }
    
    .contact-info {
        padding: 20px;
        margin-top: 20px;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
}

/* ========================================
   FOOTER SECTION - BASE STYLES
   ======================================== */
.footer-section {
    background: rgba(136, 32, 12, 0.08);
    backdrop-filter: blur(20px);
    color: #a33318;
    padding: 3rem 0 0;
    margin-top: 5rem;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ed3407 0%, #a33318 50%, #ed3407 100%);
}

.footer-content {
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER COLUMNS
   ======================================== */
.footer-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

/* Ensure proper Bootstrap grid behavior */
.footer-content .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.footer-content .col-lg-3:first-child {
    padding-left: 0;
}

.footer-content .col-lg-3:last-child {
    padding-right: 0;
}

@media (min-width: 992px) {
    .footer-content .col-lg-3:nth-child(1),
    .footer-content .col-lg-3:nth-child(2),
    .footer-content .col-lg-3:nth-child(3),
    .footer-content .col-lg-3:nth-child(4) {
        margin-bottom: 0;
    }
}

/* ========================================
   COMPANY BRANDING
   ======================================== */
.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #388E3C;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(27, 94, 32, 0.8);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

/* ========================================
   FOOTER SECTION TITLES
   ======================================== */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ed3407;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* ========================================
   FOOTER NAVIGATION LINKS
   ======================================== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(27, 94, 32, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ed3407;
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   CONTACT INFORMATION
   ======================================== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(27, 94, 32, 0.8);
    line-height: 1.4;
}

.contact-item i {
    color: #ed3407;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    flex: 1;
}

/* ========================================
   FOOTER DIVIDER
   ======================================== */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(136, 32, 12, 0.3), transparent);
    margin: 1.5rem 0;
}

/* ========================================
   FOOTER BOTTOM SECTION
   ======================================== */
.footer-bottom {
    background: rgba(136, 32, 12, 0.12);
    padding: 1rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(136, 32, 12, 0.15);
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 1.5rem;
}

/* Add container padding back for content */
.footer-bottom > .row {
    padding-left: 15px;
    padding-right: 15px;
}

.footer-bottom .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .col-md-6:first-child {
    text-align: left;
}

.footer-bottom .col-md-6:last-child {
    text-align: right;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(27, 94, 32, 0.8);
    margin: 0;
    font-weight: 400;
}

/* ========================================
   SOCIAL MEDIA LINKS
   ======================================== */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(136, 32, 12, 0.1);
    border: 2px solid #ed3407;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed3407;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #ed3407;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(136, 32, 12, 0.3);
}

/* ========================================
   EVENT DETAILS BOX
   ======================================== */
.event-details-box {
    background: rgba(136, 32, 12, 0.06);
    border: 1px solid rgba(136, 32, 12, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.event-detail-item {
    margin-bottom: 1.2rem;
}

.event-detail-item:last-of-type {
    margin-bottom: 0;
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ed3407;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section .detail-value {
    color: rgba(27, 94, 32, 0.8);
}

.btn-register-footer {
    background: #ed3407;
    color: #FFFFFF !important;
    border: 2px solid #ed3407;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-register-footer:hover {
    background: transparent;
    color: #ed3407 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(136, 32, 12, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .footer-content .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2.5rem 0 0;
        margin-top: 4rem;
    }

    .footer-content {
        padding: 2rem 0;
    }
    
    .footer-content .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-bottom {
        padding: 1.25rem 1rem;
    }

    .footer-bottom .row {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom .col-md-6:first-child,
    .footer-bottom .col-md-6:last-child {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 0;
        margin-top: 3rem;
    }
    
    .footer-content {
        padding: 1.5rem 0;
    }
    
    .footer-bottom {
        padding: 1rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

.breadcrumb-section {
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(136, 32, 12, 0.2);
}

.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.breadcrumb {
    margin: 0;
    font-size: 0.95rem;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
    word-break: break-word;
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
}

.contact-content {
    padding: 2rem 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(136, 32, 12, 0.3);
}

.contact-info-item h4 {
    font-size: 1.2rem;
    color: #ed3407;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.contact-info-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-info-item a {
    color: #ed3407;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: #ed3407;
    text-decoration: underline;
}

.contact-form-container {
    padding: 2rem 0;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(136, 32, 12, 0.1);
}

.form-title {
    font-size: 1.5rem;
    color: #ed3407;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

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

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form .form-control:focus {
    border-color: #ed3407;
    box-shadow: 0 0 0 0.2rem rgba(136, 32, 12, 0.25);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.page-section {
    padding: 0;
    min-height: 60vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #E8F5E9 100%);
}

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

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 500;
}

.foreword-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #ed3407;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.foreword-item:hover {
    box-shadow: 0 8px 25px rgba(136, 32, 12, 0.15);
    transform: translateY(-2px);
}

.foreword-title {
    font-size: 1.5rem;
    color: #ed3407;
    margin-bottom: 1rem;
    font-weight: 700;
}

.foreword-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.foreword-author {
    color: #ed3407;
    font-weight: 600;
    font-style: italic;
    margin-top: 1.5rem;
}

.speaker-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    box-shadow: 0 12px 30px rgba(136, 32, 12, 0.2);
    transform: translateY(-8px);
}

.speaker-image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.speaker-name {
    font-size: 1.3rem;
    color: #ed3407;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.speaker-title {
    color: #ed3407;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.speaker-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.speaker-link {
    color: #ed3407;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.speaker-link:hover {
    color: #ed3407;
    gap: 0.8rem;
}

.exhibitor-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #ed3407;
}

.exhibitor-card:hover {
    box-shadow: 0 12px 30px rgba(136, 32, 12, 0.2);
    transform: translateY(-8px);
}

.exhibitor-logo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(136, 32, 12, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ed3407;
    margin-bottom: 1.5rem;
}

.exhibitor-name {
    font-size: 1.3rem;
    color: #ed3407;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.exhibitor-category {
    color: #ed3407;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exhibitor-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.exhibitor-link {
    color: #ed3407;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.exhibitor-link:hover {
    color: #ed3407;
    gap: 0.8rem;
}

.insight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    box-shadow: 0 12px 30px rgba(136, 32, 12, 0.2);
    transform: translateY(-8px);
}

.insight-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.insight-title {
    font-size: 1.2rem;
    color: #ed3407;
    margin: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.insight-date {
    color: #999;
    font-size: 0.85rem;
    margin: 0 1.5rem;
    font-weight: 500;
}

.insight-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 1rem 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.insight-link {
    color: #ed3407;
    text-decoration: none;
    font-weight: 600;
    margin: 0 1.5rem 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-link:hover {
    color: #ed3407;
    gap: 0.8rem;
}

.meetings-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.meetings-info {
    margin-bottom: 2rem;
}

.meetings-subtitle {
    font-size: 1.5rem;
    color: #ed3407;
    margin-bottom: 1rem;
    font-weight: 700;
}

.meetings-description {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.schedule-form {
    border-top: 2px solid rgba(136, 32, 12, 0.2);
    padding-top: 2rem;
}

.schedule-form h4 {
    color: #ed3407;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.schedule-form .form-label {
    color: #ed3407;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.schedule-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.schedule-form .form-control:focus {
    border-color: #ed3407;
    box-shadow: 0 0 0 0.2rem rgba(136, 32, 12, 0.25);
}

.schedule-form .form-control::placeholder {
    color: #999;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-content {
        margin-bottom: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info-item {
        gap: 1.2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .breadcrumb-section {
        padding: 1.2rem 0;
    }
    
    .breadcrumb-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .breadcrumb-wrapper nav {
        flex: 1;
        min-width: 0;
    }
    
    .breadcrumb-title {
        font-size: 1.4rem;
        line-height: 1.3;
        text-align: right;
        margin: 0;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .breadcrumb-item {
        display: inline;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .foreword-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .meetings-content {
        padding: 1.5rem;
    }
    
    .schedule-form {
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 1rem 0;
    }
    
    .breadcrumb-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .breadcrumb-wrapper nav {
        flex: 1;
        min-width: 0;
    }
    
    .breadcrumb-title {
        font-size: 1.2rem;
        text-align: right;
        margin: 0;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-list {
        gap: 1.5rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .contact-info-item h4 {
        font-size: 1rem;
    }
    
    .contact-info-item p {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form .form-control {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .breadcrumb-section {
        padding: 1.25rem 0;
    }
    
    .breadcrumb-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .breadcrumb-title {
        font-size: 1.4rem;
        line-height: 1.2;
        word-wrap: break-word;
        width: 100%;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
        width: 100%;
    }
    
    .breadcrumb-item {
        display: inline;
        margin-right: 0.25rem;
    }
    
    .breadcrumb-item a {
        font-weight: 400;
    }
    
    .page-section {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .speaker-image-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .foreword-item {
        padding: 1.2rem;
    }
    
    .meetings-content {
        padding: 1rem;
    }
}

/* Forewords Section Styles */
.forewords-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.forewords-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.author-profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ed3407;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ed3407;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.author-organization {
    font-size: 1rem;
    color: #ed3407;
    font-weight: 600;
    margin: 0;
}

.forewords-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.forewords-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.forewords-text p:first-child {
    font-weight: 600;
    color: #ed3407;
}

@media (max-width: 768px) {
    .forewords-content {
        padding: 2rem 1rem;
    }
    
    .forewords-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .author-profile-photo {
        width: 120px;
        height: 120px;
    }
    
    .forewords-text {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1.4rem;
    }
}

/* Exhibitors Placeholder Styles */
.exhibitors-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.placeholder-content {
    text-align: center;
}

.placeholder-content i {
    font-size: 4rem;
    color: #ed3407;
    margin-bottom: 1rem;
}

.placeholder-content h2 {
    font-size: 2rem;
    color: #ed3407;
    margin-bottom: 1rem;
    font-weight: 700;
}

.placeholder-content p {
    font-size: 1.1rem;
    color: #666;
}

/* Event Cards Section */
.events-section {
    padding: 2rem 0;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ed3407;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(136, 32, 12, 0.1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(136, 32, 12, 0.15);
    border-color: rgba(136, 32, 12, 0.3);
}

.event-banner {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.event-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.event-card:hover .event-image {
    transform: scale(1.03);
}

.event-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    min-width: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.date-day {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.date-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.event-content {
    padding: 0 1rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-title-item,
.event-location,
.event-datetime {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #424242;
    font-weight: 500;
}

.event-title-item .event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #a33318;
    margin: 0;
}

.event-title-item i,
.event-location i,
.event-datetime i {
    color: #ed3407;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.btn-book-now {
    background: linear-gradient(135deg, #ed3407 0%, #ed3407 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-top: auto;
}

.btn-book-now:hover {
    background: linear-gradient(135deg, #ed3407 0%, #a33318 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(136, 32, 12, 0.3);
    color: white;
}

.btn-book-now i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-book-now:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-section {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .event-banner {
        height: 180px;
    }
    
    .event-content {
        padding: 1.25rem;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-details {
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }
    
    .event-location,
    .event-datetime {
        font-size: 0.85rem;
    }
    
    .btn-book-now {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .event-banner {
        height: 160px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .event-details {
        margin-bottom: 1rem;
    }
    
    .btn-book-now {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
/* Mobile Responsive Styles for Event Card */
@media (max-width: 768px) {
    .events-section {
        padding: 1rem 0;
    }
    
    .event-banner {
        height: 200px;
    }
    
    .event-image {
        object-fit: cover;
        object-position: center;
        height: 100%;
    }
    
    .event-content {
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
    
    .event-title-item .event-title {
        font-size: 1.1rem;
    }
    
    .event-title-item,
    .event-location,
    .event-datetime {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .btn-book-now {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .event-banner {
        height: 180px;
    }
    
    .event-image {
        object-fit: cover;
        object-position: center;
        height: 100%;
    }
    
    .event-content {
        padding: 0 0.5rem 0.5rem 0.5rem;
    }
    
    .event-details {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .event-title-item .event-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .event-title-item,
    .event-location,
    .event-datetime {
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .event-title-item i,
    .event-location i,
    .event-datetime i {
        font-size: 1rem;
        width: 18px;
    }
    
    .btn-book-now {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
/* Register Page Styles */
.event-banner-modern {
    margin-bottom: 20px;
}

.event-banner-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 8px;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
}

.event-title-modern {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.event-details-modern {
    margin-bottom: 25px;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid #e3f2fd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #28a745, #20c997);
}

.detail-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
    border-color: #28a745;
}

.detail-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.detail-content h6 {
    margin: 0 0 8px 0;
    font-weight: 800;
    color: #1a1a1a;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-content p {
    margin: 0;
    color: #2c3e50;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.about-modern {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.about-modern h5 {
    margin: 0 0 15px 0;
    font-weight: 700;
    font-size: 20px;
    color: #2c3e50;
}

.about-modern p {
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
    color: #495057;
}

.theme-modern {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.theme-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.theme-modern h5 {
    margin: 0 0 15px 0;
    font-weight: 700;
    font-size: 20px;
    color: #2c3e50;
    text-align: center;
}

.theme-modern p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    text-align: center;
    font-style: italic;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(0%) translateY(0%); }
}

.btn-select-tickets {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-select-tickets:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    transform: translateY(-2px);
}

.btn-select-tickets:active {
    transform: translateY(0);
}

.checkout-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #e3f2fd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.order-summary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.order-summary h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ticket-quantity {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.total-amount {
    font-size: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-methods h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-payment {
    padding: 18px 25px;
    border: 3px solid #e9ecef;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-payment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-payment:hover::before {
    left: 100%;
}

.btn-payment.mpesa {
    color: #28a745;
    border-color: #28a745;
}

.btn-payment.pesapal {
    color: #007bff;
    border-color: #007bff;
}

.btn-payment:hover, .btn-payment.selected {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-payment.mpesa:hover, .btn-payment.mpesa.selected {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.btn-payment.pesapal:hover, .btn-payment.pesapal.selected {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
}

.attendee-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e3f2fd;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.attendee-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px 25px;
    margin: 0;
}

.attendee-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}

.attendee-body {
    padding: 25px;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.photo-preview {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #28a745;
}

.badge-container {
    width: 120px;
    height: 150px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 10px;
    padding: 10px;
    margin: 10px auto;
    position: relative;
    overflow: hidden;
}

.badge-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.modal-title-styled {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .venue-date-row {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .detail-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .detail-content h6 {
        font-size: 13px;
    }
    
    .detail-content p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .venue-date-row {
        gap: 10px;
    }
    
    .detail-item {
        padding: 15px 12px;
        gap: 12px;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .detail-content h6 {
        font-size: 12px;
    }
    
    .detail-content p {
        font-size: 14px;
    }
}

/* Badge Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

.badge-page-body {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.badge-container {
    width: 105mm;
    height: 148mm;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 5px solid #ed3407;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.10;
    pointer-events: none;
}

.badge-header {
    background: linear-gradient(135deg, #ed3407 0%, #15803d 50%, #166534 100%);
    padding: 0;
    position: relative;
    height: 155px;
    overflow: hidden;
    flex-shrink: 0;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
}

.deco-1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    top: -40px;
    right: -30px;
}

.deco-2 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    bottom: 20px;
    left: -20px;
}

.dots-pattern {
    position: absolute;
    top: 15px;
    right: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    z-index: 2;
}

.dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.stripes {
    position: absolute;
    top: 20px;
    right: 80px;
    width: 60px;
    height: 60px;
    z-index: 2;
}

.stripe {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 6px;
    border-radius: 3px;
}

.logo-section {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}

.logo-badge {
    background: white;
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo-image {
    width: 100px;
    height: 45px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.paint-splash {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 70px;
    background: white;
    clip-path: polygon(0 40%, 15% 30%, 30% 45%, 45% 25%, 60% 40%, 75% 30%, 90% 50%, 100% 35%, 100% 100%, 0 100%);
    z-index: 2;
}

.event-title-section {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 4;
}

.event-title {
    font-size: 15px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin: 0;
    line-height: 1.1;
}

.event-theme {
    font-size: 8px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-style: italic;
    margin-top: 4px;
    padding: 0 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.badge-body {
    padding: 12px 18px 18px 18px;
    background: transparent;
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
}

.photo-container {
    width: 85px;
    height: 85px;
    margin: -22px auto 6px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    background: linear-gradient(135deg, #ed3407 0%, #15803d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ed3407 0%, #15803d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: 800;
    object-fit: cover;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 12px;
    font-weight: 900;
    color: #eab308;
    margin-bottom: 5px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.role-badge {
    background: linear-gradient(135deg, #ed3407 0%, #15803d 100%);
    color: white;
    font-size: 8px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 25px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 8px 12px;
    margin-bottom: 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.info-row {
    flex: 1;
    text-align: center;
    position: relative;
}

.info-row:first-child::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
}

.info-label {
    font-weight: 700;
    color: #ed3407;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    display: block;
}

.info-value {
    font-weight: 700;
    color: #1f2937;
    font-size: 10px;
    line-height: 1.3;
    display: block;
}

.badge-footer {
    background: transparent;
    color: #1f2937;
    padding: 8px 16px 12px 16px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-dots {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 4px;
}

.footer-dot {
    width: 6px;
    height: 6px;
    background: #ed3407;
    border-radius: 50%;
}

.event-details {
    margin-bottom: 8px;
    width: 100%;
    box-sizing: border-box;
}

.detail-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #ed3407;
    padding: 6px 10px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.detail-item {
    margin-bottom: 2px;
}

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

.detail-item:first-child {
    margin-top: 0;
}

.detail-label {
    font-size: 8px;
    font-weight: 800;
    color: #ed3407;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0;
    display: inline;
    margin-right: 4px;
}

.detail-value {
    font-size: 10px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    display: inline;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 0;
    width: 100%;
}

.qr-code-wrapper {
    flex-shrink: 0;
}

.barcode-section {
    background: white;
    padding: 4px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.qr-code {
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 6px;
    padding: 3px;
}

.qr-code img {
    width: 100%;
    height: 100%;
    display: block;
}

.website {
    font-size: 9px;
    color: #ed3407;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.badge-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Badge Photo Preview Styles */
.photo-preview {
    max-width: 100%;
    text-align: center;
}

.badge-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.photo-preview .badge-container {
    width: 180px;
    height: 180px;
    border: 3px solid #ed3407;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.photo-preview .badge-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-preview .badge-preview h6 {
    color: #ed3407;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.photo-preview .photo-controls {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 300px;
    margin-top: 15px;
}

.photo-preview .position-controls .btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Additional Badge Preview Styles */
.badge-preview .badge-container {
    width: 180px;
    height: 180px;
    border: 3px solid #ed3407;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.badge-preview .badge-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-controls .form-range {
    width: 100%;
    margin: 10px 0;
}

.position-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.position-controls .d-flex {
    justify-content: center;
    align-items: center;
}

.position-controls .btn {
    margin: 0 2px;
    transition: all 0.2s ease;
}

.position-controls .btn:hover {
    background-color: #ed3407;
    border-color: #ed3407;
    color: white;
}

/* Mobile Payment Sticky Bottom and Modal Adjustments */
@media (max-width: 767px) {
    .modal-footer {
        padding-bottom: 200px !important;
    }
    
    .modal-body {
        padding-bottom: 20px !important;
    }
    
    .checkout-form {
        padding-bottom: 180px !important;
    }
    
    #checkoutModal .modal-body {
        max-height: calc(100vh - 300px) !important;
        overflow-y: auto !important;
    }
    
    #bookingModal .modal-footer {
        padding-bottom: 200px !important;
        margin-bottom: 0 !important;
    }
}




/* ========================================
   NAVBAR SEARCH STYLES
   ======================================== */

.navbar-search-container {
    flex: 0 0 auto;
    margin: 0 1.5rem;
    position: relative;
    z-index: 1001;
}

.navbar-search-form {
    position: relative;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.search-input-wrapper:focus-within {
    border-color: #ed3407;
    box-shadow: 0 0 0 3px rgba(136, 32, 12, 0.1);
    background: white;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    color: #424242;
    outline: none;
    min-width: 250px;
}

.search-input::placeholder {
    color: #9E9E9E;
}

.search-button {
    background: transparent;
    border: none;
    padding: 0.6rem 1rem;
    color: #ed3407;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    color: #ed3407;
    background: rgba(136, 32, 12, 0.1);
}

.search-button i {
    font-size: 1rem;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1002;
    border: 1px solid rgba(136, 32, 12, 0.2);
}

.search-dropdown-content {
    padding: 0.5rem 0;
}

.search-result-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    display: block;
    color: inherit;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(136, 32, 12, 0.05);
    padding-left: 1.25rem;
}

.search-result-name {
    font-weight: 600;
    color: #ed3407;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.search-result-details {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.search-result-venue,
.search-result-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.search-result-venue i,
.search-result-date i {
    color: #ed3407;
    font-size: 0.75rem;
}

.search-no-results {
    padding: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.search-loading {
    padding: 1.5rem;
    text-align: center;
    color: #ed3407;
    font-size: 0.9rem;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .navbar .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.5rem;
    }
    
    .navbar-brand {
        flex: 0 0 auto;
        order: 1;
    }
    
    .navbar-search-container {
        flex: 1 1 auto;
        order: 2;
        margin: 0 0.5rem;
        max-width: 300px;
    }
    
    .search-input {
        min-width: 0;
        width: 100%;
    }
    
    .navbar-toggler {
        flex: 0 0 auto;
        order: 3;
        margin: 0;
    }
    
    .navbar-collapse {
        order: 4;
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-search-container {
        max-width: 250px;
    }
    
    .search-input {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .search-button {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .navbar-search-container {
        max-width: 200px;
        margin: 0 0.25rem;
    }
    
    .search-input {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .search-button {
        padding: 0.4rem 0.6rem;
    }
    
    .search-button i {
        font-size: 0.9rem;
    }
}