/* Import Google Fonts - MUST be at the very top */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Base CSS Reset and Variables */
:root {
  --primary-color: #0A1D3F;
  --secondary-color: #C99F2C;
  --background-color: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --accent-color: #F5F7FA;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--background-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Remove gap between promotional banner and hero section on homepage */
body.homepage main {
  padding-top: 0;
  margin-top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #1a3a7f;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #b88f28;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1002; /* Increased to ensure header stays above promo banner */
  padding: 15px 0;
}

/* Promotional Banner */
.promo-banner {
  position: sticky;
  top: 180px; /* Position directly under the header (150px logo + 30px padding) */
  background: linear-gradient(135deg, var(--primary-color), #1a3a7f);
  color: white;
  padding: 15px 0;
  z-index: 1000; /* Adjusted to appear below header but above main content */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 0; /* Remove negative margin */
  overflow: hidden;
  height: 60px; /* Fixed height to prevent overlap */
  margin-bottom: 0; /* Remove bottom margin to eliminate gap */
}

/* Hero Section */
.hero-section {
  position: relative;
  height: calc(100vh - 240px); /* Account for sticky header and banner */
  overflow: hidden;
  margin-top: 0; /* Ensure no extra margin */
  z-index: 0; /* Ensure hero section appears below sticky elements */
  padding-top: 0; /* Remove padding to eliminate gap */
  min-height: 500px; /* Ensure minimum height */
  margin-bottom: 0; /* Remove bottom margin to eliminate gap */
  padding-bottom: 0; /* Remove bottom padding to eliminate gap */
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%; /* Ensure content fills the banner height */
}

.promo-content p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-content i {
  margin-right: 12px;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.promo-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  margin-left: 12px;
  padding: 6px 12px;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  transition: all 0.3s ease;
  background-color: rgba(201, 159, 44, 0.2);
  position: relative;
  overflow: hidden;
}

.promo-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.promo-link:hover {
  color: white;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 159, 44, 0.4);
}

.promo-link:hover::before {
  left: 100%;
}

.promo-close {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  z-index: 2;
}

.promo-close:hover {
  color: var(--secondary-color);
  transform: translateY(-50%) scale(1.2);
}

/* Adjust main content padding to account for sticky elements */
main {
  padding-top: 0; /* Remove padding to eliminate gap */
  margin-top: 0; /* Reset margin to eliminate gap */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 150px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
  position: relative;
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 12px 8px;
  position: relative;
  border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary-color);
  background-color: rgba(201, 159, 44, 0.1);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px 3px 0 0;
}

.nav-menu a:hover {
  transform: translateY(-2px);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-primary);
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


/* Hero Section */
.hero-section {
  position: relative;
  height: calc(100vh - 240px); /* Account for sticky header and banner */
  overflow: hidden;
  margin-top: 0; /* Ensure no extra margin */
  z-index: 0; /* Ensure hero section appears below sticky elements */
  padding-top: 0; /* Remove padding to eliminate gap */
  min-height: 500px; /* Ensure minimum height */
  margin-bottom: 0; /* Remove bottom margin to eliminate gap */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 29, 63, 0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  padding-top: 0; /* Remove padding to eliminate gap */
  margin-top: 0; /* Reset margin */
}

.hero-text {
  max-width: 800px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Search & Booking Tools */
.search-booking-section {
  background-color: var(--accent-color);
}

.search-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.search-tool-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.search-tool-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-input,
.search-select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-primary);
}

.search-btn {
  width: 100%;
  padding: 12px;
}

/* Enhanced Service Cards */
.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* Packages Carousel */
.packages-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.package-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-image {
  height: 200px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-info {
  padding: 20px;
}

.package-info h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.package-duration {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.package-price {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Visa Support Section */
.visa-support-section {
  background-color: var(--accent-color);
}

.visa-support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.visa-support-text h2 {
  color: var(--primary-color);
}

.visa-support-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}

.form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}

.visa-info {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.visa-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.info-label {
  font-weight: 500;
  color: var(--text-secondary);
}

.info-value {
  color: var(--primary-color);
  font-weight: 600;
}

.visa-support-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Media Storytelling Section */
.media-storytelling-section {
  background-color: var(--accent-color);
}

.storytelling-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.storytelling-video {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 29, 63, 0.7);
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.video-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.video-content p {
  margin-bottom: 20px;
}

.play-btn {
  background-color: var(--secondary-color);
  border: none;
}

.play-btn:hover {
  background-color: #b88f28;
}

.storytelling-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  margin-bottom: 5px;
}

.gallery-caption p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Trusted Section - Enhanced */
.trusted-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.trusted-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/fafalilogo.PNG') no-repeat center center;
  opacity: 0.05;
  z-index: 0;
}

.trusted-content {
  position: relative;
  z-index: 1;
}

.trusted-section .section-title {
  margin-bottom: 60px;
}

.trusted-section .section-title h2 {
  color: var(--primary-color);
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.trusted-section .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.trusted-section .section-title p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 15px;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 220px;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(10, 29, 63, 0.2);
}

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, white, #f8f9fa);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 29, 63, 0.05);
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.badge i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.badge span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Responsive adjustments for trusted section */
@media (max-width: 768px) {
  .trust-stats {
    gap: 25px;
  }
  
  .stat-item {
    min-width: 180px;
  }
  
  .trusted-section .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 30px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Why Choose Us Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.choose-item {
  text-align: center;
  padding: 20px;
}

.choose-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: var(--primary-color);
}

.choose-item h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Media Section */
.media-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-section .btn {
  background-color: var(--secondary-color);
  color: white;
}

.cta-section .btn:hover {
  background-color: #b88f28;
}

.cta-section .btn-secondary {
  background-color: white;
  color: var(--primary-color);
}

.cta-section .btn-secondary:hover {
  background-color: #f0f0f0;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 100px;
  width: auto;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-logo p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.footer-links ul,
.footer-services ul,
.footer-policies ul {
  list-style: none;
}

.footer-links li,
.footer-services li,
.footer-policies li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-services a,
.footer-policies a {
  color: #ddd;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 5px;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-policies a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 12px;
  color: #ddd;
  display: flex;
  align-items: center;
}

.office-locations {
  margin-top: 15px;
}

.office-locations p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.office-locations strong {
  color: var(--secondary-color);
}

.footer-contact i {
  margin-right: 12px;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
}

.social-links a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.social-links a:hover i {
  transform: scale(1.1);
}

.social-link-youtube:hover {
  color: #FF0000;
}

.social-link-linkedin:hover {
  color: #0077B5;
}

.social-link-tiktok:hover {
  color: #000000;
}

.social-link-instagram:hover {
  color: #E1306C;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-bottom-content p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.footer-policies a {
  color: #bbb;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: var(--secondary-color);
}

.footer-credits {
  font-size: 0.8rem;
  color: #999;
  margin-top: 15px;
  text-align: center;
}

.footer-credits a {
  color: var(--secondary-color);
  font-weight: 500;
}

/* Page Header */
.page-header {
  background-color: var(--accent-color);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Authentication Page Styles */
.auth-section {
  background-color: var(--accent-color);
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.auth-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.auth-form {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: none;
}

.auth-form.active {
  display: block;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.auth-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.auth-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.auth-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}

.auth-form h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.auth-form .form-group {
  margin-bottom: 25px;
}

.auth-form .form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-primary);
}

.auth-form .form-group input {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.auth-form .form-group input:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 159, 44, 0.1);
}

.auth-form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(10, 29, 63, 0.2);
}

.auth-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 29, 63, 0.3);
}

.auth-form button:active {
  transform: translateY(0);
}

.auth-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e0e0e0;
  z-index: 1;
}

.auth-divider span {
  position: relative;
  z-index: 2;
  background-color: white;
  padding: 0 20px;
  color: var(--text-secondary);
}

.auth-toggle {
  text-align: center;
  margin-top: 20px;
}

.auth-toggle {
  text-align: center;
  margin-top: 20px;
}

.toggle-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.toggle-btn:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.btn-auth {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(10, 29, 63, 0.2);
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 29, 63, 0.3);
}

.btn-auth:active {
  transform: translateY(0);
}

.auth-branding {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.auth-logo {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(0.3);
  transition: all 0.3s ease;
  padding: 10px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-logo:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(0.3) drop-shadow(0 0 8px rgba(10, 29, 63, 0.2));
}

/* Responsive adjustments for auth page */
@media (max-width: 768px) {
  .auth-section {
    padding: 60px 0;
  }
  
  .auth-container {
    gap: 40px;
  }
  
  .auth-form {
    padding: 30px;
  }
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-primary);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.submit-btn {
  width: 100%;
  max-width: 300px;
  margin-top: 10px;
}

.error {
  border-color: #ff4444 !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .media-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 10px 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin-left: 20px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu-btn.active {
    color: var(--secondary-color);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .trust-stats {
    gap: 30px;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .choose-grid {
    grid-template-columns: 1fr;
  }
  
  .media-content {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-content {
    flex-direction: column;
  }
  
  .contact-form-text {
    margin-bottom: 40px;
  }
  
  .visa-support-content,
  .storytelling-content,
  .company-content,
  .ceo-profile,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-carousel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .stat-item h3 {
    font-size: 1.8rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.full-width {
  width: 100%;
}

/* Company Specific Styles */
.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.company-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ceo-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ceo-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-image {
  height: 300px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-image {
  height: 300px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 10px;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-member h3 {
  margin-top: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.team-title {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member p {
  padding: 0 20px 25px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments for team */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Event Videos Section */
.event-videos-section {
  background-color: var(--accent-color);
  padding: 60px 0;
}

.event-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.video-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-container video {
  transform: scale(1.05);
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.video-info p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.video-share {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.video-share input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  background-color: #f8f9fa;
}

.copy-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: var(--secondary-color);
}

.copy-btn i {
  margin-right: 5px;
}

/* Responsive adjustments for event videos */
@media (max-width: 768px) {
  .event-videos-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--accent-color);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-text p {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
  font-weight: 600;
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.author-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
  .testimonials-carousel {
    grid-template-columns: 1fr;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Destinations Section */
.destinations-section {
  background-color: white;
}

.destinations-category {
  margin-bottom: 50px;
}

.category-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destination-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.destination-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.05);
}

.destination-info {
  padding: 20px;
}

.destination-info h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
}

.destination-location {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.destination-type {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.university-card {
  border-top: 4px solid var(--secondary-color);
}

.university-card .destination-info h4 {
  color: var(--secondary-color);
}

/* Responsive adjustments for destinations */
@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Pay Now Button Styles for Paystack */
.pay-now-btn {
  background: linear-gradient(90deg, #4CAF50, #45a049);
  color: white;
  margin-top: 10px;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.pay-now-btn:hover {
  background: linear-gradient(90deg, #45a049, #3e8e41);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.pay-now-btn:active {
  transform: translateY(0);
}

/* Error field styling */
.error {
  border-color: #ff4444 !important;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background-color: #20bd5a;
}

.floating-whatsapp i {
  margin: 0;
}

/* Error field styling */
.error {
  border-color: #ff4444 !important;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background-color: #20bd5a;
}

.floating-whatsapp i {
  margin: 0;
}

/* Awards Section Styles */
.awards-section {
  background-color: var(--accent-color);
}

.awards-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.awards-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.awards-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.awards-video .video-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.awards-video .video-info {
  padding: 20px;
}

.awards-video .video-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.awards-video .video-info p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 1rem;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 400px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-placeholder:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(201, 159, 44, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  background-color: var(--secondary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.awards-gallery {
  margin-top: 30px;
}

.awards-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.awards-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.awards-gallery .gallery-item:hover {
  transform: translateY(-5px);
}

.awards-gallery .gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.awards-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive adjustments for awards section */
@media (max-width: 1200px) {
  .awards-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .awards-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .awards-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}/* Our Trip To Bunso Section */  
.trip-to-bunso-section {  
  background-color: var(--accent-color);  
  padding: 60px 0;  
}  
.trip-video-container {  
  display: grid;  
  grid-template-columns: 1fr 1fr;  
  gap: 40px;  
  align-items: center;  
} 
.trip-video-container .video-container {  
  position: relative;  
  width: 100%;  
  height: 300px;  
  overflow: hidden;  
  border-radius: 12px;  
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);  
} 
.trip-video-container .video-container video {  
  width: 100%;  
  height: 100%;  
  object-fit: cover;  
  transition: transform 0.3s ease;  
}  
.trip-video-container:hover .video-container video {  
  transform: scale(1.05);  
} 
.trip-video-container .video-info {  
  padding: 20px;  
}  
.trip-video-container .video-info h3 {  
  color: var(--primary-color);  
  margin-bottom: 10px;  
  font-size: 1.5rem;  
} 
.trip-video-container .video-info p {  
  color: var(--text-secondary);  
  margin-bottom: 15px;  
  font-size: 1rem;  
}  
.trip-video-container .video-share {  
  display: flex;  
  gap: 10px;  
  margin-top: 15px;  
} 
.trip-video-container .video-share input {  
  flex: 1;  
  padding: 10px;  
  border: 1px solid #ddd;  
  border-radius: 6px;  
  font-size: 0.9rem;  
  background-color: #f8f9fa;  
} 
.trip-video-container .copy-btn {  
  background-color: var(--primary-color);  
  color: white;  
  border: none;  
  padding: 10px 15px;  
  border-radius: 6px;  
  cursor: pointer;  
  font-size: 0.9rem;  
  transition: background-color 0.3s ease;  
}  
.trip-video-container .copy-btn:hover {  
  background-color: var(--secondary-color);  
} 
.trip-video-container .copy-btn i {  
  margin-right: 5px;  
}  
 @media (max-width: 992px) {  
  .trip-video-container {  
    grid-template-columns: 1fr;  
  }  
} 
