/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  /* Add padding-top to account for fixed navbar */
  padding-top: 120px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container h1 {
  margin-top: 34px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.btn-secondary:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/*Nav */
/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  /* Ensure navbar has a defined height */
  height: auto;
}

/* Top section: White background (Logo) */
.nav-top {
  background-color: #ffffff;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

/* Bottom section: Black background (Links) */
.nav-bottom {
  background-color: #28282b;
  padding: 1rem 0;
  min-height: 60px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Dropdown Styles */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Dropdown arrow indicator */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 24px;
  width: 16px;
  height: 16px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown menu items */
.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 14px 24px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 8px;
  margin: 0 12px;
  position: relative;
  overflow: hidden;
}

.dropdown-menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.dropdown-menu li a:hover::before {
  left: 100%;
}

.dropdown-menu li a:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.1)
  );
  color: #ff6b35;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* Dropdown arrow animation */
.nav-item.dropdown .fa-caret-down {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-left: 8px;
}

.nav-item.dropdown:hover .fa-caret-down,
.nav-item.dropdown.active .fa-caret-down {
  transform: rotate(180deg);
  color: #ff6b35;
}

/* Enhanced dropdown trigger hover */
.nav-item.dropdown:hover .nav-link {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.nav-item.dropdown.active > .nav-link {
  background: rgba(255, 107, 53, 0.15);
  color: #ff6b35;
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.08);
  border-radius: 8px 8px 0 0;
}

/* Nav Link */
.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  /* Adjust body padding for mobile navbar height */
  body {
    padding-top: 80px;
  }

  .nav-item.dropdown {
    width: 100%;
    position: static;
  }

  .nav-item.dropdown .dropdown-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    background: #28282b;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    padding: 0.5rem 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-top: 2px solid #ff6b35;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item.dropdown.active .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
  }

  .dropdown-menu li a {
    color: #fff;
    padding: 16px 24px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.12);
    background: none;
    border-radius: 0;
    margin: 0;
    transition: background 0.2s, color 0.2s;
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 107, 53, 0.18);
    color: #ff6b35;
  }
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  .nav-item.dropdown .fa-caret-down {
    color: #ff6b35;
    font-size: 1.2em;
    margin-left: 8px;
  }

  .nav-item.dropdown.active > .nav-link {
    background: #28282b;
    color: #ff6b35;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.08);
  }

  /* Prevent body scroll when dropdown is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100vw;
  }

  /* Mobile nav menu adjustments */
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #28282b;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Focus styles for accessibility */
.dropdown-menu li a:focus {
  outline: 2px solid #ff6b35;
  outline-offset: -2px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.1)
  );
}

/* Active state for current page */
.dropdown-menu li a.active {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.dropdown-menu li a.active:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateX(0);
}

/* Hero Section */
.hero {
  /* Remove top padding since body now has padding-top */
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 120px); /* Subtract navbar height */
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-top: 4rem;
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image,
.about-image,
.motivation-image,
.solution-image,
.approach-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.hero-image::before,
.about-image::before,
.motivation-image::before,
.solution-image::before,
.approach-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 53, 0.8),
    rgba(247, 147, 30, 0.8)
  );
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  border-radius: 12px;
}

.hero-image::after,
.about-image::after,
.motivation-image::after,
.solution-image::after,
.approach-image::after {
  content: "View Details";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-image:hover::before,
.about-image:hover::before,
.motivation-image:hover::before,
.solution-image:hover::before,
.approach-image:hover::before {
  opacity: 1;
}

.hero-image:hover::after,
.about-image:hover::after,
.motivation-image:hover::after,
.solution-image:hover::after,
.approach-image:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.hero-image:hover img,
.about-image:hover img,
.motivation-image:hover img,
.solution-image:hover img,
.approach-image:hover img {
  transform: scale(1.1) rotate(2deg);
}

.hero-image img,
.about-image img,
.motivation-image img,
.solution-image img,
.approach-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

/* Stats Section - REMOVED margin-top */
.stats {
  padding: 80px 0;
  background: #2c3e50;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}

.stat-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px) scale(1.05);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Partners Section Styles - REMOVED margin-top */
.partners {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.partners::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.partners .container {
  position: relative;
  z-index: 1;
}

.partners .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
}

.partners .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.partners .section-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* UPDATED PART */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px; /* spacing between logos */
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.partner-card {
  flex: 0 1 200px; /* controls size of card */
  text-align: center;
}

.partner-logo img {
  width: 180px; /* bigger logo size */
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo img:hover {
  transform: scale(1.05); /* optional zoom on hover */
}

.placeholder-icon {
  font-size: 100px; /* match with image size */
  color: #ccc;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 25px;
}

.overlay-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.overlay-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.4;
  margin-bottom: 10px;
}

.partners .text-center {
  text-align: center;
  margin-top: 20px;
}

.partners .btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.partners .btn:hover {
  background: linear-gradient(135deg, #f7931e, #e85d2a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Services Preview - REMOVED margin-top */
.services-preview {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.service-card:hover h3 {
  color: #ff6b35;
  transform: translateY(-2px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon::after {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Training Approach - REMOVED margin-top */
.training-approach {
  padding: 80px 0;
  background: white;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-text h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.approach-text h3 {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.approach-text p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}


.approach-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  color: #28a745;
  font-size: 1.2rem;
}

.approach-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header {
  /* Adjust padding to account for fixed navbar */
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  text-align: center;
  margin-top: 0; /* Remove margin since body has padding */
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* About Content - REMOVED margin-top */
.about-content {
  padding: 80px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.mission-section {
  position: relative;
  width: 100%; /* Full width */
  margin-bottom: 4rem;
  text-align: center;
  padding: 60px 30px;
  background-color: #0a0a0a; /* Fallback dark background */
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/gallery/certificate-graduation-group.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.12; /* Faint image to not overpower text */
  z-index: 0;
}

.mission-content {
  max-width: 800px; /* Limit content width */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mission-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.mission-section p {
  color: #dddddd;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.unique-factor {
  margin-bottom: 4rem;
}

.unique-factor h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.step:hover {
  background: white;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
}

.step:hover .step-number {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.step h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.step p {
  color: #666;
  line-height: 1.6;
}

.motivation-section {
  position: relative;
  margin-bottom: 4rem;
  padding: 60px 30px;
  background-color: #093d5d; /* Dark background */
  color: #ffffff; /* Light text */
  overflow: hidden;
  z-index: 1;
}

.motivation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("assets/images/financial-education.jpg"); */
  background-size: cover;
  background-position: center;
  opacity: 0.12; /* 10-15% opacity */
  z-index: 0;
}

.motivation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2; /* Above the background */
}

.motivation-text h2 {
  font-size: 2.5rem;
  color: #ffffff; /* Changed from #2c3e50 */
  margin-bottom: 1.5rem;
  position: relative;
}

.motivation-text p {
  color: #dddddd; /* Changed from #666 */
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.motivation-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Slightly darker shadow for contrast */
  position: relative;
  z-index: 2;
}
.learning-icon {
  width: 240px; /* Increased for better visibility */
  height: auto; /* Keeps aspect ratio */
  vertical-align: middle; /* Aligns nicely with the text */
  margin-left: 20px; /* Space between text and image */
}

/* Responsive layout */
@media (max-width: 768px) {
  .motivation-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .motivation-image img {
    max-width: 90%;
    margin: 0 auto;
  }
}

.training-approach-detailed {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
}

.training-approach-detailed h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
}

.approach-highlight {
  text-align: center;
  margin-bottom: 2rem;
}

.approach-highlight h3 {
  font-size: 1.8rem;
  color: #ff6b35;
  font-style: italic;
}

.training-approach-detailed p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.approach-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border-top: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-top-color: #ff6b35;
}

.benefit-card:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #f7931e;
}

.benefit-card i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-card h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Solutions Content - REMOVED margin-top */
.solutions-content {
  padding: 80px 0;
}

.solution-item {
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.solution-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.solution-content:hover {
  background: rgba(248, 249, 250, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.solution-text h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.solution-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-text strong {
  color: #ff6b35;
}

.solution-image {
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
}

.solution-image:hover {
  transform: scale(1.05);
}

.solution-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.solution-image:hover img {
  transform: scale(1.1);
}

.solution-content.reverse {
  direction: rtl;
}

.solution-content.reverse > * {
  direction: ltr;
}

.siyb-packages {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.siyb-packages h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.siyb-packages ul {
  list-style: none;
  padding-left: 0;
}

.siyb-packages li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.siyb-packages li:last-child {
  border-bottom: none;
}

.incubation-questions ul {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.incubation-questions li {
  padding: 0.8rem 0;
  color: #ff6b35;
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
}

.incubation-questions li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.improvement-areas,
.digital-solutions,
.grant-features,
.speaking-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.area,
.digital-item,
.feature,
.service {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.area i,
.digital-item i,
.feature i,
.service i {
  color: #ff6b35;
  font-size: 1.5rem;
}

.area span,
.digital-item span,
.feature span,
.service span {
  color: #2c3e50;
  font-weight: 500;
}

/* CTA Section - REMOVED margin-top */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background: white;
  color: #ff6b35;
}

.cta-section .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* Contact Content - REMOVED margin-top */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-method:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.contact-icon i {
  color: white;
  font-size: 1.5rem;
}

.contact-details h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  margin-bottom: 0.3rem;
}

.whatsapp-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.social-section {
  margin-top: 3rem;
}

.social-section h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ff6b35;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 0;
}

.social-links a:hover::before {
  width: 100%;
  height: 100%;
}

.social-links a:hover {
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.social-links a i {
  position: relative;
  z-index: 1;
}

/* FAQ Section - REMOVED margin-top */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border-left: 4px solid transparent;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-left-color: #ff6b35;
  background: linear-gradient(135deg, white, rgba(255, 107, 53, 0.02));
}

.faq-item:hover h3 {
  color: #ff6b35;
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Footer - REMOVED margin-top */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: #ff6b35;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #ff6b35;
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.footer .social-links {
  display: flex;
  gap: 1rem;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  background: #34495e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #bdc3c7;
}

.contact-info i {
  color: #ff6b35;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
  text-align: center;
  color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Adjust mobile spacing */
  body {
    padding-top: 80px;
  }

  .hero {
    min-height: calc(100vh - 80px);
    padding: 20px 0 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100%;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .partner-card {
    padding: 30px 20px;
    min-height: 220px;
  }

  .partner-logo {
    width: 120px;
    height: 80px;
    margin-bottom: 20px;
  }

  .approach-content,
  .about-intro,
  .motivation-content,
  .solution-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-content.reverse {
    direction: ltr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .approach-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .improvement-areas,
  .digital-solutions,
  .grant-features,
  .speaking-services {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }

  .hero {
    min-height: calc(100vh - 70px);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-card {
    padding: 25px 15px;
    min-height: 200px;
  }

  .partner-logo {
    width: 100px;
    height: 70px;
  }

  .approach-benefits {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.benefit-card,
.faq-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Hover Effects and Animations */
.image-zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-zoom-container:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.image-zoom-container img {
  transition: transform 0.5s ease;
}

.image-zoom-container:hover img {
  transform: scale(1.15);
}

/* Video Slider Styles - REMOVED margin-top */
.video-slider {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.video-slider::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.video-slider .container {
  position: relative;
  z-index: 2;
}

.video-slider .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.video-slider .section-header h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.video-slider .section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-slide {
  display: none;
  position: relative;
}

.video-slide.active {
  display: block;
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 16px;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  border-radius: 16px;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-overlay:hover {
  background: rgba(255, 107, 53, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.play-overlay i {
  color: white;
  font-size: 2rem;
  margin-left: 4px;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 2rem 2rem;
  color: white;
  border-radius: 0 0 16px 16px;
}

.video-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ff6b35;
}

.video-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(255, 107, 53, 0.8);
  border-color: #ff6b35;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.slider-btn i {
  font-size: 1.2rem;
}

.slider-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #ff6b35;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Enhanced Image Gallery Effects */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 53, 0.9),
    rgba(247, 147, 30, 0.9)
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-overlay p {
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Responsive Video Slider */
@media (max-width: 768px) {
  .video-wrapper {
    height: 300px;
  }

  .video-slider .section-header h2 {
    font-size: 2rem;
  }

  .slider-controls {
    gap: 1rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .video-overlay {
    padding: 2rem 1rem 1rem;
  }

  .video-overlay h3 {
    font-size: 1.4rem;
  }

  .video-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-wrapper {
    height: 250px;
  }

  .play-overlay {
    width: 60px;
    height: 60px;
  }

  .play-overlay i {
    font-size: 1.5rem;
  }
}

/* Image Loading Animation */
.image-loading {
  position: relative;
  overflow: hidden;
}

.image-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 1.5s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Enhanced Image Filters */
.image-filter-hover {
  transition: all 0.3s ease;
}

.image-filter-hover:hover {
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

/* Magnifying Glass Effect */
.magnify-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.magnify-glass {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px solid #ff6b35;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.magnify-container:hover .magnify-glass {
  opacity: 1;
}

/* Smooth Transitions for All Interactive Elements */
* {
  transition: color 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Enhanced Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
}

/* Enhanced Video Controls */
.video-controls {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 5;
}

.video-wrapper:hover .video-controls {
  opacity: 1;
}

.control-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  background: rgba(255, 107, 53, 0.8);
  border-color: #ff6b35;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.control-btn.active {
  background: rgba(255, 107, 53, 0.9);
  border-color: #ff6b35;
}

.control-btn i {
  font-size: 1rem;
}

.volume-slider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.sound-toggle-btn:hover + .volume-slider,
.volume-slider:hover {
  opacity: 1;
  transform: translateX(0);
}

.volume-control {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.volume-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.volume-control::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.volume-control::-webkit-slider-track {
  background: linear-gradient(
    to right,
    #ff6b35 0%,
    #ff6b35 var(--volume-percent, 50%),
    rgba(255, 255, 255, 0.3) var(--volume-percent, 50%),
    rgba(255, 255, 255, 0.3) 100%
  );
  height: 4px;
  border-radius: 2px;
}

.volume-control::-moz-range-track {
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  border-radius: 2px;
  border: none;
}

.volume-control::-moz-range-progress {
  background: #ff6b35;
  height: 4px;
  border-radius: 2px;
}

/* Global Sound Controls */
.global-sound-controls {
  text-align: center;
  margin-top: 2rem;
}

.global-sound-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.global-sound-btn:hover {
  background: rgba(255, 107, 53, 0.8);
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.global-sound-btn.sound-enabled {
  background: rgba(255, 107, 53, 0.9);
  border-color: #ff6b35;
}

.global-sound-btn i {
  font-size: 1.2rem;
}

/* Sound Wave Animation */
@keyframes soundWave {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
}

.sound-wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.5rem;
}

.sound-wave span {
  width: 3px;
  height: 12px;
  background: #ff6b35;
  border-radius: 2px;
  animation: soundWave 1s ease-in-out infinite;
}

.sound-wave span:nth-child(2) {
  animation-delay: 0.1s;
}

.sound-wave span:nth-child(3) {
  animation-delay: 0.2s;
}

.sound-wave span:nth-child(4) {
  animation-delay: 0.3s;
}

/* Video Progress Bar */
.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 6;
}

.video-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  width: 0%;
  transition: width 0.1s ease;
}

/* Sound Notification */
.sound-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.sound-notification.show {
  opacity: 1;
}

.sound-notification i {
  font-size: 2rem;
  color: #ff6b35;
}

.sound-notification span {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Responsive Video Controls */
@media (max-width: 768px) {
  .video-controls {
    bottom: 40px;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }

  .volume-slider {
    display: none;
  }

  .global-sound-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .sound-notification {
    padding: 1.5rem 2rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .video-controls {
    gap: 0.5rem;
  }

  .control-btn {
    width: 35px;
    height: 35px;
  }

  .control-btn i {
    font-size: 0.9rem;
  }

  .global-sound-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
}

.input-error {
  border-color: red !important;
  background-color: #fff0f0;
}

.form-notification {
  margin: 15px 0;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
}

.form-notification.success {
  background-color: #d4edda;
  color: #155724;
}

.form-notification.error {
  background-color: #f8d7da;
  color: #721c24;
}

.form-notification.info {
  background-color: #cce5ff;
  color: #004085;
}

button.loading {
  opacity: 0.7;
  pointer-events: none;
}

button.pulse {
  animation: pulse-animation 0.3s ease-in-out;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.whatsapp-float:hover::before {
  width: 120px;
  height: 120px;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(1.05);
}

/* Back to Top Button */
.back-to-top {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.back-to-top:hover::before {
  width: 100px;
  height: 100px;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.back-to-top:active {
  transform: translateY(-1px) scale(1.05);
}

/* Tooltips */
.whatsapp-float .tooltip,
.back-to-top .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.whatsapp-float .tooltip::after,
.back-to-top .tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .tooltip,
.back-to-top:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Pulse Animation for WhatsApp */
.whatsapp-float {
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .whatsapp-float .tooltip,
  .back-to-top .tooltip {
    font-size: 12px;
    padding: 6px 10px;
    right: 60px;
  }

  .whatsapp-float:hover .tooltip,
  .back-to-top:hover .tooltip {
    right: 65px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    right: 10px;
    bottom: 10px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* new */
/* ADD THESE GALLERY STYLES TO THE END OF YOUR EXISTING styles.css */

/* Page Hero Section (for gallery page) */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}

.page-hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #f7931e;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* Gallery Navigation */
.gallery-nav {
  padding: 40px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-tab {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.gallery-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.gallery-tab:hover::before {
  left: 100%;
}

.gallery-tab:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.gallery-tab.active {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: #ff6b35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.gallery-tab i {
  font-size: 1.2rem;
}

/* Gallery Sections */
.gallery-section {
  padding: 80px 0;
  display: none;
}

.gallery-section.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.photo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.photo-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 53, 0.9),
    rgba(247, 147, 30, 0.9)
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 2rem;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.photo-overlay p {
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

.photo-item:hover .photo-overlay h4,
.photo-item:hover .photo-overlay p {
  transform: translateY(0);
}

/* Image Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  max-width: 500px;
  backdrop-filter: blur(10px);
}

.modal-caption h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.modal-caption p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close:hover {
  background: rgba(255, 107, 53, 0.8);
  transform: scale(1.1);
}

/* Modal Navigation */
.modal-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.modal-nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.modal-nav-btn:hover {
  background: rgba(255, 107, 53, 0.8);
  border-color: #ff6b35;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.modal-nav-btn i {
  font-size: 1.2rem;
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0 60px;
  }

  .page-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .gallery-tabs {
    gap: 1rem;
  }

  .gallery-tab {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .modal-navigation {
    padding: 0 10px;
  }

  .modal-nav-btn {
    width: 40px;
    height: 40px;
  }

  .modal-nav-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 60px 0 40px;
  }

  .page-hero .hero-content h1 {
    font-size: 2rem;
  }

  .gallery-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .gallery-tab {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.nav-top {
  position: relative;
  background-color: #ffffff;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

.language-switcher {
  position: absolute;
  top: 8px;
  right: 20px;
}

.styled-switcher {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
  margin-right: 1rem;
  z-index: 2;
}

/* Optional tweak to style the widget itself */
.gtranslate_wrapper {
  padding: 0.3rem 0.6rem;
  background-color: #f8f9fa;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s;
}
