:root {
  --primary: #091e68;
  --secondary: #f85a40;
  --accent: #0f343b;
  --dark: #2b2d42;
  --light: #f8f9fa;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
}
  
  body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
  }
  /* Navbar */
  .navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
  }
  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
  }
  
  .navbar-brand img {
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled .navbar-brand img {
    height: 40px;
  }
  
  .nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    color: var(--dark);
  }
  
  .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
  }
  
  .nav-link:hover:after,
  .nav-link.active:after {
    width: 100%;
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s ease;
  }
  
  .dropdown-item:hover {
    background-color: var(--primary);
    color: white;
  }

  .nav-link.active {
    color: var(--primary);
    font-weight: 600;
  }
        /* Program Section */
        .program-section {
    background-color: #f8f9fa;
  }
  
  .schedule-table {
    border-radius: 10px;
    overflow: hidden;
  }
  
  .schedule-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
  }
  
  .schedule-table td {
    vertical-align: middle;
  }
  
  .time-col {
    font-weight: 600;
    background-color: rgba(74, 107, 223, 0.1);
  }
  
  .optional-tour {
    background-color: rgba(255, 193, 7, 0.2);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  /* Registration Section */
  .registration-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }
  
  .fee-badge {
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 50px;
  }
  
  .registration-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
  }
  
  .registration-step:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .registration-step.step1:before {
    content: '1';
  }
  
  .registration-step.step2:before {
    content: '2';
  }
  
  .registration-step.step3:before {
    content: '3';
  }
  
  /* Topics & Dates Section */
  .topics-dates-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .topics-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .topics-list li {
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    padding-left: 40px;
  }
  
  .topics-list li:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
  }
  
  .dates-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .dates-list li {
    padding: 15px;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
  }
  
  .dates-list li strong {
    color: var(--primary);
  }
  
  /* Submission & Publication Section */
  .submission-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .submission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }
  
  .submission-card .card-header {
    font-weight: 600;
    border-bottom: none;
  }
  
  .journal-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .journal-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  
  .journal-list li:last-child {
    border-bottom: none;
  }
  
  /* Gallery Section */
  .gallery-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
  
  .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    padding: 15px;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  :root {
    --gallery-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .gallery-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .gallery-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../uploads/uum.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
  }
  
  .gallery-header .container {
    position: relative;
    z-index: 1;
  }
  
  .gallery-header h1 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .gallery-header p {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 2rem 0;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: var(--gallery-transition);
    aspect-ratio: 4/3;
  }
  
  .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gallery-transition);
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  .gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--gallery-transition);
  }
  
  .gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
  }
  
  .gallery-item .overlay h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .gallery-item .overlay .date {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  
  .video-item {
    position: relative;
  }
  
  .video-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: var(--gallery-transition);
  }
  
  .video-item:hover .play-icon {
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .video-item .play-icon i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
  }
  .ratio-16x9 {
    --bs-aspect-ratio: 40.25% !important;
  }
  
  .gallery-filter {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .gallery-filter .btn {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: var(--gallery-transition);
    border: 2px solid;
  }
  
  .gallery-filter .btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
  }
  
  .gallery-filter .btn:not(.active) {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
  }
  
  .gallery-filter .btn:not(.active):hover {
    background: rgba(var(--primary-rgb), 0.1);
  }
  
  .loading-spinner {
    display: none;
    text-align: center;
    padding: 2rem;
  }
  
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.1);
    border-left-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  .contact-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .contact-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../uploads/uum.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
  }
  
  .contact-header .container {
    position: relative;
    z-index: 1;
  }
  
  .contact-card {
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    margin-bottom: 2rem;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  }
  
  .contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .contact-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    padding: 2.5rem;
  }
  
  .form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
  }
  
  .form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
  }
  
  .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .btn-submit {
    background: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    height: 100%;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
  }
  
  .social-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    margin-right: 0.75rem;
    transition: all 0.3s ease;
  }
  
  .social-contact a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
  }
  
  .contact-divider {
    position: relative;
    margin: 3rem 0;
    text-align: center;
  }
  
  .contact-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: -1;
  }
  
  .contact-divider span {
    background: white;
    padding: 0 1.5rem;
    font-weight: 600;
    color: var(--secondary);
  }
   /* Committee Styles */
   .committee-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
}
.committee-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../uploads/uum.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.filter-container {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filter-btn {
    margin: 0.25rem;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

.profile-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.profile-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-align: center;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    border: 3px solid white;
}

.profile-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.profile-role {
    font-size: 0.85rem;
    opacity: 0.9;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-top: 0.5rem;
}

.profile-body {
    padding: 1.5rem;
    text-align: center;
}

.profile-department {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.profile-contact {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 1rem;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}
.partner-logo {
  transition: all 0.3s ease;
  filter: grayscale(10%);
  opacity: 0.8;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
    .committee-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}
  
  @media (max-width: 768px) {
    .contact-header {
      padding: 3rem 0;
    }
    
    .contact-form {
      padding: 1.5rem;
    }
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }
    
    .gallery-header {
      padding: 3rem 0;
    }
  }
  
  /* Lightbox modal styles */
  .modal-lightbox .modal-dialog {
    max-width: 90%;
    max-height: 90vh;
  }
  
  .modal-lightbox .modal-content {
    background: rgba(30, 30, 30, 0.9); /* Changed from transparent to a visible background */
    border: none;
    /* Adding overrides to ensure visibility */
    display: block !important; 
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .modal-lightbox .modal-body {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
  }
  
  .modal-lightbox img, .modal-lightbox iframe {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
  }
  
  .modal-lightbox .btn-close {
    position: absolute;
    top: -40px;
    right: 0;
    
    opacity: 1;
    padding: 0.5rem;
    border-radius: 50%;
  }
  
  .modal-lightbox .lightbox-caption {
    color: white;
    margin-top: 1rem;
    text-align: center;
  }
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .schedule-table thead {
      display: none;
    }
    
    .schedule-table tr {
      display: block;
      margin-bottom: 20px;
      border: 1px solid #dee2e6;
      border-radius: 10px;
    }
    
    .schedule-table td {
      display: block;
      text-align: right;
      padding-left: 50%;
      position: relative;
      border-bottom: 1px solid #dee2e6;
    }
    
    .schedule-table td:before {
      content: attr(data-label);
      position: absolute;
      left: 15px;
      width: calc(50% - 15px);
      padding-right: 10px;
      font-weight: 600;
      text-align: left;
    }
    
    .time-col {
      background-color: var(--primary);
      color: white;
      border-radius: 10px 10px 0 0;
    }
    
    .optional-tour {
      border-radius: 0 0 10px 10px;
    }
  }
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
  }
  
  .hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 15s infinite linear;
  }
  
  .circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 20%;
  }
  
  .circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
  }
  
  @keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .countdown {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .countdown-item {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
  }
  
  .countdown-item span {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    color: white;
  }
  
  .countdown-item small {
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
    opacity: 0.8;
  }
  
  .countdown-animate {
    animation: pulse 0.5s ease;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }
  
  /* Sections */
  section {
    padding: 80px 0;
    position: relative;
  }
  
  .section-title {
  text-align: center !important;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #646a67;
  }
  
  /* Cards */
  .card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }
  
  .card-header {
    font-weight: 600;
    border-bottom: none;
  }
  
  /* Buttons */
  .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  .btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
  }
  
  .btn:hover:after {
    left: 100%;
  }
  
  .btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
  
  /* Timeline */
  .timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .timeline:after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
  }
  
  .timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
  }
  
  .timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  .timeline-date {
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* Stats */
  .stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 60px 0;
  }
  
  .stat-item {
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
  }
  
  .stat-item span {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
  }
  
  /* Testimonials */
  .testimonial-item {
    padding: 40px 0;
  }
  .testimonial-quote {
    position: relative;
    padding: 0 20px;
  }
  .carousel-control-prev, .carousel-control-next {
    width: auto;
  }
  .carousel-control-prev {
    left: -50px;
  }
  .carousel-control-next {
    right: -50px;
  }
  .carousel-control-prev-icon, 
  .carousel-control-next-icon {
    background-size: 1.5rem;
    width: 3rem;
    height: 3rem;
  }
  @media (max-width: 768px) {
    .carousel-control-prev {
      left: -20px;
    }
    .carousel-control-next {
      right: -20px;
    }
    .testimonial-item {
      padding: 20px 0;
    }
  }
  
  .testimonial-item img {
    border: 3px solid var(--primary);
    height: 100px;
    width: 100px;
    object-fit: cover;
  }
  
  /* Gallery */
  .gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  /* Sponsors */
  .sponsor-marquee-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .sponsor-marquee {
    display: flex;
    animation: scroll 30s linear infinite;
  }
  
  .sponsor-img {
    height: 80px;
    margin: 0 30px;
    filter: grayscale(5%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .sponsor-img:hover {
    filter: grayscale(0);
    opacity: 1;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Footer */
  footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
  }
  
  footer h4 {
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: var(--accent);
  }
  
  .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
  }
  
  /* Sticky CTA */
  .sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border-radius: 50px;
    padding: 15px 25px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(74, 107, 223, 0.5);
    animation: pulse 2s infinite;
  }
  
  /* Back to top */
  #backToTop {
    position: fixed;
    bottom: 90px;
    left: 30px;
    z-index: 99;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  
  #backToTop:hover {
    background: var(--secondary);
    transform: translateY(-5px);
  }
  
  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .timeline:after {
      left: 31px;
    }
    
    .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
      left: 0;
    }
  }
  
  @media (max-width: 767.98px) {
    section {
      padding: 60px 0;
    }
    
    .hero-section {
      padding: 120px 0 80px;
    }
    
    .countdown-item {
      margin: 10px;
      min-width: 80px;
      padding: 15px;
    }
    
    .countdown-item span {
      font-size: 2rem;
    }
    
    .stat-item {
      margin-bottom: 20px;
    }
  }
