/* Modern CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern Color Palette */
  --primary-color: #2c5282;
  --primary-light: #3182ce;
  --primary-dark: #1a365d;
  --secondary-color: #38a169;
  --accent-color: #ed8936;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Typography */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base Typography */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}


/* Skip Link for Screen Readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: var(--radius-md);
}

.skip-link:focus {
  top: 6px;
}

/* Modern Navigation */
.navbar {
  background: #0a0e13;
  box-shadow: var(--shadow-light);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-md) 0;
}

.navbar-brand img {
  height: 80px;
  width: auto;
  transition: var(--transition-fast);
}

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

.navbar a {
  color: var(--text-primary) !important;
  font-size: var(--font-size-base);
  font-weight: 500;
  text-decoration: none;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
}

.navbar a:hover,
.navbar a:focus {
  color: var(--primary-color) !important;
  background-color: rgba(44, 82, 130, 0.1);
  text-decoration: none;
}

.navbar-toggler {
  border: none;
  background: #fff;
  padding: var(--spacing-xs);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px var(--primary-color);
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
  }
  
  .navbar-nav {
    gap: var(--spacing-xs);
  }
}

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/* Modern Testimonial Section */
.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  color: var(--text-primary);
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  margin: var(--spacing-2xl) auto;
  padding: var(--spacing-3xl);
  min-height: 400px;
  position: relative;
  box-shadow: var(--shadow-large);
  border: 1px solid var(--border-color);
  max-width: 800px;
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) var(--spacing-md);
    min-height: 350px;
  }
}

.stars {
  font-size: var(--font-size-lg);
  color: var(--accent-color);
  display: flex;
  gap: var(--spacing-xs);
}

.testimonial {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 400;
  height: 100%;
  line-height: 1.7;
  margin: 0;
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
}

.user {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.user .user-image {
  border-radius: 50%;
  height: 60px;
  width: 60px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  transition: var(--transition-fast);
}

.user .user-image:hover {
  transform: scale(1.05);
}

.user .user-details {
  text-align: center;
}

.user .username {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.user .role {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--text-light);
  font-weight: 400;
}

.progress-dots {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
}

.progress-dot {
  width: 10px;
  height: 10px;
  background-color: var(--border-color);
  border-radius: 50%;
  transition: var(--transition-fast);
  cursor: pointer;
}

.progress-dot:hover {
  background-color: var(--primary-light);
}

.progress-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-secondary);
  box-shadow: var(--shadow-light);
}

.btn:hover,
.btn:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.05);
}

.btn:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

#btn-prev {
  left: var(--spacing-lg);
}

#btn-next {
  right: var(--spacing-lg);
}

@media (max-width: 768px) {
  .btn {
    width: 35px;
    height: 35px;
  }
  
  #btn-prev {
    left: var(--spacing-md);
  }
  
  #btn-next {
    right: var(--spacing-md);
  }
}

/* Modern Section Styling */
.how-we-help {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  color: var(--bg-white);
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.criteria-item {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.criteria-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.criteria-item h2 {
  margin-top: 0;
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.criteria-item p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.criteria-list li {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

.criteria-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: var(--font-size-lg);
}

/* Modern Card Styling */
.gold-icon {
  color: var(--accent-color);
  margin: 0 var(--spacing-xs);
}

.background-dark-web {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: var(--spacing-3xl) 0;
  color: var(--bg-white);
}

.card-hightlights {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  transition: var(--transition-normal);
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  position: relative;
}

.card-hightlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: var(--transition-normal);
}

.card-hightlights:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

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

.card-title-hightlights {
  color: var(--bg-white);
  font-weight: 500;
  font-size: var(--font-size-lg);
  line-height: 1.5;
  padding: var(--spacing-lg);
  margin: 0;
}

.card-hightlights .card-body {
  padding: var(--spacing-xl);
}

/* Modern Spacing */
.tb-margin {
  margin: var(--spacing-3xl) 0;
}

/* Modern Hero Section */
#carouselExampleCaptions h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--spacing-lg);
}

#carouselExampleCaptions img {
  filter: brightness(40%);
  object-fit: cover;
  height: 70vh;
  min-height: 500px;
}

.carousel-caption {
  top: 50%;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  text-align: center;
  max-width: 800px;
  width: 90%;
}

.carousel-caption p {
  font-size: var(--font-size-2xl);
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #carouselExampleCaptions h1 {
    font-size: var(--font-size-3xl);
  }
  
  #carouselExampleCaptions img {
    height: 50vh;
    min-height: 300px;
  }
  
  .carousel-caption p {
    font-size: var(--font-size-lg);
  }
}

/* Modern Footer */
.footer {
  border-top: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  color: var(--text-primary);
  padding: var(--spacing-3xl) 0;
  margin-top: var(--spacing-3xl);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer h4 {
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-xl);
}

.footer p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.footer img {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Modern Accordion Styling */
.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-button {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 500;
  border-radius: var(--radius-lg) !important;
  margin-bottom: var(--spacing-sm);
  transition: var(--transition-fast);
}

.accordion-button:focus {
  box-shadow: 0 0 0 2px var(--primary-color);
  border-color: var(--primary-color);
}

.accordion-button:hover {
  background-color: var(--bg-light);
}

.accordion-body {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  color: var(--text-secondary);
  line-height: 1.6;
}

.how-we-help h2 {
  color: var(--bg-white) !important;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.how-we-help .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: var(--font-size-lg);
  line-height: 1.6;
}

/* Modern Gallery */
.gallery-image {
  cursor: pointer;
  transition: var(--transition-normal);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-large);
}

/* Modern Phone Links */
a.phone {
  color: var(--text-primary);
  display: block;
  font-size: var(--font-size-lg);
  font-style: normal;
  padding: var(--spacing-sm);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  font-weight: 500;
}

a.phone:hover,
a.phone:focus {
  background-color: rgba(44, 82, 130, 0.1);
  color: var(--primary-color);
  text-decoration: none;
}

a.phone i {
  color: var(--secondary-color);
  margin-right: var(--spacing-sm);
}

/* Responsive Design Improvements */
@media (max-width: 576px) {
  .container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }
  
  .card-hightlights {
    margin-bottom: var(--spacing-lg);
  }
  
  .criteria-item {
    padding: var(--spacing-lg);
  }
  
  .testimonial-container {
    padding: var(--spacing-lg);
  }
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000080;
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-color: #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modern Gallery Styles - Dark Theme */
.gallery-hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.gallery-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.gallery-hero-bg {
  position: relative;
  z-index: 2;
}

.gallery-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gallery-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.modern-gallery-section {
  background: #0f1419;
  padding: 5rem 0;
  min-height: 100vh;
}

.gallery-header {
  margin-bottom: 4rem;
}

.gallery-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gallery-section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.filter-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.filter-tab.active {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.gallery-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(0.8);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.gallery-info {
  color: #ffffff;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.gallery-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

.gallery-view-btn {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-view-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Load More Button */
.btn-load-more {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border: none;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  text-align: center;
  margin-top: 1.5rem;
  color: #ffffff;
}

.lightbox-caption h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lightbox-caption p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* Content Section */
.gallery-content-section {
  background: #0a0e13;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-hero-title {
    font-size: 2.5rem;
  }
  
  .gallery-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .filter-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .filter-tab {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .gallery-hero-section {
    padding: 6rem 0 3rem;
  }
  
  .gallery-hero-title {
    font-size: 2rem;
  }
  
  .modern-gallery-section {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    gap: 1rem;
  }
}

/* Global Dark Theme Styles */
.dark-theme {
  background-color: #0a0e13;
  color: #ffffff;
}

.dark-theme body {
  background-color: #0a0e13;
  color: #ffffff;
  padding-top: 80px; /* Account for fixed header */
}

/* Modern Header & Navigation */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
}


/* Logo and brand content styling */
.navbar-brand-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-logo {
  background: #fff;
  height: 90px !important;
  border-radius: 10px;
}

.navbar-brand-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  max-width: 200px;
}

/* Override Bootstrap nav-link styles */
.modern-header .navbar-nav .nav-link.modern-nav-link,
.modern-header .nav-link.modern-nav-link {
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 25px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
}

.modern-header .navbar-nav .nav-link.modern-nav-link:hover,
.modern-header .nav-link.modern-nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  text-decoration: none !important;
}

.modern-header .navbar-nav .nav-link.modern-nav-link.active,
.modern-header .nav-link.modern-nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4) !important;
}

.modern-toggler {
  border: none;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
}

.modern-toggler:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Navbar collapse background */
.modern-header .navbar-collapse {
  margin-top: 1rem;
  backdrop-filter: blur(10px);
}

/* Force override Bootstrap navbar styles */
.modern-header .navbar-nav {
  background: transparent !important;
}

.modern-header .navbar-nav .nav-item {
  margin: 0 0.25rem !important;
}

.modern-header .navbar-nav .nav-item .nav-link {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* Ensure navbar text is always white */
.modern-header a,
.modern-header .navbar-nav a,
.modern-header .nav-link {
  color: #ffffff !important;
}

.modern-header .navbar-nav .nav-link:hover,
.modern-header .navbar-nav .nav-link:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Modern Hero Sections */
.modern-hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.modern-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.modern-hero-bg {
  position: relative;
  z-index: 2;
}

.modern-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modern-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.modern-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border: none;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  text-decoration: none;
  display: inline-block;
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  color: #ffffff;
}

.modern-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.modern-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Modern Content Sections */
.modern-content-section {
  background: #0f1419;
  padding: 5rem 0;
}

.modern-content {
  color: #ffffff;
}

.modern-content h1,
.modern-content h2,
.modern-content h3,
.modern-content h4,
.modern-content h5,
.modern-content h6 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.modern-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.modern-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border-radius: 2px;
}

.modern-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.modern-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.modern-content img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 2rem 0;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.modern-content table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-content table th {
  background: rgba(102, 126, 234, 0.2);
  color: #ffffff;
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.modern-content table td {
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-content table tr:last-child td {
  border-bottom: none;
}

.modern-content ul,
.modern-content ol {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2rem;
}

.modern-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Modern Footer */
.modern-footer {
  background: #0a0e13;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-footer .row {
  align-items: center;
  min-height: 200px;
}

/* Footer brand content styling */
.footer-brand-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  background: #fff;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand-name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.footer-brand-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
}

.footer-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border-radius: 2px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modern-phone {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.modern-phone:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.modern-phone i {
  color: #ff6b6b;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* Section Updates for Dark Theme */
.eligibility-section,
.background-dark-web,
.benefits-section,
.testimonials-section,
.how-we-help {
  background: #0f1419 !important;
  color: #ffffff;
}

.section-title {
  color: #ffffff !important;
}

.card-hightlights {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.card-title-hightlights {
  color: #ffffff !important;
}

.testimonial-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial {
  color: rgba(255, 255, 255, 0.9) !important;
}

.username {
  color: #ffffff !important;
}

.role {
  color: rgba(255, 255, 255, 0.7) !important;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-bottom: 1rem;
  border-radius: 12px !important;
}

.accordion-button {
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(102, 126, 234, 0.2) !important;
  color: #ffffff !important;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Dark Theme */
@media (max-width: 768px) {
  .modern-hero-title {
    font-size: 2.5rem;
  }
  
  .modern-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .modern-content h2 {
    font-size: 2rem;
  }
  
  .modern-content h3 {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modern-btn,
  .modern-btn-outline {
    margin: 0.25rem 0;
    display: block;
    text-align: center;
  }
  
  /* Mobile navbar improvements */
  .modern-header .navbar-collapse {
    margin-top: 0.5rem;
    padding: 0.5rem;
  }
  
  .modern-nav-link {
    padding: 1rem 1.5rem !important;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .modern-hero-section {
    padding: 6rem 0 3rem;
  }
  
  .modern-hero-title {
    font-size: 2rem;
  }
  
  .modern-content-section {
    padding: 3rem 0;
  }
}

/* Homepage Specific Styles */
.homepage-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: #ffffff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px;
  border-radius: 40px;
  font-weight: 600;
  width: 200px;
  height: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
  color: #ffffff;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 10px;
  border-radius: 50px;
  font-weight: 600;
  width: 200px;
  height: 50px;  
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Homepage Sections */
.homepage-section {
  padding: 5rem 0;
}

.homepage-section:nth-child(even) {
  background: #0f1419;
}

.homepage-section:nth-child(odd) {
  background: #1a1a2e;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Eligibility Section */
.criteria-grid {
  display: grid;
  gap: 2rem;
}

.criteria-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.criteria-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.criteria-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.criteria-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.criteria-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.criteria-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.criteria-list li {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.criteria-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
}

/* Image Containers */
.image-container {
  position: relative;
}

.image-container img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.02);
}

/* MBBS Section */
.content-block {
  padding: 2rem 0;
}

.content-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.highlight-item i {
  color: #ff6b6b;
  font-size: 1.2rem;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
}

.benefit-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Testimonials Update */
.testimonials-section {
  background: #1a1a2e !important;
}

.testimonial-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 4rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Section Update */
.how-we-help {
  background: #0f1419 !important;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .testimonial-container {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .homepage-section {
    padding: 3rem 0;
  }
  
  .criteria-card,
  .benefit-card {
    padding: 1.5rem;
  }
}

/* Contact Page Styles */
.contact-map-container {
  margin: 2rem 0 3rem;
  border-radius: 12px;
  overflow: hidden;
}

.contact-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.office-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.office-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.address-block,
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.address-block i,
.contact-block i {
  color: #ff6b6b;
  font-size: 1.2rem;
  margin-top: 0.25rem;
  width: 20px;
  text-align: center;
}

.address-block div,
.contact-block div {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.address-block strong,
.contact-block strong {
  color: #ffffff;
  font-weight: 600;
}

.contact-block a {
  color: #ff6b6b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-block a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.email-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.email-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.email-section h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.email-section p {
  margin: 0;
}

.email-section a {
  color: #ff6b6b;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.email-section a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
  .contact-offices {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .office-card {
    padding: 1.5rem;
  }
  
  .office-card h3 {
    font-size: 1.25rem;
  }
  
  .address-block,
  .contact-block {
    gap: 0.75rem;
  }
  
  .email-section {
    padding: 1.5rem;
  }
  
  .email-section h3 {
    font-size: 1.25rem;
  }
  
  .email-section a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

/* Footer Credit */
.footer-credit {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-credit p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-credit a {
  color: #ff6b6b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-credit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .contact-map-container {
    margin: 1rem 0 2rem;
  }
  
  .contact-offices {
    margin: 2rem 0;
  }
  
  .office-card {
    padding: 1rem;
  }
  
  .email-section {
    padding: 1rem;
    margin: 2rem 0;
  }
}

/* Responsive navbar brand */
@media (max-width: 768px) {
  .navbar-brand-content {
    gap: 0.5rem;
  }
  
  .navbar-brand-text {
    font-size: 0.9rem;
    max-width: 150px;
  }
  
}

@media (max-width: 576px) {
  .navbar-brand-text {
    display: none;
  }
  
  .footer-brand-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-brand-name {
    font-size: 1.1rem;
  }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  margin-bottom: 0;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #00d4ff;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Enhanced Footer Styles */
.footer-brand-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-container {
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  max-width: 300px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #00d4ff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0 1rem 0;
}

.footer-credit p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-credit a:hover {
  color: #00d4ff;
}

.email.modern-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.email.modern-phone:hover {
  color: #00d4ff;
}