:root {
    --cvx-orange: #FFC107;
    --cvx-green: #0C5110;
    --cvx-dark-green: #084110;
    --cvx-light-orange: #FFD54F;
    --cvx-white: #ffffff;
    --cvx-light-bg: #f8f9fa;
    --cvx-text-dark: #333333;
    --cvx-text-muted: #6c757d;
}

 

.cvx-navbar {
    background: linear-gradient(135deg, var(--cvx-green) 0%, var(--cvx-dark-green) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cvx-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cvx-orange) !important;
}

.cvx-navbar .navbar-nav .nav-link {
    color: var(--cvx-white) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cvx-navbar .navbar-nav .nav-link:hover,
.cvx-navbar .navbar-nav .nav-link.active {
    color: var(--cvx-orange) !important;
}

.cvx-navbar .dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.cvx-navbar .dropdown-item {
    color: #212529;
    transition: all 0.2s ease;
}

.cvx-navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #212529;
}

@media (min-width: 992px) {
    .cvx-navbar .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .cvx-navbar .navbar-nav .dropdown > .dropdown-toggle:active {
        pointer-events: none;
    }
}

@media (max-width: 991px) {
    .cvx-navbar .navbar-collapse .dropdown-menu {
        position: static;
        float: none;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.15);
    }
    
    .cvx-navbar .navbar-collapse .dropdown-menu.show {
        display: block;
    }
    
    .cvx-navbar .navbar-collapse .dropdown-item {
        padding: 0.5rem 1.5rem;
    }
}

.cvx-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cvx-green) 0%, var(--cvx-dark-green) 50%, #052208 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.cvx-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0L100 50L50 100L0 50Z" fill="%23FFC107" opacity="0.05"/></svg>');
    background-size: 200px 200px;
    animation: backgroundScroll 20s linear infinite;
}

@keyframes backgroundScroll {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.cvx-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.cvx-hero-content {
    position: relative;
    z-index: 2;
}

.cvx-hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cvx-hero-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    display: inline-block;
}

.cvx-btn-orange {
    background: var(--cvx-orange);
    color: var(--cvx-text-dark);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cvx-btn-orange:hover {
    background: var(--cvx-light-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    color: var(--cvx-text-dark);
}

.cvx-btn-outline-light:hover {
    background: var(--cvx-white);
    color: var(--cvx-green);
    transform: translateY(-2px);
}

.cvx-section-title {
     
    font-weight: bold;
    color: var(--cvx-green);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.cvx-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--cvx-orange), var(--cvx-light-orange));
    border-radius: 2px;
}

.cvx-about-event {
    background: var(--cvx-white);
}

.cvx-about-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 640px; 
    margin: 0 auto;
}

.cvx-about-image-wrapper::before {
    content: '';
    position: absolute;
    border-radius: 20px;
    z-index: -1;
}

.cvx-about-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.cvx-stat-card {
    background: var(--cvx-light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cvx-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--cvx-orange);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cvx-text-orange {
    color: var(--cvx-orange);
}

 

.cvx-highlight-card {
    background: var(--cvx-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--cvx-orange);
}

.cvx-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cvx-highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cvx-orange), var(--cvx-light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cvx-highlight-icon i {
    font-size: 2rem;
    color: var(--cvx-white);
}

.cvx-highlight-card h4 {
    color: var(--cvx-green);
    font-weight: bold;
    margin-bottom: 1rem;
}

.cvx-schedule-section {
    background: var(--cvx-white);
}

.cvx-timeline {
    position: relative;
    padding-left: 2rem;
}

.cvx-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--cvx-orange), var(--cvx-green));
}

.cvx-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.cvx-timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--cvx-orange);
    border: 3px solid var(--cvx-white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--cvx-orange);
}

.cvx-timeline-item.highlight::before {
    width: 30px;
    height: 30px;
    left: -3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
}

.cvx-timeline-time {
    font-weight: bold;
    color: var(--cvx-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cvx-timeline-content {
    background: var(--cvx-light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--cvx-orange);
}

.cvx-btn-outline-light {
    background: transparent;
    color: var(--cvx-white);
    border: 2px solid var(--cvx-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cvx-timeline-content h5 {
    color: var(--cvx-green);
    margin-bottom: 0.75rem;
}

.cvx-gallery-preview {
    background: var(--cvx-white);
}

.cvx-gallery-preview-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cvx-gallery-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cvx-gallery-preview-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.cvx-gallery-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cvx-gallery-preview-card:hover .cvx-gallery-preview-image img {
    transform: scale(1.1);
}

.cvx-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(12, 81, 16, 0.7), rgba(12, 81, 16, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.cvx-gallery-preview-card:hover .cvx-gallery-overlay {
    opacity: 1;
}

.cvx-gallery-overlay h4 {
    color: var(--cvx-orange);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cvx-gallery-overlay p {
    color: var(--cvx-white);
    margin-bottom: 1.5rem;
}

.cvx-cta-section {
    background: linear-gradient(135deg, var(--cvx-green) 0%, var(--cvx-dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.cvx-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--cvx-orange);
    opacity: 0.1;
    border-radius: 50%;
}

.cvx-footer {
    background: var(--cvx-dark-green);
    color: var(--cvx-white);
}

.cvx-footer a {
    transition: color 0.3s ease;
}

.cvx-footer a:hover {
    color: var(--cvx-orange) !important;
}

.cvx-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.cvx-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: var(--cvx-white);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    padding: 1rem;
    background: var(--cvx-light-bg);
}

.video-caption h5 {
    color: var(--cvx-green);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cvx-page-header {
    background: linear-gradient(135deg, var(--cvx-green) 0%, var(--cvx-dark-green) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--cvx-white);
    position: relative;
    overflow: hidden;
}

.cvx-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23FFC107" opacity="0.05"/></svg>');
    background-size: 150px 150px;
}

.cvx-page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cvx-page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .cvx-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .cvx-section-title {
        font-size: 2rem;
    }
    
    .cvx-timeline {
        padding-left: 1.5rem;
    }
    
    .cvx-timeline::before {
        left: 0;
    }
    
    .cvx-timeline-item {
        padding-left: 1.5rem;
    }
    
    .cvx-timeline-item::before {
        left: -1.85rem;
        width: 16px;
        height: 16px;
    }
    
    .cvx-timeline-item.highlight::before {
        width: 24px;
        height: 24px;
        left: -2.25rem;
    }
    
    .cvx-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cvx-video-grid {
        grid-template-columns: 1fr;
    }
    
    .cvx-page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .cvx-timeline {
        padding-left: 1.2rem;
    }
    
    .cvx-timeline-item {
        padding-left: 1.2rem;
    }
    
    .cvx-timeline-item::before {
        left: -1.5rem;
        width: 14px;
        height: 14px;
        border: 2px solid var(--cvx-white);
        box-shadow: 0 0 0 2px var(--cvx-orange);
    }
    
    .cvx-timeline-item.highlight::before {
        width: 20px;
        height: 20px;
        left: -1.8rem;
    }
}

.cvx-fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cvx-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.cvx-lightbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 193, 7, 0.3);
}

.cvx-lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--cvx-orange);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.cvx-lightbox-close:hover {
    color: var(--cvx-light-orange);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .cvx-lightbox img {
        max-width: 95%;
        max-height: 95%;
    }
    
    .cvx-lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}

/* Back-compat aliases for legacy classes used in ASP pages */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--cvx-green);
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--cvx-orange), var(--cvx-light-orange));
  border-radius: 2px;
}
.page-header {
  background: linear-gradient(135deg, var(--cvx-green) 0%, var(--cvx-dark-green) 100%);
  padding: 150px 0 80px;
  text-align: center;
  color: var(--cvx-white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23FFC107" opacity="0.05"/></svg>');
  background-size: 150px 150px;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.page-header p {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Overlay back-compat and hover for gallery items */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 81, 16, 0.7), rgba(12, 81, 16, 0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2rem;
  text-align: center;
}
.gallery-overlay h4 {
  color: var(--cvx-orange);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.gallery-overlay p {
  color: var(--cvx-white);
  margin-bottom: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .cvx-gallery-overlay { opacity: 1; }

/* PostalInfo compact cards */
.info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.info-card .card-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .8rem;
  background: linear-gradient(90deg, rgba(255,136,0,0.10), rgba(255,80,0,0.06));
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.info-card .card-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #b35000;
  background: rgba(255,136,0,0.15);
  font-size: 0.9rem;
}
.info-card .card-title {
  font-weight: 600;
  margin: 0;
  color: #333;
  font-size: 1rem;
}

.student-info-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: .75rem;
}

.info-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: .6rem;
  padding: .6rem .8rem;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.info-item:last-child { border-bottom: none; }
.info-label { color: #666; font-weight: 500; font-size: .9rem; }
.info-value { color: #222; font-weight: 600; font-size: .95rem; }

.status-badge {
  margin: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(0,128,0,0.12);
  color: #146c43;
  font-weight: 600;
  font-size: .9rem;
}

@media (max-width: 576px) {
  .info-item { grid-template-columns: 1fr; }
}

/* Small button refinement */
.cvx-btn-orange.btn.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  border-radius: 0.5rem;
}
.cvx-btn-orange.btn.btn-sm i { font-size: 0.95rem; }
.cvx-btn-orange:hover {
    background: var(--cvx-light-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    color: var(--cvx-text-dark);
}

.cvx-btn-outline-light:hover {
    background: var(--cvx-white);
    color: var(--cvx-green);
    transform: translateY(-2px);
}

.cvx-section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cvx-green);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.cvx-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--cvx-orange), var(--cvx-light-orange));
    border-radius: 2px;
}

.cvx-about-event {
    background: var(--cvx-white);
}

.cvx-about-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 640px; 
    margin: 0 auto;
}

.cvx-about-image-wrapper::before {
    content: '';
    position: absolute;
    border-radius: 20px;
    z-index: -1;
}

.cvx-about-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.cvx-stat-card {
    background: var(--cvx-light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cvx-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--cvx-orange);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cvx-text-orange {
    color: var(--cvx-orange);
}

.cvx-highlights-section {
    background: var(--cvx-light-bg);
}

.cvx-highlight-card {
    background: var(--cvx-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--cvx-orange);
}

.cvx-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cvx-highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cvx-orange), var(--cvx-light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cvx-highlight-icon i {
    font-size: 2rem;
    color: var(--cvx-white);
}

.cvx-highlight-card h4 {
    color: var(--cvx-green);
    font-weight: bold;
    margin-bottom: 1rem;
}

.cvx-schedule-section {
    background: var(--cvx-white);
}

.cvx-timeline {
    position: relative;
    padding-left: 2rem;
}

.cvx-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--cvx-orange), var(--cvx-green));
}

.cvx-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.cvx-timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--cvx-orange);
    border: 3px solid var(--cvx-white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--cvx-orange);
}

.cvx-timeline-item.highlight::before {
    width: 30px;
    height: 30px;
    left: -3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
}

.cvx-timeline-time {
    font-weight: bold;
    color: var(--cvx-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cvx-timeline-content {
    background: var(--cvx-light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--cvx-orange);
}

.cvx-btn-outline-light {
    background: transparent;
    color: var(--cvx-white);
    border: 2px solid var(--cvx-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cvx-timeline-content h5 {
    color: var(--cvx-green);
    margin-bottom: 0.75rem;
}

.cvx-gallery-preview {
    background: var(--cvx-white);
}

.cvx-gallery-preview-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cvx-gallery-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cvx-gallery-preview-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.cvx-gallery-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cvx-gallery-preview-card:hover .cvx-gallery-preview-image img {
    transform: scale(1.1);
}

.cvx-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(12, 81, 16, 0.7), rgba(12, 81, 16, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.cvx-gallery-preview-card:hover .cvx-gallery-overlay {
    opacity: 1;
}

.cvx-gallery-overlay h4 {
    color: var(--cvx-orange);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cvx-gallery-overlay p {
    color: var(--cvx-white);
    margin-bottom: 1.5rem;
}

.cvx-cta-section {
    background: linear-gradient(135deg, var(--cvx-green) 0%, var(--cvx-dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.cvx-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--cvx-orange);
    opacity: 0.1;
    border-radius: 50%;
}

.cvx-footer {
    background: var(--cvx-dark-green);
    color: var(--cvx-white);
}

.cvx-footer a {
    transition: color 0.3s ease;
}

.cvx-footer a:hover {
    color: var(--cvx-orange) !important;
}

.cvx-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.cvx-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: var(--cvx-white);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    padding: 1rem;
    background: var(--cvx-light-bg);
}

.video-caption h5 {
    color: var(--cvx-green);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cvx-page-header {
    background: linear-gradient(135deg, var(--cvx-green) 0%, var(--cvx-dark-green) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--cvx-white);
    position: relative;
    overflow: hidden;
}

.cvx-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23FFC107" opacity="0.05"/></svg>');
    background-size: 150px 150px;
}

.cvx-page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cvx-page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .cvx-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .cvx-section-title {
        font-size: 2rem;
    }
    
    .cvx-timeline {
        padding-left: 1.5rem;
    }
    
    .cvx-timeline::before {
        left: 0;
    }
    
    .cvx-timeline-item {
        padding-left: 1.5rem;
    }
    
    .cvx-timeline-item::before {
        left: -1.85rem;
        width: 16px;
        height: 16px;
    }
    
    .cvx-timeline-item.highlight::before {
        width: 24px;
        height: 24px;
        left: -2.25rem;
    }
    
    .cvx-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cvx-video-grid {
        grid-template-columns: 1fr;
    }
    
    .cvx-page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .cvx-timeline {
        padding-left: 1.2rem;
    }
    
    .cvx-timeline-item {
        padding-left: 1.2rem;
    }
    
    .cvx-timeline-item::before {
        left: -1.5rem;
        width: 14px;
        height: 14px;
        border: 2px solid var(--cvx-white);
        box-shadow: 0 0 0 2px var(--cvx-orange);
    }
    
    .cvx-timeline-item.highlight::before {
        width: 20px;
        height: 20px;
        left: -1.8rem;
    }
}

.cvx-fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cvx-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.cvx-lightbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 193, 7, 0.3);
}

.cvx-lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--cvx-orange);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.cvx-lightbox-close:hover {
    color: var(--cvx-light-orange);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .cvx-lightbox img {
        max-width: 95%;
        max-height: 95%;
    }
    
    .cvx-lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}
